From efebaa551c7893ca25d25b794f81ef21b7c8ec1c Mon Sep 17 00:00:00 2001 From: Rik Adriaensen Date: Fri, 20 Dec 2024 13:37:23 +0100 Subject: [PATCH 01/15] Added similarity matrix and embedding visualisations --- deepsoftlog/embeddings/embedding_store.py | 10 ++++++++ deepsoftlog/logic/spl_module.py | 7 ++++++ deepsoftlog/training/logger.py | 6 +++++ deepsoftlog/training/trainer.py | 5 ++++ deepsoftlog/training/visualise.py | 30 +++++++++++++++++++++++ 5 files changed, 58 insertions(+) create mode 100644 deepsoftlog/training/visualise.py diff --git a/deepsoftlog/embeddings/embedding_store.py b/deepsoftlog/embeddings/embedding_store.py index 6c20cf3..f57d162 100644 --- a/deepsoftlog/embeddings/embedding_store.py +++ b/deepsoftlog/embeddings/embedding_store.py @@ -75,6 +75,16 @@ def to(self, device): self.device = device return super().to(device) + def get_similarity_matrix(self, distance_metric: str): + constants = list(self.constant_embeddings.keys()) + n = len(constants) + matrix = torch.zeros(n, n) + for i, c1 in enumerate(constants): + for j, c2 in enumerate(constants): + e1, e2 = self.constant_embeddings[c1], self.constant_embeddings[c2] + matrix[i, j] = -embedding_similarity(e1, e2, distance_metric) + return matrix.detach().numpy() + def create_embedding_store(config, vocab_sources: Iterable) -> EmbeddingStore: ndim = config['embedding_dimensions'] diff --git a/deepsoftlog/logic/spl_module.py b/deepsoftlog/logic/spl_module.py index 1b29f74..ec949b5 100644 --- a/deepsoftlog/logic/spl_module.py +++ b/deepsoftlog/logic/spl_module.py @@ -48,6 +48,13 @@ def get_store(self): return self.store.module return self.store + def get_similarity_matrix(self): + return self.store.get_similarity_matrix(self.embedding_metric) + + def get_constant_embedding_matrix(self): + names = self.store.constant_embeddings.keys() + return names, torch.stack([self.store.constant_embeddings[name] for name in names]).detach().numpy() + def parameters(self): yield from self.store.parameters() if self.semantics == "neural": diff --git a/deepsoftlog/training/logger.py b/deepsoftlog/training/logger.py index b4535c1..0c70f32 100644 --- a/deepsoftlog/training/logger.py +++ b/deepsoftlog/training/logger.py @@ -33,6 +33,9 @@ def log_eval(self, values, **kwargs): # TODO print("EVAL:", values) + def log_fig(self, fig, name): + print("FIG NOT LOGGED:", name) + class WandbLogger(Logger): def __init__(self, config): @@ -54,3 +57,6 @@ def _init_wandb(self): project = self.config['project'] wandb.init(name=name, project=project, config=self.config) + def log_fig(self, fig, name): + self._init_wandb() + wandb.log({name: wandb.Image(fig)}) \ No newline at end of file diff --git a/deepsoftlog/training/trainer.py b/deepsoftlog/training/trainer.py index 89a159a..b297f72 100644 --- a/deepsoftlog/training/trainer.py +++ b/deepsoftlog/training/trainer.py @@ -13,6 +13,7 @@ import torch.multiprocessing as mp import torch.distributed as dist +from .visualise import visualise_embeddings, visualise_similarity_matrix from ..data.dataloader import DataLoader from ..data.query import Query from ..logic.spl_module import SoftProofModule @@ -123,6 +124,10 @@ def eval(self, dataloader: DataLoader, name='test'): new_metrics = [get_metrics(query, result, dataloader.dataset) for query, result in results] metrics += new_metrics self.logger.log_eval(aggregate_metrics(metrics), name=name) + matrix = self.program.get_similarity_matrix() + self.logger.log_fig(visualise_similarity_matrix(matrix), name="similarity matrix") + names, matrix = self.program.get_constant_embedding_matrix() + self.logger.log_fig(visualise_embeddings(matrix, names), name="constant embeddings") def _query(self, queries: Iterable[Query]): for query in queries: diff --git a/deepsoftlog/training/visualise.py b/deepsoftlog/training/visualise.py new file mode 100644 index 0000000..7b49f05 --- /dev/null +++ b/deepsoftlog/training/visualise.py @@ -0,0 +1,30 @@ +import matplotlib.pyplot as plt +import numpy as np +from matplotlib.pyplot import viridis +from sklearn import manifold + +def visualise_embeddings(embeddings, names): + LLE = manifold.LocallyLinearEmbedding(n_neighbors=10, n_components=2, method='standard') + proj_emb = LLE.fit_transform(embeddings) + fig, ax = plt.subplots(figsize=(8, 6)) + scatter = ax.scatter(proj_emb[:, 0], proj_emb[:, 1], cmap=viridis()) + plt.legend(handles=scatter.legend_elements()[0], labels=names) + plt.title("LLE Projection of Embeddings") + plt.xlabel("Principal Component 1") + plt.ylabel("Principal Component 2") + return fig + +def visualise_similarity_matrix(matrix): + matrix = argsort_sim_matrix(matrix) + fig, ax = plt.subplots(figsize=(8, 6)) + cax = ax.matshow(matrix, cmap='viridis') + fig.colorbar(cax) + return fig + +def argsort_sim_matrix(sm): + idx = [np.argmin(np.sum(sm, axis=1))] # a + for i in range(1, len(sm)): + sm_i = sm[idx[-1]].copy() + sm_i[idx] = np.inf + idx.append(np.argmin(sm_i)) # b + return sm[idx][:, idx] \ No newline at end of file From 81e9d41925c77af16a5b937fa466622e811b7d1a Mon Sep 17 00:00:00 2001 From: Rik Adriaensen Date: Fri, 20 Dec 2024 13:46:44 +0100 Subject: [PATCH 02/15] Added flags dataset --- .../countries/data/raw/flags/AD-32.png | Bin 0 -> 1143 bytes .../countries/data/raw/flags/AE-32.png | Bin 0 -> 542 bytes .../countries/data/raw/flags/AF-32.png | Bin 0 -> 993 bytes .../countries/data/raw/flags/AG-32.png | Bin 0 -> 1092 bytes .../countries/data/raw/flags/AI-32.png | Bin 0 -> 1205 bytes .../countries/data/raw/flags/AL-32.png | Bin 0 -> 1196 bytes .../countries/data/raw/flags/AM-32.png | Bin 0 -> 451 bytes .../countries/data/raw/flags/AO-32.png | Bin 0 -> 1145 bytes .../countries/data/raw/flags/AQ-32.png | Bin 0 -> 1369 bytes .../countries/data/raw/flags/AR-32.png | Bin 0 -> 809 bytes .../countries/data/raw/flags/AS-32.png | Bin 0 -> 1241 bytes .../countries/data/raw/flags/AT-32.png | Bin 0 -> 558 bytes .../countries/data/raw/flags/AU-32.png | Bin 0 -> 4170 bytes .../countries/data/raw/flags/AW-32.png | Bin 0 -> 887 bytes .../countries/data/raw/flags/AX-32.png | Bin 0 -> 690 bytes .../countries/data/raw/flags/AZ-32.png | Bin 0 -> 832 bytes .../countries/data/raw/flags/BA-32.png | Bin 0 -> 1159 bytes .../countries/data/raw/flags/BB-32.png | Bin 0 -> 701 bytes .../countries/data/raw/flags/BD-32.png | Bin 0 -> 1119 bytes .../countries/data/raw/flags/BE-32.png | Bin 0 -> 317 bytes .../countries/data/raw/flags/BF-32.png | Bin 0 -> 812 bytes .../countries/data/raw/flags/BG-32.png | Bin 0 -> 639 bytes .../countries/data/raw/flags/BH-32.png | Bin 0 -> 923 bytes .../countries/data/raw/flags/BI-32.png | Bin 0 -> 1378 bytes .../countries/data/raw/flags/BJ-32.png | Bin 0 -> 572 bytes .../countries/data/raw/flags/BL-32.png | Bin 0 -> 332 bytes .../countries/data/raw/flags/BM-32.png | Bin 0 -> 1210 bytes .../countries/data/raw/flags/BN-32.png | Bin 0 -> 1356 bytes .../countries/data/raw/flags/BO-32.png | Bin 0 -> 3708 bytes .../countries/data/raw/flags/BQ-32.png | Bin 0 -> 665 bytes .../countries/data/raw/flags/BR-32.png | Bin 0 -> 1155 bytes .../countries/data/raw/flags/BS-32.png | Bin 0 -> 1182 bytes .../countries/data/raw/flags/BT-32.png | Bin 0 -> 1008 bytes .../countries/data/raw/flags/BV-32.png | Bin 0 -> 600 bytes .../countries/data/raw/flags/BW-32.png | Bin 0 -> 567 bytes .../countries/data/raw/flags/BY-32.png | Bin 0 -> 4099 bytes .../countries/data/raw/flags/BZ-32.png | Bin 0 -> 1085 bytes .../countries/data/raw/flags/CA-32.png | Bin 0 -> 1136 bytes .../countries/data/raw/flags/CC-32.png | Bin 0 -> 1009 bytes .../countries/data/raw/flags/CD-32.png | Bin 0 -> 4552 bytes .../countries/data/raw/flags/CF-32.png | Bin 0 -> 1210 bytes .../countries/data/raw/flags/CG-32.png | Bin 0 -> 665 bytes .../countries/data/raw/flags/CH-32.png | Bin 0 -> 404 bytes .../countries/data/raw/flags/CI-32.png | Bin 0 -> 579 bytes .../countries/data/raw/flags/CK-32.png | Bin 0 -> 1616 bytes .../countries/data/raw/flags/CL-32.png | Bin 0 -> 926 bytes .../countries/data/raw/flags/CM-32.png | Bin 0 -> 620 bytes .../countries/data/raw/flags/CN-32.png | Bin 0 -> 672 bytes .../countries/data/raw/flags/CO-32.png | Bin 0 -> 671 bytes .../countries/data/raw/flags/CR-32.png | Bin 0 -> 726 bytes .../countries/data/raw/flags/CU-32.png | Bin 0 -> 1311 bytes .../countries/data/raw/flags/CV-32.png | Bin 0 -> 813 bytes .../countries/data/raw/flags/CW-32.png | Bin 0 -> 1005 bytes .../countries/data/raw/flags/CX-32.png | Bin 0 -> 1357 bytes .../countries/data/raw/flags/CY-32.png | Bin 0 -> 1130 bytes .../countries/data/raw/flags/CZ-32.png | Bin 0 -> 1148 bytes .../countries/data/raw/flags/DE-32.png | Bin 0 -> 742 bytes .../countries/data/raw/flags/DJ-32.png | Bin 0 -> 1343 bytes .../countries/data/raw/flags/DK-32.png | Bin 0 -> 600 bytes .../countries/data/raw/flags/DM-32.png | Bin 0 -> 928 bytes .../countries/data/raw/flags/DO-32.png | Bin 0 -> 766 bytes .../countries/data/raw/flags/DZ-32.png | Bin 0 -> 993 bytes .../countries/data/raw/flags/EC-32.png | Bin 0 -> 1013 bytes .../countries/data/raw/flags/EE-32.png | Bin 0 -> 837 bytes .../countries/data/raw/flags/EG-32.png | Bin 0 -> 1037 bytes .../countries/data/raw/flags/EH-32.png | Bin 0 -> 1288 bytes .../countries/data/raw/flags/ER-32.png | Bin 0 -> 1030 bytes .../countries/data/raw/flags/ES-32.png | Bin 0 -> 1070 bytes .../countries/data/raw/flags/ET-32.png | Bin 0 -> 1194 bytes .../countries/data/raw/flags/EU-32.png | Bin 0 -> 1269 bytes .../countries/data/raw/flags/FI-32.png | Bin 0 -> 580 bytes .../countries/data/raw/flags/FJ-32.png | Bin 0 -> 1303 bytes .../countries/data/raw/flags/FK-32.png | Bin 0 -> 1450 bytes .../countries/data/raw/flags/FM-32.png | Bin 0 -> 1113 bytes .../countries/data/raw/flags/FO-32.png | Bin 0 -> 579 bytes .../countries/data/raw/flags/FR-32.png | Bin 0 -> 332 bytes .../countries/data/raw/flags/GA-32.png | Bin 0 -> 683 bytes .../countries/data/raw/flags/GB-32.png | Bin 0 -> 1677 bytes .../countries/data/raw/flags/GD-32.png | Bin 0 -> 1062 bytes .../countries/data/raw/flags/GE-32.png | Bin 0 -> 817 bytes .../countries/data/raw/flags/GF-32.png | Bin 0 -> 332 bytes .../countries/data/raw/flags/GG-32.png | Bin 0 -> 730 bytes .../countries/data/raw/flags/GH-32.png | Bin 0 -> 1011 bytes .../countries/data/raw/flags/GI-32.png | Bin 0 -> 1302 bytes .../countries/data/raw/flags/GL-32.png | Bin 0 -> 1253 bytes .../countries/data/raw/flags/GM-32.png | Bin 0 -> 783 bytes .../countries/data/raw/flags/GN-32.png | Bin 0 -> 339 bytes .../countries/data/raw/flags/GP-32.png | Bin 0 -> 332 bytes .../countries/data/raw/flags/GQ-32.png | Bin 0 -> 811 bytes .../countries/data/raw/flags/GR-32.png | Bin 0 -> 1273 bytes .../countries/data/raw/flags/GS-32.png | Bin 0 -> 1477 bytes .../countries/data/raw/flags/GT-32.png | Bin 0 -> 954 bytes .../countries/data/raw/flags/GU-32.png | Bin 0 -> 1172 bytes .../countries/data/raw/flags/GW-32.png | Bin 0 -> 975 bytes .../countries/data/raw/flags/GY-32.png | Bin 0 -> 1297 bytes .../countries/data/raw/flags/HK-32.png | Bin 0 -> 1047 bytes .../countries/data/raw/flags/HM-32.png | Bin 0 -> 1249 bytes .../countries/data/raw/flags/HN-32.png | Bin 0 -> 1211 bytes .../countries/data/raw/flags/HR-32.png | Bin 0 -> 1236 bytes .../countries/data/raw/flags/HT-32.png | Bin 0 -> 966 bytes .../countries/data/raw/flags/HU-32.png | Bin 0 -> 435 bytes .../countries/data/raw/flags/ID-32.png | Bin 0 -> 472 bytes .../countries/data/raw/flags/IE-32.png | Bin 0 -> 541 bytes .../countries/data/raw/flags/IL-32.png | Bin 0 -> 1229 bytes .../countries/data/raw/flags/IM-32.png | Bin 0 -> 822 bytes .../countries/data/raw/flags/IN-32.png | Bin 0 -> 1277 bytes .../countries/data/raw/flags/IO-32.png | Bin 0 -> 2037 bytes .../countries/data/raw/flags/IQ-32.png | Bin 0 -> 1271 bytes .../countries/data/raw/flags/IR-32.png | Bin 0 -> 801 bytes .../countries/data/raw/flags/IS-32.png | Bin 0 -> 1021 bytes .../countries/data/raw/flags/IT-32.png | Bin 0 -> 582 bytes .../countries/data/raw/flags/JE-32.png | Bin 0 -> 980 bytes .../countries/data/raw/flags/JM-32.png | Bin 0 -> 1047 bytes .../countries/data/raw/flags/JO-32.png | Bin 0 -> 1185 bytes .../countries/data/raw/flags/JP-32.png | Bin 0 -> 1002 bytes .../countries/data/raw/flags/KE-32.png | Bin 0 -> 845 bytes .../countries/data/raw/flags/KG-32.png | Bin 0 -> 903 bytes .../countries/data/raw/flags/KH-32.png | Bin 0 -> 858 bytes .../countries/data/raw/flags/KI-32.png | Bin 0 -> 1502 bytes .../countries/data/raw/flags/KM-32.png | Bin 0 -> 951 bytes .../countries/data/raw/flags/KN-32.png | Bin 0 -> 1237 bytes .../countries/data/raw/flags/KP-32.png | Bin 0 -> 924 bytes .../countries/data/raw/flags/KR-32.png | Bin 0 -> 1121 bytes .../countries/data/raw/flags/KW-32.png | Bin 0 -> 978 bytes .../countries/data/raw/flags/KY-32.png | Bin 0 -> 1423 bytes .../countries/data/raw/flags/KZ-32.png | Bin 0 -> 972 bytes .../countries/data/raw/flags/LA-32.png | Bin 0 -> 1253 bytes .../countries/data/raw/flags/LB-32.png | Bin 0 -> 1346 bytes .../countries/data/raw/flags/LC-32.png | Bin 0 -> 1021 bytes .../countries/data/raw/flags/LI-32.png | Bin 0 -> 903 bytes .../countries/data/raw/flags/LK-32.png | Bin 0 -> 1033 bytes .../countries/data/raw/flags/LR-32.png | Bin 0 -> 953 bytes .../countries/data/raw/flags/LS-32.png | Bin 0 -> 1276 bytes .../countries/data/raw/flags/LT-32.png | Bin 0 -> 421 bytes .../countries/data/raw/flags/LU-32.png | Bin 0 -> 679 bytes .../countries/data/raw/flags/LV-32.png | Bin 0 -> 408 bytes .../countries/data/raw/flags/LY-32.png | Bin 0 -> 761 bytes .../countries/data/raw/flags/MA-32.png | Bin 0 -> 577 bytes .../countries/data/raw/flags/MC-32.png | Bin 0 -> 472 bytes .../countries/data/raw/flags/MD-32.png | Bin 0 -> 1094 bytes .../countries/data/raw/flags/ME-32.png | Bin 0 -> 1188 bytes .../countries/data/raw/flags/MF-32.png | Bin 0 -> 332 bytes .../countries/data/raw/flags/MG-32.png | Bin 0 -> 648 bytes .../countries/data/raw/flags/MH-32.png | Bin 0 -> 1400 bytes .../countries/data/raw/flags/MK-32.png | Bin 0 -> 1040 bytes .../countries/data/raw/flags/ML-32.png | Bin 0 -> 444 bytes .../countries/data/raw/flags/MM-32.png | Bin 0 -> 930 bytes .../countries/data/raw/flags/MN-32.png | Bin 0 -> 1075 bytes .../countries/data/raw/flags/MO-32.png | Bin 0 -> 1118 bytes .../countries/data/raw/flags/MP-32.png | Bin 0 -> 1113 bytes .../countries/data/raw/flags/MQ-32.png | Bin 0 -> 332 bytes .../countries/data/raw/flags/MR-32.png | Bin 0 -> 1076 bytes .../countries/data/raw/flags/MS-32.png | Bin 0 -> 1356 bytes .../countries/data/raw/flags/MT-32.png | Bin 0 -> 792 bytes .../countries/data/raw/flags/MU-32.png | Bin 0 -> 3393 bytes .../countries/data/raw/flags/MV-32.png | Bin 0 -> 835 bytes .../countries/data/raw/flags/MW-32.png | Bin 0 -> 1114 bytes .../countries/data/raw/flags/MX-32.png | Bin 0 -> 1269 bytes .../countries/data/raw/flags/MY-32.png | Bin 0 -> 1341 bytes .../countries/data/raw/flags/MZ-32.png | Bin 0 -> 1355 bytes .../countries/data/raw/flags/NA-32.png | Bin 0 -> 1185 bytes .../countries/data/raw/flags/NC-32.png | Bin 0 -> 970 bytes .../countries/data/raw/flags/NE-32.png | Bin 0 -> 1047 bytes .../countries/data/raw/flags/NF-32.png | Bin 0 -> 1131 bytes .../countries/data/raw/flags/NG-32.png | Bin 0 -> 280 bytes .../countries/data/raw/flags/NI-32.png | Bin 0 -> 983 bytes .../countries/data/raw/flags/NL-32.png | Bin 0 -> 799 bytes .../countries/data/raw/flags/NO-32.png | Bin 0 -> 600 bytes .../countries/data/raw/flags/NP-32.png | Bin 0 -> 687 bytes .../countries/data/raw/flags/NR-32.png | Bin 0 -> 795 bytes .../countries/data/raw/flags/NU-32.png | Bin 0 -> 1175 bytes .../countries/data/raw/flags/NZ-32.png | Bin 0 -> 1288 bytes .../countries/data/raw/flags/OM-32.png | Bin 0 -> 946 bytes .../countries/data/raw/flags/PA-32.png | Bin 0 -> 1214 bytes .../countries/data/raw/flags/PE-32.png | Bin 0 -> 333 bytes .../countries/data/raw/flags/PF-32.png | Bin 0 -> 1401 bytes .../countries/data/raw/flags/PG-32.png | Bin 0 -> 1342 bytes .../countries/data/raw/flags/PH-32.png | Bin 0 -> 1213 bytes .../countries/data/raw/flags/PK-32.png | Bin 0 -> 1266 bytes .../countries/data/raw/flags/PL-32.png | Bin 0 -> 472 bytes .../countries/data/raw/flags/PM-32.png | Bin 0 -> 332 bytes .../countries/data/raw/flags/PN-32.png | Bin 0 -> 1518 bytes .../countries/data/raw/flags/PR-32.png | Bin 0 -> 970 bytes .../countries/data/raw/flags/PS-32.png | Bin 0 -> 949 bytes .../countries/data/raw/flags/PT-32.png | Bin 0 -> 951 bytes .../countries/data/raw/flags/PW-32.png | Bin 0 -> 1044 bytes .../countries/data/raw/flags/PY-32.png | Bin 0 -> 1113 bytes .../countries/data/raw/flags/QA-32.png | Bin 0 -> 1281 bytes .../countries/data/raw/flags/RE-32.png | Bin 0 -> 332 bytes .../countries/data/raw/flags/RO-32.png | Bin 0 -> 339 bytes .../countries/data/raw/flags/RS-32.png | Bin 0 -> 1439 bytes .../countries/data/raw/flags/RU-32.png | Bin 0 -> 752 bytes .../countries/data/raw/flags/RW-32.png | Bin 0 -> 1088 bytes .../countries/data/raw/flags/SA-32.png | Bin 0 -> 1269 bytes .../countries/data/raw/flags/SB-32.png | Bin 0 -> 1094 bytes .../countries/data/raw/flags/SC-32.png | Bin 0 -> 1190 bytes .../countries/data/raw/flags/SD-32.png | Bin 0 -> 970 bytes .../countries/data/raw/flags/SE-32.png | Bin 0 -> 792 bytes .../countries/data/raw/flags/SG-32.png | Bin 0 -> 894 bytes .../countries/data/raw/flags/SH-32.png | Bin 0 -> 1289 bytes .../countries/data/raw/flags/SI-32.png | Bin 0 -> 855 bytes .../countries/data/raw/flags/SJ-32.png | Bin 0 -> 600 bytes .../countries/data/raw/flags/SK-32.png | Bin 0 -> 1471 bytes .../countries/data/raw/flags/SL-32.png | Bin 0 -> 440 bytes .../countries/data/raw/flags/SM-32.png | Bin 0 -> 1296 bytes .../countries/data/raw/flags/SN-32.png | Bin 0 -> 639 bytes .../countries/data/raw/flags/SO-32.png | Bin 0 -> 842 bytes .../countries/data/raw/flags/SR-32.png | Bin 0 -> 1202 bytes .../countries/data/raw/flags/SS-32.png | Bin 0 -> 541 bytes .../countries/data/raw/flags/ST-32.png | Bin 0 -> 1362 bytes .../countries/data/raw/flags/SV-32.png | Bin 0 -> 1076 bytes .../countries/data/raw/flags/SX-32.png | Bin 0 -> 1252 bytes .../countries/data/raw/flags/SY-32.png | Bin 0 -> 996 bytes .../countries/data/raw/flags/SZ-32.png | Bin 0 -> 1081 bytes .../countries/data/raw/flags/TC-32.png | Bin 0 -> 1277 bytes .../countries/data/raw/flags/TD-32.png | Bin 0 -> 465 bytes .../countries/data/raw/flags/TF-32.png | Bin 0 -> 1284 bytes .../countries/data/raw/flags/TG-32.png | Bin 0 -> 1304 bytes .../countries/data/raw/flags/TH-32.png | Bin 0 -> 699 bytes .../countries/data/raw/flags/TJ-32.png | Bin 0 -> 791 bytes .../countries/data/raw/flags/TK-32.png | Bin 0 -> 1179 bytes .../countries/data/raw/flags/TL-32.png | Bin 0 -> 1153 bytes .../countries/data/raw/flags/TM-32.png | Bin 0 -> 1138 bytes .../countries/data/raw/flags/TN-32.png | Bin 0 -> 809 bytes .../countries/data/raw/flags/TO-32.png | Bin 0 -> 800 bytes .../countries/data/raw/flags/TR-32.png | Bin 0 -> 884 bytes .../countries/data/raw/flags/TT-32.png | Bin 0 -> 1355 bytes .../countries/data/raw/flags/TV-32.png | Bin 0 -> 1483 bytes .../countries/data/raw/flags/TW-32.png | Bin 0 -> 824 bytes .../countries/data/raw/flags/TZ-32.png | Bin 0 -> 1005 bytes .../countries/data/raw/flags/UA-32.png | Bin 0 -> 593 bytes .../countries/data/raw/flags/UG-32.png | Bin 0 -> 1060 bytes .../countries/data/raw/flags/UM-32.png | Bin 0 -> 1171 bytes .../countries/data/raw/flags/US-32.png | Bin 0 -> 1171 bytes .../countries/data/raw/flags/UY-32.png | Bin 0 -> 1248 bytes .../countries/data/raw/flags/UZ-32.png | Bin 0 -> 724 bytes .../countries/data/raw/flags/VA-32.png | Bin 0 -> 882 bytes .../countries/data/raw/flags/VC-32.png | Bin 0 -> 1029 bytes .../countries/data/raw/flags/VE-32.png | Bin 0 -> 1381 bytes .../countries/data/raw/flags/VG-32.png | Bin 0 -> 1435 bytes .../countries/data/raw/flags/VI-32.png | Bin 0 -> 1261 bytes .../countries/data/raw/flags/VN-32.png | Bin 0 -> 821 bytes .../countries/data/raw/flags/VU-32.png | Bin 0 -> 1347 bytes .../countries/data/raw/flags/WF-32.png | Bin 0 -> 332 bytes .../countries/data/raw/flags/WS-32.png | Bin 0 -> 869 bytes .../countries/data/raw/flags/YE-32.png | Bin 0 -> 634 bytes .../countries/data/raw/flags/YT-32.png | Bin 0 -> 557 bytes .../countries/data/raw/flags/ZA-32.png | Bin 0 -> 1145 bytes .../countries/data/raw/flags/ZM-32.png | Bin 0 -> 830 bytes .../countries/data/raw/flags/ZW-32.png | Bin 0 -> 1028 bytes 250 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/AD-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/AE-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/AF-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/AG-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/AI-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/AL-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/AM-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/AO-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/AQ-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/AR-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/AS-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/AT-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/AU-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/AW-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/AX-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/AZ-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/BA-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/BB-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/BD-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/BE-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/BF-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/BG-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/BH-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/BI-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/BJ-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/BL-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/BM-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/BN-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/BO-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/BQ-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/BR-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/BS-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/BT-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/BV-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/BW-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/BY-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/BZ-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/CA-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/CC-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/CD-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/CF-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/CG-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/CH-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/CI-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/CK-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/CL-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/CM-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/CN-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/CO-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/CR-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/CU-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/CV-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/CW-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/CX-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/CY-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/CZ-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/DE-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/DJ-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/DK-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/DM-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/DO-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/DZ-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/EC-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/EE-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/EG-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/EH-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/ER-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/ES-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/ET-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/EU-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/FI-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/FJ-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/FK-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/FM-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/FO-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/FR-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/GA-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/GB-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/GD-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/GE-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/GF-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/GG-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/GH-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/GI-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/GL-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/GM-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/GN-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/GP-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/GQ-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/GR-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/GS-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/GT-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/GU-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/GW-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/GY-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/HK-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/HM-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/HN-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/HR-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/HT-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/HU-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/ID-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/IE-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/IL-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/IM-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/IN-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/IO-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/IQ-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/IR-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/IS-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/IT-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/JE-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/JM-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/JO-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/JP-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/KE-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/KG-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/KH-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/KI-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/KM-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/KN-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/KP-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/KR-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/KW-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/KY-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/KZ-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/LA-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/LB-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/LC-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/LI-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/LK-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/LR-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/LS-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/LT-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/LU-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/LV-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/LY-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/MA-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/MC-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/MD-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/ME-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/MF-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/MG-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/MH-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/MK-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/ML-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/MM-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/MN-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/MO-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/MP-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/MQ-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/MR-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/MS-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/MT-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/MU-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/MV-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/MW-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/MX-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/MY-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/MZ-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/NA-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/NC-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/NE-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/NF-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/NG-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/NI-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/NL-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/NO-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/NP-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/NR-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/NU-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/NZ-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/OM-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/PA-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/PE-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/PF-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/PG-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/PH-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/PK-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/PL-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/PM-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/PN-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/PR-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/PS-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/PT-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/PW-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/PY-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/QA-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/RE-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/RO-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/RS-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/RU-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/RW-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/SA-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/SB-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/SC-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/SD-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/SE-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/SG-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/SH-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/SI-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/SJ-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/SK-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/SL-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/SM-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/SN-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/SO-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/SR-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/SS-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/ST-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/SV-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/SX-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/SY-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/SZ-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/TC-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/TD-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/TF-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/TG-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/TH-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/TJ-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/TK-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/TL-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/TM-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/TN-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/TO-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/TR-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/TT-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/TV-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/TW-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/TZ-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/UA-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/UG-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/UM-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/US-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/UY-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/UZ-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/VA-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/VC-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/VE-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/VG-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/VI-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/VN-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/VU-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/WF-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/WS-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/YE-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/YT-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/ZA-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/ZM-32.png create mode 100644 deepsoftlog/experiments/countries/data/raw/flags/ZW-32.png diff --git a/deepsoftlog/experiments/countries/data/raw/flags/AD-32.png b/deepsoftlog/experiments/countries/data/raw/flags/AD-32.png new file mode 100644 index 0000000000000000000000000000000000000000..67a865584dd17932e40695fcfa9a7e2a52657d93 GIT binary patch literal 1143 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfauL_=LFr2l7GS+>ak7|Nk@m z|IZF4feeQKUm5;8GW_Re0IGqbAK#6EQvd#OK$QLa$N29*Gf1Tq(2%nX3}+yShv$r^ z=TWfX2oazyo}Nd3`~aB%wdfz%7AKG`aE)MPAiWSlpivMJphlp*|NgLm&|fB?r9g3S zpCeztm^{3u`tX*{u7!>}7dk$;rG5XJ-rr9w|6M`O2C4}NJo4ea`SxbJ(-js+nypW^ zT3)O--Q4T);|>3RAD|jWh!tTGM=qaq+m>qc3$oY>~IBHiikT;*GRYR`LA-uFl?uW-At$@G5=P$e_i<>$g8k36|=v$Ngm zZx8FIJ>m~HsD53-yKTP1+goz~LxIYm_Qt0iIkVeyQIhM+N$StmYuw(f_jrZo!g9|m z+l>DwBAFI-pT|~c`dH+T-xBVvCsAO4JEK?Am@2_90i5aABJzAME5PQ z+dI$h+eg7ae>osg2?@sUpcrHW1|TR5K@q|D|0^Rf`XFHij5SC&gT#U8AD9HkFCuL~ zqZ=5TK*hjh15PvF82&qhqHMz2%HP0Hmn;eL3kJsF-#>pr;Q#-B?*xHnLBUr3R1Kga z&H|6fVj%4S#%?FG?HCvs-Lp07OPna@k+Qf;elakXCQhJ+dGL&1rG z7Y#QSe&p=*JgFHWvSiuP^pv#J=TDwJ6&Ddp+`MSVk}YfYEZVec*RpMVvz1>XK|gFEfI37&8O?cF56dg z^i=5T>uX}$O;=pczp-Lp=I3c^Z*P0=!0+jj^7hWw?Crni?R^pEu&Da}Kjv5LSFiG~ zl($o=7jb1|s83Aavg#FIBrwcWOI#yLQW8s2t&)pUffR$0fuWJEfu*jId5D35m8qeX zfvL8Ev6X>A?RFJW6b-rgDVb@NxHa&+nzIt9K@wy`aDG}zd16s2gJVj5QmTSyZen_B YP-2Saxo1H)Vf zsTm9mGl6VIhPjN=GZ-0XG6JP~+JzYAiL1^O6PqOlRouY9FpWWK5(C2|hX0I=|AmEK zoIP^y!_x;Z?>~6;03;$N_W!|y|3L8XACUd;{{4SI=HI{nfLyTbzkB!o{{R2?&!4}4 z|AIt#c`qzkvi-n;J-c`B*|P^^3j;$p(2)!bQebwkv^0Z~l8zz>oIfAp0+e7(@^*KT zXXO>x3*>MXctjQhX%8@VJDF_DJW;W+x#u<+Xeg<>TiubU1 z^Ve|*E&X)iH literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/AF-32.png b/deepsoftlog/experiments/countries/data/raw/flags/AF-32.png new file mode 100644 index 0000000000000000000000000000000000000000..060ab8efccce50b2c562ca122278b454a47791b4 GIT binary patch literal 993 zcmZ`$ZA_b06u$2Z_LH^@ltox3C>UhJ6bMQ?MyS%!3NnPQ(3KeqeW_5Pz%UaFh{SHN zcN?4g!U$WkDTWmnKCBGey3K8gNHz@fhfeTg(I0O9FeWCN?B3&f!9V`+$GzvAd!Of= z=bSTCSy8G{C94P_8mpzG3T-N$cts4}#or(H62i+X%WY;1(+G(W0))`D8y%(~Vt|lQ zl5(1GBme#a&x2A4@$r(ghCvqPIFQRR1auT~Buc4xo@zAGV~!qn*`VDgIY@a}2ZWO{ zuUCwTp*+uazQ}xSOlV|1ekQn?)xtOw6T2>ea9kudmJSWFH+!L_8D^$g@B-91*?|D< z?-K(`6iMRLQqdYaot?%)?89+bU4ifJz`Lhmn~~0a3-+f~vL~C8?D6%Do?m|a`R;yR_BOxye$KSHI=q1`%Am7jTi5EzPij=TC?+qD_?!_O{~aQ=h^qF z%eHt^oZIYv`Bv4YvC%zst1H_JqmkYoI+gjmP7$ZlDmCii!9xd+Ts@ci%+p0_IZqif z^0T);k*5|1e!Dcf5_vH2`MJCAEYEaqRb^#4f)~6k_wS`7JKmcz%*+Qup^u{HXM^Db zp*fwi_|Msjk%HzwPE6b$Um6+8PxnmUI&;mqZ}a^J4^674vudw@`uf7Muvjx$7fSZm zP5yKvX_fr-xarr1;oHSHgp4k8ZI|2CB^Vn!1vDgApOc%dH)Q8NYt!qE`8h^?{uX_n zQLpcvOMm1)gjS!sxvBgA332yECy?-{RH53})V0smDG-y}*C3=?TU{QZN^rTmI~IgO P1QDybqU7Rp^#lI^;ux1n literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/AG-32.png b/deepsoftlog/experiments/countries/data/raw/flags/AG-32.png new file mode 100644 index 0000000000000000000000000000000000000000..5c0f473a587fd84a98f75089b26696997af74451 GIT binary patch literal 1092 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3HGD8EPYe6kC$Fy9>jA5L~c#`DCC7XMsm# zF_88EW4Dvpb_@*6v7RoDAs)x)PQINT6Do1E{{FmTHRH)<#==?eI5V4BL{=?w)%@{< zm04+qSWV{I4p)KhkQc!{;!y%09XXEFFWABwXd>9+AT7UUidVdsLeun_DYItGn0eAC zuh`P~d5zti8$P9zmPKy3`Fz9o?bmPJkD8t6!kEjp^c)9!pmN3*LEf7g&An!>0fO~w z<9vB+9PW!o{yRP6NB*%7Q#%6KubtK~KH#drwdRTr8;^)=#UlAfz84alOYBvi9oY8Z z`RxSO1+Vh1nlM!+FjV+XbqjTJu>Y#K-SIL<{^CEJER5_Mm;(wQ-uOJ>+#%`X3!gOP zHVaDZe#QOgo0J6etHvCz2^*jb@VRaJ

)Mkz?XMBvvE#*)#uGM?`3q+RkNc=H) z!@~XNT4=-cke^pucEo53PdD8s*_S%iYLv{LZ1f z(%j$MzrJr*H`^9gVO-V`KkxSpd!LTz{VweITx@9_&|&nKVC6?YQop3h7N-emFe&zxjdQ zCdnmxC*OIY@p-!5&)GI#T~{(&E+;M516&Df82rqjA5L~c#`DCC7XMsm# zF_88EW4Dvpb_@*6=R92;Lp+Xeol>1KHC5)g{rT#f)#s|uJu@@kHktRdg5!2I57nLn zYJQ8mGY<xY> zt;}Md@$f-8XW^H*@<;p5irVbfiVwTCZeo7@&)GLFU(r-r>e}P`^T`DE6$io{bQdt# z?O|`&wBB^p*ZPVWo0vz%3*WN7D!N$O)fy$?ieVv_?_KpS zQaX3-Z0ejJB`p&s9^a#SlD~<8X&D3O$|)`!Gq#E`Z1^}m@1=F$hhBlhofchR6ec?| zbRN!63|XhLkp084*^z=qJJ)N>e=>vpiC~e+=L0dP*hSKUKSyqNbV%DgmzjaZNn^*w z(;b^Qy4F4FjXfR5opS8p+&OO1L5&`f9_o{IH8ZRpcx+o|?%^A~CN949y{Fzcmy`OJ zGT(X#UtrCAuErqio!uhEvmx_-RNm)FK0N=qj&|?7RyM6EmUqgPd}V{esT=3FS=z5Q zvYnok@JGm?D>CoU)BBkjcTP5!nx6T4r&CJr_>JEtw$Jx3-1^w!>BOQ%%J+B~r)V2z zZhUudHwS;*lh?{?-_$(iUbHxPM#FQ@GV|IaGyes0O>>DbHFa6^nn}GX`N_hEm7jKr zhq^9#oRXwmQO4w3Ea1j*qCqJyis|XomWnc419shThMX35^o{ZGr?Uf9oPOEj3i>s?KS z$=SA9NpBANT{(JnhPJukl_IeVg+&Y;r=*q|&R!T0IAa^@JZ(n%+Zq4j)0QsPx>P)~ z?bwI6U*qXWYYMy`AcHfDd)>9iN+nNo+=5u1vtESO;&5o-_!r~Pqz<;=-!{PdOmG| zhwWCT^cnj6uK%48_HBOh-W6yA` zVa4L*p`V$7SzNWmHKHUXu_VKd7c7#LWY8d@2cY8x0^85q=V zR}n?gkei>9nO2Eg1JA2DD}fp$K{f>ErbP0l+XkK#9A3O literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/AL-32.png b/deepsoftlog/experiments/countries/data/raw/flags/AL-32.png new file mode 100644 index 0000000000000000000000000000000000000000..319680ac273f8fbac21af684773a409793b899fc GIT binary patch literal 1196 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfero_=LFLQxpJ-07*=AS5W{N z0Tm!~foxL}7Lyx~(X% zN}Q{KpY5;=FHq{J4DSP&;Xw6IlmvH4@$?9>FA(KS;%0GUWm+cA701CG%E8n9W!iJB2tp1lb)}nXW7F!$bJKqQG%kUSM>bm*eXa zV$bGgso`e>T5(aH|9~{_9auy_q7P_35CQc9WnEdB_DJ&pZ2|fhA`2uTp$cRG)d0=B zqaXk@A1(+t1Sp8C1;W1BD9sHFDYlXzzhDN2|9>5sYp1&VMMctjQhX%8@VJDF|A zz`&^I>EaloaXvYLnW>D=PcKg{&aRHpQ87_4&`d4OOpGne%^-n6Q$Tq7gejAzO`JM8 zJRl@U>|nrxMXQ#rTex!R+QqAv=O<*OM9%pEAvLT6joU==Cet5;a!jXXIq%W%lM|zkl)O)w_cs7j9p-PkglGWbiV-*>=g# z*4&f`+i-TKb^gDm)@~(n{m5N8Kf9)C0nH9u8@IXa?k`?x^W1xzN^h5)S>ShTWAXKO zw$C#5QQ<|d}6 Z2BjvZR2H60wE-$(@O1TaS?83{1ORLJgq{EZ literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/AM-32.png b/deepsoftlog/experiments/countries/data/raw/flags/AM-32.png new file mode 100644 index 0000000000000000000000000000000000000000..3377419d8c668d1b342468914ec546aefed2209d GIT binary patch literal 451 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7E^sk#845LYSg8C}8c-60+S=Q4oM zOosmqAoP!c6N0)K+PfJ#A&7xtE*wcQ%zz@E84y9BA;<_~;J+E1Xb5Bl44M6$bQ$Op zwvr&f;QwGSZ?CrzP=vF)ES<4GtnK2anD@e0T02 zVHKutU%!X&<}e;PAb8+wjaM8?qKI*T=Pbh$-IJKK__k(gWURgS_f@;#v6OQ>(@KAD zmselYz3XGadJ!A>n)h1z65PD{K+{!ATq8hErLK{Ah=GBX zsiBpDskVW!m4QL+b`?<+4Y~O#nQ4`{HSoNevl6I55@bVgep*R+Vo@rCV@iHfs)A>3 bVtQ&&YGO)d;mK4RpdtoOS3j3^P6efIDgi0iI^tL(#1d5Ls5@e5T zQ?nTn<5>2G+D1w;lsTO|Hp=RzQ=ETn%VIK@EV@?~mYBGf6ukTHt&%O-PR@58zwMWb@Lm8L;a za+;y49srjOev1_qBL>78@uvX~aylWagJKneK}6=z*N4eT^z}lm;v31e zWNYx+0KzjkxDTIA;r@@9`WTfJP$lzKq9PHDl^7nv^c4h7!{^2Ry*PIU{ymWL@6QXl z=7bQkp%CsCBq#F#u{s^JtC5w3bTu>?P$(WViAzd?j0_OO_t&w@B-rS8*qx7|gnP80 zrdE_s)D&<3c@k+XyuFpQr0ub~dWk3Nlk>v$_G)quB{s9EzToRN=JS;O^RbvNS!)`g zN_KX7-MhRZr@kPPdn7n}^UfFF-MX0*sxc3_WDSR2J$2^zM~90dvX=7hv`kyQsB^)a z^Fhnq>Q8@_EG>ogdZysn+zp1Rb?K4g4^9rdPgqLV7Tz)BZ!D<}8`Q51t{JH^n;bn7 z)!AUc=kc^R9-fiv82VGm9dUvcYIC^zdUUyrR@&mhRrhhpj-(EOUCA#+QsnFP$fp>P#U7Yx> z+TciA8BmzE<0ly|$>S>C(>dPkGyJ3>QD$d?9^g@B};7IPRM2Tz+HXD9e7Y z8JG>uOK)7-Eecs0&UZYQ**ZNR84{lcl!s5M?dvx1ubbz$H2FPlKWl93VTnT-Q(9Kc zR2G*#Q_nEQic%v}QN)xR8K(bo?y7$^baZ)kc@O-5gY5VBM@fT@pWy8B`uDkeSeQIr eFSB}Ehug zR25&L+9@ZtNpOaYh*zi*D#?FgHt;NkDnNqoJ#n+7X*lQfV6X&7iU$CkSV=-?14g~< zeo_lwwo7sGnGub4#bmbpX*8?G<{K|f#aEEX`vZ(}0=nAB1vXz19*3&-RFFXHBF4w= zEv~JtSu9}I*L}7A%D^1A?pFBG^<1bPRE8Hd4tMm;Y!+bKCAg~yOF4d1XE0HTU}2jr zmg}SjDI5T1s0g*7P>77c$F%p<%jKVs=2j10BQ;OzSiRY7nf_fDR8GJts3t)!A2D9= z>Cp0u$+&7>F`5Ae!0n)eLCfHVY6OWb7l< z&>qCW%snzN8J{83Cu*B*6TH7;@kS-~s$tXUwS{43(|d1w1qWC168(oPzA`pPPE18@;>O zr_y}TFcc)kH*}`Rw+Jw25l$E3a8+KkMWGyodRez4;i9{UGtx2<#4_(rv!2zu+Ga;D zK!kSqwUnfkL&|a(+kZb!Y+mG1H0!#R!GXREi@*`_ni2Xgo4O^mj^ zbnypiiC9=xDiIkT>lXD3%S)~fN&DRBzFWMX^LO`}_4j+$$5Y$-NmG4ITR?CWgB2LL zV}kX<2rI1bn)2dT-5)yVu?zBK$^7gtd9A$l>Q(u-@^{e0z+IhH7an{zywjlnIL#3H zMOCq(b+T9CLKmbpy;{(@THi76#w1W;|#Q$EoeIf71_?4Dk#EPHwXAH6(vL@3=3 z%lYQ*u5pwYmpqK_7Ko>2dS%#K#dN!46F+K4doVQm7e|>~e?>b{QE8vezI8qEqdH$! zndxVaA@j>SWD85$>X}WOI$7Nqda&o{Bcrq7?EK~8sUCTq;~TVdGiH0&Z7jv2Zfwaj z?4VK+SbZLGm{+0(%TG7nJlA*3toMuQMAi~&0^RL%{6YO-adNJh#})Hqj|lnTkO*dY z1cMpFh=|T&GGn8{W0_Gqn31teCVDx@;~xn{0$xGB?Ee#<(X@0xf|s>IrXXJ|AQqOReu4758&|t literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/AR-32.png b/deepsoftlog/experiments/countries/data/raw/flags/AR-32.png new file mode 100644 index 0000000000000000000000000000000000000000..7a22a8be0f13f9ebcd13ac9e51bc1d899ab2567b GIT binary patch literal 809 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfb+s_=LD-ocRwyPd@*LqyI?Y z-~az`ly>Gn5W%&;82>WP01-$${3JGX>VM=J5DGtqMHX%;i17vJhJO#Ay?prm6_5eu zLS2P$(Z7E`pX~T_-s#f?&tFgX!Noz2{0Aid|N8X&^=aoXj~PBcVt9Qf==Ya5KtZ4s zvVu2fT|eGs_;`om&AE`@U*AF$z>NC$>*?-K=e$0h5BT-`AVd)1wimA-zI+4Yg1rOx z9g^R{p#cq+USZETV4(At1o;JnEc*Zd@8AFbe*@{?EBEfgH{P zkH}&m?E%JaC$sH7huTxs9vR)Yo^7`tsrR9prYFxN_+1$Xy$js2RxpTv;&4wGI3nCmEmrmW< zyLRs0=EcH3Eti|R8*k4%F3A-WbN7y|&E7q=HHk`l>S|7K{b6QmZgO@yd`NkMs6wQm zq^PX0w0Qo+2^~4Co0KO{3J$t_$=E1Rrt{I+HE-tJ+4HB#DJ6dqTS#D`r)HFcAWv3T zvM|GY3D?3f%Riw&pQx6&MwFx^mZVxG7o`Fz1|tJQBV7YaT_f`l0|P5lLn{MQZ3AN~ z1B2S_DxxSFa`RI%(<*Um;CVG?B~XJT$cEtjw370~qErUQl>DSr1<%~X^wgl##FWay Slc_d9MGT&jA5L~c#`DCC7XMsm# zF_88EW4Dvpb_@*6pFCY0Lp+YJoq94qI#i^6fA#&(r;BC$Guf8=bx5lp)l?~*)5y0l zQ`*bw0Mo&BLFOGy+z|_=sXBQq;8GOjH1p_)RTgkcYF@#zD9DR_l@m*)Bha$`z|Vd6cRs(T{h;Gfy%z5VW;HHFR?T*m=T`(pg@RnKIL&&i z zcE`l_%m2OC(0%$qK%kJ#h4%XIc3Fq@AM>#p*4k~D9pisQa`zwR$KvM%Y-_uUm!JFm zr(HScW!D;!2X=!du-T#-;%)OaBKz2FO;%@?10ciG-b+8tuCR_e#sTOM1le*fvIPV<@e ze`Rm3o;>A}rV7_x6T!B|9aH};>(QEeswmZ2=<@zx!|$9kE1DL)J7kda~xIeqD@j_ogtw_&p$^l|uB|6bYOQkb8& z_|kj#u+X(V^`9$*jD=nH|K&)(o3_qBR>k>Zkq5)Xi7&@Ack&sOA4~|GXs55Qegl$P*$du~su~t>X06;hw5~rPW;I z(489|`=+EC3aZM@c9~&!%Sw)IX~0uu?{%;BBW4Hm$lX?X+Zq|gzD>wtNBgdM9P6er zEL+d_a>bs#Pk*soQ(H2%b(+Z1n>w;SmsiI>W7KvnxUDx!?(On*yM_H<)cMSRe~;y# z?+T$-HHGBqDS5sbD_u0FDIPMddg{Mw@f3lBjR#xzGsZfssIZiLzzQq|R7+eVN>UO_ zQmvAUQh^kMk%6I+u7Rblk$H%Lft9JDm4T_Yfw7f=LG5-GQ4|fi`6-!cmAEzVyqdET xs6i5BLvVgtNqJ&XDuZK6ep0G}XKrG8YEWuoN@d~6R2!fo22WQ%mvv4FO#mn17j6Im literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/AT-32.png b/deepsoftlog/experiments/countries/data/raw/flags/AT-32.png new file mode 100644 index 0000000000000000000000000000000000000000..c9c1843c15a8d57189497ad72624a3938f59afa6 GIT binary patch literal 558 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7E^shI&jA+G;{3L4LttH$sTt^(=VMsuPtBKy{2s-tI1}Kk{E52XZ(IJR*yMvY9|?wSVw?)jb!iyWl21+IuCiK$)Ul3nBA;y%Td zXOV-rw!rnN2~%4%E*$1s@@2`*6a}s?8<`?&Ez2sE)*2k(65$cCoT9+Rvymy)S=297 z>F_}g?EvGT=a&>Nu{d!t>~wLyW2$0N0<>MV#5JNMC9x#cD!C{XNHG{07#issSn3*? zhZq=GnHpLdm}(msTNxPCZdVaS(U6;;l9^VCTLaIlIV*u0BtbR==ckpFCl;kLIHu$$ fr7C#lCZ?wbr6#6S7M@H6g)M`ptDnm{r-UW|=#}5U literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/AU-32.png b/deepsoftlog/experiments/countries/data/raw/flags/AU-32.png new file mode 100644 index 0000000000000000000000000000000000000000..febd9a0eb8360ac8577b5ce5045d71459ba40f6f GIT binary patch literal 4170 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 O8vtc_4Okfz9{eBj*xeBT literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/AW-32.png b/deepsoftlog/experiments/countries/data/raw/flags/AW-32.png new file mode 100644 index 0000000000000000000000000000000000000000..8869ead3cd251a0977c0798c8074d7e4a3496f03 GIT binary patch literal 887 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfh&z@Ck7>o_Pi+VmzWqoP%C7PwCA#15^W7EH&e-_TsC@ikhls9AcPz z$z;Z9h(?V$=Yi^v6*OF6U^o*Rw{*%T*98~!z_LKYf#y`rICv&3eqQ^^;5nx)WIIq)GzX|Ybk1ppndjhk0c`}bf#$m{xByfS7YA!W4-Ko?r)^-t0trBH7_J8g3yA#u z-5VY_K*qVd-M}D%qZjWJ-~j~*aJ1lx{Wo_ZFm6;!g8YJkG!*=nsHm#^{o~h9_6I=%5+X7}Qetv~o!*WiB|bSZ zHBL%?@h@hms4ic!?BTbxDz~(-GCw`32WOuqKWf)Far!tL%O}>EtqNRRT-{xUjRhMy zx;0!JJu@RM)dW@xq)% zAfQDfZ*;&|I-XT ztrHlWS4xE~F^F2sV88Of@^WO^{@nr)upde66)HA#v7#xx%L4LtN8U%jVv!Ee? zwQi??5}XAdk;OpT1B~5HX4?T7^E_P~Lp07OPherx%#@6@tYmdnP4(nRnEoW;K?(~a z+bL0x#)hs{vv##Do3^cQod`>TXQA;&2ay+z4f`4wPTbhJa^}ufIhGHvJ{o>@7KvzT zn7Xxh?cBZ1izjbZW#Ne6+Qi`~vZJA4_3Yj4%cpPeUq7Flg=2TehAt}Hj z84(pOOYB)Xes*v66j<4?K$Jz+^TKQv=B{rOSs7aW-E70;nSr6qpjzS@QIe8al4_M) zlnSI6j0_BobPX(Zjm$#~46IBItqe@H4UDY}3~INlh@xo7%}>cptHiB==hYmL4U!-m tg7ec#$`gxH85~pclTsBta}(23gHjVyDhp4h+5iLG^yeGJnM!v&876avxFkdi}YNvEnNUR$)~ zOvR)l0YyiGi;e^qL1dpYh=P!);u8jjw@qz-uHJZCQv1py>Y2FC6K1iejNDHd#DEI! zb6ec!vA8d7dzXRX`}Nx|x+mObU;wh;%vt*5_JhZMN%t5u?u%H1l<}E@5WnetY0G;+ z#W(Lht82akR{U<&#y{^qJc-P_#~^oK!V;+LDT4trdM081n1SKLx*$-D%dvQmBOZ$9r}tdjvGH7I(uJHo>Jp4578D$VhB`y2Sbn(RFFaf{g1@8P=tG ztZO(1j4I9okH}&m?E%JaC$sHN9<($NwdHkTKa6qOa07JvWnrHPp>Uq0TR;{!hj4;LRNFL!@O zPgfgr+l(7KDl|Mie7yWTeZ9}0ICBapHYdj7#A$sE9W6agUG4QNTA15bWm&9PxpsAa zMov~QY~?fC`m~yNwrEYN(E93Mh1pPx(1fI zM&=;~23DqqRtBcp2F6wf2DRH&L{T*4=BH$)RpQpb^J>mYpaw~h4Z-e@3c2d)LE-rRm=yw8NU2aJI30h$j}05T1T#KnQ8b#-)t zOe-we?Pt{X_J9dUR&+VA#6)s+@6MXxj2A<}II80O&WKL)2 zfe#m5n#29E1#00owy1T(%E87D$1gZeZ z4Y#5qR#-c&Oz;7@0jM3WvAumi*cW^JjDfa;Gy**f)3|=`-rMnUEA3q&8jXQ|{Ck@3 z|0Q5Fg2F*e4CMa4zJnh>d@nBB?GG{m6$|NHm%-+wsx_vhdL>CDL|fbyIL9+ALA z#NYwOZYQ(t7#J80JzX3_G|ndr2qp@orX-~$iY5zBpD?9~DN{1ivXWI$AwfVeFeE4} zFf{o3g)5h?HLkoc_2Omo22BH#q~{NwJTfygG&OEtxnaUa7Y%`po3?G-y1Bfdq^PX0 zb=8Imh0Z|=kKR3e`Sk7M*U#kzBv=9)mpL5KvQRP6u~9P8vQiUU!xY=-5mV!o6jbDu z6}2mp&4aa#Y2ukRZ|2ZkBEOyFEW6L^_V> zM(oJ=IBDtWY3n0)W_^{?;cBRh+@1Hgt=DEx&1|#$n_aGq7kYAUm%q8Qwfg+M+TZ*M z!3s&G9|Zm*kackgtHD@JIgCxj?;QX|b^2DN4 k2FH~Aq*MjZ+{Ezopr0QYF_fB*mh literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/BB-32.png b/deepsoftlog/experiments/countries/data/raw/flags/BB-32.png new file mode 100644 index 0000000000000000000000000000000000000000..83f15c0442a38fd5334ac500c87bdf366c0320f2 GIT binary patch literal 701 zcmZ`#Ur1AN6h0$bB?^LNrc)f5C?Q-Yw!CGjY`LYW=>m%$ob66UWO^Ij=9IQ_MU<63 z^bc|VPjkBt!vftk@J~7`MexC=vWN&@5`v)S-RXC&7a!tqzVmT@=R4=)ce|u0KO!tP z3;-hZI!!65i6kR;?;x1-p|uu3w!fs%pv9FH?CC*4z|m2RkHeoGwY;*(YKDb6i{`IPu=6>{dt% zhj?;J>~iDF@rlLJ#O`6FmnK#vFG;?QP8pHJ$j)shWD>~_fsd1Bdr z5|$0|ya*s3REUv)O-+9XLiEv3lOtnh5IBY33gT7HzvKfqCR#H@Xz?WpxZ=zHi zg+fM0#;%W3uP=JlrpQ$}7o2Vj&wIA-IV2f zEXNw|Cx0d04q3J3R+G`n(3e<-6i`v=sx&GqO{F$a6rGt)Q<;aU44R^vUnT9^CaANR zYRtC(3&PhshKS&RbfL^*wsJ<6fn1ZNl1bFp8LOC5#%QuN1eoJw2=v+_4WCzW{SO9V BQeXf8 literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/BD-32.png b/deepsoftlog/experiments/countries/data/raw/flags/BD-32.png new file mode 100644 index 0000000000000000000000000000000000000000..9184dc5b7521eae06436fa5fac521d57a7348e18 GIT binary patch literal 1119 zcmZ`%YfMvT7=GGvKx$hrm4XI8Jp{S{Tb~&c0V)CUJZABjCP4Z> zf|Bm(vj(Vzq!w@?R>1Ue0-1@R`0 z95Di9E~rHj%1iy!h#4tLvVq0Y*%)9Vt~=czUygL+n$Y_c{bMYdg= zlsac&@{9A*Usy2LSF+XDyX({LGi`^uKI=Hq8-GOF)Tk^;b0@4@+A3R-;!v9uobXVy z*Ww>qe7ed1MD>AjAWm+z-WhIOntS$4>!!xQm`s{6BZ7N(`$+qapGOMv3-lMx_uEr< zmKF|{tQ_LncAM|?{-scPxQ{As`j>p3#Cb>k+zx%5yrXF4mCM>>pT%tX$#Q+Ly8QJu z_r5uHdvN%>TSF&re|z&<=fML<`%Z0X`|Z5p!=sOk`xdwM7k}mJ`Z&8~VA%U-?4xvR zZ*%lsU$v>y|Hf#?o=+^ND!!--w0GV}F8bQ}{lm1%KKH#Ib&Ip7=hs_jYkof$h*BkH z>ff)!j|*2n@R>U1Q{U!#^yMC>-NWZN8hF}}smsVr(=AEMe95fS|B4gyuMl?3?(Gcf$w$HWl-Kwb}%WB5^s{!~6VHR*Q9X3U=u5YesNNv8f#x9P?c(lYeY#(Vo9o1 za#1RfVlXl=G}1M&)HN~>F)*+)HMBA?)iyA;GBBv!t|E$}AvZrIGp!Q02A)@QRsuCh vf@}!RPb(=;EJ|f?Ovz75Rq)JBOiv9;O-!jQJeg_(RK(!v>gTe~DWM4fdpKGS literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/BF-32.png b/deepsoftlog/experiments/countries/data/raw/flags/BF-32.png new file mode 100644 index 0000000000000000000000000000000000000000..d86bb323f7b7cc1796380d85b68cd67bacc3ee15 GIT binary patch literal 812 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 Hl+XkKSainf literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/BL-32.png b/deepsoftlog/experiments/countries/data/raw/flags/BL-32.png new file mode 100644 index 0000000000000000000000000000000000000000..289b805efc6766828931062db509ce61b934eb20 GIT binary patch literal 332 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!VDx^^%AmxltF+`i0gkKgMk4^LJ$K(8Y5$x zm{OSPyYY^|L@vL>2>S4={E+nQaGT$a=ashDcma=HTUBJ!5P3)s@x%@4b|?;Nmjs z$zfzzkXEztY@e_`P@!sxYeY#(Vo9o1a#1RfVlXl=G}1M&)HN~>F)*+)HMBA?)iyA; zGBBv!t|E$}AvZrIGp!Q02A)@QRsuChf@}!RPb(=;EJ|f?Ovz75Rq)JBOiv9;O-!jQ TJeg_(RK(!v>gTe~DWM4fosMHz literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/BM-32.png b/deepsoftlog/experiments/countries/data/raw/flags/BM-32.png new file mode 100644 index 0000000000000000000000000000000000000000..d79f4e00116165d8da6e03ac2b75f45acb4c25c1 GIT binary patch literal 1210 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3HGD8EPYe6kC$Fy9>jA5L~c#`DCC7XMsm# zF_88EW4Dvpb_@*6mpxq^Lp+Wjof4fB5-QTRzx3S9>geS!OT1DuR7EZeDd`4zb96Zz z5ePiEK>ybh=C+J47mr9haGdNmv0;+L7uKd0mzE0dFjhw8(1p{=o~U^(bn;H;;=BAZ z=6vdJgQe5A*iA@?IC<{g&Fb{E|NnpAzbz&wck7{k-Ro7hqHlgJnp=MVk5q{K?fdnu z$Myg7Ogp-8S9|3DS9)Hvr7G(3I<{VJ*}1v7Lh5;O=3%xs+suwUZ_b%^o40lb>+CJT zu|dg4pI$ur`N>W3>0XCKc5XkU|Mex~!NMmskuDvxFYQ|5bj^fiNm^!i%(_{s^7WNY zS!H>`^$y}wx3WxO*lyahOSJgs>G#gsUoT&&Zv9mtS#4J_Q+lP0^X$IH<7Zzz^|g@= z3OT#-@XFbTFP`h3lk;9JgJWKs+nnOq1-lQF9b3`a6V2Q=D~K^Uca3lkx3}Xt`3LX! z*=@0{F1#D;_UuHUfTQpR)4AU1^~d|_UDhTS)~9l$MlNY%3uHJYw|sS9i&o%a%@g7i z0ys*I8F$`EVKCaX@=^1RMGM2jovm7nKda496Zw=dYsC}$8?D(pva$kZCQ5jT8e5!8 ziRx>Xly+D>ukD4^v#WMIf+?STd;W^{MsV=2n|EHBJ8f~SjknD&_Ejq-MKzpNg<0-Z zbO#tXyi2h@c~E8fraHYPn_iq$>Hc%Pu$Wg>Y6@$DMr+kGO{r};s+VO|#k&KyW{KLq z&sE!8$sLu-!M47i=|Yum;>)fyIj$$2^_ynPf0Il8+jm*U;!^MF+y`3v>G$^?-t*yB z`yBn5edW(;Z6@qHvZjyk+`o#(8h;_)uJ`YY7BcKL>PfF^33KQIWyM%=iAHgZ``VDE^Ys9`6Juh&bmKXV*yv?pHt5^&z-+H<)PcQ+Um9| zi&Ax}Gga4b-|C-PV`RU)o?{8ilaJsX(-C$4NvP}y=rhjHyvHtj5 zzD-uYxX)Lf4v>>S_DwG6ri#WgmMQ%3M6|U=>eJ-^jsMvhj`~M31U~R6oTt@e9a}NwribIvdhzz8&v&lwc+K#S z^|)^Tekp;LyTE*|TH+c}l9E`GYL#4+3Zxi}3=EBQ4J>ty%tH(etV|893{15RjI9g| zYPYM1qG-s?PsvQH#I1qn)tr?;4U!-mg7ec#$`gxH85~pclTsBta}(23gHjVyDhp4h R+5is4dQ`RD1}ac>q;wR24x$ zOxcFTOFcB0!1^OtZvb2D!LdgfAJ1{C$LFz*e(Zu;Ns!92U0Rrj^8W@(5a0L1NF-wJ zFR5A5^Mu6{*x(ds1d*Wpt#N=xkO*i1swAXX8hspAbIi5*CM57D}P zxYfJCc^Z*sR0|Lepmq)+SGGt1QXor_vQ`+!aR|eZ)-|i>-1Z{tH#|XWYYWZID@mnN zI3h$UDsYV9#ODXeAO4D339+FtHFk^Gp4WMP|J%5c7=?V1cy$F}(J+U4BUtY`>h)p$ z^JvfoVFp!$h}4Iwl_r^rvZTgmdUA}>i4YNRj6*35Y47OZ<#>b*+jr8`@eIMWKH56B zkv@AC4Fb0A-b2rK-?FZA8yC91C!ZbXxxH^;t;Lx8+|>XLXHb6>TO2?>{>Tk4^{P4k zlhT(4$GC*H8mMIX3YVISB3EvXvN2K1d$kdIvlBF|ZspUKExe;X%`L5@UfWCf^GPb= zHDr$+Wy=R2QvFE7d{*S%Jlz*^3DXjKJ|;J77@dIh2=omq=YJKtPQuuvvMd_swm-|k z?awkDwXAC_vHz1Z?A!V{wb3Z=cK^bWS2xl#UZSPtDe^mZ(YoSMQcX=H5(y&F=mYs* zfXeqtD5A!3z;VDBuoenM!%R-dj0;0IgbM=!%Z_cL``jcuU#X$3YAGYbA;uUQo1=_+ zQ+#nML+6S{-aLMe8UZRQ+4a&cHgDO=y7qQftzJVinWV119@llt3KaS!1U0IQI;`Az zI1V@l5W%W4I@~}eYq@-AIW2XS#N8-Cpv=r#ejCj5e)lcb8iiIpUMvCQb zGzM!eE0;I%LgzM~+`NgkZEbe}{%TGwK$S-Zk(hEj-N4}CX6%@Y8?gjMgEwoaU0WiP z%+S?4%*C^Y)0Y&-xLB=1HBPcILVb--ZhDkV)*>>0*na|e0LTh%R0#q@ex?q8Y6)tE zSYn!r+G(odAtm21dq>Gm3d19Y{xn?dRgQEk0}COK163qb?!y6;RgrRwI(qj8QLv$4 zLlC1lW>KCLygeSaefwW^{L9a%BKPWN%_+AW3auXJt}lVPtu6$z?nM O0000uYmBjza(d;Lz2% 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 YpZ~w$=+~#Y`+KT;S^rX@hSh`r0%BRmj{pDw literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/BQ-32.png b/deepsoftlog/experiments/countries/data/raw/flags/BQ-32.png new file mode 100644 index 0000000000000000000000000000000000000000..3b20c0b71f65b280a81d69d00fe4df4b1c052547 GIT binary patch literal 665 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7E^soMcQA+GCWG=R(vx~9v30(0R1o;I6X$1K9PLPol+_L4g0#G+&lDE4H>yP}G z$AKKq0*}aIAngIhZYQ(tfQ)ue7sn8d^GnZ~@*NIfV7VxtmR9n{!1#F2cl$t*+}*89 z_f#zr)CvyhRt@a?)A66VcV))as4aaC=~7jjMYEL+X7pWrd-OMlPg(-s(jy#=M^8*M z^79k8apuarv%%dHxZ5MGR+m;aA4uKyE^of2!iO1)%dOJ&IclE0y8mt`ds9Ot+xqf< z!g@cL5}i^^njA5L~c#`DCC7XMsm# zF_88EW4Dvpb_@*6b39!fLp+Wzosydq94c|V{`=C`r{8VsySVjr7tf0)w*w+QI_Eox z&yoL=Ai+6HC-AXR{G)va$vy=ZNl7fpZXO*CE;R>lbV}JD5Q;BoDr`FZ=BP_yS59g6 z%4_TLv&*aBe?9#6#GyAYKFq%}XHNCM^Z);xw>4=YniT5H<*M>hE`6rRE(3f*INmj(>seS zPW3f3neFeCW$e^$U;JfDn7}TrgmB+~Z+}e?_YdoQAfRZ%8!hePSAKA>uT*n0yJgXz zyk%-@b24T;etFLOP4y$!clp~s9y%#=KhE^S)tQxom&4N>7Bt%^RO(Lfb<*Li-R*iS z`mM!OljHq+k5868TVWHaB-nf_s?ozm?M8j$wz+eU1c&aaHal1>FR^A7Lp1BHEnO^g zn70*otBAZ%SkK|H(z9ZRWYw*OC*wI)IR0PtE5E<^M^=c;q{$UN2{kTHj<3&gNl(=J zqP6cAf1{V1y3m(>%**u`YGzLiVtX!dqpz@AOG8{?YWqLif-HTLpN^Mh8UC2;YYm>i z^GD)^lQ%YqhKh3BG53D1UGKE`#QFU>Yz~*-nEZVBckhS5?JJja9Js?({D6(ibe^yD zi^XAey{}uAu}qN7ST#4cfBB25tTw6gQ+wPTcUx{r>BwXjk-Wus=-pofBgREjSRb70 zO>XGh?Uyk3zJfr5wNyxxx`RjE#WILR-A;d14Phy&Z>o?>s}7Mr~P(v#?hm>k7ShalGN(aPrXOTRW8nYJ}G zX3m*MYtB6gR9JHF**bH{3)7TcJ|#>)@ch~io7E3jx9%_Pc;4NnV{>rRF76-V?k|EK zrrr6u9++WOOI#yLQW8s2t&)pUffR$0fuWJEfu*jId5D35m8qeXfvL8Ev6X>A?RFJW z6b-rgDVb@NxHa&+nzIt9K@wy`aDG}zd16s2gJVj5QmTSyZen_BP-E}ZCLq8dA_Alt z9UK^zFBiLbLF~dMhSL`r&s=1{L_l>w!$m~6c-fuul8@{yd3m|;;n|{lr;8q(K|_Tg z!@0RRM1<@V8TLtPk^kp~|DG29 zcLssLsu-Dt1$p^^%0yDbMQ&{ZDiis8TIAmu1OkQ?mx!RZ4#V-;4FAug+sMGe0t{Ym z4p8{Gmt~zkQ2z3A$%8W`_fCUIR8$PIQBaUUSeVhvi($2<1 zl#mV_0FkhCRW|>bGth0SB|(0{fByZ2fPa7g|NV~uU^YnT@BcslTV5%e05xzHctnDH z>LF*Vt`rE~)`n_O(1T^*yN zVxnN6p^n2GM<@TF`v)$ZxN+plnLCGscq1Zj8+hFCx_Q&u!pd^@j$J#eD;6>7=gYHk z#%IRc|7W;=V8Me47dCw05D}0R(W848e^l)n~IA* zf8yrq?h179)O2x-OsjNF4K4M}jjd(o%E)Pox_IZ&?OWIGUA%eqZZlg0S4vIw?_cUZ zb4)5vUCF$hzMx^|<}~9I=O)gw)-V3o)Y>hkAGs^XQY&I(k!bUgEX(_*+1JUO_QmvAUQh^kMk%6I+u7Rblk$H%Lft9JDm4T_Yfw7f=LG5-G zP$pI_foaIiPsvQH#I1qn)tr?;4U!-Y!TD(=<%vb942~)JNvR5+xryniL8*x;m4zo$ RZGegxJYD@<);T3K0RS&@=wSc= literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/BT-32.png b/deepsoftlog/experiments/countries/data/raw/flags/BT-32.png new file mode 100644 index 0000000000000000000000000000000000000000..d7ee15bd76a20210ca089604bf198fbf52dbd5ee GIT binary patch literal 1008 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3HGD8EPYe6kC$Fy9>jA5L~c#`DCC7XMsm# zF_88EW4Dvpb_@*6oSrU@As)w|9p4xdz-wpOEZ_ub@5GFyLN$6NA9kb zZ!fX$(9mNo&x_$IQ|;Jstv6r=hpTqpk)^A-w*5Hfrkjyty+pBX)*0o`C+40!Gk4~1 zS#je97Zm5NWPkVWQ~lh}bCq{B86~dddZ2WPT}PpTv6s#MNT3wQ{ouzk?hR7wm5cu6 zt-HZc$W-*GBiZ4WK&qqcg6>Of$%2am7}hbEKJZ<@`o-<>QMFQiwIxBVS<1%`e=fDT zo^*Bb6`NCYc5~Tt{#o0%}06jCiIDGP7yj` z{(i#xT@&6mZ*6{O@mslH)uB*e<}$fA8}3%kadtm9p^N*j&pd@ME4NoYSs!~OpK&I~ zqL0;9Z4DAio(5jW+RvO}k~KehYwcVpPO}g$%VB&r@1pnovKh&X zKQTpLoh-wlpETQ*Pfu3;gWRIKFN;1rDYo#Rdytp$<8ih7=8Q*Oefq0jYg}*Me$&vq zXEJ@0W|?xwnTTu&>y-0dRN=Cg$IA5jQo*(#U9(EtD3JU-d02^HK9PYwrecaY4{ z-rTOs;a^iLssBSnNNi7~31{cqQn6W#KlvVm;sQ^6ceJEM^Vs8;lAVHZX1b_5N*u!OTbnrs&=J(|=#J zKYzn)xzXZ;wZPn=TH+c}l9E`GYL#4+3Zxi}3=EBQ4J>ty%tH(etV|893{15RjI9g| zYPYM1qG-s?PsvQH#I1qn)tr?;4U!-mg7ec#$`gxH85~pclTsBta}(23gHjVyDhp4h R+5iz9h&m7)XP_ zzjuO+*zn)_WgyRS7I;J!18EO1b~~AE2V~6lba4#PIKTCxJKtdi0f)fl-|uM~B-|<3 zUbyrBK_$VB$AYG8|0iVJ+$wO0MI%{+!|fD{Z~C=8-&6m}CG_OJ+cEFC)tzIfnDoQ{ zZsp@pyu3uFrN4;IPo~pnW`nO5hW>! zC8<`)MX5lF!N|bSNY}tp*T_7?z`)AX(8|D6+rZe$z@T=!iYSVP-29Zxv`X9>cwWs} y3Dh77vLQG>t)x7$D3!r6B|j-u!8128JvAsbF{QHbWU38N5re0zpUXO@geCxuEFR~k?Y*J4Fg>*`S{DPt8f~ep1Ecj7!Zn+3h9cO_@WHFHT0Ash4*>*ri zrKgKyh{pM~7u|)L0vK2>_BSXk&`4rnc4T!a+V%gUM)tPgr%v~GmFpIrI^nx+fROB7qSz~u}2z-yZ(0aqm_y1RY)Sba_H_zjRICmZ&&=IO7t`Q|Ei6yC4$wjF^iowXh z&`8(7QrE~l#K6GH)X>VnRNKJV%D|v@yNW1^hTQy=%(P0}8hBpKSqao239=zLKdq!Z nu_%?nF(p4KRlzeiF+DXXH8G{K@MNkDP!WTttDnm{r-UW|-8kV9 literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/BY-32.png b/deepsoftlog/experiments/countries/data/raw/flags/BY-32.png new file mode 100644 index 0000000000000000000000000000000000000000..921d1ef9ceefec5d0bb18baf689e5cf85b4c711b GIT binary patch literal 4099 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 YL*rK`$I|{~|DRPy^QuOvx^?h>0JU2b!2kdN literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/BZ-32.png b/deepsoftlog/experiments/countries/data/raw/flags/BZ-32.png new file mode 100644 index 0000000000000000000000000000000000000000..7c49fa0782c43d6d99b94b966a23d677b5e925c1 GIT binary patch literal 1085 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3HGD8EPYe6kC$Fy9>jA5L~c#`DCC7XMsm# zF_88EW4Dvpb_@*6VV*9IAs)wpYrtb%Q^d`C(pPh;Kj2oYyJ|E z)wP1zjx6ya@=NyJ_%*40TZ=>Jn{JM#js-uIIus&UJ~lfA9$B=I)il#NdeXXOyFAry z=9vAS`E!?D%GQ$f-MwE9B+fWJ=l|ck|L0VW>>b6hc`zF8H>-5nSQAajNo_M|(He{V6+Mv^Vy_+KM~& z5|5`Y_T1$rtK~NH%bW*yrW@3rb1h?M@fHg4Pxw-BO9>MG*y>A=9(k-*laSy*%j6{D>!6 zUzFM_+J3lA^4jWUlUL|FTkUMA**=Q{7oT%U#6Gw!a3_e{azTa3lZKG3!vANtao!X? z`Y&V(^YPPnI{ZEw9S_(%slV=5i}8HF4Z7ze|`F{0?cRLRy%P5(bPtF#XAQC;Hj zi|NBhF&~yD(@!C*RE?fm*6o=0>_~KNOoW!<i1Z$F{48)K)>(1E zV)i#Z=Wnjx)oEkf`F>_kikn8-wZgeZ7q6)lpR_;0|L5q3H^F-hrX+_|NbEYW(=<$q zXVC{!k>(g4LvG#<&1c*n&i>3h(;Oa|)+oX0vuMrg&_{=qDwC&_$LoH&SsvP^+ZoKY z^>Qvl=C@YHgk2jmh1Qg5++<7^*8C>Rwo|!XUAAYdSz5h`#m_Xkuvn9o52tT4>T*BK z@VxT>x%#sV8)db&b*nTTHB)JtR8SByHN(rjifQY;4ZGMD{9~?YN>*gJl6K$ZeBKl( z2Tks!B~xCxuC$xdWwQ2j_W9%4lLN9{e)4a7So_j?nafjPR#Po;jVMV;EJ?LWE=mPb z3`PcqM!E);x<=+91_oB9hE@iq+6Kl}1_rg;RYXxV8U}fi7AzZCsS>JiWody{an^LB{Ts5sax1@ literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/CA-32.png b/deepsoftlog/experiments/countries/data/raw/flags/CA-32.png new file mode 100644 index 0000000000000000000000000000000000000000..805e52d7181f84aa115bc3cc8f6aa442d52802bf GIT binary patch literal 1136 zcmaiyYfKY)5Wu$xh?OFVmIMg(5h04HS;58^g3@tr9@boEh1!Z9YP_b5IBrpuoeD0s!{qoWWL1F^9%F#*%lBoB&GNt&FR0cUMn<5h2+GT0 zco>XEc<=yxKEflWQh{0xv$G_5aWQGtY6ZO>_U!|+87eDDMFbE-2DQ2xR<8z;h>%fH zuy!ptouru{rcjWao29Sso?AQX~Ad_2jFT_J!S;_zo?!0iT!geblODjpIN z;ObRU2!Y_Z@TI!CKr9A<0761w#R@WHGzLe3D|Y_!C6tvxYb!~J+T08k6=XQ*Lcxl7 zz)|BIf)-*0lBBnne6MeFJG<)kcKl1$+x6NUSeReoLwOQwl1dhy+p%hi z;>4NmI^NCSaq|9F{^7O@zBYf&t-q=-o!`G(#~2lcOp`9db$*!2I?>j^ch>X1rmkA9 zk^j@dx3>uE#4}M&ZSv#f&Hh7ElFNCO$E)T7pJ$hPy`kY@r+%%gRbSh9`rH|3cD>_l zezt}&WNQX9wdpw*Jnq&uR}<%IX?I=x&2?$N?lgbRd+&yU`~7}~lDmDYkmK+8C9fJp z9!FO4fV92zLqc-PUeBv{&dKqACZA2_H_=B1EsYyJIkKBsYPq>?EOVgXkGGFnQhJ9pRc@f^ zG+9a-E!#wINu%kX@2(dw3MjQ%ezaEocR=L(D?SW}B^7dPR{Jq?8B3*GYzNpino@Hy Xt7pxYsv~{uPJ}3pQmgQ16xDnM@EV<% literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/CC-32.png b/deepsoftlog/experiments/countries/data/raw/flags/CC-32.png new file mode 100644 index 0000000000000000000000000000000000000000..516fe3e34399eb333574bb05fef01df75a6a82a6 GIT binary patch literal 1009 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 literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/CG-32.png b/deepsoftlog/experiments/countries/data/raw/flags/CG-32.png new file mode 100644 index 0000000000000000000000000000000000000000..3dfe2e8d0ba2f517c5f74f15064cbfa5c9049e4f GIT binary patch literal 665 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7E^DVB6cUq=Rpjs4tz5?O(K#^NA% zCx&(BWL^R}3dtTpz6=aiY77hwEes65fIEC2@ErnQg%jsyYKVsfzOWzK0krv9k1W70)E``dYmZBGCzS~b|S~T zgsI0u{y+BqdEe*fUGLxT0>2z|ylW?TO_-4pWJ03mir8~k{r^Ap`VLg^$oKc#z&BG2 zZpg7-6J@%o$i_53A!b|Tr~5u%?*k3@{`J!T=RNNyY4X3|F#TA_pZ7su4mdE(O4ME%d;Y5b&xgKm zCL4rrjeL90_i3)uHGYQw|NrxyHmV2ukuk~J-Nij&@5yQ)hqJ&VvKUBvfU(=jY&#%h zy{C&~h{pNaGcU!Q0wh`!r(AMa=s9_xNucM#%6aepPdb$-s=oYh`To}nHEK*Idu&>1 z@;y#%_UZqB_5^5jy_o(aXlKyTcT(%GNS~ed{dDeD=2+cd-zApX3$)AGU+VpslErlH z{2I&GpSf=v#xl%_-^94T=_{Lp%#jZh75eyDKmIXS_%OfW2s`7<@6Gl$Tp5YGxhs}eU1IrLYQ!5h-D-hSj%D`a5r*{r08glbfGSez?YdE+*><>@_gQu&X J%Q~loCIC{C5VQaQ literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/CH-32.png b/deepsoftlog/experiments/countries/data/raw/flags/CH-32.png new file mode 100644 index 0000000000000000000000000000000000000000..5db01ef20ebcb9a57fe1ad483224126b31109cac GIT binary patch literal 404 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3HGD8EPYe6k~CayA#8@b22Z19JVBHcNd2L zAh=-f^2tCE&H|6fVg?3oVGw3ym^DWND9B#o>FdgVhl^2IT#;v8!$qJeBAzaeAs)x? zPTlCm>?qK-KeDgo?hQ>g>3D^Lxe6S1S4+chb4JBJKh4qTV5O*^Q0(FJyh>xz#t%07 zySj?1x%^CZjL+DAK5wtxeRAKWgKFK`FDK>yNcMK>U)2>R`uf#B)}^H#TRS{T7!GoF za6Hyg*R{=jDVbiWe{}zngug!ozEm?WSoKzr;ceg2I_@LKZZWRaD%-s0U6_QdjG1Hp zz9cs1JU@Sd=ZhF7giG43&GYpBzjn#$y@DsdowJ|3aARL;;XcQM*De||lwbD#Q*$jK zVNEx`!*Tn%2WRDvSscoisQ;$Z6X8=G6qjqKbLh*2~7amXq(Oe literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/CI-32.png b/deepsoftlog/experiments/countries/data/raw/flags/CI-32.png new file mode 100644 index 0000000000000000000000000000000000000000..71b5e95c87e15b4170a1b0e8f0cce46ec36e2b8e GIT binary patch literal 579 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7E^sa*j+A+GFa*?~;fv#iMI|17cp zuO9pdf`9)&B#;Ke|NpygcS)U!C8<`)MX5lF!N|bSNY}tp*T_7?z`)AX(8|D6+rZe$z@T=! ziYSVP-29Zxv`X9>cwWs}3Dh77vLQG>t)x7$D3!r6B|j-u!8128JvAsbF{QHbWU38N O5re0zpUXO@geCy_T;YEJ literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/CK-32.png b/deepsoftlog/experiments/countries/data/raw/flags/CK-32.png new file mode 100644 index 0000000000000000000000000000000000000000..65a2b29605d04f7304142672557406ab7985ec2f GIT binary patch literal 1616 zcmV-W2Cw;vP)q}IrB}Gm1(yD1Amxn;2w1P&h zf^s1x5(Fo-lmuTC0|w(EC6wUt1$*u@XXcza=j=Whr2_S(5}&lCEiLV}el7jKwz%@* zE2a94eR|9dh!+nG$=$n70(k~r`j&U!)iKXoNHW;9MgH*7gEH9D#J2VdzPDWWHmqy( zoE2T%zw;gK#JdR*T54dr3V`~6r0hW|X(I$gq6Ps?Fjw-p5iM?Sc-EMV$qp?i?%KGD zZ4Y%bmCn%GQYBW|38~DYoQ&QgrpFd|;cL}Avc8sE`@2Of+$f)aZB)Lw|B48=85CSa z)GyFIK`NG~WI6PIp`MPV6-=B?W6qYSi24cpB_&6JSQMc5Y`??%m)|elpq~x1NqU>2 z9DMb0=5scsfm3*8m#tgYvb|B#w7MOuWf|{{UgXqhjFu%~I=e$$h+FtV5_77Eoq^Zi zevpxmF44d7Hi7{kUAK+$1rYz^7HVwmlLft7&vedT?a>j?j}+QDR9#{oT7!+SdW)CDQB`!vY=q$CX+Zh z6SwT4H`PP2h-;PbJPDowhJ;V%`R2AAIF3jE#=SJJtY9{!z)>9g=N00UM>ur&QEFE{NX`9CS;zD?4vr&X>!igEKel&r5$6AVi*@ye-6p>&4ikhk*V&WXL za~X#722-Yun>TrR{}|`blz8UnYbclw$A_mFp3G8PsbMLQfG!|qy7ab%`BGmC)zJ{o z42+=#1@eQl)3Udxjm`Cv!r$KJ=-xy8=-Cnedh|3tUEq&|dHu~3?D+8>PCEf2%}eMr zKc(g5F#mXKobxFMiXQiWeFL9gx0K;`uh3j$khB%~vLahnq-;e~mBGmS)2vzD%mdr| zAP-6@w84G9+qvXYOpd=d&hFt1KN~A>c65%r?`@|wH;0`s^6&aKo`3G|?Anw`wY`ns0tr*@dT&NUS>Xz9}5MCN?j5kPa~@&o4?V4xSD0~P=fw#4g7KU z_u2FE5uW?SD7CA@ByPxjjbD;HSKuc(Id1nfIp&9 z7nDq&&fwPtfB5YVnj(_?`66{8NyHFT>VmqEBpUN_7-ytP+pLa4UE9-$KzW zG7+0$^kfdIH3aQD|5yM23tbcVG8X2n#l(fDIWztV$BxJFJcV6$35EQu?{4LbcXrXy z_G^d=jD{d(SKS-|D5&%adeSaefwW^{L9a%BKPWN%_+AW3auXJt}lVPtu6$z?nM O0000@#DXT z2axlhhlh*njEBdC@8AD`#Bl?lnjb%Ks{tAaM?jO|2xtWy@$dkxgCGWmGY|x{otqoT zJ`J=PA|fn&R#fy15J^g&1&YJ%1~0mjB({|9g5u!v_>H>`=tW@t+$JK0b=`CIh2NuO!GX z7)XP_|Nno1;MX1|hCln5K=JfvACLj!py0Jw->_xVwvDD6 zjT@OAg%#NnS1?txyQ`;*hYJQ878+ViFqqh)T~Pe}!B!vsb?Z`b)LMHKHUXu_VKd7c z7#LWY8d@2cY8x0^85q=VR}n?gkei>9nO2Eg1JA2DD}fp$K{f>ErbP0l+XkKC6l7Z literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/CM-32.png b/deepsoftlog/experiments/countries/data/raw/flags/CM-32.png new file mode 100644 index 0000000000000000000000000000000000000000..c81ef945285c7d75a8bfd045dd9490ced6d41e92 GIT binary patch literal 620 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7E^saF9$A+G=b16d3}5{?*VGVsh~ zV3@_=F@@oW1_Mz3KMTWu9)|xO4F7+?lrb~>X9bIMgVg}poDBcj82ZNd!y85#Zq9RoDS11th`rzjW+fNcjl9*B5BvPzBa zbAeuED+%%oW?=aDPLQ#GZ-*vOgtNdSvKUBvfU(=jY&#&M-_yl0MB{vN0yAS7pPycy zTwY#Wo?RWIBO{|4W11LSn43Vtf@MsKiGqPPTt{{sRaIH~L1V(RX%nYTejavUsY9S= zq?_y1+0nkT?M%GBy1BBkwt2P8F<}x#(vq`h6wQ9P>Cl~~+m}w=YP&7AT>0&ex3V&G zcg!u+DtK5{TKxUMTkZsh%BsrW1-~zu=xxwuU}*R(@$^Wc>;jUO_QmvAU zQh^kMk%6I+u7Rblk$H%Lft9JDm4T_Yfw7f=LG5-GQ4|fi`6-!cmAEzVyqdETs6i5B tLvVgtNqJ&XDuZK6ep0G}XKrG8YEWuoN@d~6R2!fo22WQ%mvv4FO#rjp-TeRn literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/CN-32.png b/deepsoftlog/experiments/countries/data/raw/flags/CN-32.png new file mode 100644 index 0000000000000000000000000000000000000000..c8645f9073f5898a36318eb09e67821963114aaf GIT binary patch literal 672 zcmZ`#T}YE*6n>UJZ02f}Wd-JtegreVt(G>ToNc*9j5$Yb<;6DlDPcOZwKZ@TnP@Q= z72brYgp2T^^^0jFcr#*wuB3~u47|vG=+EdvN>8Uxx+nWUx(9NDa;3Gkpzojs&>0E23REa5 zvYa2(3+e$yB#BXw2vSOx7{iv>TM@_!ssp*C&6yyM^?#xp)Gu+DY%`vNH!y}La>;`< z)ES09@ke9_?A987SukWoUQQP9MA2e)o#twm@?ffQA2&BGMuVd`J&}HDZI|VBycn3N zx>Hmk5RAcf`C{FWVy4M*AV zmVn6_@Oc8FzOGf|0cLv9fV#jMPkC6J03x7v2m%@c zK@1F+fTn>BEC8AbF&1bt#BiYbFe{*L_;CzqCKLhP<6!|b8IC~CLq>30V0Hm50$K+} z4;X+pA`r5TYaG|f1AVSr666;Q3IZ7TUC)9aRUT}u2P)<)@Q5r1(jH*!b~4)z$msEO zaSYKofA);4(4hbU*NgqTce8z0*|ED?;deZb>)yog4T|YCueoMEoo0I|`-jkf0S%q` zkIdNwR;*bdWz;IT#rm$C=u7vrhAhnwGkkm=U2akBOfZYrS$Rb(_pCxh{x)l^-P3a{ zS=t}J^m(e!S}l0+Ygv83()62wjte%fiaHzV{-Nr1Pusnct##Hl44OY8pQ%)qiUZxH zTH+c}l9E`GYL#4+3Zxi}3=EBQ4J>ty%tH(etV|893{15RjI9g|YPYM1qG-s?PsvQH z#I1qn)tr?;4U!-mg7ec#$`gxH85~pclTsBta}(23gHjVyDhp4h+5i`78hc literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/CR-32.png b/deepsoftlog/experiments/countries/data/raw/flags/CR-32.png new file mode 100644 index 0000000000000000000000000000000000000000..d59b4b8399760fcc76aa73c21e8439a77d97a5d2 GIT binary patch literal 726 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7E^ss8~!A+FNavw=(ohKb!1cm4nW z{~r+V-u)jasi^p0O6q@i_uv2j_w2vIz|f~;HyfxJj(}R=2&fm1fCj(;&@?y#84E{1 z^Wg|+5gY++grn|mpzRO@bORg#9Ro)|SHTg`d2j^w6j45MPZY@l`rf@H$S)Wi4hZ7U zJ|+foaH3W1I-n_xN#5=*Ed3cb1A!dQ0*}aIAngIhZYQ(tfQ)ILE{-7@=X)<)2OC7#SEE=^9w-8kvU}7+9GaS{ayX8yH&|7}Rc85k=9Eo1c=IR*72! z&#O5rff^)1HU#IVm6RtIr7}3Cxai6azw=Aplx0DL+g@VOGdSLSY<( z(WEz+=pzQ;#>ZgL8pEKEPo+{@q0~Zqdnl1?xV*VRd>p4Ru1-Hap`WI(ZRoXqd!Zmq z)9<<;#X25v!6~G{lTfjO)mX5aVL@c9FnAF`wIH;~flv#CD!xdATs8$I_L}W?$(M8x zX+T6X6R!b42>`+^0s#Xu>4?+rdvrHC4U_YRmkS2{w83CP{|Ta+$L0 zOm(-y(jU|lTB^0?!9lpXN*RsR`SUc{!vnH8$i)c!NFWEG&Ymvh%YO>Zxps|?H824A zd}w1s->|IB0E`0SI4A?4)^1Drv^(T-p+W%*j=(_- zxj{!qlnG_$fEq#(n(DZeBlLcu5jc?W_u-;D&!WwW<6Ar5Xb9`u;%S<romYlAi?uWh~xt+gMSnv`aSC~FI>BV!G&A*3v4gb=Qq=`*aD zi2n|GV0j5KQQYMpa+lCyTTyK038Z5!|A!9?_aK5eE^2T3&VETwvLyZ2f#IPi_iRa5 z)$gh$F6W}+qr}JU;Dms6z~s^{+9BjeSGWUCCrDc7rA9y-EK2*UR9TmIuibu5C(!A2O)wdHHL*$Q! z3x46{{M@Jh-lg|&LZ4bJqsl-3wo(w7sXe+`oU7!$X6@g`xh!;BcYvbcZj0i^DNle!(I6|2uF@jn|Qb uD;*(Cc8ENcTPy{8^JRHb@3>>Rhoz~~+jA5L~c#`DCC7XMsm# zF_88EW4Dvpb_@(mZk{fVAs)xiPCe@#k|=Vl{`uVM?2>nL4YvxGcivd!dQt0=>rA1J z*%^x4G`kM?&i>b|;hl9+jq8@`mduNrlr)+;7KrIC646t3Pa-31+gqHa%O zS+)A0zmti+kKc|JPFk!Vf86&z@Nv&6f1$uG*TXqs79}eF`R~*9;%}Y(F~iv=?_;fN zY4KAIrh+B~t=lWshc8$YFImnQjl$8@K2j|;M!R=KpiT6E}|k*iBV ztfT0fR`!0!Pho3yx)+EzvTxiby_8XX8^_6e1a@ zUiZ=IXD#EKVgqM|I?cPRxAT$`mOHc`tYPZC))wEjl5gh$1-2OR6-$^56P_QO&vf$O zC%51OXB~|A&2Ba5g=c&_B@*#KZrhE{O`BaBIbJBSF7Bx8F36etV0A#jpBD>4at_^O z`OSYv{o&KfUmNDVS)({t@6tungFhm4s=v$e=u+CTPP%*QtPL)!KfmydDBG}( zFD>m^#`}LxtJG4S%szd!@%tRxz5SDGoooK?>rU5Ko}{_EQnG4Z@HPu`_I>MPq%+ib zc;Cua9=f1>mm}S8t8T5!wigd7>-pqZ6jt{p>oXd%8%a7IaV(v8D~iKeL&U6Q>m!SQ zoU8Y~{AD4nTmwv6swJ)wB`Jv|saDBFsX&Us$iUD@*T7QO$UMZrz{=Fn%D`0Hz}U*b zpmw{8D2j&M{FKbJO57TFUd>qv)F276Aviy+q&%@GmBBG3KPgqgGdD3kH7GSPrLyp3 Rstr&PgQu&X%Q~loCIGKHR3iWY literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/CW-32.png b/deepsoftlog/experiments/countries/data/raw/flags/CW-32.png new file mode 100644 index 0000000000000000000000000000000000000000..a9f2ff62a4978f0b0097cba00cb614f5a7aaf62c GIT binary patch literal 1005 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfiT<@Ck8c(5?rHaO>4GNH@6o z)_i!N`Tre5TVp;0LzARY9Y_|2c=YOl2&fWBGDtN*k#qx4qq|=<5COHj`Br~=qzOkK z?rVO0sQLdr1JF!l)ZUa2M?kyUnn2dU5zt;_1attSRy~JuHM0i7J#YpBxlcLU?{M#Yi3|B zWzuPYdyriR7!(Df2K5~iHtaugB_U@vgH}DOPCX;oWM-XuWecDqEB79{^#A|=_Wtz@ z4CNv)!}$yv7+5QF$`-WuZwQW_#K2w2tq(F88fd!p{Duues?`h(#lkvuJo-psDA~ZE z*vO#P#30+i0A#}g780bGBs^^4;Rz2(v;dS74Sx%aTCC^ z1tI^#MZpZuS$c{{mZw~#S9o{1a*idRMi?HKHUXu_VKd7c7#LWY8d@2cY8x0^85q=VR}n?gkei>9nO2Eg1JA2DD}fp$K{f>ErbP0l+XkKXboa- literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/CX-32.png b/deepsoftlog/experiments/countries/data/raw/flags/CX-32.png new file mode 100644 index 0000000000000000000000000000000000000000..65ec36f33f9b72dc08ce9c2f2a2ae0504e92d54e GIT binary patch literal 1357 zcmV-T1+w~yP)(r36A`q=H7cg7c*%~02k`noOADa{Qu|s{@?$I_rxbQv#DERi+%wy zXpjX3#PVO8BQR)TM_jpH5q=G!*@3Ep)Yq8u*_@1iwvDlquTs6X88Jn~EdmDA{A+Lp zy!v28OnJY(NM6(WVvLA7(pdP4z)Zj8Q2b2=1 z&I6B93;pwHW$)qu;|s^Gy1d-xqf-vYN9ukk5au=N9H zdxa-|kMd@Z$Lg#l6|;0?Ew43N3N91@p|w*RJi!Qz%_yR<&?pl=*qDLwDwGtW2?_~i zsC|Twcm2dm>o4Fs9;GsTKNO)Dzzh8@_eN^D*ZQRz4E$CU4lfPayP-_r3uh-B_Fsr{ z(gznKObq)_QOHN?;t>iB!j;}CAAGcud`pt&o;{0cjld5D9@&%O!%IRe@HkThqwrRH zK>HQL`OxA5ArMjc1K8bUd9WqmyMYK_jkp}056;<1*=04%1es zOoc#*&PrUc7I1vZl-QPo-s{4*Gs4ds0~)+B&YL7pMKd%z;9!Y5N^=wz#gxN+5x$r- zc&^gy)Wqv6xDc{=V-pLqF`%Ec=Q4RNWXrA$vBwPi_FN>M5m*+*ScTA~=lpthKl3H) zn%j}6M@wdapSxd#!78jeK`v%UYL@Z9aH?oIK4Vy9pu?mdG`|AHl3lYmY$32+3{Wngy3!+CRp18 zjb}h0VKXc-;A5%I^NzW=F6-2k3#u?3)_yi8gq!0b(=&?XT-4rbHE9Dk|8!wdKs*km z!3fzlpGi@i;Rxxd5`TDvNP9QZ*o6f&%-qq?gk_y7Qe$SdUc>`F>3bYZ!eO$kx6u}$ z;3+q&!c++PxH3`^0tImtWuCKc9UUv-eV|0c7gV+M8ke^a=u2;-&;Q)rUA`upX$Hdl$5BAS9u$?*_x8 zWx!Ak@BZL~%0Eoj!05UK!GA%GUEiyM$ zFfckbF*-0cD=;%UFfe_$BozPv03~!qSaf7zbY(hiZ)9m^c>ppnF)}SMIW00bR4_0) zH8DCcH7hVPIxsK{>YS+n000?uMObuGZ)S9NVRB^vL1b@YWgtmyVP|DhWnpA_ami&o P00000NkvXXu0mjfNxWQc literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/CY-32.png b/deepsoftlog/experiments/countries/data/raw/flags/CY-32.png new file mode 100644 index 0000000000000000000000000000000000000000..f872ecacb13c23f0a86226c0baa10e5d0c329732 GIT binary patch literal 1130 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfa)O_=LFr|NkE-0whTX|4_96 zxo9FN^8fz-0|6ijW1vWr#(~%cu?}e7Ux=wF4*2~EBn}5ZUjF}l_5ZK8P&I#l{r~># z|JMiqzuf$PHU9sd_W$qC{C{`y|Dy%}@3j5D-~0c|EtqNl{{MXa|ANi`Gur=8GyFdz z^#3ID|C4P0k2Cx~CGr2&9=Hu)#_#`^ll~oL_;*I~|4GjOCmH^o|9`*# z|BvLJ|NsAdy!!XS)c+T3|J`c%_i)z#M|1!E`Sb_qs=vP>X0E!idHu~@-#*>?|L60o zukU7@opP?WK+^wEbW#~&R{*d5z(tnKCJ7eFb9nirp+Z@#(l z;>!z19v|6$Yx|d9U*LKn3{3Lz>yr(@1YuDUYh7ML)4n2Hufp9|&&CWn}Me0|PJoN44@Fk71T zBvC*IlvPzrTq8hErLK{Ah=GBXsiBpDskVW!m4QL+b`?<+ z4Y~O#nQ4`{HSoNevl6I55@bVgep*R+Vo@rCV@iHfs)A>3VtQ&&YGO)d;mK4RpdtoO LS3j3^P6&Vv8 literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/CZ-32.png b/deepsoftlog/experiments/countries/data/raw/flags/CZ-32.png new file mode 100644 index 0000000000000000000000000000000000000000..ce0c31e6cb6036c4eb924600ed37875caa2765e2 GIT binary patch literal 1148 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfi!__=LFr|NkE-0wn+c`0?Mv z1IYQ$!_(Vy`@@HyK(T)y0FuN7goV!v3Z7!yztVU^pWna7I@4EYNCiuk#nqzk|yHrGSW$@r<<8Sz%#> z+u#m^D8MiQ#eAS?5JRL;4S|RQt(E~ql4?)%c;=mAKg#-dn4afwL zM=r-R?YqU41{D9tAoPz(=syoPBxHbUPz+(3^@CCMAA{IG26mugWE0{*CZt16U=V~@ z0VG8kPP2m?aA6rpuL?vj1H;86roDHVQsL_7GA;bZsQs5g9B8tu(n?LB*`_5ye!(D1 zfZ*>RF!=pOkn!I;K}hU?;^Lhk5P^hHu*r^?nLtg9N#5=*3>~bp9zYIffk$L9kOr|m z7~D=~+W{5Gd%8G=Xq-<@c>dtYqh}AFIx^NQ`@_W3)T3}9AuTU4D>F4WE4hoM#i!LZ zfy?FS5ml9?OH!AlEERA#7ZS&~?7+2i_YPh>dFAF&(USrx!guc2+U(s^TjTrpk1z8E zO%5I&E?Bq^TfNdaTR~GpLq|(bQ&)TaiZx8kXSH;5#bkFhy_$7v*RQr?%brcUX2x+L_wwa* z(*{kAjQ20zyn6TY?d$mlg+eS6env)V#*G>?VvJK?ZFy;&w(ab!yJpLIyE%)WpN-#8 zaPg6<_jKL(i*3FKPlc|&z9u(%yWB!q--B(vv(55vcC7(2x4q4^E?bo09?HOwvT~x- z+#55*fMKRu;u=wsl30>zm0Xkxq!^4042^UREOm{{LktY8Obx9JOtlS+tqcrmx2uSv zXvob^$xN%nt%2v&oRvTgk{}y`^V3So6N^$A98>a>QWZRN6Vp?JQWH}u3s0un02MKK My85}Sb4q9e0Ft2>4gdfE literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/DE-32.png b/deepsoftlog/experiments/countries/data/raw/flags/DE-32.png new file mode 100644 index 0000000000000000000000000000000000000000..2c4b551ddc26bdccbe8af0723288626f93b439f2 GIT binary patch literal 742 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfa-R_=LCuxrz)7dl(r0Gcf!G zk|GTMOBw!OV)%cW;r|&BLIyyUa0Ju>M?k%B1T+MW{tGie5zts6hW|w{RLJnZjNyMC z!~cs&2x#dAu)RR5krCJ#5XX>8qWccw9=J2$wnMA~TeNSh({Z3SuaY3YU?ji)*~i3y zj{k!M{(;HAC?qQ9|DU}~)vu2l0!`yA@Q5r1(jH*!b~4)z$e8Ep;uxZFe(BjzzC!^b zt{2;#3(J9^T`TU^PyQC`hToIa*1Vrv%;BAwE_>vqQp+Ft0+GCPi$DL`qVqwd&TavJ zn}UGGA*Uk(y^ab&M~=1_&TLZ9y&E8@nSJW%))hmx6 zJ$nOmscMO9L`h0wNvc(HQ7VvPFfuSS(lxNuH8Kw|Ft9Q;v@$T&HZZm_FsR+GB8s9R zH$NpatrE8eo>y~L0yRj2YzWRzD=AMbN@Z|N$xljE@XSq2PYp^QGVD1?}9yDfTwpvsz3rOp2+W2f=_%nSW zNQ?Yv2w;((EYcfmp-;zMM$yD{jq{TidS`nH197?yRA(T+X|)sV$FU4Y&Vuw5f2OMkbI{ZcvKktLw7ISi#4Eb6lP-<(rwOR|91^QR zT~CudDFQ=6(SvsF4!AW0`OT1A19^>fInBSCpfWUKd>odSai{qyn12YDZo-~A>OdVF zM6FOUm(fU*38Yf!>H?<|n{e?X17(?o>UL{d^K{nPnatKzqY-0cAd!H$= z^%MH1`aF@)&+O+zt|Lfy*W2OqdD1da)DpGSGj%nxKa%Jr_#~fi=C4qpgCq>$(88VU zJ8H!6OgyA=C*4;b{ZHHd%3mw71a{(Y_UDis=4#RLcK{iHabL49kK|!cHjs=Z@W=pg z9ra$U!9Q`hRxV4$of#B3%H2^6{4t*Ehznz`7`n97%TU|iwguBzS&6&jxP{k+$$0QC zk|>YhE^*CxV}3LO5)wjqn z&#Rk#wdd%&r8>vstTe&B7iPBj@Ol30d^gOU+#Bvi&}(k0@vHf)(lK$V+SFm-nlU zgBnxX7i4-zsd=Qt5^>|b>G-hllG7Ez)zYS}L*|jrGDCmHHQUUXr(2_=d>7`$;>pi>#yer#HTw@m=wwk*T42Hs|Y;qun}-Re#Mk z*BV_dJwD(z`C-lG*L0<`_wr`gNi7Z04P?zgDf% zYDC$^8r+Cb;r7rFVPr^XghD73g>4rJ!-9mbh=jtjuE6#GNhl~(=jG`BKY=sdd=V2i s(G^k)bF}ZMiZw)xx-d&4NGMR{YUCP~T6fr}i9!&OAeO~_6`NV{5B9OxRsaA1 literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/DK-32.png b/deepsoftlog/experiments/countries/data/raw/flags/DK-32.png new file mode 100644 index 0000000000000000000000000000000000000000..b60894ec5fbcc76ab0a4c4949e46aedf8d8bc5db GIT binary patch literal 600 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7E^sVxCMA+G;{3*V!B zz+)3*ez)}p)$EgH8z=v5Qo8p~AfduW^IGWMp!=+|=I9?3T^zmUrUU3`-I!v|1HKHUX zu_VKd7c7#LWY8d@2cY8x0^85q=VR}n?gkei>9nO2Eg1JA2D zD}fp$K{f>ErbP0l+XkKMdJb| literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/DM-32.png b/deepsoftlog/experiments/countries/data/raw/flags/DM-32.png new file mode 100644 index 0000000000000000000000000000000000000000..0d6cf59aa7636c5a1504b979481dc1546065a20a GIT binary patch literal 928 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3HGD8EPYe6kC$Fy9>jA5L~c#`DCC7XMsm# zF_88EW4Dvpb_@(mJ3U<-Lp+YpoqF3lBv9m7{p&M@d1@;w5A#TG^zl|TDB+5C;pm#z z-1SPaV?qa4k6wMlPaz>!Hb*BG+i#QfBl(lK6z{flY*_Ze$#~Ynb3KcV)4v*IsouQA_KG*9cb_y4DV`LxWTzSwsC`2p1X@An8 zaQHHhX;bzl@jTH9D^9V>Ke71Sk&wZ_5j!bR+o6$pV$O@73rs3oE`>Ykyhyva-Qk__ zj2pbpoECwqB5sMNjG8B`51w|oYx3)j%SOxv6ZW{C-$<~l&8OpSBo5J3(+{Y+i&T*@@Y?sD+&^rmzKu8D{0)XdgiuY zVz@`a+pmr11r%=B{P&+ZL2k!V)rT8z`+A-hvRZ5rvN>~4&%0ThxA<4B!la3p1P{*jN>puYWYPTk_@V9Z`+J`L>#J&uiVymz#GT4{TI-r*CTnRq3QVHN8h|&`5jvR+Oy`Xn7dpQ%jzlWYg2pPZ(Nz%ex8}} zPVs$(i3UspyNs4U4d?m$r6yv*$;DIlwPh$DsSUWW+{f%dH*5Fg&^WHehMy(G?&=!V zaI@@p`@*m3rLQ-@nmi`WLw28kP6 zyUd;oznSsC>4QS}Ex$xpCj+Lye6h<`t;rRVx0fwh{Z^&+f49?}seKv^7Uy1RSX&%Z zPna}i|IdkW-D@P)b}W3E{YpJSj-h9gRN)_BYE~_AjVMV;EJ?LWE=mPb3`PcqM!E); zx<=+91_oB9hE@iq+6Kl}1_rg;RYXxV8U}fi7AzZCsS>JiWody{an^LB{Ts5ur!hz literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/DO-32.png b/deepsoftlog/experiments/countries/data/raw/flags/DO-32.png new file mode 100644 index 0000000000000000000000000000000000000000..2ab2c56120ca2c41618f7f2d39967d768f0dbdab GIT binary patch literal 766 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfhsn_=LFr2l5#h{wpf}-?QiM ze-PNS=L!QuzoOzC28LNcSttT3fS^5lfGQx0f$AYz!1_QMAqc1)f`EoV5YQ+%Vq}~p zCN`UaVe*3quYel=fvp7Dq6h>a^;%kU85pKLc<>q|wRi7-0|TIGjEwzaViOn`+8;c4 z3A5|cL0knVfr20aarTZK|37?q`0(}Ctrz$1z51V#@xPeZ z{|68D?77Im(5R?55#&cLEuaVk!$bpvd8?Ln$pS-1wIs+d7!*tp@VlM`7kYPPnl?}o zW0JSK3+s>km&bt|&H|6fVj%4S#%?FG?SPC!o-U3d8t0P(TA55sd3|+rWn*n)4IW&2 zn)V=(g^A5d<3c+Vv$Jxtu5fUyv8};_tB;c(v1=Q&GjV%sXRlGa;n28t?%w8Uizjbh z$tS__g2RZrQ8Yu5QCv6Nyqw=a;G00AAglI=21bAVd|mk+QHHvOVVoP7WHml~{mfr* zm5Ya~?S@9C@=-P3um#+#iVJro%0)dCoG4&^ddBHZryE6II68)G$?Mr2R*)leh6yeKUAIkNfPAA`;u=wsl30>zm0Xkxq!^4042^UR zEOm{{LktY8Obx9JOtlS+tqcrmx2uSvXvob^$xN%nt%2v&oRvTgk{}y`^V3So6N^$A k98>a>QWZRN6Vp?JQWH}u3s0un02MKKy85}Sb4q9e02i@F^Z)<= literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/DZ-32.png b/deepsoftlog/experiments/countries/data/raw/flags/DZ-32.png new file mode 100644 index 0000000000000000000000000000000000000000..4cf5f733a9738c6a3ca66eff1e0947e4a14d4c7e GIT binary patch literal 993 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfiT<@CkAK|NlQwggxC8t%jXdLfPxGeCSeH%=PaZ@a54PO%=kBJ*1x-VA+`W@@dFLX zFbPdCcrVTWm4Trz&hqWs*Z+V0{&(fd|5vYo4q{9*mI12CG(B!B3-nb(s5(Qg<+~Tp z{=a$q@767#0ydy*x-omI(K~6b_cHuk@hY0t;cwTj`mbmBciOc7A3**B0(P)6;S{3} zlALek1sLL$v}>c@u3h=JzyJT+w?G9zi=@GhIb$VV7NNy^~3s9Ql+yKeYS2)lOK+`z=h z%y6oa@$qE`4qZBR>)5q(_YPk4JS91sNj%)VoZnwRUp`*beofd9b{00)_LjC*cNZ^L z*W^F}VQKOC6J|_#GjWpE)HYwoDz~(0?qz;?ar;6X6~o-cM5j-gHZ|NMG|V$pJLzkh zZ*FX@b8_(J5O3{k6LNyH-@kbC>fOt?hb6E46;|_`rDN*KHJyp`<;u&;&L0qt6cRE{ zKRZv^RQxatgZD-cPrtscEWiLzEpd$~Nl7e8wMs5Z1yT$~28Kqu29~-;<{<_KR;Gql z2Bz8u##ROfwcAxhQ8eV{r(~v8;?}_PYR*ca21$?&!TD(=<%vb942~)JNvR5+xryni ZL8*x;m4zo$ZGegxJYD@<);T3K0RU!L#oGV? literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/EC-32.png b/deepsoftlog/experiments/countries/data/raw/flags/EC-32.png new file mode 100644 index 0000000000000000000000000000000000000000..05c3e59daab590288da216a5a4e9fd489b845147 GIT binary patch literal 1013 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFffS)_=LFr|IYwH|Nb!m(f|L9 zFa|`N5v~Bv`1gD?RFrw>?u{e-FnYJd5HZT1||ydu^_Z>C8T zg1o{cGm{u5^zq-j#|5zhXbS{=`ow$ckk#CU^3&%s7gcFbo+fzdGTVV&dT-x~K@|M^ zCjdl${|f#8&vNyG&7$dMDLxE^9XTZh;ZrAurGzs~Y_L3b*x~O#pvfSWK)3z>&-(Ty z!{NQ2bBd~_pFCB(?^MX?>y3qFtJVeHzOC}_A9Hv2wyv(N-95WHn-?6}k+i6yr}*}^ zj0by^?=PF#Hs{3d@(F$Y9i4l+yS6egTx4dx$iQ$}Rr&alqm}EDTfHxq%3RnMdOUDX zblKSx^_i)g85pkd@mx@lIt@gcs;3zk&YZiNzpJrpO+~rS(nWjnviCU5xOgku*Zlw! z!&xP{Qw$7eL5T6Jh|oC(h6C;0Q`T$s!jPCxa7vnLcB^>>)jQtF@gV*T?BTxZQ7NqPy1H*qNhX1S#|9KhyGcx_>X86y;@SlYND1LRz zAxB_B;VkfoEC$jZVC;4>+YZS1=jq}YqH#VsVS!OXN>W;4YVz{~D;p+rdlVRd_+a!Q zaq=^90TCfFK~dr96Q&$eJFk0IL0MaU{el%s)*M=JidQt$nW2=|S2tHS*0z?}S(z{?lWE4x=!mGu+c$3Aw6?Ia-0i>;_@Re-&;S;6CJ%5@GEqXNR(xy*cr?h~IOqs4+ zxpvju#LRU2mTgVK$lZB=+onn!C8<`)MX5lF z!N|bSNY}tp*T_7?z`)AX(8|D6+rZe$z@T=!iYSVP-29Zxv`X9>cwWs}3Dh77vLQG> qt)x7$D3!r6B|j-u!8128JvAsbF{QHbWU38N5re0zpUXO@geCy{O1;kj literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/EE-32.png b/deepsoftlog/experiments/countries/data/raw/flags/EE-32.png new file mode 100644 index 0000000000000000000000000000000000000000..308453dcdd95daca836466315cc7427a008d7c17 GIT binary patch literal 837 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfiH$_=LDJq@4kZfXKAd3>g;~ zO!635g~i3i8yXt^|NsB*-#;J;mIW%nM5jTzAPA@zj(~>15y*5HU=;=$4ndMI0JIAT zT3cJ&V4%Lf9%4JtYGeR(3>rX|C7uoQ2oWx46^1!e65=|bJAoEKoB?F8EKoQA^ju&` zkY6y&lOX#4Uq@z~7$gA<*1z`5e}G0=GW|s&5h7MhG8ZII0nK7e@^*LO{CIQe8z6_X zz$3C4NPB>>+sSM@AY+fGi(`n!`DBhGToo0}KP7%hHa0XaXi`|?;9%g<;VH33!9qoZ zTR@OkELn_Qn}fUm0F#P}^3sSU2e}q4O5VUAc{9Q?ta3w>#To}kL%+^I$u$ac+5v&R z;mN`5+7~=Ljxd>QowVg3aOMJ1NcT$0EXyxFAKk9z~t>5|nY zJ_)HlkIhb7E^IiZtNX0FlPov{bFVlLm=5b^Nc#Ahd8vW7jF`>ffuaee$O`*a2m zMur&Q{vM&nZq`75sFt`!l%yn;m8PV z6$$}S{QwN^-Me@H{(Z0m5rh~R0No}kDhhNS9Dp1NbQ|1N;^P0fx&QO={1+Do34*-9 z_zy^OiT&pg12GsF5e|Ov;NSgw|6ja%b>hg!3#WmM|G=OC`UndCy?S~3%)uFF4^9R$ zAnyP7_wRvKoyS+j01=P@XWB|E9L7)`S&p_Xaib*JI7^rI*h>1%8xe)J* zi;MGs0gww6jCyzL7*MryNswPKBBU7py%S^v;s0R9|9@`<82|kL_lBSGFPMa|f$;$p zhbV!n7c-r(7-V^px4R4LkNlU%fgH{PkH}&m?E%JaC$sH<3b;L8978nDCl?%J+cCGY zLh^@%V?*NtCh?qx`>qZXJUJFQ+_=iibjQ|a@19zP9KrBF!?eN>?V7)Tn3a9f^huB^lra}zVu?OV2Oz202mCVNaxW|;tM+FXGPS8v|E zeEa%M{%14Fqauu=97TK@nmQ+|m6!R=G!Zty%tH(etV|893{15R zjI9g|YPYM1qG-s?PsvQH#I1qn)tr?;4U!-mg7ec#$`gxH85~pclTsBta}(23gHjVy VDhp4h+5i1@Ck99$s-IDIV>oxprEj4 z&z{}8cmD^2zhLkW3?4jtc>mc$(Hf`2qB8rWWv2P*Fx1+qF*1oTFfal&gTYB5ne}|) z-ps6`42*0rk%NNLW$e6yKsSIzjtEKvEjlVF4OBdxTUd#aNs5b0Q9(fw6#!i#D<-ZW zFAot0>Vjwl>OCbSvx#5Amzj-&fdL{8mpv(^w3mTlaYokuLx=Y6-@kj;E{J#b?A^O} z-@bK|r|jCcZ8um5=t&?A1W>&qvPXqvP7BFCU%T%ApT7|AL&(>A_kO#6+|P8(}22eOrG-M(BZQ&aX;R?`SAP1CUOc}4^udE?kASiE;Q6D6ub$qxaQgn^ zdkikDV@ z94G}w1;RkD0h7crKB*H75)%V-Ijd|LYwQFoZA5Dv#cG_85is!xRoRJFL&Z-rNaQ7( zFx1)$SK0DZ+A>txG6D5g*#gB^Td6t~Suxbvi&omQR)M4-NUqXW7_1V)m3mz99+;?v zOM?7@fng2|_5Z)X5ENR!|8KKh=ns@;O!9VjVM|QgQ48d77I;J!18EO1b~~AE2UOtf z>EaloaXvXgAWcM2R9O5ltAvWm(j!Y!kE9f8B}|$eE)X0d6nt!{gKMa7taGrBceH!B z|NR3OPTX(_=V$bpDS76MuFl#uxkqveEt(IWyLa&7$(u*7p1phc^6A^hub;P9FyLT| zXo{44^X83{)8RwPN{bgICp~^7EHru2;|C48eX>gqoYPS?)wNYN*4DFDH`m|4V8aRt zE(-8&XsmHTsB{r;Xm0odR-`2Hz7jIs@d--<#b@hjicot3$ zT$?f1sPxtsN#pdh^Nh>y{bA)6*Nxj$BFXbX=Xt6|?8c(2uS~PAuf4ya@bWX==kJsW_EsAyP_{QJ_@V*&$TQ5cIPLzy1(K9S39rkne!PkBAp1FQ=a`JZaCw(C>HGaf-9M5HMU-OI#yLQW8s2t&)pU zffR$0fuWJEfu*jId5D35m8qeXfvL8Ev6X>A?RFJW6b-rgDVb@NxHa&+nzIt9K@wy` saDG}zd16s2gJVj5QmTSyZen_BP-jA5L~c#`DCC7XMsm# zF_88EW4Dvpb_@*6@}4e^As)xqUWw0`S}Jq=FM=H=FaL|_vK7tpn#@I(^?Oc z7A2<>4_&`MOl5JLu=|BxQ%7FY7W+k)T(7u>H*(*-yXW4Nf`Cb4Hw*J_irqeUr*dEH z9QCwqN6*xK`0z(>pUwU6pa0d=?>E`%ZMQA>*R#aFuLigK=6v=X2b>w1Aqbph+=sQ6!u z{(}7i@e_CxmGdUBe`P#YelIc2a#>B7=4?ON-<=bErhHQVyxQdhlV5^F{-fkK2huB~ zlUc9GEt)?=E!u(k<$Htltds4wcg1e6s+^{uQdzfG)KP2do?9`BOciTx%spb3bKJj` zQ9{3ALYk-X+S)C`vMJo2?=!aF`y9%?=;7MNU7fP~fA9Lw_>?@v#ZSRE-BA7uf>c*XSOZTo2f2#H$tW)@#BKcncIcm{;hktLgTD{ z^dG;}rC|7-r*1iSW_Rno=Ns)iXXafDo!V=%#Q)W$^`94I zU%YZ>0XLsj`u5;ov7r;YCf`xlNr)X%e*F*hb~?z_VM4cj$oy- zFr|*yuh|~Q+zm0Xkxq!^40 z42^UREOm{{LktY8Obx9JOtlS+tqcrmx2uSvXvob^$xN%nt%2v&oRvTgk{}y`^V3So o6N^$A98>a>QWZRN6Vp?JQWH}u3s0un02MKKy85}Sb4q9e0Jsm!D*ylh literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/ES-32.png b/deepsoftlog/experiments/countries/data/raw/flags/ES-32.png new file mode 100644 index 0000000000000000000000000000000000000000..cea27b7a4e309e1fe76d3f0b7c330b2da74e8bc2 GIT binary patch literal 1070 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfg$M_=LFr2l5#h{_`;W_hR_} zo#Fp~FanCe5l{+_;DR0u|2@H4fFw}Y4=@5UAP8az8RS2(?Lb2yPJ&nmv;t@y909p5 zVB6sgi0wZZ{(WQk|Ciy<52imqn1Kus7bXSu7syFmZy&Q?-!6E0tLW=Tg8%<>B1tj) z|Hts*EyJVztOt!*k6W@oJ;?a>El3cAKzbRkp9_7mg5j*U>D3JjA3y56e%AH>e^#&* z^WUEg4>lIvOq1N?qH%7`@`s0)-CYy+?-x)P2T;M^Zw#-GmVa0(dzz1DnWoXhX`UaB z7XJnM^glP)aK?Xs7>=G!eY!*JL7L4e4~yF?l~0~Y`u7*8fDL3m(0AV%Up!R&`GMi< zE1MrLtbcxFeECobCTqk0K+7T;lDq_|4@eiVPHlSBPgaIvJ4FW7?{B^%le;z z1;~JKjhXCnfQi7UB*-rqoE(4>?*th^`2RaW5cT)}zqbO6fBye_!w+J^$^SsWk-6(5 zP#0%`M`SUO_5fqIli79*42;~KE{-7@=aUT%vEAsku#ns#;n;9cLi&N(vxljVnl&D< zzces3GG!I=P~+e@tE2M-q?ColK+Rwm2%O4cyf4yL6XPfx6PG2_OLA1z0gJmKI7 z=nM!=4sO@D@ZqY@M_*s>^C!-HI(x2h)`F+2*B)NQ9lT)r?CJ3V5g{=_QDJ?qjX^DS zd9JCUrM|hbwa&_7+9@@>vt~s{-M(dQwR>0f28*CG7dLEQUw`O`=j7!+bIoMC&Ci}m zKQqU)`rMt$&*C~UTO_<48k?$4UP?V3z9wd?RCa)HkB-wtUWUm$`Cm$9J*|M@qgvt` zQIe8al4_M)lnSI6jDW$QYhbBsWFBH*U}b7(WnijpU~FYzP`h146h%XBeoAIqC2kEo zujZ@-YLEok5S*V@Ql40p%HWuipOmWLnVXoN8kCxtQdxL1)dr}D!PC{xWt~$(69Bh- B>pB1c literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/ET-32.png b/deepsoftlog/experiments/countries/data/raw/flags/ET-32.png new file mode 100644 index 0000000000000000000000000000000000000000..5948f54a9dfbd81a7d86068aaa900d71c98ba8e9 GIT binary patch literal 1194 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfgSD_=LEMWf}vKXr}RlCsGh} z|B2N9{|s>S?;j%^{r|^+Ko1!HL(qMO|6*Vy%D|9jjD$=X(trpg!iYddOzD;kX;y4$ z>TGEm4Cz*k=@yJ>MnDA+mjFreOe5|L3x*_F#uNtbG=H8nKgMJRhGa#a3=5zXPys`j zDLM+ZVvXikEz6bex)Z+eLBxUwlASk|OX3)!BpE`jpo&95x)9!ctn%yy!=AI%TvI;T z&i^`L-_gFk$L;2SVVnGM-?=iN)cwaQ5XIo2VEq4Ic+Szoi7Q{!Z9B5;^xS2qXVq*y z7Paj4!s7@3{}=uL9~4S||8al(W*55X#oVKtSDc;Ow)1TJt~1Ne%$<2;TkMi&Uw#<; z{l^JZ1`NZ0e>p#YvkaR5%6j(O<)`N~ZoSg7?c&l?^UPWr(#Nd|t$1d=n zk?}t>2M7Tf3=9i@Z~g^Lc~T`oe!>6$|Nr;@|KGp=|NjEw-yjU)1BGQ*gfRhCaTa() z76WMyFm^kcZO6dCXyfVP7@~1Ld4dvy#01MrMw^O0adlnN;F>b!p@VCvZ>)2$ceJ~> z;<6(L7A)syWovUgrnW5Ynb@>2wg5%9Y&ACNXzOZ&f`XEwvcl5h?;pN=`c~M`@$=VD zV*~aLEKQC91s)j@6)q_uB|bSZHZDD;jlGSw6O{#dCQT9!4!V5F*l6=6;o>62q&b~2 zJa;N>DibEmj|hkei3y4diwm3?!7BK8?X%jhUZHs3n3>sQ;cWzVKv+xG1UU&oAu zo1y z+8af+!*%2LroG+uReD-}%swW)GYb1MjYV>9?#lh$H+Og0`3Xe14}`6-!cmAEzVyqdET xs6i5BLvVgtNqJ&XDuZK6ep0G}XKrG8YEWuoN@d~6R2!fo22WQ%mvv4FO#nyU53>LO literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/EU-32.png b/deepsoftlog/experiments/countries/data/raw/flags/EU-32.png new file mode 100644 index 0000000000000000000000000000000000000000..2bced08764793cf57011535a9bcd40243741017e GIT binary patch literal 1269 zcmZ`%ZA?>V6h3W1pnM643g}iMDB-j8Lu|Jp#nw@jwopcK!|~Ny1cWlcVkO|{U|SPN zse_h#dkbzT(+JK)1s%G?2rOjEz8Ioo{#asW+!B5`jgmNaZku72Wy!tod){-NbIx;~ z_qA$NZw7Otxd0HX%#j!1&clDbKL^*W`#rS)>?zIuLIns(^f2pxK9-Q=iWz@^hzu1m zhQEmP@fa_`0umBjcnnM>!xBjlk*p*aq)}*~lPx4ULNZ$7)E4zXByBOZjr3Ll+nuYi z3HJ0sI_dXMwE*nCaWF66Hu;&Fo#9Zb?S={~fP2hY+F@z~7>d9~Ua)|SkvNNV-7&kI zaZ(2$!$cQr8;#NJuQ|fS1N-uAVtF5O;D{K)7|qr6UK`F!k@Z2c3;AQyV9#8U7>%UQ zlO^pTU$rK9fA4dVtWvuB`71&TlMog3xF9L@4X?n-qx+tk5 zC98kWemjKGXHF1pO~(OFhNm*QUh>}7X|jG(y#=MVwjLXEQ~(S%RCj5#Hb|jD*EGlC ze2N|IM%uAbXWH(5tia~c*cYqeD+)s-s+Uf&k)DvmM0}RsF4z1@7Vr(PYc5b}0ajng zIBoNDThSBHkaM63_Z-i^ceXYYfR(9~%L)^|tt{hkOd+b&`d8k~Y-h=0c}^?Y)78-* z=Chf{?NrF8r{d#IpCa@RE+mxw)~nML78K>brM>greE9r~hBrEV?sH?=A^qWs8bf_~ zb=Rlw|9Ed^VebBo?`Q8$|8)D8n-K?Dlg7Vw^U;4BA*63l8ujH!vxo?+ZI?JG}K44Z5k(A{Tb??iS5BJvbE}p%5`tsOyPM)kv z*P=F-uKJ8yKiRG(rFAPolIGG|w77L{$^3Xza>=Emvp*2u=tkwb3pG!u%fBxe7q3)5 zc8vWzzPxA+3u&A*E#I9qu6BIzQOK*3V}Cpg2=dL|p>}6BJzaVpxGC-6SB+1m#L4y} zFJ^APGqJpMy=C>r&4}Vk?ZcJfuhoN@t$+Rc;M|=vT*%IC5`_9EoJ2|En-#^)`toK% zTG>e81_FM%AcZeU5o8qd`BHJZlrK)=3#EL1+eBRCzY^+<`f7vu{}X~9(PuFsis_&= n8k$?m8wrrSyx^~6cFWl^Lw+z>j(m+LM1<+U1s?kmzcJ8 literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/FI-32.png b/deepsoftlog/experiments/countries/data/raw/flags/FI-32.png new file mode 100644 index 0000000000000000000000000000000000000000..c06c8590333100367410f2c63da3d287f025f1a9 GIT binary patch literal 580 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7E^snr2KA+G=b{|7RGzn1I0CAKBcK*I0&4vG_urm<&lwm_7`UGUG9V(mAtG+)fDE7^-@g6cw(}WK zjlSzSh&kSo7mPj5G3cLRGd%-hK+IG-&7gaR!Q>2s@fje)an*!ipj)L%g8V=<5d8n^ z$c&CH61RQ>N--vRySp%Su*!M>Ih+L^k;On7#P(otJDF_7PESt{&lK$d21Zv+)l|{cP)%1>i3g9u9wa_eJ;h=w5HS7Hg)5h? zOb7~ZX0)p_WlVFNz?3U+;o{ZH<`>MbT)o)FsF;{5C>A(@Nm;e6xX}SremS zp)zNf=OPh-ElmrQUkU_>XfrT8x@y*(IaNaw=pfY+*NBpo#FA92CwWnfUdT}2c{LvDUbW?Cg~4Lq;rtORP11lbUrpH@@ zsI5R5!M2vlO{6mjRS^Wm5JQtD8ea%OeKm?vqw;`;M14}jgNYhKqAz$U55$0hh(x?_ zi&IKKgc@mq(u=)VrgJ}g`!MZL0gcAXpPaLI&RJRe-~U?wlCHPjEL7jWQguqmzW>P~ zwr%|!7~!35kMqE}L%0b0YwzZ%O*@G!tmm=05gwiGW#PPPG7IiuW1>OzW+0%z@b}>i zW#(^jP9#*Fz9OraFOt>`%cb{9MxxV#GH0|`0686=A>M(Mytb-RT4OiM%oWSzY`9w9 zZu?#m{@aQ8G{#;{Dp&-rdnVqKq35n^;#|Ow@%xCK?`D2Y6(4VZmcijslCK=Z1cJ1# ziStO*OZB`)^0VqVaO4afM@|r(8exV{GiE@IC$s{25iG@TwnPf_4J6X7J;$-GOTh{$ ze}JDpyM*KY08e=tsV~0*?cg{HR~(Xw1a4nHb=qOUln^7TiUSoc#&K}0#UN-mPb8B> zBjgoeKrG}P$oR^z;{2WfV`C^0=pVp!4Z5ZVNvE(wgJ4`pXOV0MMn-XS1@tXZNTpzS z5DA760c$~9OSea8={Zg7hl{vSzZCCCigLeVEC7*{UF>-JBqt&@L<$xo#d7Ff)9xbc z8k$-bvT|u7PFE)biBp)xF>EkIA)O+$c`KEX5T+wRe@{P0Qz5!W$H?bBxS~o@7XWQt zym1JXU!ZDU4?5#eE>lP!9mX}LRH{-F&S_e`rDbhQn!<*WeS0~)_b8j+JA+#-%)N3M z$LFW5E5)|$`>0>Kfa#TCsxJLV`rG3iIGf{qT{8j4K>?jcSQW}rH9Ejhau&0b4dmT8 zd-nHI`}|8>j5L!d_^A-a+Z6Q6>+d7qev-rOJ$%|{_^8`Mvdi+2r<`AvAJ+=_Drnnz zkha}Bc;>}s)<66pD`L$=51nF@Skiz;z|BErw1ScF8pceBK>K$@;!C)*Wi4~&FUEJw zPkInUUv-1r@kXC(0zowt@H3Xq(x?>%@M;IgWN|GR<)dI+v=V+8&ElfCcXk6 zfl_EJXGPeMInNWvHlf3}l5PJQXL^*f`g%q)8D6M=l?#Cif~MH809xHtjTo3|K?OBA zTeM8lf^obEpe#5VvOwchKLT_PSRADZj2E?lPz!t^)2OXkMm*L)_H-xH<8eCrzQHVh zj*fH%QCo~HxxjHPAQYf9$}FIv*xnPPWqg}+i);C~jFYYHvC!@Db9vE|1RE|AiQPsj z_X|#J9lOmEluSxFLBQT%I!%z^5B^|cvj{8^#@2mA(PF_{U36wh@4001R)MObuXVRU6WV{&C-bY%cCFflSMFgYzUH&ie% zIyEsmFf}VMGdeIZeYYeP0000bbVXQnWMOn=I&E)cX=Zr@~8FWQhbW?9;ba!ELWdK2BZ(?O2No`?gWm08fWO;GPWjp`? N002ovPDHLkV1kEgKdJx# literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/FK-32.png b/deepsoftlog/experiments/countries/data/raw/flags/FK-32.png new file mode 100644 index 0000000000000000000000000000000000000000..2c15b28e7a252ef964b6b58e2f5d9ad9a69eb670 GIT binary patch literal 1450 zcmV;b1y%ZqP)?8Cd+$uA)485=whz5fP#;M6ll8K*ve(-Gzt+EnxpSu>*VM>XyO%xR z{KDS1zQdxQ1G~5KV&nIa?qgr!qttEv0?HOpw>XoRvlNR9y+kXPv3|$5;`GTbQd1m+ zBZ|9)mek62WL>%_ij9D%sVW!iH?J1MrV_K$-J)W^FK{} zvs|>^zfkNtb4487*NofcAQGD>E(O9NNpTC3N`N*Ix&Wo%jvjSwRS8GjE;_v~s&8DU zEYruKkG3#85`p@!!IQ>@%2I0GQCtre6E7~|RI{IkGmQ|5v9LIemTM6-O=6k?VHs$# zDDjwLCK?(F1q=fbT!6f-0ioV_-NG=0i3C>)`2C0!C(`GELx&;V3y)W$kXT+H3=Tme zjy5BcxCI-J1UT6NUYB4b8mF*w4h0XFla~qy|4e{6&dO4cWa#X9{Feujx(&-1r$VQz z3#35n>48WLRa69lVd(0BXcQ80==mE4hmlDWF|PV&QWoR6n!;hyOZ>hRX!Y%E|ipJpGkz{{75=igQLh$n7@9%2!l~#QYQhFrYQFNCT1z8gFP^W8vKKSvrlc6!Jt-AG3^R9+CB|$RA?=rn%f_2T<5;(-?SZ={7O=Kpv-E*%+7mnd#IC zk;5mSUEtiX9m^4;$$g&G)M7lTlJ~bCW!HzNs9INnuOq-814*zsP;&h8ML9Yx-BDcj zJe*_0qI~h0p{}(obuO(mY;7QZX7G-*blzqNc^VwK~Dh4hHlz3gk_? zI|Gc_XX3MUqY)u2ok&YzP5M?)K`059dAma;lZv1PL6fQCldvop4OxUHiUW9301`aC zp@Q<<0REWdK?GU$36Eo;ENEr$Z5sPf8;u!a@L=CNb`i`kqNJB}GzTvk6QK96FdLBrS<9A!+_Q z{~xnB0z4pZX!-yE03~!qSaf7zbY(hYa%Ew3WdJfTF)}SMIW00bR4_0)H8DCcH7hVP zIxsMOwr(>s_0*XMSfZ{-hp=kjcl|AQd?%Z==Ux4%i6#(4>(E^l8oPN4=(S^9Fr{Efa zjJT<%R~@?l_S28~yKlq&2-E_!D{J=Is}J7YdHS(v!Fh<)5VyrmJH7VEgHPXnE!uM@ za`MScaEL*)0E6Y$lMfGGd@5ad0a;7pw9`3r&y_5^0CW!|7~yUMD$AL37RaqydJ!00 z2)BU)0q9L&P(bVj215K)L?8ggfnJ7~22=n+KxaTqfVih_`K5*xmw@gE1s7Ni-2BX0 zXTm3)JbU}~k6(W~)?9(a6i^K$a<`v)eCzRtw$)ca5d@1GpdmnIS#yAi;Uv@-kYoc) z53pqOoAE^eFtst41o;Is{H|5*`lt!yau#?*76WMyFm^kcZO6dC$mi+e7@~1LIl+xV zEX=Ho&rdIJ2ZOS)Ff;QcCb>AfIz~su#5r6pE=P~3sw`cSTA(>$>g4c%kf5-GSxnul zX6wqx_SE=7fv+X#UvaSY+TIkt(`3$ZC%aouAVM#!n!W+o!q>*dv^Qk{xLQ> z9#mYIn89^OS!wa2G*_%y zwQl9w)%h7YS$Ubc+3#PxaVk$K_s@_2-_ki*&3~p~kFiQ8Ou_ZP3UxuN(2j+1Ajx8>d5m;78$IL2{r_4#|XzxicsT8uYE zMDWX7R=xSbDZn61qp7(}Wit`Q|Ei6yC4$wjF^iowXh&`8(7QrE~l#K6GH z)X>VnRNKJV%D|v@yNW1^hTQy=%(P0}8hBpKSqao239=zLKdq!Zu_%?nF(p4KRlzei bF+DXXH8G{K@MNkDP!WTttDnm{r-UW|a;Ymr literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/FO-32.png b/deepsoftlog/experiments/countries/data/raw/flags/FO-32.png new file mode 100644 index 0000000000000000000000000000000000000000..dac74e37dbdc26237972a7fe0823cd2b9aafa1ae GIT binary patch literal 579 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7E^sW|~YA+G=b{|7RGzn1I0CAKBcK*If@p*r_3z*Ruip{I0>x9oRsaQm{QUFg!;d7l4L=yjC6&7I;J!18ET3gTd`&wjGc$+0(@_MC1I{iSB&O4m_@&@Ap>cFbh}7KKNJ8J&QxL z+oM_J>DqsfPF`hVVDvcCl6%1?(QLa|v-!36O#+A5j!(T*dO&Q}(ulR~v-`RHKm1Yn zu-B|+WkW}zhWbl-hj?5r*jI8A(MQ0m0=C6>&Pt#LNstY}`DrEPiAAXl kjw$&`sS2LCiRr09sfj6-g(p*OfQlGAUHx3vIVCg!0G*-wA^-pY literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/FR-32.png b/deepsoftlog/experiments/countries/data/raw/flags/FR-32.png new file mode 100644 index 0000000000000000000000000000000000000000..289b805efc6766828931062db509ce61b934eb20 GIT binary patch literal 332 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!VDx^^%AmxltF+`i0gkKgMk4^LJ$K(8Y5$x zm{OSPyYY^|L@vL>2>S4={E+nQaGT$a=ashDcma=HTUBJ!5P3)s@x%@4b|?;Nmjs z$zfzzkXEztY@e_`P@!sxYeY#(Vo9o1a#1RfVlXl=G}1M&)HN~>F)*+)HMBA?)iyA; zGBBv!t|E$}AvZrIGp!Q02A)@QRsuChf@}!RPb(=;EJ|f?Ovz75Rq)JBOiv9;O-!jQ TJeg_(RK(!v>gTe~DWM4fosMHz literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/GA-32.png b/deepsoftlog/experiments/countries/data/raw/flags/GA-32.png new file mode 100644 index 0000000000000000000000000000000000000000..282ec63e660ab04f0191b4ed8ed30dd775c565c0 GIT binary patch literal 683 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7E^skZ?>A+8KFfh-2bnG9mH7#Joo zJb1!y#6H zY=I-7b#Mf<7mk1qfFp=YFiD`pi19*SSmzC(Z=Fhl{DMK=Mu30s1Q|)iOI9-L0Zrg6 z@Q5r1(jH*!b~4)z$msWUaSYKo-+R_o=um(N>qY*9cke24zI%71_W$Wbr@bd-Cm6q5 zl_qq;&|j+cL6y;+r@UC-L1;Fyx1l&avFo0y&& Yl$w}QS$Hzl2B?U^)78&qol`;+09+FVZU6uP literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/GB-32.png b/deepsoftlog/experiments/countries/data/raw/flags/GB-32.png new file mode 100644 index 0000000000000000000000000000000000000000..22c0acf9a67e3b8274ec417bef015bc6d0db7f02 GIT binary patch literal 1677 zcmV;826Fj{P) z@Lm!U60;J(Kq853rc{bFBw-ns5(gEm&Y;neq&A@4XOtPosyIa>u_A<`BDL)>(@v~P zU@Q;<5yK*A1ZrfFY=-0|koO3A+r9VrMG{gEl{naVQv1{T-R%D80^T$)amjA{K?{FWF~OtJdZL?8KL4$i7rZFHx_z#Yz)hPr zE4B1Km6`gY9G~aK7qW@b1@VR?&^1WF7i3}CG%D|%p{84xt^Q}%ViYeB>8r|2-BDDm z^=+uu`jT%V>Cu%en4iy_IXUca_<{}9`}j{?8=h1z8OcrzT>uIJ8Y4^ygaQEyLxc1& z8vd>z9ljt%D|0BnJCEsd0QvqlaWxpxCv2-BcJ@r7mO@{9;;Qyg>7(QfUZne(wOmZk zAoa;r+_~sB78K5);XpI5ZP>%dJKM;f77sW8!Szi;2Ew#|Gf43xIh5a%&rCUhsQWw7 zfglM_R}x<^8%x2bM_btPmwlRE_s(hYw^vTG^7ps$P}x&tU+JRzx#v--X{4-roFyf* z`04!V9BBNK%{BF$Idux9>`{(~Dg%D<78X#oD3=-XDsuNfFvAg&D=UbdJqt_0(c@>R z*|L|nYFda(cO#%&0XW@$!a<9<_swPXJ-JNtcVfT#I*x@uA$@f@p8RP9gHb;C;1E-8 zy_rduTKRh3JS333@lC|C71X`Ahr%=i?c<$9LtzqsSwX^_0tPKbdpRN2q2&w>wKp0?N zIEC+=LUX%8m-II`V@IPXTcNvMTseLM2?)j!K6@Tt!vPcm&EeqX|zF%Ob{t0mT3|RMNsz8glld$Lf5fEVT2R}nvUZC-LDXg z!?o(?B(At0D;hxviO{tnDF7=JLKon08rVvW%0wx>Cu6D&XhMJx63em(1|!6JW0;T< zcP;vGZy#oFFYcQYkqHT?NQBFPFo$$;F}9{zxy8cr%gB?e2~wh9wrz4 zh%~2x8ZNal#z|XeA198ruxQb3xZO@vC`fztCd{VeXlp9@dQ38}e|U<<9mjCFbwWWe zpfs73?FAIGew@NTYb)t&dx^3~7BV&%;QR|O(^a_!eZoY#o_dz54uhpn{2PDZDpJ?4 z1t2t?NHj`m=|&zd+r-|6W*j-W(;`Z z-*T>MJJH5NI9DvEqo9Z#hg;e7cr8vVO3E!B93BnY25vC8048Frhm4uy+27R5NAGXt z&ZSwbsVwG>JMx+GMiqhow%~hv8@ZP+v94r^C1b*aX6xp+tkdafrk05UK! zGA%GUEiyM$FfckbF*-0cD=;%UFfe_$BozPv03~!qSaf7zbY(hiZ)9m^c>ppnF)}SM zIW00bR4_0)H8DCcH7hVPIxsK{>YS+n000?uMObuGZ)S9NVRB^vL1b@YWgtmyVP|Dh XWnpA_ami&o00000NkvXXu0mjf`ic?m literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/GD-32.png b/deepsoftlog/experiments/countries/data/raw/flags/GD-32.png new file mode 100644 index 0000000000000000000000000000000000000000..2de0b4cc7518857da6cc5e0f801fe4506f6b48de GIT binary patch literal 1062 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3HGD8EPYe6kC$Fy9>jA5L~c#`DCC7XMsm# zF_88EW4Dvpb_@*6_MR?|As)x4UiHqH>ng(j;r^Z9ckkHjxs;GCHT%Z_rKyWpkNO5) z>hT0Iumg&LQpUTNLBz=>6Smw;o;w5|nWx4OD~Z-1G1LuIXs z`Tf1+F=y_~i2GHPFyr&w{AY9i|35Rc*d{Cx|(i{I>JG^_MH`&a&zBZ}G_Ox@- z9?R3~I}59)UGJV7y?O6~Gj?U}E?nAfOSN0r5<7NGnb5#^Ws}V3s1)0hPjB9xUG}*0 zkW8ZJs&$r5YdTX;Hg2yhQ7-3IP2bo%DPT>@OxbN0t|zZl37d2{Aa&(Y^UFQ;E59BP z?>d*2AF^z3r;-Zy%=1=r9^YkI$zE{xx5upX;l|FPyr5*%6^xGYjV_UedFyX%nx1 z_E1@7miIZW*acT*w$3{dI>)=xn5#*@XKe;=I&wzV$Z7?*PPkd^pmfCtK{lJ#ZPxs{QsOfI5~#r2lIW^XUFvn z3#a_<-;_VE)byA3oF0?iXPUG7x@LTvle6)=7+-!;l0~g}I7vkx!gVX%l;j9 zH?{i~aTl#Q_B-A3;-kZs$6m)|6faD9Eui1Ksj}r!-lI&j+@wt>)0bDKTB+W-6=Qtv z$bU|TUs^JGpVHem9jlpqoW0^}nOyW?hek6u&g2XuvjgY8=14!BtXXz`$u85VKjEv_ znNM54;6!QBvXgBG4qE@nQjWfMN#FjUhV5b2)22$(R#v=?I=`{{=FYB_s?$!*liA}H z!ln2(dQHLv|Kk-!EumjUuHEqbS+LaU%GIMYO1`gow)U!x_37imZz2~2Uu<3??x5QG zZKmrt9wVmUn;&_nJvvaN$rt)=^{0CZ(c%*OrhMPBzKH#9-i|w>%{Nv)eQ%p|=h|i7 z?cE>m>hO1LocOf-$PcG&g_l#!^4CZo(<;;`-EiT=DbF+MJLg^hDWYhgqRKJnkWZR* zpXm|lirN2}X3JIoegDaEH!x4BmbgZgq$HN4S|t~y0x1R~14AQS14~^a^AH0AD^o)& z15<4SV=DuL+U+W$C>nC}Q!>*kackgtHD@JIgCxj?;QX|b^2DN42FH~Aq*MjZ+{Ezopr0QZmSkpKVy literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/GE-32.png b/deepsoftlog/experiments/countries/data/raw/flags/GE-32.png new file mode 100644 index 0000000000000000000000000000000000000000..e43988c3ecbbcceca5d1c321001d424cb5dacbb6 GIT binary patch literal 817 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3HGD8EPYe6kC$Fy9>jA5L~c#`DCC7XMsm# zF_88EW4Dvpb_@(mUY;(FAs)xKhMe_!9U$;esD9R??iJ@BTzme3x8$KyOvkQ5Z7#d6 z*-^WSlp}H+17kcyMRc|}&JZu_CV%!gBo(w?1}`7_PINF`IHw@}A# zpXcJ4Pi{u~G{nTIF>bng>ef@$pWTbJJSTkdRPwKDvps)2;lbjYUj&c;G+uvU`V^Vo z8WSnILj{-kg*Q#u)P9aJJp8~jwSs#77R3)w@71u#OY}C(mQJXa-m!P8ovLQz5)*&_ z1Lyb>*koiF-oLN+XJELMn@}&`p_Gu%|Dt3<=Wp4IXENMotxWFke{xIe=KINoK5YyC zg=@X~duh^>!_EKPC#LMy-Jch}E7GJdda-22v&(A~7#Y=;T8ODnQ3+dX#D3_C-NdxX z`yQW(_|4a{c}3XX^G1`kexB*MwP1CF0>i7)n_sFXJ%8@7T6GRX{NH7nvJ3`$pT!rO zOf!8Yx1U4sUrFXa`&ma{Wo?ToTw}<^^jAIf*7fk-7kB2I+P8^GN9V-7&q4cxJQx2| zUlmfME5X-$ZsNI#hZTQ*R8-(?e{|5{*UOb&yLV_*mM`b@cr#~mtkChD88X}5o;y6R zu?oM?R1~?MmuW%Fwb!po6YAvVr_WnHo$=-CCWon-Q&ZfTrcd8Aw`b;aCmxl@7vD3B ziyycqR#3ZklAoW)vJxNRBEAfhhP$x~Zcd4N66|m@ZSNk2_V!oLPjVVaEa7}|JS*sZ zNyFph(DyGmDynD8wa)L>h*UU#{>ibn4F+eGyw2^8EvlXS=4;)Sj(vHDG`twUPWGL_ zaOsUZ=O4C64e4oCvyV>%CNI?z*NBpo#FA92CwWnfUdT}2c{LvDUbW?Cg~4Lq;rtORP11lbUrpH@OSPyYY^|L@vL>2>S4={E+nQaGT$a=ashDcma=HTUBJ!5P3)s@x%@4b|?;Nmjs z$zfzzkXEztY@e_`P@!sxYeY#(Vo9o1a#1RfVlXl=G}1M&)HN~>F)*+)HMBA?)iyA; zGBBv!t|E$}AvZrIGp!Q02A)@QRsuChf@}!RPb(=;EJ|f?Ovz75Rq)JBOiv9;O-!jQ TJeg_(RK(!v>gTe~DWM4fosMHz literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/GG-32.png b/deepsoftlog/experiments/countries/data/raw/flags/GG-32.png new file mode 100644 index 0000000000000000000000000000000000000000..e31776824f5619f660682cce0d13e7a6ff3c05a5 GIT binary patch literal 730 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3HGD8EPYe6kC$Fy9>jA5L~c#`DCC7XMsm# zF_88EW4Dvpb_@)RpFLe1Lp+Wzow`3y*iqnEef7R23T8|}3Tv1rbEs5tNjWI-zWl@` z@3k`2K=i7J9JU#c#=br^`QD^_no|&IkmNs#Ux0cG; z@V<{bE<9Yw5;RTH-p*{MMEJ?GDPIDFCJ9MtunNhq)@0FW2tOeAL8xP4ESn2^)bb;Y z4DTCaAIN=>dr>-Rj{?I~Ka2B?Kbx9gJ$cc_;IyK(p*5wo)p~Z|sfs&m7Me^^nb6<( z!tCzjn=By*O0pClWtrb%l#$ha|E-b#K>qg+VT?7~Hvi;*{C)o6`LZ5LXBwCj*nd>> z#W^g{2pr)U>jvw-9VIjW9eHodypQR&gWs3Q%;n3U zZ`~r$sIxjOT*l%4!5F=TCvD!lNAov6v1-Y!ZqYPg+}5!AK!cX5Vc7d8UrH=lnw*xo zy|S!tDLMOGp?A)H$6rrBH{RDzl~cI;rP9H4uYXFJ6u0@)Cn=TNdEzG69(u|0ZV!Xq ztml7Pw$Fd?P3}qM)fI=Fmht+De*62EjbZV{Ury(iA5cC2bJ|;8;~j=3%4e5Gptfd5)4pd8ABT7;dOH!?pi&B9UgOP!uk*j}f_qhJx3tN#9D*uDqms=o{u&M|bfF@y#poCkF0_8p+W0g`Yx zpE$FXJ8KV!J_jA8yJ5Emi^^3)^-MxehYGKkJ*V4cFi zK9xasHi!!noCNhO(5Di!7>iSsuvNoDs?i)XZ7n5m^kRJ;2!QWVRhJi3oVQIEHAPPu_5p zts?j54@njY$A-oQOx6|~$_qBM8?nA^X_@Jwz$KG-;N;DtM{jZ-5-SxIPM_wm`Ow+B zhY#Q7z0Bp$@!`|Ak6%B3{`&D7(?^xROP55ZC~z?yP%u!?uuxD@QLx}R!NW0ucf#cK z&;|_-*5(Z#8ahs_SaG7G;e&xfxM7IrOkdVT3Q|l-Nsk{13kgl0lu);$6$Yq_2m!4f{)X->c*z~FE)T&prZtXG> z@ZTQiKmRhrq6LghQnP18N8P?m5DNp0Y%eSxJ%{SP{e#Y>vnep>& z4H`3Acq9BaZF;s*(T|ZKh_xr{+5sm}AgPwPMwFx^mZVxG7o`Fz1|tJQBV7YaT_f`l z0|P5lLn{MQZ3AN~1B2S_DxxSFa`RI%(<*Um;CVG?B~XJT$cEtjw370~qErUQl>DSr e1<%~X^wgl##FWaylc_d9MGT&9)299UV`GhwToBb$Qutv%M98kaJbvSfC6BYG{Z?g8>Bv(JB<;b-bTfi;I0S z*??54Qz&lu`gQ^I%4CBi*_)I!XEMr@qF&C;{Qz*&&#&Ll&&XyQS*!sT%dlya7T~ebhzTp@o|(-Z0DU}Ox4S#$!3$LH&P-y8JhYW;Y+&A~XH#JK z1GOyH2*4Ns&TJ%zVSuT&HmAculbP~Q@7yty8>&k6H>(q@i`&)jusZmi`-oJ#RqqN z{H|nYsh}XP_>8*c?6*F3Jr~p*iBJ(_6qW`BdAMaYJqYiuc;$I9bt1H>(V!Z literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/GL-32.png b/deepsoftlog/experiments/countries/data/raw/flags/GL-32.png new file mode 100644 index 0000000000000000000000000000000000000000..541b8bb58e283354b583e463bf2079d164c3e5e8 GIT binary patch literal 1253 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfhdh_=LFr|NkE-0wn+c`0?Mv z1IYQ$!vo?H3I6`YqVW6o|G$2L41^<~$#4X;0vQ3VgCn?E|Ni|4BB0?w5*a|aaPq^4 z|CcWPKY8;1-Mb(gA>u!O{$I7~znU7z7CyfJ@$vt!T?0w|`SZW0=f8x+e<`W|a&rGg zMgOz0{Xc&ms_Wpv|2jJVMMVDd@Xfn`*qenq51bX(( zoBz?#|J~gF`}q9#_J*Q>fd8th|CcNQsrmK|8WcbSfyl+>e{k^s*RMft25N_d5>O2g z?Ai05mG!^BKPb4Em_T;jz72H%(DoTK{>#WfgG)i-|Fmh)AOcE35YUgWUj5h8`!6gE zawO0MLBapWjv>4Nv;r7DO-&&0Lt=rM85Bw@R{RGBCeV=IzyII4^S`(lssQL1F|q&p z`u|Hy|F^dOkBj@y!2vZKs8L!P#ARdzDTWvbO>_45UG94+giB z*>*q$ah@)YAsXkC6RtnMV1B{e#K_Fh^s@Q&b_Ty%y*xHKH-Ur)SD$abuzky=?Hev^ z-)6|Z$~FAJdi@3Y*~|0aKX~zE&HJXKERMB`;kD-F{Qmm>`SP{#wcI?cY=?f;{hPsPEt~m78#IZ|$$Y^MoCyt*p+<*p%fc;xotOW^vcQE18$m z&&*kBU)}foPN%~H+d%i}zWj?06yN*9I*Ui9|Ly!#uAr$2vZJFnW-P?RC`&F%UFpBFq|csQW4gmvCLcbk4W z>$*oO6OIKiFzkBW+P^R32sbduRZCnWN>UO_QmvAUQh^kMk%6I+u7Rblk$H%Lft9JD zm4T_Yfw7f=LG5-GQ4|fi`6-!cmAEzVyqdETs6i5BLvVgtNqJ&XDuZK6ep0G}XKrG8 ZYEWuoN@d~6R2!fo22WQ%mvv4FO#q{Sv!MV0 literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/GM-32.png b/deepsoftlog/experiments/countries/data/raw/flags/GM-32.png new file mode 100644 index 0000000000000000000000000000000000000000..97048f64ccf01a8b34c90e5e3cca9dcb706aefac GIT binary patch literal 783 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfi%|_=LEg0rD9b&MGP%WnlPl ze9wX7{}~wmYH9(=e@~zMpMJQTp^rgowiLrm2B1nf0;)$wK)rDE;rMQ#ImifTCK>`- z0Y{pe|AE%Q5zt;ZdiwZ3&<)6F`r$61laLY6d2j@DCo%%M8IFK1hd3C?ogha-90qX= z#0?OSL;Mc$KE!-TAgnn%uL>Amz9m6^!QhaC6aU@`GX4h*t2GEW!B5RLOoPdN)6W)NYxaAjNW?QOZrxs!g+UpROF z+4z!W`F}fDy>%LKBA)nK~xQY#;@=G@@VOscW z&BUD2O&6zZQ`mD)WRY*_u1#_+cD<4p4o|G%X>|0R@zTfezh(_X0&B;XV~a260$r?H z;u=wsl30>zm0Xkxq!^4042^UREOm{{LktY8Obx9JOtlS+tqcrmx2uSvXvob^$xN%n zt%2v&oRvTgk{}y`^V3So6N^$A98>a>QWZRN6Vp?JQWH}u3s0un02MKKy85}Sb4q9e E017!nPyhe` literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/GN-32.png b/deepsoftlog/experiments/countries/data/raw/flags/GN-32.png new file mode 100644 index 0000000000000000000000000000000000000000..d26246d27c4ca23256fbb51059e3d95a94fb5f52 GIT binary patch literal 339 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7E^DYF2d5LbqoKo$dtgrWZo4F7o; z{(CU||H1J8KNS7=#o)1sfngd0&n%EiM;_OYKwWGlL4Lsu4FBE@&?T5OSPyYY^|L@vL>2>S4={E+nQaGT$a=ashDcma=HTUBJ!5P3)s@x%@4b|?;Nmjs z$zfzzkXEztY@e_`P@!sxYeY#(Vo9o1a#1RfVlXl=G}1M&)HN~>F)*+)HMBA?)iyA; zGBBv!t|E$}AvZrIGp!Q02A)@QRsuChf@}!RPb(=;EJ|f?Ovz75Rq)JBOiv9;O-!jQ TJeg_(RK(!v>gTe~DWM4fosMHz literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/GQ-32.png b/deepsoftlog/experiments/countries/data/raw/flags/GQ-32.png new file mode 100644 index 0000000000000000000000000000000000000000..fcd2990bd73162da0e3669d8a38a0c9361ef1e37 GIT binary patch literal 811 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3HGD8EPYe6kC$Fy9>jA5L~c#`DCC7XMsm# zF_88EW4Dvpb_@(mE}kxqAs)xqPW8_Y4iq?AU;Merb1~<{Ssu|FL!71umE3OKagkp^ zPh?|2f%1-x@s7KS7tUUEqmJn==OZs>R?Qv3BCP*i*7n}I^vAIC~yGF|4TzH!>ZvuZOQzR3SxFWA9Ysc&PcE#ucNW??0_U$;ihL(XOI z^RK^|7T?^+xP_ndh{3108UA(Yx28UDUb1;dVu!`Dq{6W9{hwBcC7Vol=3+hbdtbUj zfrO~wvZw0C<T}A*)Hw zQL`P?-rSR8S$%zDmZ+4eM3?f*E8iAhlJ2_u&-DA5^Y<$k;}xlnUv{p4{dLakRWW~dzPXL7nUnYPE~hBQyN^%(;mw;G zzSZ@fs3tIBsg}4#l%ynV6h0To6opw5V6=1FRgo|U@wVkV286ZJ4(JdWy8RebS{Y-t47wN~D(#qU z6$HUSrKKYKB_bcffKsSsESZQD38iYHNHhz>EG9F{MjUH*dN1p?AG>+pk9*$doaa5y ztIw5W25;eP0f1n!NRWpsiG#J-ALso`4P^j+irnmcAwUyG&YT(bcsvsmivVh?)tQuZ zIV#FDI5-EOOGq#Sw2`E7Y-|BJ$mDR0bQUIh!Qr%H(1)?Hd8BEzLpb|Boz7BSJvctT zh(Hwta|BRJLyfwVllScQd#GZwZJaV3KHnS{XHHJOj5kS3>jY@U2#;ruj5Ni>boeBE z8!UpQ5I1kS1_m4!%L2e@tPh|E_zL4bCT_4GgVfYcMg{BBXv3}nE&((ETmUf8^G3_4 z3($y0VFkT@44`G#F4LYpCXHrTtFF1G`lMH?B2L|ynIjg1ol0hffrE;Qud zr;L;MC_YifUi#tCSj5I9>Ag3C1fQ{g`{{L67SM{uL7^&7atPOdK96VJ?QuU3A(+WS zFHB^e+5fzaa6f0^Kn_M&1jc{dO8n_@ufEDe*YTe@@{*P|3*Nx`#L=uwfqzI)_6z(8 zEEj!PiK~bn2d2wXk-!%V((|L|ighbF%THeug=W7e5$AkKT#1v0ymIgWtB92~ck9k= z$Mo#X-sl(&@ypIYan##7&6DQ5Quc!zFV5cX>5hqLnrS{u}F+=N-MrBkn$%cS#q830Fq?PJj2kxJ9~OdDcc4cL*k( zr3)ppSyOzC<6%!#d18c|ZKRADp?3=V%MZGq?9OV7EgYx_3o=|!7%3X5i|+rZcp{UmUFWCX?6U8e;coR$k|$d!Yewj(qVln=c%}DIO_TbEkKf-bQR*}& z|Jb&DpK8s1;hS6b6+_=!ZE4QBr$h|}Hv-l7AF?inZTG8u_a}XSO9Z)|FNi!5Dwtg5 zmvGa6wHS_=lluK&G;`kcdx+}+`nX#qJff0GRq~YL3OO#oqqw|SDmj*ym`_nD@!S+D z{vC>+LQyA2BE$ZZpis(6k5&DDLeMkQRZL)e6%HwnsZK~M)RZ**=Q^ literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/GS-32.png b/deepsoftlog/experiments/countries/data/raw/flags/GS-32.png new file mode 100644 index 0000000000000000000000000000000000000000..42342122b8777fd1f54832035cc83ed4588cc73c GIT binary patch literal 1477 zcmV;$1v>hPP)`IFCb6|?U(FZdxo-+09M z=$*Yl2OoU;qJH?=c>%Did^9gTx1Pw@F)SZd!pf0hHTAyHDqS;5%zF9@qxsh!Lbi#U z*9<@qHZ?+PoIvnjFk0G1y(Q27YL1G!a{lazEM7T_WHLkD$YL?pO9RjlD#F>FV%@Sz zR?MlRcHTYWoQ%tLUmli6_FST<$i{IB!-arIRIp%XC-oyTboNBaWF^t4!1Ml1z?|{S zY%W_iMl8a#R1Z_D%h25Sp3jeCc4TbsRa0iBMVwIMX zJ#Y}D#FP?ODgL;4fgqJ)j3K#eP${Wgj`f`$Ah0C3N>g2HGih=;znp-Y-jj?qy9lN) zpuVPr-MiaxoWhoLzgi|jAWRe8+egrs!AK+!ZVv6`K}t{xOas-MMfGJc6A5q~bPyD} z^f!t`1a6qNF@EkC z=H4@oXvY<Y9h`z(AwI?@ovEtH;|IRSu^IaIW&E}>~-hX!!qo<9hs@SHorIGG^C)l&UnbR#EAr0C9-&ahXQNoa6 zJq#(c@bkY@T52ME&CvK}Vr5~Pn~Sk5g;IrN$oE!1DC%1;^3zv)cw_rtEdQ>HL$o5a zB$p3x{Q%Rj*|F;g)9-tiwcCHDW6}&BdVK|Nud0V2z%>OSqkp9qR91NOddDE%z+c|S zELaj{`l8hwKD?LmgmFt6#JIA>x;orH>uhQ~A883%EtBNsJcHr} zEy*@OvgnDsag!+y9!w!Di;$_wIRPu4OwiYLiqfh%+&S?yS!EG(mUH^pR<>-}Pb9ho zCmY;!Eh?VZ_=>?j0Xk-q>bHaqiP8irGBwPDH+Mq3@&?qH{5As;Ps+4s5 zMH1CBsUBO5)E;~Hrm3sSa;fPG2fnolhb6gOzXw9jl(nV{X)Va+1}>Rl3c>;`DZnUX z93Y$3q%)dWk&TIg@AuaTf$IbeE^k3)I*FzmNy=diy<;Sg&!0@9C`RL-e{-QRz_Jbe zei=-6z>v2f@WJ_y^Qkpt()yOa6dHw1_M*qQ2|3O+#_4i4ke1`PBlHv^)kKMJ00Hu* znI^XhAq`GUKvM+^mo`vS8=>P$72PLWIoI?kQ-){ob}j|80^$0AxV;4O63A%2kK43$ z8`KTT^YW(2fWd~>ig3D4v8$>Sk_y)l5L`DQ&+7j%_ZA318-n{w93mx(eJwFini)g# zMAMo>>F~e_9H_Z{1a82Vg%J7uVvB;2Z~Skv3jhEBC3HntbYx+4WjbSW zWnpw>05UK!GA%GUEiyM$FfckbF*-0cD=;%UFfe_$BozPv03~!qSaf7zbY(hiZ)9m^ zc>ppnF)}SMIW00bR4_0)H8DCcH7hVPIxsK{>YS+n000?uMObuGZ)S9NVRB^vL1b@Y fWgtmyVP|DhWnpA_ami&o00000NkvXXu0mjfN)4LO literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/GT-32.png b/deepsoftlog/experiments/countries/data/raw/flags/GT-32.png new file mode 100644 index 0000000000000000000000000000000000000000..55fce717ff93abcc3d37fd1adba98708dc58266a GIT binary patch literal 954 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfeWl@Ck8cNc#^I5zF}h;K_d= z`1cP)LcsSQ{}~eggA~9JnwlR!|6|n%6bEV)&G>&GhnYO-ATt?(#)kj*to#q;0?h%k zkPa;*#AdQ|Ns5}eZ{SnAAfxK zd}Q(CdqvPD_Gjv*T7lP@qZ`l{)siG`V&nU(SR zGka@i zOGh(X%c$M3wy?6?y<^wT>WW7O2Tvckef;|Q`w9vIyPFmyG*7s&;X}uX6&Y{1l9C=j z5*C^~DLClz25pb?C(fKYck=9MeT^dz+mxCgO}ezHsJY8aX5Wfc>sGE^oo|qFee#r z)(L4<1GzwPpe(;;HPD<5FfBlFCe3O_FanyuqgBnIQRB&ipO<+d8*7tT?Q* zbX#Z7wm8uo2JKpIuu(wk81!lx81kF4=SOXMY(8U_`P6AaTb_0mE)itNVbH4sItFB* zZoNB0X2-M>IScLYcYIw{Agd z>(2J-xqh;_4B8+yAiK0{MdXVzU8eT0+M6?JziHvdzO}oi<Z{>TaDu#(*d<-mfa)Oerp^ha!IWaX(NkK(kSyExFFC}M2-n86V`IEKPH9}Nm z`jlx?!$ZPCuV1;A7#eW@!i_6;F5S9z@8V6M#&ZAs`2Q`PlhyoZcHN!GcX`?Q8J5}K z=Is3ZOu4%F;33!U=?(`jrJfF76SKAI?5)y(#;?+5QHD9U_N2Zx)3~uO`T4rL)!*JV zfBY_QQPJ`6!^FkM`wk!IoV?s`z9skbdDit0l@2dG9lkE^Fyp$o{e{8|4NvzLhn>?% z0*0JwiEBhjN@7W>RdP`(kYX@0Ff`INu+%j&4>2&XGBva^Fx56NwlXlN-L4{vq9Hdw zB{QuOw+5b9b5;U1NP=t#&QB{TPb^Aha7@WhN>%X8O-xS>N=;0uEIgTN160J|>FVdQ I&MBb@01RG_{r~^~ literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/GW-32.png b/deepsoftlog/experiments/countries/data/raw/flags/GW-32.png new file mode 100644 index 0000000000000000000000000000000000000000..4cb39ac2bd3775481011354bae81f5e9a73a6113 GIT binary patch literal 975 zcmZ`%T}YEr7=ETr>dWQwXEE((QHCskK4&Hkt2zAn7PhTz{zl|LS_YBh_f(el&N4>$?&3!=+g2h-PhSSv^DDRo^#&!oacSs=RKTOt-3%! z#Zv$TDkfJ)b_tono#A9vEVkDGyh&}LA&&+ASUl&qfn~w^xRp2|7J|R?Z{+GaR@Q+| zj*!q2*fuA};0xvn_BjnC)yvxwMovN`0UH3pECJ0t`~rRgzCacD!$F_`I1H2nQ-oaX zr`o)Y6&9;&Ald@vKLqULMF1D^1z0LY@*oQPpmKr14PFYk^x#(AlHin>YVPaPYwP+vtI#S1RQTzQ*2-@Wj0(LL)abMxnS zRGY;SCHyRVlqSu3=<->%X+mOym!-=;G!suM`X>iG`k_iG@Y>S8w`g>BlsrnJEw9vOGTO}Ys(Lfo zAfwY|DfFonS(bsO<(cVnI`cT4A*bmZua3t3l~8LnRa+YWpAh-2XP6|2{T1|9i_LDV iHzUVntu#wiwZjA5L~c#`DCC7XMsm# zF_88EW4Dvpb_@(GTAnVBAs)x)PR`D_S}Jkee*gc{+c!_XT~WO2B*zt|sYY*`T#__f zrh15<-O#j$CDH3kTA;pJjX29xp%4RYqfjJIzt-v2k> zUq45Ac186)yZz6<|NZc=^2(c1?mN$?*(BaDm75=X@ak^FX--23ZI7gbzyh3WD#~tK2G73JiOkuKVQb&(jf>k0Y1O`u;dX$|Cf~%p_I+ zMxn&J3nH@@PP2-+Bi+c!z-z(rhb5!N+2Bq{Q2vi~ecQ}mZ>&BV61Gi0{o0q^g@3~q zF&}#0X~ACAx54r!tKU!kDR~QS%L#u?V`*NKqUpitn0Kmy>%j7B*FsWsoLe2u(q-Aq zGSN-P zeh(^(ejyn&$4BMH?Z4dfztwxL{G;x5{bEkyq{`jhoM1~E(t z%~Jd?m1?GheaYJpxqa2dlV{nKJXyqBoirKa7@j>oE%K{a@!U7wLW{Dt^N(*^OuzYF za#m`^w#$tdIukZbTh07O+{Lva>V@Bd*$3wMi)hcgW^mTf!FGbX3hxY!r%c}&x*Kka z%(>mM{3D<1cj@@@_b)b>?lw+x>sfbvw;MxGw%o+J&Ltc#j77J%I4Tb`nQizU?>pB63kHg#joUNCFnqs%uQ{fYNy z8R+i~dUEb|a6@xPbI|7i8@4-+>n^#JY&f-Xp2qIv**EPzFfM!ja8^M2%`Lr|i?u?7 zCOL&$Sy{PuEoNj1c&uw6{d4Q}q|345m0up4NXwr}oNf1kXM;eZ)X5mz=aVIY31PGH z#)*q(&Yh9;Fp4kvt-)8*UXi6PZbl{Sca;;@?O4pq;b76i)&BDIm(OvT6L$65<*%J_ z=0@Ao1GQ7`p8S%=@*nO~@rfs3tqBD0}fi|DrO9fx0 z9Tj&Q7c=yU*OuAsoG~*y{PU+Xo+_W6Oa2wKtryBKw%RZ4>|=8}b&jlB$;?|neB0yL zHf*Y$`1{Xc{#$`Rd#`Wbd+g^KPM+VFu5D{m>sjIJ*>_MnpnC6D{)9O{kLDKp$pecI z)e_f;l9a@fRIB8oR3OD*WMF8dYhbBsWFBH*U}b7(WnijpU~FYzP`h146h%XBeoAIq zC2kEoujZ@-YLEok5S*V@Ql40p%HWuipOmWLnVXoN8kCxtQdxL1)dr}D!PC{xWt~$( F69AI~I+p+d literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/HK-32.png b/deepsoftlog/experiments/countries/data/raw/flags/HK-32.png new file mode 100644 index 0000000000000000000000000000000000000000..3adacb812712dabfc474770055d6dcdf1a62dfb2 GIT binary patch literal 1047 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfb_v_=LFL(-Z)T07(*%2H!mc z*?UHc_cVB+x_}~j5_g2T?uc;T(-FO=!4ETy|DLu82!| z&aD@{?e|21CQE=61CfC&$neg#ANTKm2P&>Dd0w6iWV~Iy94LNAl=q&t5LBfG|9vC5 z+YAhkOA5YTJon@7tEOe7`|S;{OA4KKOf$| zS+?l+%jbXIy?LCG2n>gNdXgYV3Nt*4^8b3_+_&pjpZ9bCjeWCx>5qGN?{PDLOaLN~ zQG$0BI6%$-B4LhuYTWmX^&a?p-j!syrvtVN=Jr%Kg+QLXt zCI}J-nyCW}Pf$E6g_S)7CK29}AirP+hW~#Zng2R5|Nra9eDKQRMxX>|fk$L9koEv$ zx0Bg+K*n!R7sn8d^T`ifnQHz7un8OMb2Doza~K>*Wo2n?adj!w77(63ValXw6OXQQ z@QZT{^o(>3^^J9omjP*PM@SXzAkgc&U>6)aUvb#0Z6wXN07_4h9j=+^J* z^7cA?N?U97s_d-S8(N)fos)x$y|bgM-P6UdHN1NF^6l&S28EZNXa+A&3^k}db|!N3 z^D}eJ>kl4sjS$s|+f;J%lc;w1+PKYPA~$?;_PpVdSy8w#?=RcG-q~jPH@l3@CNipv z>zgz4M=&z5?DP7NanV)*7!0ZVn zRNKJV%D|v@yNW1^hTQy=%(P0}8hBpKSqao239=zLKdq!Zu_%?nF(p4KRlzeiF+DXX XH8G{K@MNkDP!WTttDnm{r-UW|%@ehH literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/HM-32.png b/deepsoftlog/experiments/countries/data/raw/flags/HM-32.png new file mode 100644 index 0000000000000000000000000000000000000000..32ba6a004cc748b653b9bf9ac765e7cbb1288ae0 GIT binary patch literal 1249 zcmV<71Rnc|P)&Y} zooT1E43tM{YJEV_!M8!7F)>Et#t@8QLt;V*(HP@SCXpDvhCa_Qv1Y(S!0mViN zp)5oZq_l<7p>#U5v@`8=o_EeUF3L+YRhsxM?(Y77-|zhIxuR$1*M)G~Qv3MTqV?gS zIN_kn&UKb@j_fz5U)V0U?&y^p@3YvrHel91)~qh%9I<6jpVeM%QPu_kDFrvCJQCB2 zhZg$)6kq{ezy?49`o!MN{1f}5!78^iofOY?MEL&Q7-zB$R-)I^O4C#yVBfYStXZ>| z30!e7K4brMCc#RdK$+QaTM7myOT78ga@txVe6Z^`LRAvm5_rmBO92ABvY`_4{nbjv zqL51_@eiD((;34V8D!@7Ypl)<@$5>0Nsps0{K@*_5Zjh}jB0^(*AUNuV_O9ME}Ge} z(^vE4ikj}>JYDe|b76C6A8w&YVIoJowhp(L!Ml7NbtT34mtRpzPJ?6PUmn3{vKX@h z<2;HnWuy=Y0qylJUmU)|_F`p$AD?+c)`kOg zwA8UGBp6FhQ%;VM{`7MqpL|BxQly3woE*$CiA{RCKz+|B_$)GcMgOEnN0X0+8khXs5g{Znhro&kpJ)vUGQItLd}@sDKpi{QC_>8u9Q|d0L+2)V z>-lCn7D_H%Nbu{qJhtmFl`He){bAmTEoRp@eU!@@Z6N4cTu&8v{k>xZUBTYt35N`gwcvN|r`L9O=Hycc+pB96=~((^(@>+E6xt0lzBWe%hi9;)KuYni;kOV1ik>D{P&oEIR<9&5D>1u@*|pqz6H9>Qh05UK!GA%GUEiyM$Ffckb zF*-0cD=;%UFfe_$BozPv03~!qSaf7zbY(hiZ)9m^c>ppnF)}SMIW00bR4_0)H8DCc zH7hVPIxsK{>YS+n000?uMObuGZ)S9NVRB^vL1b@YWgtmyVP|DhWnpA_ami&o00000 LNkvXXu0mjf&rdP7 literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/HN-32.png b/deepsoftlog/experiments/countries/data/raw/flags/HN-32.png new file mode 100644 index 0000000000000000000000000000000000000000..48f439e8e1a0b717a2fda2cc723903e9a8be7668 GIT binary patch literal 1211 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfc_2_=LEMiOm8cQPEis9=w8} z`}be{M*{zF0GQ&J5bX>MGZ+|Vq9I1cnQ#QL2u||x%@Pp-Sq(uzHa|at%fK*^fngGu z1Tx@gGB!b=GN3qI{Uo?YAdDL~p5MFo5-xcE{!1W&bAeJfZ$5`}A^!gP^KV1Lfrk&@ z|NHkJ==-ZzUv_mJ0kVMr9vFZA{CoWP!?$n0fP#Pj{@b(X_R*sc{{H>@>C=xVPd>tx zAv6B``Fr!`>(8Hm0M#Eka_`KU$3XS(-+#M(`wg-(pn<=C|Lg2L^61eAi1_vEFDFep z0kZ!8{|65cj)yq=?p?T#KvGB^1aW~L1S&w*g%qBUfCUC1a!@0<@YsPffayd~5GCS( zQo_O@LAV-tj0Y^=^B$PmBuaw(f`KjvhTq@6K)-=7kPE~>mYeQYkQ&A$Z+91VvBZwo zKn`btM`SUO_5fqIli7Aa1%93`jv*T7lP64=GU*uS5*1YmmDH4{1x%5Wo@|w@uBvk! z0v+cyI!3yRvRt`hYO?i;gHEn&tZgmx28G3n!p##mc4`XDm>C@r6*>FnjaxTo+_bi^ zvYg%M5*zbYa>m_=JB9-WL{1`Gsm?0+?~qL;yN)~DmXntQdVjlHd_8v+aclUs;k*OVQV9HmL1*oRoW~s zid!sZW2W)pX=`t9V?Nk7cX!$Qo4fgs+^K)?VBul+vW6K+?nfp2WbGTRSNO}=yIE}F za5ZOGB{NIuXw5k$U=XX8xJHzuB$lLFB^RXvDF!10LnB=SOI;)L5Ca1%Q$s5QQ*8rd zD+7bt?JA-u8glbfGSez?Yv6e`XC+XBB*=!~{Irtt#G+IN$CUh}R0Yr6#Prml)Wnp^ T!jq{sKt&9mu6{1-oD!M<_{w8X literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/HR-32.png b/deepsoftlog/experiments/countries/data/raw/flags/HR-32.png new file mode 100644 index 0000000000000000000000000000000000000000..d17f1a1ad0b008956b79ad1d21a2b543eef585fa GIT binary patch literal 1236 zcmZ`%eN0nV6u&J{N=pUj+OEJB8bKgR*48lrow3*|6$LGw8Dn!4C=Qu{mQK=aOQZn< z+Z17BGF=!Afl-+q-w=g@#H_#`G|SXwBSSqt*ZNlMjuVH%H&Et(@aJl0M01U|HzyJ;e47h^}w{sz2K~6Aa2d+kGh)zd7{)kRP zG=P|ZGI17z=~gJ6htnT`Blb&|Ckz#1;LL(5$9*gX`7_rqDHOt}sMfB5kGk(&1ex0I zVZEgsee0zgjc=rV-8t~*xgr=8OqIi( zt^qeYIQYD!#fzOb8`2h{&nsZ>Z8rcfEEZ(7u8#!|1b2>?%Y`Z{;lKddU?Q8FVRsk$ z;!Cu+NJTfMgqD`z{5;$h1@8{Swsx5L9&|d<@-ik+)58)Wa%P6a_nezUWo59w9^Su? zP15xghahIHmZHje+-UOm7pF5xtCjq*jV#n5#}x8ymE0Oh1Y_^=AhWY7q| zRZn#5tO5U&A$nzMI&O*@4vEk|8=JDRyK~6)6=u=0Q;y2~dFl!mHUf&0Gm5cJUfoAV z3l3t!L4{1JinixmHTvYo2r?23e)33747V)W#~9Oev)LkSGDkMu+FAZ~sin5wT576p zuQb;RYUqq&HnXj(rlY65yR)Q7U!%KFS|PqI5gsopzP7yRSzcN4y05XAvbv$LdoKkt zgeLXl?bWA#5w~lX0)kCh4`pvMRwAxMFq2aiCsOPq#Mp#ltemCYr4<(~EX^K1Bvqb$`jTN1Y|p(8oVWS{|`2MG_{x*l4@*UA)2R`KEK>s;^*TXDOTi`ukR$ z_W&y^J`K>6)@#8O7*Tq0_9v+Z?;mC`3x*fx$)S#uGK7Kr~ zclW$a^9~uBZGx zCz;y{%)i)JfeOH~zyM_a&mag6Nyh&SLjM_nBsf$V8UC>`{$qzBHpc&q44jt#R|Dfx zr6kBN7)XP`zjuO+xbUoN_mhB%I14-?i-EKU7`vU!wgWO=dAc};Xq--WXw4-DR@Z=ln2?~Tu(-g;&=B5d zr$tVl+IW&#^vV?{huB)@anxHD_snsr-&zE&-9jVMV;EJ?LWE=mPb3`PcqM!E); zx<=+91_oB9hE@iq+6Kl}1_rg;RYXxV8U}fi7AzZCsS>JiWody{an^LB{Ts5l0Qm` literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/HU-32.png b/deepsoftlog/experiments/countries/data/raw/flags/HU-32.png new file mode 100644 index 0000000000000000000000000000000000000000..d7d17598429aad30a973af3357303421100528b6 GIT binary patch literal 435 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7E^sk8u}5ZC_<4F44r{wpd1$$vX{ z{@=9=g8u%8f`5Ph{{Q#)|6dUL^Y`yR82JAWq~Pw;`}dwf5koZtLlpyvtY#2v6B7p` z#ui3~7KRJ%;+{Yo8I!!-T{u79T>1vc;VkfoEC$jZVC;4>+YZQx_jGX#(Kx^LtfyFm zf`IeEhGcCHi|(eX|K3$iZBw`Y(`Wpro-$FvwQk{>S8bu;s!^{xt_F6;y=+_>%Ab7q zMA5Z`MKkx$$UL+u&pJC=T;|`Nh~@SIkLC(6&*Rx6dGi5tIJX@0)spI8K&whErLK{Ah=GBXsiBpDskVW!m4QL+b`?<+4Y~O#nQ4`{HSoNe zvl6I55@bVgep*R+Vo@rCV@iHfs)A>3VtQ&&YGO)d;mK4RpdtoOS3j3^P65mXxng<*1Vx5jgzeexwie!*ay85sV(6J*4O|JEjc?PRtckP+bN;uxZF{_Gi3z5@mVtQUEWjiuh#AJe$? zOmMI%e!%ST-KfAy=&B3QY}FFih?11Vl2ohYqEsNoU}Ruuq-$WQYh)f`U|?lxXk}ok zZD4F=U{JeVMHEFtZhlH;S|x4`Jg?@g1Zt23*$|wcR#Ki=l*-_klAn~S;F+74o*I;z Wm{M7IGSvpCh{4m<&t;ucLK6UNU%NN} literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/IE-32.png b/deepsoftlog/experiments/countries/data/raw/flags/IE-32.png new file mode 100644 index 0000000000000000000000000000000000000000..693a20791f3b3990ce046b58d07a89a460666838 GIT binary patch literal 541 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7E^srdmuA+A!hrMh-?{r~^}-@kuA z5(bvn9#W0hBVIsr-5QhJ03_z7YHdaIa2QvWe1(G1e z!3TcVSB7u1NuMI14-?i-EKU7`vU! zwgWN}JzX3_G|ndnv@x-Xx~Zj!g()N?r#}jK8q&kiglo|A@&A&e8bT3TFPS{ogFVj`O6ESP38ZPK)fQ<<46SulhtpET3 literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/IL-32.png b/deepsoftlog/experiments/countries/data/raw/flags/IL-32.png new file mode 100644 index 0000000000000000000000000000000000000000..01dde524fc65becb6ebe3f750baf0a96dab35219 GIT binary patch literal 1229 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfcg;_=LFr|NkE-GI1i1{J(ea z|G$4h2*?16-~vD?Gz8R(iGYTnAxr}y)*+J+HOL|mHkwgr)}grvkK=*n!xc}OgkVFw zk8I1HJ^z7d|9%jHupzQQ6aM}Cf9%-*%a=h6WTyhTA3y$o`}Y6+`~Rz|{(~Fkd;xh2s1m5)?Aia7mH*4j|8L*^f6bcz)z$wiD*oTT4Uz%^pp&+4{l93@|0PSH zA`roC+fW4IhV0z=f89D1Lm;*QodLA>-aU|A&CUOxKK=jd)&I|*K~?}20Kw6tQ1>Hy z8OR3u6i8zF8Yl=4H)O`HX3lNE1QbvbikqKYxC|7GMO1)H^{S38wym$v;Ts z|345hs4AdZh|1sp{{H>*R**4v{_;M-M)nz zH5W+UWtq^_Fs-5C+O~#u#S=9g#JFH<#W0#Vc)|dv8F4_}i%v}-Xi)M_{Ohdi2`0}NNy64!{5l*E!$tK_0o zAjM#0U}&UkV5w_l9%5i%Wol?;V5)6kY-M0jyIn;TMMG|WN@iLmZVf!I=Bxy2kObKf soS#-wo>-L1;Fyx1l&avFo0y&&l$w}QS$Hzl2B?U^)78&qol`;+0Q3{v`Tzg` literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/IM-32.png b/deepsoftlog/experiments/countries/data/raw/flags/IM-32.png new file mode 100644 index 0000000000000000000000000000000000000000..5fb87fcb4c218d8cf64279623e702b0e9164d589 GIT binary patch literal 822 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfeuo_=LFrXJCLLMkwPS2g^TR zm>^sh%=pL0^ zIT(I$BaHgT3S_gLwq}^08E|;!?DqbKnR5$1IeDCp(41K8eVC2mKQr?`Ca`*tV_5$& zFsv%IKN24Ngn?n*nspDSPTO5ub*jJTzqlCG&CCqHS(t(Bj||)^=65Y$HSGWc!_wBK z$0a5I1O=gLfJVuP{bFFaxpDJ~Eh`SMU9flmk>1(S&)vBGaWMVkVmu!ylQ+5SEQ9EG zE9>`mdVfGxGXs4Db}iQvLxx#h)w_yI-U0o~%ln^^=|2lh3g}<3U~A*i@4&d>Ebxdd z2GSm2>~=ES4#+s;>EaloaXvXgLD1mQw4|hjw8Yfp=MSDddUkMC!}R{f_y)%Sj|i73 zjy$t(KH?FY#1nMMXj9QAE}kwg39c!jAy==Mnrz)7SyJ-#3onmhuYr-7p{eoq4JjKo zrES=F^ckCVHM_fdx_G#GIU9dY-93X@$rYV-pi2lZ70N3=Ba^w(7rL^#c8+TH+c}l9E`GYL#4+3Zxi}3=EBQ4J>ty z%tH(etV|893{15RjI9g|YPYM1qG-s?PsvQH#I1qn)tr?;4U!-mg7ec#$`gxH85~pc hlTsBta}(23gHjVyDhp4h+5iLass{k?zj*c?`jfJ3p&vpUL zM@AsK(9oaXK--ZK&?RU9=rA+@bSD}DIvb9F?ng!tzhIJ3uR&c7@rA;_Gvfcwi2Xk+ z5B8A)+%L$Ce?SkO1EUkjo`w5#*Z=2x{yg9F^u(;kN2mXKy6gXoy^x@Q`~Bbl|A&s> zUbE@)x-D0CAGrSO&p)6DBqBg@@%uN>zfT^&SiAaIbK{!w(j{wFAHRL;;h*2XAR+Vn z_wR=fpRZYSqM~v|M&|t0t54jx`4A`w3Z;Mlj~>3dZS%$LTQBY3d-3;gXtY9u>*a$- zuOHoid4Kn@BRdWsy8ZO-XWy=>Hg%f8^ojZBhDL#)Vba*ReOX9b5Kn+O=)p`uqg^m&b+o`^qmmu;BCtX^yI@-@nv-=9ug(=juqm zlACiVk1H_2>}rjafY1B6hQ-(3SQb}5Z>$izth3f)jUrc0Rc>`-Lf!kO)^0KV$XmO4 zj%0?aTj$MU2okeo)Z7P)($hp6<`1(8B z>hEvu86H*UeE#z2TbsrQ%L)!2K6%TkH$OTjFFzo2-?{Fe4Wj_-^79Fdjpgqv)F276Aviy+q&%@GmBBG3KPgqg dGdD3kH7GSPrLyp3str&PgQu&X%Q~loCIH87rb+++ literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/IO-32.png b/deepsoftlog/experiments/countries/data/raw/flags/IO-32.png new file mode 100644 index 0000000000000000000000000000000000000000..9ca1bfd54e4235ea51955de48a4013cdef599a5b GIT binary patch literal 2037 zcmV#?=0>hqp%>a-qHhoXW? zCn^Xco`8s=A>0sxfpCQU|H*HkkEZ3oAxFscbor@UC-$GMWaoz4;O=MV!A#~_9^kBf z!nGOi^T*GN@tI=aofu!TqBKlN3c+V`8lEw+czS37xci`ieTQ%G_N+waWTfEd>kWX( z+{uppS4fC8@ZN%Hgofw=G{a6+)pmQ#$ko=@%W)c;lrdwRG=FKbWVYF)=*R$RyxJqV zELN#LG)^*`dZcY{_)DLr1W04wOqI-rC~4c7ds6O}Ldh}ID-{&plQ#TVBF&r{Ar)Mz zm9oDomPSVjskFRKTK#RYlsYj)s;+C3mVS6q8WNpSgQ;EGzWXwozwWuH2rn;rjNY4c zos;nJK-^;|V6i(G-m?Se<9d8HY(jqenDDVtxMSkE@yJYhSq=VPGKq2Fl$O^MJi?c( zB^l`TzPMb1Cv`0x_}>w9Y6$6*;)#wKLGqYaF_}9kD6FE<+)Y|?jH+qe`Zoo)OIF+h zynS$4y3u-Q@$mPEQp(rj69WCbb z>{2!#F_Jwmlj??gT5R<+w!Y-MQx-BuMYD4GEGDOo#oJS+t>dLCE9NFNS_!qM7u7z9 zc9apJIB~bMLSH|k-+^LoMzs&%cDj&98DVe`)!K~{nLqvZC$6{x!E9&!_o-CfU(WT1 zm4xTaB{MdaX2)%U+-c-xCo$2OM$Xsgxpln@uf!mRpLL_zzT=!S=uqVNq*yYhkHi0E z2VJ)xpeDV_aQ-PAWtHf6@5T@k05y;3ve>yZC2kDk5$_ZbtU>7g>i<>gcq zRFZqdggwNIagKIGe=p~4I`R(RBrYX^@IY@2&Clp9uVdfkR&;?9iSb7I`W<}s#Q}1@ zyv?AH@C>ry?~cJs>(8|Z4QxAkirf`d^bJ`^h!4XM5=eEe$*mbOH!0#pgIrtF#(9&2 zgLS>M6}GVF@b7rn`2yv+iR(#kv*eQtAbGNSb2=+B(@F4f((|yEEmvE~+w}zBkzQQ> z?{cQ5jic6FO<_q5^@VMCjK9mmj8!DW2OtR@W!GP@bme8}>}AfvXjSu~szy0Sv zti{yW&Z)Dvn3@{L%-55#cRa&6+>ItMiPI-a85t44TW==g=j+YD;4oUPq-wWc4PF1* zYeq?@ILKOZl>xP#=GHEL`nia%VU@s`FqVH%NVDZR-PRtCpRS;~x|MjNKRFvq_|MsL zhMoOfEUY4DeIcpIMh+dn!_8lBVhm`*-ecm2yiz=LGFA7QS^WMF%ZIY84fCOnjJ`&deFF0MI|+pyb9wu3oEUdiogNT`&VLPc2TTi^{4e zTqwHF$nXF@U6MhdzYdoMo}Bp?J-f2;jPbxDaW#|HY(^3qnp!LrT&m>R^Dd^Pk5MTq zzN;7$b4A$1@5H%_6{5FqP`HH<&l@|$yhVQ(@Riv2&mz&)-78#fA*?U$V$C;41gsL@ z{%}GxHgyU`b&DZ~BK96E6!2&9hrj$=+&Xtml%H8AO7pjhOS^IeY!JVhvsILoR*Qi_ zr*OH2Xm0IR?vl!+@tt}>KRg;TsXdnjq8FrcCwVvkgo}k4x*#6 zj{}G2Qd75*E5AMrGQvQ6hn3cLD+zItIGqZ%-hN`Ejr8>m@Z8kK zs7M1kA8%UQx`~bs$L(_Sw4sH70AGwFgK0E(Ffx1uIzK<|7hgjiu#qxv0jKs@Y5! zAI%F>8y~O8$J(f(i_)@lmc;p*=BKqK5jT)cdj+4GNr?IlaHU!k#iEkSx;$|~wun_ECl zc^gTS!zs?sB0esH+Q*G-&bvhR(ldZ3m#!@1^e;&?w^-P*znBYKDq+~gqRpA~**DSK zH^7P0rA(c?8&EZq(t}<92f4dl%r`Z`RsaA1C3HntbYx+4WjbSWWnpw>05UK!GA%GU zEiyM$FfckbF*-0cD=;%UFfe_$BozPv03~!qSaf7zbY(hiZ)9m^c>ppnF)}SMIW00b zR4_0)H8DCcH7hVPIxsK{>YS+n000?uMObuGZ)S9NVRB^vL1b@YWgtmyVP|DhWnpA_ Tami&o00000NkvXXu0mjfoGRpv literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/IQ-32.png b/deepsoftlog/experiments/countries/data/raw/flags/IQ-32.png new file mode 100644 index 0000000000000000000000000000000000000000..949c900f0760682ff2b5266e31606280b01b46fc GIT binary patch literal 1271 zcmZ`$eN0GAyK$PU+tb1S@H|ECB0A(~iDk1y%}8*fQss zF>Z6NvJYmK7)K;dH?+`f3X`|CNa7$}+p)$KQ=sjmj1C_i<#jDB{qVFMU1Rj*+;e~D z+;i^vIxeiP%*lQx8$pm90iRa`cOIP8S&xC-HhHohL6~acc5%5LbOg~e7zQ?b072%R z&Uic?i^ZbRC_xbU`T5}Rh#3s+GIPK6RVRMsQ0s=y3YUsr!z}BzDj)(oecU1+d_B%{v_4$qA4B4(*x(Op_pCCW+xdccDml znx07vAs!1x7suwuWAQi@ob!cfUwC1Pc7qB$?Vkxp!{F9q*2pg6<|#8Bq%G6t!3o3I zJ=@3HgJ<<;{`Sw3_gyCUP0L;Lu=7UUMOm+nRQPJ9`}Qs}?r!>46$l(&U~pBQ_qDtRj*vhD6PX}VUu)!8RJJW3W+ea(4a+x+J&x8C-%qgN^F z8kD{M)N{4Rm}e@ioOk=U`y8YFEjI6#gF&vhw5fNLTK#)AJ;bh5KfC!8(tXKVXa08c zVHf$m@g2?XJy*!9zaByR)j4B(`f9JXwxLaglEvCMp}O0wEV#Ymi(CY0Ut`^>s37xU zdIhTTohqqBg_qPe<8UFxSWz(t+r%k;MT}u3+@cbUyB>SF1j7#XJrAK70gVc&Tz269 z1D>4y<`M)voyZ_k$W*P8W*jM#D)!=ef<{RlUV}@d2b3fDtKftP%By*r*FO04AHIvC AX#fBK literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/IR-32.png b/deepsoftlog/experiments/countries/data/raw/flags/IR-32.png new file mode 100644 index 0000000000000000000000000000000000000000..e81d53bd9923130829d56b83ba928f0fb799dd40 GIT binary patch literal 801 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3HGD8EPYe6kC$Fy9>jA5L~c#`DCC7XMsm# zF_88EW4Dvpb_@(mR-P`7As)w%PCe@<;wW&u{_0(0>)jcf7^h@#+^Jy{+WWrKT=Ajr z7v36Pp~an@G9ES+ZjCNUPG8c(m`-JdNErRMr5OC8_h z)E;!&d+sTf#hbVo)cbnq?M(Yc5t^ zQM$)^rCNedK>os>*8Yi4R#$vnp{c}YaD_*|FGI@pNby zf+DyHFH+XC1E)Xtw6knH*l^(EM<4$Kxff&q^L}0RNd1C+-GA$=&CS5% zq*~${QIe8al4_M)lnSI6j0_BobPX(Zjm$#~46IBItqe@H4UDY}3~INlh@xo7%}>cp ztHiB==hd8*Kn;>08-nxGO3D+9QW+dm@{>{(JaZG%Q-e|yQz{EjrrH1%F?hQAxvX!0=X_QStKc- zIUvJdKn;g@|3297$gXAjs~!!ELW`0hzhEE@2mk*%G82m*Jy?GesFAb4BeEDsdw{Xq z$!t4d(h&1>aSYKopS%GGwrtwAaqH&tf|5-P%yMzuc5HQS90?6t1!aY$#orGsKXCc< zZT8hn-rnBv_Wv6WEO;>C!iE9^0RbNIB%wCV4VyN7>h9?2>g(+7_V-|67QEURJ$+M^RHFUJtm?du}S%y{4Xqq%> z(xpwGx=yWnHS5-{DuaN4HQ`CYZebTL+_-XQ((PNdUxYgvbnLGEZNkY=u+TJ#Wj{BGxwg=?(J&h@y2Mj9J64!{5 zl*E!$tK_0oAjM#0U}&UkV5w_l9%5i%Wol?;V5)6kY-M0jyIn;TMMG|WN@iLmZVf!I z=Bxy2kObKfoS#-wo>-L1;Fyx1l&avFo0y&&l$w}QS$Hzl2B?U^)78&qol`;+0DQ}| AlK=n! literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/IT-32.png b/deepsoftlog/experiments/countries/data/raw/flags/IT-32.png new file mode 100644 index 0000000000000000000000000000000000000000..ca3db0ca3579351ba0ed52dadda5344ab179080d GIT binary patch literal 582 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7E^sa*j+A+G;{3 z{vQo|{|;1ujDX61{Q7~S>ch3BZ~V#oPXcGf&kFr zZ+(_T1GOXoM9LV7;@Q5r1(jH*!b~4)z$Vm5eaSYKopL~IhQB5{YEX=H| zjL%OmHqW-UR<1VAj;+p3Ab~;Kz`(@F%+S=((AaSMh2!fS90EKdJUm=N&IHZ(5q1+5 zSbo4O#wo}vD#|VFT+}=rVUZk>sZ&BjLa$yi%`x2?Ai}_~yx2*|EzSzaVo)t{jVMV; zEJ?LWE=mPb3`PcqM!E);x<=+91_oB9hE@iq+6Kl}1_rg;RYXxV8U}fi7AzZCsS>JiWody{an^LB{Ts5q)!EN literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/JE-32.png b/deepsoftlog/experiments/countries/data/raw/flags/JE-32.png new file mode 100644 index 0000000000000000000000000000000000000000..001da836ce7ba2c00aa3e1fb7fb386c57d79a751 GIT binary patch literal 980 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3HGD8EPYe6kC$Fy9>jA5L~c#`DCC7XMsm# zF_88EW4Dvpb_@(mZ#`WcLp+Ypo$Bimk|@&F?>sv);?nwVP8TO}#dls4#DrM%Zn?Z; z(Y`p%%+>XQKZmHVh$!o#AWxCZrX-gOC+2n-m~WMI-4dV^m~kO-)y~Uj?!33t-Bqchrcjtfaeg5}e@w=Za%Z>Xw9=!~1&D3&8y#1@`N$TnqK^r%8wf@x-n;EM0%{wt# zaz;;Sb~abPdK<@^JC=PN3XdE%F|7|T{G!ouV5YHwt*=pz^oFl%yOP)09Q#wn_}N=} z;(>0TIcp0wScQcH;`x=te0?8$mW(FoUp;C{XTzh@2myu`0nlZ zS7Yz^e)rfOH5V(^*H;rxHQLuFq_CVi{q&#s9Z_d>nCx7rW{%m1szHoiHaF}e%roS6%+t=;ReD-L&Lc(kj zp`%BYmM;DE@Af1Q4V9os%|}I@7IQUY0s|dO{+B7#sv8>@yqa>aw$!wz|L})`Ro}vQ zC#0q-i*Ji)DrpMfsHzI;e0RswRPw+frX6>GMZ2>0^g5dSn(sR!f0C^Aw2V!YclvJY z>pgz(b?Ypt-rU^Qn>R~x7@5BOxwheH>Wep5QdCtx{ITrxoR*#ct5{({{o&H>zkWY_ z?*I0{FNGklfUIUmk={cuG-NCmaNfzw{dnx|-2L%(wN1k6ChoPiK7L{b9e?Uvy}RQ| zo^VLG{ZhGYQ)y>j_rERue8P9VT8T=V4I2^?Bn}-AW?#KJk|{>7m7}Em`RtVF?k}aq z#TTxmC^Ds{x_z=(x9Zf1|KggnE~IXgE;9$_0M!!Lh?11Vl2ohYqEsNoU}Ruuq-$WQ zYh)f`U|?lxXk}okZD4F=U{JeVMHEFtZhlH;S|x4`Jg?@g1Zt23*$|wcR#Ki=l*-_k ilAn~S;F+74o*I;zm{M7IGSvpCh{4m<&t;ucLK6UMiKQC= literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/JM-32.png b/deepsoftlog/experiments/countries/data/raw/flags/JM-32.png new file mode 100644 index 0000000000000000000000000000000000000000..9f832862d72ff1dafe2c037e9c208e606b13bb98 GIT binary patch literal 1047 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3HGD8EPYe6kC$Fy9>jA5L~c#`DCC7XMsm# zF_88EW4Dvpb_@*62A(dCAs)x4PCf4*5-!m;|NS|G86FGo85S=4W6*SK**|Hmb-OcM z*L17h^;q;KTXdr0m369tV!ncFxXXF3{*%m7YKmBJ!)VzV0}fB=9p7v8_8A*7&viWi z>0a@<-+SJd?<;nZ7k;VM$g%5#{HM$DClVNgxDuH;CWHsr<#0?8E#Ug^BEZcf+rmA6 z!Q0*yO&(pkGk=R-zuDKpAb5mpv$VlZo}Hl{jO>%PJ$(J0K~UjwE4QEv6LaQ^lLs#T z72ue#<$rPa5vCVg?JVx|#>y%%9a+F-ESIu^gV(_-(t4uTL(%sY2E4YBFK)g6?%QBB zBevyZyFrcglLX_aTMZ`;I>>*S)0q7BsshlWKt>@oMTTjm(H7qh=`|b_IG1*|F!F}w zjL4QwO$oW?5T>YE4lWmbIP}^MNx5(_i$A<0X%RKCBe-HC-{i_2ffGC4J-nfL=FH(I z`4c`LO5E)FZC3`HNRFeL$)!WHREyT~SM6Tyc&hVGblbs2N9&by`*xRE%!_T<&7b(g zZ)?H6h}d1LiuN&gF8pw;Ii}^FY$tL)o9PPk%l}gQ z{xaFU-*8xkbM|UO4+j5d55F->?B(a>^tdjl*S{dndg{wLoAY}$@4Ia^6TUJ1Qvl!n zH+EaCtaf`%;8pBONadB8u$v{m)H!_ie39FWmaBSj%*j}(cd*<3;XUOYc3dY9OyUrl z){@2BaKK&e=!PJphYRaoSaQzIty}iK?PckX-8}YdZmHdGzc9P?vG3KtcH3Dd??3!C zdaI+#hg=EQvR}yx<&x*-H7UPc=ABb(_nGb3XSF$6+ZD?m=Y}@OWPe)vsq@TF7dE$r zjtV(9*(QE*fAOl#QhFax{JgevVft^@{JZ@6L$O@lmqUq{UVIi6pUB)L_r#0idAZsn z@6X-ro@^fqC+j<|yDw9|?Ok8hpZpz>w{-v1D{EivtaXAAZ>tyVuc{v=zSX?{e@st! zBYMz7Q0k~mw(Rlh#*~`hqT3RJA7n}G%RDN3&wY)Tg66h+Op&_vaus(2EP$CvwZt`| zBqgyV)hf9t6-Y4{85kPr8d&NYnTHq{SeY7H8JKDt7+V<_)NWT1MbVI(pOTqYiCY8D zt2rxy8YDqB1m~xflqVLYGB~E>C#5QQ<|d}62BjvZR2H60wE-$(@O1TaS?83{1OT>& By7mA7 literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/JO-32.png b/deepsoftlog/experiments/countries/data/raw/flags/JO-32.png new file mode 100644 index 0000000000000000000000000000000000000000..607ac664f63f8182b1943a39e5356170f356e412 GIT binary patch literal 1185 zcmZ`$eN0nV6hE(zNBU^#s+2;V68xBP7`A7fBR0&TD?)=I3^304Pb)1BY2~YeqKFt1 zWhfOD;ep~uwjqPbM(MD&P9+;3nR95E1SL(;$-*>q%l6NE6Tms zuX~4vyx81s@}INtxkw33qvgv{Lj&^pP}p$1vQl)pkV=IjB7#i{6eX~%03Z|=3b$_y zqA1K6Av|zEymbr3#2|(tc$N|sj3{M^M3w=k#Q#{h0fNLAE2of@LDq6~XAB7<>4Igk zG$D}#ijW{+pQOOlOvyjOo0R7 z6!xF498 zQ-G-g-nxgBsCZb|N+MeZlOEy6QrmO0^8_RYzTia%*CIN2to9~(&h1$l`fYY^^ILes zmS%3Pz;k9`Y#c3KhXF|j{rdbBKNJ|11*(=4r%#?~8dAi!n)xR`#j2W5m#r`v-#2aE zoHsExes5@36y2`yT#j6cd0cV*GCiH4)cK5DE#zLAkz%g$E+&em5OMqlqLn$_@IC)c`1 z4%Q_*vfjLLA*c89)sOpoyqEeuyY{JC1E2fvcXyY3Xx+K1$Z9Kg{Ce|?4UXYHXSb(w zptpAL8^fv2P3PXOiPS>%sj8Wt$%;Q`?zG=9PG9;q>&zSPG4lQ2{k5fMe4DHK`v<$9 zrdX%?HH$c@b>8^HYqozH&v`1JPkLU7;iR+d^LI;s8=GF5;aD^r8L!Vi+L5~Z?-9+j zd&3SII;|snY{}wbe0{Ik(?77AO?Hc}pxlBd&~mG^$=upxZAw1J>DH{$acfp`t92Y# zGq5c7r2<=txu|gO{};%AIopK`G(;hbii19N~1;A+s=uV4RPvEqMK)&Gi$|BDv=fA$Qd5{Rx``LCe?bnAZ(j{j_I|4*EN zngEn~_3FQ=>3=1q|6*bwq^S6xhXfhfL#2Q=0$m8SPG0{1^yyHeor|EEs@dA{@?xW!d9RL#w2fd7lsa2 zSq~tGv%n*=7)XQI9t>_Lv+aNi_W6e|35UcC=};YUpU` zY3eq|l^AyPPJR?Rp}{3mMKjXRbL!&28fBeLC`1bA{ZRRIJ8|CEv4m@i49d%EE|7XDG zpI_g8m=gDZ-FKaj26wd6U0{%@mbgZgq$HN4S|t~y0x1R~14AQS14~^a^AH0AD^o)& z15<4SV=DuL+U+W$C>nC}Q!>*kackgtHD@JIgCxj?;QX|b^2DN42FH~Aq*MjZ+{Ezopr0Bzeuq5uE@ literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/KE-32.png b/deepsoftlog/experiments/countries/data/raw/flags/KE-32.png new file mode 100644 index 0000000000000000000000000000000000000000..d262ebf304931623edfdbc6c7841a02a53847011 GIT binary patch literal 845 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3HGD8EPYe6kC$Fy9>jA5L~c#`DCC7XMsm# zF_88EW4Dvpb_@(mX`U{QAs)w!0zq;N<6*DGZ``qJmPfaZU@w>n6rQ55^(w5mAzxZuiYZs4&SD{2(%DnT1 z8&}W1aX~=ZU(RqsaUTI)^ zwsUJv>xOxL#&rb;0!@EerT8cX8frKQZ@7QuNS59Cy#_4TRoS21zP&@TSLhG-fqQY5 z4WIU`l4HH$(UR;?Dd%V7$H8(@BBNO-ljniP?6tQTxlP=YdziAyrweC$GG2`7dwlrt zG53P6pErfHRp zgXRA$+ysztoxLicvY?rybvZ^!q$jV~2$W!0XrsQs07Pxq0 z#G?$JS@(<1h}~`xGPzcN;7aj{B*B(iCWQrCwkFzMoArxZZ~4bAs~h}|z@(>I;u=ws zl30>zm0Xkxq!^4042^UREOm{{LktY8Obx9JOtlS+tqcrmx2uSvXvob^$xN%nt%2v& zoRvTgk{}y`^V3So6N^$A98>a>QWZRN6Vp?JQWH}u3s0un02MKKy85}Sb4q9e0FdQr AI{*Lx literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/KG-32.png b/deepsoftlog/experiments/countries/data/raw/flags/KG-32.png new file mode 100644 index 0000000000000000000000000000000000000000..d09c922e0601a7dba313d2752e2787db881cda5c GIT binary patch literal 903 zcmZ`$X-Je&6g@MO+o+Yu1Z9|#nl>1pic?J@IgVS_xXftFq&YgD6{C&IRA>vKNsClQ zi(%%E(n>3_f+S0baLGso2|+83XaSM>8&Tb^&tE~od-vVIk~6<^d8g> zss_CR?EyUnjf3(;V~pVr**1bEK|P?0pz8v|Y;}T%+h)u)(3Idg1G)iXdrvUei|9Ot zVNUVbD)<@Cvvh-)N){r_w`2gdfxdtSM8y%%XHYXpC-mXYGeAwCQP6A93o%iO=wx1G zCJ6(XK>46epl~4+hgc9^EH!J(i*;ryzOv&v=Nn$$`N&`8?#ecqf!|;K6z6(RM(~SQ zS?cymK2ya`9&*I9Gm~aau!N5m6(lNWm(P~z`~zaVRoay+RfeVu^;b_cF6ve;JgP_t zw)ti4RQL6ThP1WH_KA;O+V>5+&6$?$+^n1;^We>6d9_>2>DH938Pm@ihCS<*MgBT- zOr>|a))8RUZ8)^qZQMn>hUIr%G8{lW3TD{$0`>PcbGZ z4fYN6uL=pfA9|~x+`ihnqdK`b_kd|%pfz6SJgw={EYUPxynN|lj-}A|cE?Ot(`3&N z_eTR^cNP63#nW%cCda3Och$u_=+HmuIaIyAY%naqY7X^i_GKx2#-w-ORyg+a)S<4V zZ7#dbCF_eSWIhlrMMXzS>m#GrS|mvy8>N?GwNi{;l8$tTX#Pqlb=vn9SN%W1XQsKG t6PC_ZFguG~2W=HH670@GIVi2vwp-4YZT712AvumgNJ}yqI}HUje*lh literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/KH-32.png b/deepsoftlog/experiments/countries/data/raw/flags/KH-32.png new file mode 100644 index 0000000000000000000000000000000000000000..9da5d0f71d1bf9cd2f89d4686c79c3a9da205b28 GIT binary patch literal 858 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3HGD8EPYe6kC$Fy9>jA5L~c#`DCC7XMsm# zF_88EW4Dvpb_@(m#hxyXAs)xKPTlPv;wW;gKKNc4PX;Vc=&OjeDeqU4ZoclcB#voOxW*k*uZ?r?`7<1mi`85_XVDO zF_(^b7ASxIF1a?WnoU0$l&)YWg!nCtrW zi^E#C<$^yZCHZ`I&YlzWWD&>7=bo!VJ%V?!vCZ11-5R|1-88;snd=+uO*#%;Et}OW z%(CS6Z3~B{2j-nFf@Xau%U-?E=w}UK+g-eieZyMrZ@XnZs)JZwzEzA~Z}20l&G@O2 zwYPUkf8V0T6ONtY^2+w9w}1JIEpzRu6PGnZ?rUC~XX`G`6|l18nZv0Y>%3Gq%u`x^ z{$UmSkALr!KR!x7Qy@CEzhnA7rDF+RuA97CzZ}=P7}g_Y z(ABEu^5%evx%~cZ^D+aMIB=NAtdaS;?CBp>4*n>?)9w1x>O0%~9Tq3gc-%WbqwJ1@ zmN!EQFdeFvxJHzuB$lLFB^RXvDF!10LnB=SOI;)L5Ca1%Q$s5QQ*8rdD+7bt?JA-u z8glbfGSez?Yv6e`XC+XBB*=!~{Irtt#G+IN$CUh}R0Yr6#Prml)Wnp^!jq{sKt&9m Lu6{1-oD!M3RS$Tf(xZu@In#61zW20LaYcyG>NFR z8miQ|BsE)YOeUR7_Dm+TWtsWU=S6Z?h4jJ$=j!FW&%^oPQ|Y^F1f^K*QA?mSXaz(R zMjq&ZpgkZ0=Bk?j5o{>Msst41EX>`OBNGsGD2G=mtT_X`tRhA@j3~qBc8a${=?G@Ea3Y`303y_yAw4gM}eGlxS4Hi6M%d zu`K%k3BdA@Em%my{2vMuHu4RHy-cuf5dPl+h6$p%ZkS4;EQ9g<9Mg}?Bc(aCrLbMI zv$oAaz_OwF_jf1-T3?SM&$SFx3i6y_cS1T2$^?fSl(C#SoESzPlU9t;CvwHVZJyt_L?eog3X5h^-q`>L)~!) zGBSZ&>_e4#06};5pnI2?d8QhD^WPM#8KveH8v%co#PkT3%fe8%;y!Z~i4UOyg^*oD zU+9IxHK>Z4&_DeG(J@qs57H@g`xVe%eXcVPH%h7=$$j*;$k0{EC6Xc&qhft_TGGw+ zl4`6L>-4)Kks-+@6OzqD#F{xJ)<})$=tfzZJSB^XVaXip3!i=2!;jyO&~#4)4?k4Lx^j(ZVPMeW)3cYk)H%-m4}^Gd??y_UIkbkp z$tBL5y-eqCQ#|_E2KL`uL(p7g$x`%=Er@E~^NIGYcPUSSgTc-iM~-Y}Q{6hcFGqOu zL?_i-eb{UU69WmJd%m8^sv>^>EzI%PFSC7D5!tMeNo9EUnR+TJf?RCB%F9Q4*ng;u z+1W+x3t0|7y@jG;FF%~W!fUTw;i0F>h(~@p&mBkDUjMLRM!j>%+l$ZMnhbM8n9h8^*>FbNq*EhlT?Ue+BUcy6@ z(034oI)yQ!*jvvcQ7w6{l?o?hh8p;{Iea=iE6pX}HXpsucjwzeSv4j!y! zYAVJ1@AuNwR7xo1=iIpg0s#jH4s0Y6iSxk+S44%wGuDL*{YE^#z`lL86crUPHI=~c z_mE1>)6&unKyz~~Uay;(nIyqrKCxJmmX;ozPCHFawYXdk;_)q22ySIcFUf9N_P3uS|=V@*2LBSgW2FrH|kHNLe*gdg literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/KM-32.png b/deepsoftlog/experiments/countries/data/raw/flags/KM-32.png new file mode 100644 index 0000000000000000000000000000000000000000..43f21ef6073a8877364e51516d062820c3013e5d GIT binary patch literal 951 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3HGD8EPYe6kC$Fy9>jA5L~c#`DCC7XMsm# zF_88EW4Dvpb_@(m7d%}YLp+Xeo$8&_6DV@L{`+h5w?5WaU(N_RVmz@!Lr5n=;3G$p zV~bl;(oHp?mI)l8EqZHuI*w@bPSoR2(y`GF6gt1nG31Kz+XZP+#&fTKul*h|#ZFAD zEH>@CW}zh6JB35(P@bT`!6p1@PcOF=zU)1H z!~Xu+KbmHi%UU@aoHY3tFeEZa?BDdtw(C2W#GK_n=4^|IiaxL_J#L#`M)Ic&?h749 z9KY_KS$O7slt$Ulk57-T$jw>)Z0-D4k#pC~H=d)|{7mUmqkz-O7$fzkaqAiOKUDvs zd}bNvY>n8xU2WH%Pr3f~p-ZxMyV#k;k5`^nY^v>0VRT&S({bW`@cSbxcLk_s&YgDa z_g14H3H#>M7Pu`7^B38su)1&URCQh6Ptt2$T~6Om_C< z%I#AOsqfgdP;d64Wg9)NDHjOMjARV7sC=!W`q;~2>n9Q3m2Pf7j|F6iU3j=DQnL5+ zqq3g22PItf4?n1EFH%2ndcXU9P8K%S8{Z0~C%UwxUY=g;!p>8U}fi7AzZCsS>JiWody{an^L HB{Ts508N)o literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/KN-32.png b/deepsoftlog/experiments/countries/data/raw/flags/KN-32.png new file mode 100644 index 0000000000000000000000000000000000000000..330de38661128e40b54f3fbf1fc72fb275c81ff9 GIT binary patch literal 1237 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3HGD8EPYe6kC$Fy9>jA5L~c#`DCC7XMsm# zF_88EW4Dvpb_@*6?>t=`Lp+Ypo%-MZN~z3o`S<6i?|x_T<=qPlKidT-9du75xUIc0 z>+gjaGt>0s?7vBpoL=j;Ziz~LaO00r_P+`CTUO4#-1+E^myWLU1g^qeF z`z&BNg|F}Tp5G4>vb>ni+dugE_UoPBx;M6Z7Sh(PIy)1aNpNQF`#5>tB}-$6(3nT{}*LW7X8k3L4_qrOS;zZ-YLFIcjW}NxAAA# zZ#l9tdf|Ju8#)hsTJP0e5D{>&Db&B;!h55komJv6S7lVwvnGK`i8psepUstJ+Rp4Y z`ElvN0vV^;2cJ2F)I2zw1uadPlUMf6ICQMXF)W?^<*qAkXZ4@{sg|l}Q`d2LPt!^L{?7Kwwc68v)-bcw ze=*WsbNSo0sS({xs=;d4r?aXwtYeq>z;(gLpiRW=Y{y2e%L{h@m0F+ETeK$oGgxHg{qm)XT;KR6P{K7Ze{ zV>X7ppS{=ilyK?H6q00Z`yc;Bk9lDtYxfkB=k37Ie;kn8b0|n7D!?cDb@`qjmyE2| zOPo3VIr+C!O*}ttgadO{0yQ_0ZTitm5a-FT5N?)pU9JT_EnSNNg`b(Ne+H7~@N zcpIW_T(5hdUh-{`rqP{(uTh&0hFE`bdw7`3(>1f@veLD>=lLksTsipDKSal_vif20p05=@#DjRcbJwlyr~(!NswJ)wB`Jv| zsaDBFsX&Us$iUD@*T7QO$UMZrz{=Fn%D`0Hz}U*bpmw{8D2j&M{FKbJO57TFUd>qv x)F276Aviy+q&%@GmBBG3KPgqgGdD3kH7GSPrLyp3str&PgQu&X%Q~loCIAhuHBVI?f|AvbHJ+1#I^*|Lc zFaYfUAtt8(%uFE5Iy(Q&U+{0n%zw6a|Jm7rF8MDj_n(RNzpd^6`}h9?!Sdz*-@g6- z_wWCX4v!ExZ7B$Kw?KlW4HC9fz`+X+TYKSy8o&r+D+%%o2ATi=|Gd54MnDn9 zByV?@h__ph^Z_}X1s;*bK-vS0-A-oP0U7^1T^vI+&L<}%Bqt}Qr#DaJU~)1tC^*2V z&Te+#z=@+r&K^E}Twg&$MMp{N*kNTo#wXrho}QmR6&M#98X0(RK5^p2sgv3oTAHg@ ztXg?mfmtjwjg8k=*O!+!S2otRmf6`?nU^EpJ2;s8P)dR+8G1&>(IGwWJUX^}nRuN(rLDDfmBC(4 z&K0j_-P-l5?bx!kGYw6wrQX@m)$Z!k7N|)?wk(onD7+BlY@};74;T`vC9V-ADTyVi zR>?)FK#IZ0z|ct7z*5)9JjB4j%GA)xz*O77*vi15cDsrwiiX_$l+3hB+!}aZ%~=W5 wAPKS|I6tkVJh3R1!7(L2DOJHUH!(dmC^a#qvhZZ84Nwt-r>mdKI;Vst0BVx8PXGV_ literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/KR-32.png b/deepsoftlog/experiments/countries/data/raw/flags/KR-32.png new file mode 100644 index 0000000000000000000000000000000000000000..4fa6a92a9dfa94987abd5b70120e7aec8e12d5ec GIT binary patch literal 1121 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3HGD8EPYe6kC$Fy9>jA5L~c#`DCC7XMsm# zF_88EW4Dvpb_@*6Rh}-6As)wGt3peVqlsaBsvhkm%&juBTo=p?<-n41-vWA!#E^ACMPrh_DBz;C1 zTN^{_y$|=EC#4nKa?<#vYHn`%{Z941>T^5qn@);RVBj#A;wW_NPU<1*A?dGSKq)g!!w@a(5lRN*}E1Wf%%ehr|-D{)opJme7*>~3byuCN+t=EAm zL7WE0w$4T~4{Xa-Q&*q(K7aYG_~^s&@yGS^&OI&iiJ7%v=TCu^(c5?YJO1@;(VO-I zWq*Y_Ssp)*zkK7ykyEF*Z13J>$(4S8jQ7vKIv;ltE9;Nv=O6c0;cRvKGS|-6*OzzZ z86#(B=QV5BzU^;O@ppalxl&h0XT|%ocD3e~ksFRCebQd7GC@oGsdXRAr??u=Xm9UH zOZ1N)Gx-p=KWXC(oAZ;GtbH``@}vnVZ@pH`ao}7T;x$`Z`jn^FSAH?3ZE{oNWA*R5 z&F;6=lHXGLagj=<>FiLexq9}G8aX4Z1r}}GIPui0ETfygN#S{7QYQ19%EKh;f9TFz zSKI9W>i*Mn{`;F=Ke}@Dq5$9f)!$TE%D0H!&z{=o|GGa=wr=L(MvMFMmGgqx`z~eK z+{?>ZyjAOr=VNh}C2vaq=rbLYc=XZYVZn@FR_)(j2=>KS_IbGLzAUZqsGJkPP#3NC z{bAvT)hCu*u859yQJTmuv_95*!s(|!QuF%w+3uxhWpOpkyFTy1%nVcS@bHyBIh+1$ zKYoZ`d(W?5ii=|XnF=zKnu^oU-(4&HTQOi&tl8|;ii#P@Z{NoJ{wuZd#(bH)ya%(_ z$35JvFSp#dYQnm8%{{&LN1w~jRjFAp?dVZg9UY~!f^KeZC!gM_6*QP+!zI*Z*mm=# z{LHyC)g-o@+^NUR{5K>dgyF$6Tb*PMwzav3((hS1dwX-2mMU6VE!tvxsZHg)gfK%| zgZPcd`T;AyF{u05bPID$ERU_)wR>ak>?V#5E^7yajNJ4yg)&vu)jwaS&51g$$*TXp zaqsR;G3+(>r>iW@zaOSH`C^>L&*edyYtzF2Pv&E3>7hwu=b`-1ZGFo64!{5l*E!$tK_0oAjM#0U}&UkV5w_l9%5i% zWol?;V5)6kY-M0jyIn;TMMG|WN@iLmZVf!I=Bxy2kObKfoS#-wo>-L1;Fyx1l&avF co0y&&l$w}QS$Hzl2B?U^)78&qol`;+07uQ^MgRZ+ literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/KW-32.png b/deepsoftlog/experiments/countries/data/raw/flags/KW-32.png new file mode 100644 index 0000000000000000000000000000000000000000..e0471dc186361895dafb62392f3561ac833aebda GIT binary patch literal 978 zcmZ`%ZAepL6h2dCZr$q#x}}m};nY&&Zn>lpGR?0w9XjX8j~|SUn%$D!`3D z!MqOMCV-D$0g#YBd%&y93){mcHvwA#d`XO+l)FYG*4+etnGeEXp;Du?&RHGb9Ja4E zoC|?zG)1e`>eba%&wvz7q3LqD-0N=7urx(wV}Q%Wy4{M;kK7jRtIY0+x()>t>$EJ|{IvE1gmCc@3mvkl7_%_~u7qy}6cq2tgHRA&|($2*gp z^ojB$RF+h!$-0=gCPPk%PM@2f_lh6Vp3p9T_@LHOTfNILV|t&+B*^wjO6VsTho{CL*8ro(P(CQ!2C$IZXVpYc2jK7$OWI*esnKFq zm}<;;fsB#L;+g&NvP2!jDCANFBadbFDj23=ERy@(|0Yycl^!jt|9=AI?C!^eP_9B= oRhgyESYw9d(y9`3gsReb#H=+NOY4tKm=9nOsM0j4Ln(&F--Fa@fB*mh literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/KY-32.png b/deepsoftlog/experiments/countries/data/raw/flags/KY-32.png new file mode 100644 index 0000000000000000000000000000000000000000..7025bf7df0b8c0a4db1559aca88d174274a4b59e GIT binary patch literal 1423 zcmV;A1#tR_P)L_t(Y$E}s!Zq?E@7^4PF3?>SGVnU4L^*Di4myp}WE*FMDmLy}3a~Ry8-WX44`rWrnD$DU*i5E>XqBa?-C9 zx(0ab-ZIwTHJusD7t0YTQ?GrzPyN!;L&z>qoNr)av1Yx4+|nbODal94I4hpDbRv;-~_5XNL=)I_qA$P&D#V1RO0bD zy!B=`6*u|x=C5SnNi>3pz(5+C9>Skhi;U*LS@1njf{Mp6gG1PK2CwdV$c=zjNT5M3 z*Io%EdM$Mi#ArEtichv}WA2SBXiZi_ph=tmc7pd=ypgSRB&-<<}f;?ct5@QatvIWsR@UB~d>Ad^bNG=-`Ft zRx+<9;O@SY9Q?J5ZRZVrIZIRtqYg^Mk=H&C_wHwI=RS;{Nns>KQ(qh@UB|g3#C#Z> zPzdkEjZG3BIm+IXNj|+``1*X7LR&xUjAL*V)QG_pD|T)_$^jJf_AEJ1@Bs^;9P!mliPg*|GzQN=p{5*;#-KfoyG~u9NvSP;#wDkf;EKyA92;V4 zy~n6hXkVBT8c;$?DU@>*DaFMT0}xZ(@?agVJI#r6StRb^tfSh8L|e#*JJvD7zle=C zkWXJAC@bgfZKwJEqvI6c6eByqFhp*C#kss?YG?@~id12oo^fMcbRzKdv0re*fX3eKF(ZLLfV_GlrjfbxVuAkbrL93aq}vviMGqVocRm;&plR4|-zyfEKm^X3${)&IbqiyqoiK++!@3eJI7AUe}gq!s<{%9-F@tKa|`2jUdbawx7e zC>&Y|d8-)+9ix+^dQAzy-~GY(bd(9ZljARUO8Q7}W3V{@001R)MObuXVRU6WV{&C- zbY%cCFflSMFgYzUH&ie%IyEsmFf}VMGdeIZeYYeP0000bbVXQnWMOn=I&E)cX=Zr< zGB7bREigGPGB;E(Fgi6cIxsaWFf%$ZFbwLPsQ>@~8FWQhbW?9;ba!ELWdK2BZ(?O2 dNo`?gWm08fWO;GPWjp`?002ovPDHLkV1mGYgE0UA literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/KZ-32.png b/deepsoftlog/experiments/countries/data/raw/flags/KZ-32.png new file mode 100644 index 0000000000000000000000000000000000000000..e383072e3fc63cf30a741e1028b84e641a58b929 GIT binary patch literal 972 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3HGD8EPYe6kC$Fy9>jA5L~c#`DCC7XMsm# zF_88EW4Dvpb_@(mPd!~6Lp+Ypy?Q!-N~i?ehxGYPlWiw{_?LY5& zJW6Uo@VzHVqRP8(RC-v=^%cjad+9|MT`2G442rkVn!JHmDA0Y$$`wl& zC<~Q(|BJ85-E8^BIQIze`JY}#&5N?wYTvP{^UgHOI>sLE^Q)(@gU%kHvDRg!S&s*#G%gX^9y_v61F)DszfW+1kVTETxPyYt}KH7v@WzmdZ1(Q2rpSKT=ziws zWjXum$XAYzvB&Fz`*y!jY>zR2m+jrO!=3ffwmJ8Eymc}=o|;8W;QCc~bOCooizctIaSgO44)>{8Jn;5@aCf;m_$d?Z>S+q9m;)b?W%f7Kalk_rL{$=+Q*Ynnk zbvI_T7xP&>-XM9{%FD~*(VWYDzr*HlTC;q*fV)wpZ0EOKqS;HYXRP5+`?!z!o(Rv1 z=%9(l`Jop>tCxJzTKDs0u-(S-MJbjnU6+h255Vy^8y~ zc-0L)R%Jblmov(3o&}iizusZIa__%s5fePN?yf(W_A`uiv5~e?DYM<@uES{)KJT6W zNAKejpX%AYntC3*vnGZIZ+VsWUFn|QzsXzqFQ2*>D)z9@riTBhVw}M5qk^5PmnY4; zRoJ!X%tYQ-CGR$>{^$Pn;ftPk!LqBsl&@Oi8c~vxSdwa$T$Bo=7>o=IjdTqxb&bqJ z3=FJH4Xq4JwGE7|3=C?wtB9g#$jwj5OsmALf#=nnl|T)WARB`7(@M${i&7aJQ}UBi f6+Ckj(^G>|6H_V+Po~-c6)||a`njxgN@xNAJ4L6M literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/LA-32.png b/deepsoftlog/experiments/countries/data/raw/flags/LA-32.png new file mode 100644 index 0000000000000000000000000000000000000000..55404196452577c211d58f8d8552c194d6136546 GIT binary patch literal 1253 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfbJa_=LFr2l5#h{xh)rV9@Yj zn99H~i-%z*1H()(ISVKP6bH%zl_4P@7m9$ga0FBgM?iDn2xt@>0ZoP@xFEzXxO%uD z5ZmGA!!3om2ka_lhX2A~!~$|5TrrUGok9JFfbI_wtuG8rUw~3V8b1VeL4u4RpQ0fj zwrSSv6HNpr)~2ti&st|CHraw{q7TP(h%&g_fDB%~*$fQRg2I;Hy7T7GzyCmV@4>t1 zxK#`cQ~CLUQlJ3jXPGI&4fN^M+qYl-|Ns9V7(9CTj)7qYFT)H0R!|@a2?2v>N=nMQ z-@pHX)c^^QN+4NLv6X>gl9<>mh? z*AVNTJbn+fg%fHWG&=Y|E}Rw-v+~}9_kV%b{r~^y>BpqhwLqr|2+l?i6ZUDAtP?DS zCbbl-Z!g|xFE_=EVS*3GG>9@pP&0yqT2L1l!k-x!far&y+7BU6P=nG8FkVEM{);mG zX9Xp*Cr@O$feFsGB*-rqob+JCzjuO+q~MkpaFneg_va5u7753OgM88gTZDzugc>y(GB<56Ehs74R(jCj z;MKFTEH*ZK_te(>{lm=UXcJg&SeVAy(X`;fgbNogZ1~V|V#SLYH+KAJaZw023h|od z%C<;B(~^}V=<+3Fqs^O&i#~tiZiu-lVp$o++R@}>prNIwsjIzSWA&O<>llkfxu;IK z8KS_Ib#TGDeG50P+_`k?+P#Z~PlT=w4NkxA5O(3}-OIPH+b2F+ax!??BF!0QvMgz5 z=9uozId^AM~nN+604f+2W1uQCFe3-cSc;9@BN`WKBwh3wH zavPk~Z(03LBrRb6aWo=IjdTqxb&bqJ3=FJH4Xq4JwGE7|3=C?wtB9g#$jwj5OsmALf#=nnl|T)W vARB`7(@M${i&7aJQ}UBi6+Ckj(^G>|6H_V+Po~-c6)||a`njxgN@xNA!wBMV literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/LB-32.png b/deepsoftlog/experiments/countries/data/raw/flags/LB-32.png new file mode 100644 index 0000000000000000000000000000000000000000..46819a15910a06d0b5760b30bf09eeb9884da2df GIT binary patch literal 1346 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfgqQ@CkAK59Bj2{O95M@9zHp z`}hA4@Z-mS4-b$aPzsKKTsQ&>dU=5mP!~`oP(2(04FR&r1`zFV(|`=1`EUex0K{zw zF7JPCuK(QJ|9N;J4*ti$07M`*#GP=`)APT#&%cPM|IxAk1A_j0xFZxGTl(Y2KcGwg z{MmM3)xi_n{(S%T|L0Fo_(0UaeE09)zfGz*;%pE zqn969_Vf2opaP(cfB*fx@c7b`_s_3Bxz3QuVB28(;rqugKfhggaQXG;Hy~%jy$|u` z-~X>(Jvwvs@V$Fi=Wm{T{M_z;Km~un${-4WAqkHc7~`L-^G|KHf5Bn@W0U_!M*lFk z_+w%A&&?H_PQdCRk;2UVkAV>yM_dB`nOQ+G1&K`#_WwM^C_CGKE>4KJ>G#Q? zlxkNJgt>*s<3!syTKr zDXvg6w=U=R*H>uGYuetwUY_FzI}00YdrMnuv&A7nrA23w1Xv$U6bcLsylA+w@FQoZ z=Sj_#4slabW=%2a=5cAv*%eb&RppizR#oPg7gtxsIAOZp{B;XXtYQgV5VImEBqSte zQe0G6TwvtXxLD>VtHf5W+??qklCdm%>GJE>mR>hEF*Du1W!uv2R;5wDzDOFUpPgr1e(w+KOYY@`MwKx6!udi;edwp;CDsp{$YhUo; z!NSAteR9@ykDjc&oPKVeb^V70Hyw+)`Mjqr*jMoJ(o^m5^|AXam~B_&I~`nmyZqg~ z-TxmvR2De?YS~ua<+?763tzA?WOgqLZ4hZO2Zp+8iEBhjN@7W>RdP`(kYX@0Ff`IN zu+%j&4>2&XGBva^Fx56NwlXlN-L4{vq9HdwB{QuOw+5b9b5;U1NP=t#&QB{TPb^Ah ka7@WhN>%X8O-xS>N=;0uEIgTN160J|>FVdQ&MBb@0Ip=%(f|Me literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/LC-32.png b/deepsoftlog/experiments/countries/data/raw/flags/LC-32.png new file mode 100644 index 0000000000000000000000000000000000000000..c21c1d7c37f1f82e0a5d96799fdba7572b2434d2 GIT binary patch literal 1021 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 literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/LR-32.png b/deepsoftlog/experiments/countries/data/raw/flags/LR-32.png new file mode 100644 index 0000000000000000000000000000000000000000..f4124f19379c25c28e8cfcc741f6252947358633 GIT binary patch literal 953 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfi^3@Ck7}&cFacFZS+*p#Ly% zih%)wp6}TML2!|m2M=qLjN1but)0)j9_zCL{lK_?j)Ac%n>jg>WBKp>Ns zH-Vo&O_nE}fgx)WgV$LGhGPuuK!-6fq;qp8GcW|Dr}mhe<#01ZGcd%g>YDlf@WE$$ z_5dBsz>wtTRvi)Ea{k<{{{9tV;VlddzI*l@1A5}`-+v4YiJl&H7cboT`0?x1NoyDw zQl<*{Tx0~=&JOg8oGdUHT<6c*@a6N5>(?HzFhnshM6c?c`To#>XS;R-y{w{=&B>A8 z-n!Vqp`@;MPF!pU1B1ujy~n{OI|KDHFz7Qd*aArj273ku_bCiU7eHQP1{%Kq$T=W7 zaP<8CqagCYk#oC`oWFYb#G8W$ULHII481?EULvEvuU`Io^$H%IM;I932stEyY+&#L zgAo{jXQV&I07FQtB*-uL-zy;^(avQntAV;0lf2zs*b>ur)B-u21s;*bK-vS0-A-oP z0U0+vT^vI+&L>~EbnW8R%jO0qMrH>Yc+`4)c$TF-6Pp%x&1_rQH;IOu^IE4KJb3Zs z&7)V(-aUMonR!FyhGK(?%HI_~e*I);VPj2ZIG3Q8*EZq8h7TPlR=k*T!-D64@bS~f z1?EqfF=fuASs5U-+eA|NIxDl9HAGBh^0o3SOU)m7rv zD`_d|S+k;}Zr?I&$k;u@!kL|;q^$J&mv4y-opzp@ZFM#dyW-uZZD``GXt={t$=cRg z(eTJcHMPyNqT!TEsA=2DiiTe)yuJ+Y;x38{f4+JK=tCwWnfUdT}2c{LvDUbW?Cg~4Lq;rtORP11lbUrpH@$mk%&>GAK^>W|-;>QVByq^~eaQ7mm7m_W{j8MiA4GNuU*I z09h6n8|WT11W~!`(te;jkrB|%aHKHZ8|Z#G0(k_E6y_uQLQ;DH5J7?h?i~h(>0ku( zAdms_CfsX4pZ50e@0)O-yKi6L#DiTudm#Y`bk(t=hj;GW`uq1UARF$}uV23|Sg@eK zf5OwJPyYhF0t;t|nyFK#rlqC*`0)ecDTv^!SFc=MU4apF@#00edT1d0{rmFe%cz)W z5phu!HPuU(FaP=b2O5SjCOFS_DeDJ%QAGcFhIEApoRx8kRd0WSg zV3<1#ea!{>B%~zBFBnK8f&YIUnSsd-NPrn2@(-B*8z%`&qHy(4#;1yCS)ieeN#5=* ztUvN!9tUzb3p^r=fwTu0yPeFo11fOwba4#PIG@aMknP70XBG(-Nymo91xyPs7;td( zcl31ewQp#3J>)X;hyqtq(&GaPW_F5(nwF}fX9TBrOir2Bq%py7vL}0E&zUuE=G@s+ zW8fa97dy|DagoDDhm{O0T-;n;UEW+?2W3*HGKGejb})T4>Masjp|N7ks&$$x)-o5G zY(2I0W{Cn<$?LDL8W$|wxN^bHrCS%Ql|6FVe1&<6d6S00JA;=Djpv%yy_ z3E5D=IZIh~x|J?-(^KuRby0iM-tPJ;ZN^l2PH%S1&N~WRX8AXF@p5c?e`9C%_j!AN zf0JkUc*mBns;Jsgq(a_`ht0iD&bsc=la-ef`ug8X+RN27b?3|Q3?*NBpo#FA92CwWnfUd zT}2c{LvDUbW?Cg~4Lq;rtORP11lbUrpH@BDMQ6 z!=B3winBpnh&Yf7L=3$M1e66LsTm9ma~ZnZ82&Rb{Nn(TuLZ@w1MT833Gxg6^A8CA zL*W1a|LbZS{D4xN1s;*bK-vS0-A-oP0U4g2E{-7@=UdNS6>JC)IC?>Wzx`VnRNKJV%D|v@ zyNW1^hTQy=%(P0}8hBpKSqao239=zLKdq!Zu_%?nF(p4KRlzeiF+DXXH8G{K@MNkD PP!WTttDnm{r-UW|>+7B7 literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/LU-32.png b/deepsoftlog/experiments/countries/data/raw/flags/LU-32.png new file mode 100644 index 0000000000000000000000000000000000000000..225b8d6dcb112ac870ce737ed4fb218efef00e52 GIT binary patch literal 679 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7E^sV4zGA+G;{3O_&Py|#4N4s}}w7?NaGZOgw7ibh50nJ24K=Y9i z&@Ko9+6YHLt04&J00;uP0b)DEQlM>MDAyGZE zo!8^0=jIa)A}4O0woG9D#K*O!OM%s^?^NH7hOWh0v!w#VR#<0RBs0%C7xm_r0;}G- zymvPm`gZHJ%Xu{JYgZ3Tc#wG_lO^auE3-uP%z~LsA{CDr((XOGBX&fCfx);sb643$ z?ju0Asg}4#l%ynPU^Iz=0S!%NU_jRB9i=oEXfjtxkYDis|Ns8~|NHm<|KBYK=I8-M8I!!- zUDy)ScGLnnoCO|{#X#BvjNMLV+W{GFo-U3d8t0QAC^1NAgdgx_FfjP=;Spm^56>T_ zCMS!=4ILWHlO;A=_#IF>c-L1;Fyx1l&avFo0y&&l$w}QS$Hzl2B?U^)78&q Iol`;+00b#srdOU|?ltb#-#FG_#ZxkYHm5xq(@OhgltpSk!r#)VW3VrC7vR8Kf9kHTgI+ z`6053GhI-Tv+_(=WssmVP+WPwI|$8lgP_xH+y4QL<}C1tEC$jZVC;4>+YZRM=;`7Z zqH#VsL4ieL<_9J>wluLYn}*hzjlFZ5g&BA3sI2%Y5W`ny##YDZs3;*ICMYUAeZrJU zZJZojAB;~ZG_0Akr>ALA&!kN~Tuu`lMH#PLNi{Lqx}~(_>leYM6KWDCB&1HBkeEH= z)C|R$4NDHh96J=`cI?zGw_{?SjdN{fEG$l0Snl4jYiD)Ep`&jm_(HKHUXu_VKd7c7#LWY8d@2c zY8x0^85q=VR}n?gkei>9nO2Eg1JA2DD}fp$K{f>ErbP0l+XkKAB);r literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/MA-32.png b/deepsoftlog/experiments/countries/data/raw/flags/MA-32.png new file mode 100644 index 0000000000000000000000000000000000000000..2d0e044247519f23199b39d64f78df7c536a4eae GIT binary patch literal 577 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7E^sgnUdA+G;{3V0wW*;sF;c2lN!S-BdCI30t~198CE4S{1gVs{$pl%qr)&OgJEF`!^#AP{%nTZ z4h;WT!BQ*?k8K#{W-=^EV>lDY@Q)p8K9F(Eond`E!`=vnec=rMI2isjGJI5K_zg6W zk>R~M!#^Y!0$ufw4eAV_>_4Ex7#IqA&lm!I!d4RG7YtPU*O9sQ$~jq}2xoyuWHFHT z0Ash4*>*ritEY=&h{pM)7q9aja^P{f$a?6ms>6%D-|toH|NkG@@!diwabEwMjcW?L z4O*5SYRtdl?@-O;d_+x)$yeu{$|TKx&P=1oBBc|-3nCWzxbAM&+FG^vX4d7GT(VVP z*bfUn?%a@MmAo%vU4-MiD-dn78p&ivh{nQg}}@3~k1?~wQp24*RN1zNjy z{sB5jwZt`|BqgyV)hf9t6-Y4{85kPr8d&NYnTHq{SeY7H8JKDt7+V<_)NWT1MbVI( zpOTqYiCY8Dt2rxy8YDqB1m~xflqVLYGB~E>C#5QQ<|d}62BjvZR2H60wE-$(@O1Ta JS?83{1OT-u#tHxc literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/MC-32.png b/deepsoftlog/experiments/countries/data/raw/flags/MC-32.png new file mode 100644 index 0000000000000000000000000000000000000000..bff4e1f5575c9aa7a38893ab000b922a84d7a556 GIT binary patch literal 472 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7E^sr&$+5ZC`e1_Q%?M#leQV*ejJ z_zwjC{s9FM2q*vt4rrfzNswPK*k+)LzmCkZBXMZE}X%0_JkHG;0 z2@#D2%z1LGacXugOs*vd^cQHH&~a%J^?KnD;o>>Pm1m)Yq-=+`hW92fMUfQ?m@_3s zBh4&@d?Z-781iDZQuwYpv;)mnEpd$~Nl7e8wMs5Z1yT$~28Kqu29~-;<{<_KR;Gql z2Bz8u##ROfwcAxhQ8eV{r(~v8;?}_PYR*ca21$?&!TD(=<%vb942~)JNvR5+xryni ZL8*x;m4zo$ZGegxJYD@<);T3K0RWB+ukZi> literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/MD-32.png b/deepsoftlog/experiments/countries/data/raw/flags/MD-32.png new file mode 100644 index 0000000000000000000000000000000000000000..eea84e18d3e2673c90b67107fadddc79eaf480be GIT binary patch literal 1094 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfcg;_=LDhiLU9Yoc{kY!@s-S z|L-yWzsG=r?lSy;%J6;(=Y3s)ZkV!vcfraYGyH$Z@c%AQBjdk2P-P4ZYZ(|e-ewTI zrzik48OVm~f*Ae}s2*+w%y6K3Wb^+&W&C=b;qp$-_m?^TKVSg54QLC<8A~}KPW^R< z``{YEFLxN$cFSy=C;$B(!-18;e_^I|lu!TvoZ-PqKA@NPERfjHEw{E?ZtpxP4FM! zj&Z)eQ2Xj!^)=xZ<$4I>&|MYI@c20Y z|Cb;ep~{{!JUk)fWg)esL$|NNtFO97obp{LC zv~Mh9=r0g^dYT<#6etj$Fnqni{o^*{zSX>`PVyPdB5>@$BNP#9KwXfC1I0KZsU%6Z zKL92vsgfYS;Q#;s!NGqNke0@64^+ij;1O92q&>jc?PRtckn!Ks#W6(VeDZ`QCbmpB zwKTCXvobzEy*xR|xJZqJ2F(eR!vjKs!U98suV1)w>DtAkiyHdl9RfTeTta+eoP<_0 z+14^UD<=yF8y9nXui;v=CO7Bp8(EpTb7EsQY84cJ|M2D0w~t>x^K%?orJ!M8U}fi7AzZCsS>JiWody L{an^LB{Ts5mBRx$ literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/ME-32.png b/deepsoftlog/experiments/countries/data/raw/flags/ME-32.png new file mode 100644 index 0000000000000000000000000000000000000000..bec947abe03d270cb03edaeaf6698294de160402 GIT binary patch literal 1188 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfio?_=LEgpKf$%g(VQ3pJoJP zqoZj?hZz`-u(2LyWI4=$j*c*}9^vCW!o_)nlk*5K=MiqsBW&zPxH*pSa)21ToIuln zx{k1LKoK*T!OC`ok>e;o`{58pAUZ0*4&)vI3Ide@6+jRx#}Nj$V-Dg+<++b&3mmJ| zK3=JPR8R1zG}kdZu_HiPPEMf7K=Y5V0adae73VqArgzj);$)r9i7dqvnTkNhQ3r95 zpdug8D3CI^7NCO}SdLkVo}FWMZlb|44~gULrYGACk9mlnonQbIJZ3KrQ~>f0TnmuR zz;e_{;>=95E6a_yXWC6~O{l5L-stL&d(Thr#-+Tn6wg2jn4%>%BA zAOqPrp#cI6943yVe$qg6x>f7g6ul#p4bL`f>`&ES)!=bhnjhpxR?Z{*KzA}8OI12v zrg6kt?EE}4AUfhKel$YiaF{YMpg^XvaDc)MXdp1yg}Dy1vmZ4UIN7QPL`O}9jsT;Z zl@X#0NFD}8F(iIDIY0rz%66EK?Jz&v5oXpS!rVs$xqv|gOgX?rau}FMpeckE7UvC0x>9L6k1{xM>Oqeib(zJ& z>f#z9@kI29$W#Z1NY_x`Sm$8xX!mgccuAcl8p{;UA2_DIE`@=q&Fz@lvb1Mn)55MD zGfNO;R*klzm!30g-pskPr$#4CL_|z<`jlx?!$ZPCuU~Nz>G-@+QRK>1a}zVu?OV2O zEiWl6O%A+p`Sx}D#79d`1~2oQZI`Sj#>%!i?fgvZ{C`cY-D3KYyLc8RSn4d861FC0 zYt`9XrLWC%?rf>#R$3sjtt+pYWzE}fvexBq?`|Brc_hhy!B3yBpevX)hEesoS= z9-!R)(S%uP*ZDcNOSPyYY^|L@vL>2>S4={E+nQaGT$a=ashDcma=HTUBJ!5P3)s@x%@4b|?;Nmjs z$zfzzkXEztY@e_`P@!sxYeY#(Vo9o1a#1RfVlXl=G}1M&)HN~>F)*+)HMBA?)iyA; zGBBv!t|E$}AvZrIGp!Q02A)@QRsuChf@}!RPb(=;EJ|f?Ovz75Rq)JBOiv9;O-!jQ TJeg_(RK(!v>gTe~DWM4fosMHz literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/MG-32.png b/deepsoftlog/experiments/countries/data/raw/flags/MG-32.png new file mode 100644 index 0000000000000000000000000000000000000000..a296cdeb68f888b7b02965b3b5f91e784e065c60 GIT binary patch literal 648 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7E^spkPcA+G;{3KrA2y5Cl{PM?m#(1k?yeKoj5yXcQd%hkzeH{(E?U4Cmqb4`h3S z+59{p^MT;Uj~_uE-+38+X!8Iq0tx*3kuuN2eiDP%R34yp5D|~X9t<-WcxLkeErp19 zE%IQP#vnSA2WT}^4OoO{77x$?idUL`0R5>_666;Q_A!w7_fC)z7oK(PeiBd#W0JSK zi^>+ZpFm$Qa29w(76WMyFm^kcZ3kpDd%8G=Xq-ty%tH(etV|893{15R zjI9g|YPYM1qG-s?PsvQH#I1qn)tr?;4U!-mg7ec#$`gxH85~pclTsBta}(23gHjVy VDhp4h+5ii_@% literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/MH-32.png b/deepsoftlog/experiments/countries/data/raw/flags/MH-32.png new file mode 100644 index 0000000000000000000000000000000000000000..ae7cc6b9ae9907dc4db6f2b41f8f85ed241f27c8 GIT binary patch literal 1400 zcmV-;1&8{HP) zLgEBchDOm)tpgQf>duNg=WnFTw`fm3R0Y_kq$=#9VAu?04HQ*iKPQW@kf=b~(9kWx zzLzH0v+xef!fm*;QPxIamVf{h30B@_Wi&u4t1~pFBfR3dfHh!3*U)W+cjhJ88||Pj z+=fd{QpgCVa*&fV1T+DrgattdD^^EXyS$ui-oz6a=6X+(RKY?D{#A(*ArU}Y*D!3s z{z#JD(JtysVmRz!@+lA5B6wEpBUt~sWlfHtAwV%DE}pGM=?w6Mu3<>QyX8rCS9VexilG%p$Pa-zH;ix7L4u8M;Hh4U;&2-P z8a712E|x_DtXo;m`c+XveitD>Y<#(rJ3XUl*mMl$7|9w4@s}}6#q?>S=)eTts~G34 zXcslUv#8ku#e{*V-Azf$KKu<$IKt%!o*qI&K+&*CXLK@C21VVPZ5DKkOx`4&(J?K1 zHW_6?A|C@Q@If@in+tBSNIQX&1JfPB`RXS`8n@!DYCv(ip8`##rx<*cQbPgHv0gkoCN!`dHoGMy_i}FoAiee@OkKH{{u!yxM@JO3f#^6d%ny_CZVL7p#f{*6M z+3IVh+J6Jjk{!64z9qO~1FF9SfNWl;zkiThoew#Caex!2hj9$)7$pw8i(OQ14x-zT zG;D^7_KXLfC{utMRJa$YECB^5Lt;1-`g1BWqw}HN$&RH* zXxOxe@cJWYwXa~hLkuUT=!$g{yVT3^b8!aRv#6SawZz5zW*-`mHYG_zGG_eq=b@=U znJOu&D&rXq^HzqB>u$4m=P32fui;(RMJ`lLUsC60TR-Q{cXRBUM`*)3X2^lN#zk~< z5YvVULo!sb|JVM|6rnH@2L>`6ZW*EF{Qy;sE#yneSaefwW^{L9a%BKPWN%_+AW3auXJt}lVPtu6$z?nM00007S-=cs-w_4-BDd#zj;|2S9emOa3o`KYMiLWyu{h$ ztuf5o=^U4ttMoFhKM;#e+)URN^ICF`$G6#H^WF3PJumw_pXc-ZzJ{d4I8V2+ZUEq^ zkjJXXi|CFT?n2)MuMXw_4600u=ViDZuniFZST!I3x&w{}9K_;DfK+q=Gyrh<0~`w|VhlBa#~6(8PR2vb)c%U4H1q`^4>%Ff6L1{hAx1)T zeE8aI{UT>pfBJMz;Z@q0gMJT z0-j_6rI#2(4qyUc09%=+4+GrG_BssM3HY7~qcy4M1ndF)4CnxS3-}bU8SoBZ1>i;o zCOid{QjzSRVm~d3As89$+fUoCiiA-xaEopjk=Qef-b}1hC8qQ_2Of0dz~f{&0qQSx z?4phldGZyT$;;VY)Q}TRZ@y9yyO5vJQe19NiAf%93ywA~HVB4zT}xUPR5?YoHD7)B zw!Cfs%L#=h!Tc!S%)VQp@4A{Jf277tb2ajd+)Li_mFEIVQ>z$FHHyiWXDy~%eW}nFldTp|(th<9lkA4#0d~Q27u4&tz8otWD?{++nY6cK!16lpvtwMQ?bvBe=7$sqtxAYMkSf<7(9w z({oE92;wq&+HF1E^uwp?WXp9LwN5L|*rX)~A)F*6kc$iq3FkRZ8YYo)VKccg MWQnm?V^-^b0m~2GPXGV_ literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/ML-32.png b/deepsoftlog/experiments/countries/data/raw/flags/ML-32.png new file mode 100644 index 0000000000000000000000000000000000000000..cd99d45610f166ce6b79efd71dd67a9234155850 GIT binary patch literal 444 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7E^sr&$+5ZC`e1`teR`2LIG|9@2U zo#DSb!+#zIpc**(fu;rjd)3r zUogzm0Xkxq!^4042^UREOm{{LktY8 zObx9JOtlS+tqcrmx2uSvXvob^$xN%nt%2v&oRvTgk{}y`^V3So6N^$A98>a>QWZRN c6Vp?JQWH}u3s0un02MKKy85}Sb4q9e0LK8G#sB~S literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/MM-32.png b/deepsoftlog/experiments/countries/data/raw/flags/MM-32.png new file mode 100644 index 0000000000000000000000000000000000000000..7f0a8c13c4f0f3b0add56808846b0250efb7aec7 GIT binary patch literal 930 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3HGD8EPYe6kC$Fy9>jA5L~c#`DCC7XMsm# zF_88EW4Dvpb_@(myFFbTLp+WzopRngBv9nI{que1iy!wFE^9oqWQmAL_QY?@D)kMl zZ=1v<9R*xwZ&@P0I!n}Li>PDQ3;7H|!Q3W|=1nf*dR#^m6;2rVmdu)&^K5T*^qGLq zk9&Q;wI1F*=kvLp&*%KMb^pTBHfbRPb**haG|^KYAH^azy;n}nGPtXRSPQE=V+ z=U1nT9V(m9VSgkgr|tK}z*C{TtKFUlroUC(%-?Y?P(x5=Bj*lonOj??pIdvE)$jQ1 z{tMS@SQyjx`4(rtQhUp_YRW;=ogaO|oR8TE1srqOw&Pa9!(_{?KG!Swl_wuQGHK(P z$20DWX1@JU@k=mwv2Kt1@fA}P`pQoBPuHC%EAhE_PCBY32o` za#{PdW8N}NOYeE3zT;Wq^rfHp9-kCuZTa)zDeJ+Rk!z0Sy1c)0`0tO-2UAaL%V*Sfdi*RBN7+bfqP?cHb)y!pquc(>#T%W}c=6poG!UmmF* z+b8ho=4}&Ssj#?$I&%7$N zYW1b(S5-XP0yV{5CIm>_DV;X&puV4(2OC7#SEE z=^9w-8kvU}7+9GaS{ayX8yH&|7}Rc85k=9Eo1c=IR*72!&#O5rff^)1HU#IVm6RtI mr7}3Cpo literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/MN-32.png b/deepsoftlog/experiments/countries/data/raw/flags/MN-32.png new file mode 100644 index 0000000000000000000000000000000000000000..2f9e6cd04a6567a11a9776a91a187613a0b89f11 GIT binary patch literal 1075 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfjQC_=LC~QP+ne4gDjk`bU7I zy8dAeqm#;VYs{h;f@bjtPGbt3&Im^0fzud*=kz<2oKg}wtYHk*sG@&VSMRVgNH0ud zG(#{#qj&&Vmm^G^bfHZoQu|azE}dp z1*+FDT4M&X0^}IS5}@EwJ^cd=hW92YeLK#6F+=kpgTWD9L$DX3p^ntmKg_HDV!6bh zYYewrl|TygkrZg^9~J{CxYwodVu{$*VzmPd28UIRPO1U}AsS-%gDDD67fD~vR)4ut z{Cte&+btp&bG45#D6FvpIs2%g{(c6-7b~ScAL6-LtNdiH%*_VnUl$p!)oC7OP+Vgj zebfM?;Mp>%_dA6iPLqGWQ0#iC%JZ!FH_% zUBQRlf|t|Oo-dKS*{t&IB>(?YT^*yNVj>%hfS{=G^a)cYO`AA%GP`C#KuAzn zpli^AW$PBMT)KAg>gD+ife9HYIZaCrTsd>+(4|wi+^%2aTXx_cV`Ssv$(y@Z&)(g> zT)d3+p54B>e~gWe2Nf6I5N&C7cX4w)e&pCu^@Q*VGp5X$G;7+ti8H6pZ4PzJi>q@? z3@r4_jI=Cc6`dM-)pTp=SKeOV8=@xLw`|*5UQ$;2{Yz5#h3oc-kCvPaUgkI3j(K;} z%*|=%XIkg~YijKlOAgZ-Iclem^?Cm*sx78l^doyus_V;;v ze}9v=sCe-~aLq+thOfQJ1;HF5e!y^1Epd$~Nl7e8wMs5Z1yT$~28Kqu29~-;<{<_K zR;Gql2Bz8u##ROfwcAxhQ8eV{r(~v8;?}_PYR*ca21$?&!TD(=<%vb942~)JNvR5+ dxryniL8*x;m4zo$ZGegxJYD@<);T3K0RWortx^C0 literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/MO-32.png b/deepsoftlog/experiments/countries/data/raw/flags/MO-32.png new file mode 100644 index 0000000000000000000000000000000000000000..63c82fe09176e7da29907a58c764400b4f70f2ec GIT binary patch literal 1118 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfjQC_=LDJ%mfNBfJh9)GLwM= zRS?RZ!N4#Lq@H~y0~4wOpdd3)YC41I0v7kB>^$M^TqSFfn3fBbps>+EMA~R)w^ovotu}o zE$!X+ciqRjI}dkEIXRVK3Ij99wM@LTcz_P@SmyTj+uH{p9(?)v<=_8*x8L3V_4gN$ z(Xp=`XoAFS3AUMRz(7!+r?&t8{?ETYKmGXh>dUJ?|NgxC`fA*|IH0TeXYsSnWCf}* zn6F=dpnmGPsT*!?XxP_~wIy@)wbk=4FK9d37O)}!Xcy-!PR5yx>@(ScPR-nsx$yGB z`IqO+Y_dabZT` z_CoO)VnFMdfwEx#vd>~?p2Ey9nL&Myn(=%?pccl-j6i3Dw1XA!&f*oACBQg?5oj-z zJrfjV5Cn8Q`%E^Vb#9rLmI0F!TS<^#FayKCcY=)ldpk6NB8*Ai?k=H|S#}r$Ih+L^ zk;OpT1B~5HX4?T3@O!#AhG?8mPH1K<RC$%-SIunBztXZ^b*}8=*m#$sBdU<|>YvaO+8#`Cd+}XNx>ek-1 zvii%Is@dJu)5XKh%lZBF^X21xSnK{VHaZ?uT$uP!aAM#^!x>yjj~@vOO`hZ&9CZ1T zvC+neiBsoJmYy{|J|H3_CMc@S)v?kwHMBItH#Z};);U>NEZ$`MmTgWfBE*+ z|G=VzM@voyFY}vim;7wa&EjY04li;@`q$LjEv6s2E9Ym|)YV5euzr1Intgrk{SAee zpXo+#&po~@!Fu+MzPY>0-rwAv|DW;AM$Vq|&Fy^h6L0j%-DQ}zB{<=>L)~3q7^#-H zMwFx^mZVxG7o`Fz1|tJQBV7YaT_f`l0|P5lLn{MQZ3AN~1B2S_DxxSFa`RI%(<*Um z;CVF%m>C%)K{f>ErbP0l+XkK DcWIgG literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/MP-32.png b/deepsoftlog/experiments/countries/data/raw/flags/MP-32.png new file mode 100644 index 0000000000000000000000000000000000000000..5a8353400aae71a464a489ab4d87427fd9d1c778 GIT binary patch literal 1113 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!2~3KB)#GTQfx`y?k)`fL2$v|<&%LToCO|{ z#X#BvjNMLV+c7XO7kRokhFF~LopLujI#uR){dvptp66a#s;gU`^`2}Jd+DlK^mely zo^!*NSX^m5b$~m(VBdqOJ`*?(?FqZl`rxVyTbxEl{uZ7X*Obe#Q+8VATsv2qyKPDD z)U?RSX6pIsCo3!E{xeLT@ciG;x(DC?esV1MXH`LC8TG?8oce0PV1wX&L{P^Hq*$Cr^iL9HM z8MfL^lx_@Dm-n+c-y*8_x%K@M>G12nr-!|B4lcHi43?WSk3(K`v)Sxmp|367Ga`QJL&x2oFJ{dqL&$4imV=cfEGIrR6;$3o9ZNz7la zwj58LI{o`x0(5SKRUA7YnlUMtcmK~x`cjr&9GonF zo}c^i-(%VJQ#qFy*6RfJPBmn6vSj(N-*W4F290B0J5{!-lnQL9&6Q4io}aqyGtXg# z7O}iL)!z=?+IQ6PbckEu-57OgeyIz`Uo6?qC&j>^kvr*r*z;t^#9N0`1ou>U@KsEG zb1f|LwtO$E!YiNG*IEzjIqPqkA+)?GA^6g|XJ)bj3|$%<=U!&MlX1h;ZpFE?_I3YR zTg{7#@Bg20%Y&CCWNpIT^V0M8KAS$XDn8-IXz$S z|9HOo^?Dgg15=}qubtY0Ht1T3O?*GcN=M52r>)WcGc~gfLs;KW{Qe`|s{(;fi)&$-WS$+TOK7|MX7Ao||FE`hH@c(JQsxN{m;J#&}(3H&yL> zy=t!Nw#m*Zn-A#xU#jNa*SqZLv>8ozeV4D;y^hhr>4MS9%!R^x)B=PBe$B4pQVWy4 z;u5g*ZvEkU?H$cNY+O5Sf!R>C#5JNMC9x#cD!C{XNHG{07#issSn3*?hZq=GnHpLd zm}(msTNxPCZdVaS(U6;;l9^VCTLaIlIV*u0BtbR==ckpFCl;kLIHu$$r7C#lCZ?wb Yr6#6S7M@JC0V-nfboFyt=akR{0Cmpry#N3J literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/MQ-32.png b/deepsoftlog/experiments/countries/data/raw/flags/MQ-32.png new file mode 100644 index 0000000000000000000000000000000000000000..289b805efc6766828931062db509ce61b934eb20 GIT binary patch literal 332 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!VDx^^%AmxltF+`i0gkKgMk4^LJ$K(8Y5$x zm{OSPyYY^|L@vL>2>S4={E+nQaGT$a=ashDcma=HTUBJ!5P3)s@x%@4b|?;Nmjs z$zfzzkXEztY@e_`P@!sxYeY#(Vo9o1a#1RfVlXl=G}1M&)HN~>F)*+)HMBA?)iyA; zGBBv!t|E$}AvZrIGp!Q02A)@QRsuChf@}!RPb(=;EJ|f?Ovz75Rq)JBOiv9;O-!jQ TJeg_(RK(!v>gTe~DWM4fosMHz literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/MR-32.png b/deepsoftlog/experiments/countries/data/raw/flags/MR-32.png new file mode 100644 index 0000000000000000000000000000000000000000..4396b9a3af3ee7a01c2bb1070eb32491b9610fd0 GIT binary patch literal 1076 zcmZ`%2~1O26g{+v*j7X%3SviM)R1Y=FO@+XqoPGy!BS~eG#Fdy2c;k`6*Vpy8HWHv zSyYh!zrkf3bzF!GT9<07xPZ9JHf}M-tw`doXqaK%D{6)@CilJjbKg1V-gn;5)$1m8 zm-LeW=&seM<4F!7%imW__Hp;^RzRfE#~P!-kpk%cO^7&n|EDPCAmiZIxky-EUjm!Z zpF=1Ql!9=-9(5>pz)0PPhzQ6!385Mi0sVx}$o~!C#X~Bfhes{-FrK|ZYa0rxs5qHH z!o%A`BrIQoDS>_u=Io~*MBldz)eq3*M#3&yA%n&20DBPF2tS?%HX!XF$}a+i2;iaI z3iVbfc})1jGkGzxkE7@;P=r8%3K9jT91U(5wgc-iKtM2u5FSAs`j%0Vn~#xMNsoFF zaSn1an;j?W@#GaoZUOQkEk+j-1+?|mhq&zqifQW(qq=xJBv-rBjJAK^Y=ZqXa-68R zj+gK8x)n2a(u+_xJjVL)5N|?A8C~V6Bc0fHmo^@?30Ki zo)p2qv=fXVyKx8>ATFhY(I`O>5C1P62|&stkX+gGDC9NIFIT(BpW|bT*BOBJzoW#f z>#oX4rQ1Ty%q1jiJZoZ&bqwIuRjZCNhF(iD{oI zc|Mz-WKDVT^ETIwn!nE1U%6LxtM<;t#%p881k9+r6Q=c~nGrdRr6yc~mdSsa`bLoe-@889_ zWV>@W42k1Z>7Vl5%9JbRN=Hw_8Rti7pP{py7WbjYis==z>|whb_sw>!sk$&laHQQk zDqoq{Vv1}!Zv9YxDzD|(K&kgSvn)~4bRZN^w#J?+l*@+^ZwA|<6KocuxnIuroqN7}#K5~-+({2VBztX>?R&b! zN87#z^1SuNTGqu+DMn&^F|$p){OUmwYObR-r1N}}@LM09?pt@yV)e#-vgde$vVcLs z^7*f!T|V2iN&D%zY^k)ws^trK)pYx+w^hYv=)aQyKvY3Y5B8fY`Kor{|dg*&tz2wa;Bm zlkjHDWhg$1zx7SXq!BN@f_~;SjStQvb9*C)x_deOV;@3!?A_nT;Gm6^0;L3C1EYWs zC_n(RL{|wIrMqJ2PbYgpDO?18yo~-MhtY!jFsrLbf7=b|H08Cmc!o*;&_$dp!_3hI z57b1+ST0|U+6*EH8iK54bN`Zh>YAtFDh;XYxJn_Ehba{UXU=i**fn&+z;#M5=0}GS znuZ^Z;b!y5sZ;UODV#(Mav3NTP>B(o>q)#!9;3Ml@>$fC48A82UI@_9gA%M14Kr3! zzwmLad=58pk@B)IcDN2BU|_pDIeF|nMz99g@rnZ48(PU099r6@vvTolD&j+2?LJO^ z=3L4q?!u1_W4!h@ch*!QPMzTDV3Z?Cong;MWpa#^_dwFYMFRwm<594|Nhhcp{+yYS zIDKLRNg8n-7XUTJtFq@>iq;i#Xqyry)4rcW@9gH84JSCz-HWM7f{_THw0E-lh4(or zB2-VG#!~q^4Trlp+J1_GA(wy*vZ+xK`u*! z3IT;Ng*^p2inN^~Nq zpduvMv9*gGTfbrU>U%L`DXx}UDtQVad~6A!&0|7J9TQdD2b z5DFQ@awSm0A&mxTfC~uHDMcg_A!rJI>9_zw2VsEg6GTyuPQ$&Cd@&zD_;j0_3rJISOF-DO1xxW-jDbW4m*%ji(0!btkLO`G_2p(9a*0VVu zkbHJD&D#0>OuOv}Wy<2i*c#?dFeoHa?CoeqqLUlLqj~=P*S&Fuo)gqE;NG+xK{PbV`lm?vNgN}u6RL$3et3;Z9#&_P#P0000bbVXQnWMOn=I%9HWVRU5xGB7bREigGPGB;E( zFgi6cIxsaWFf%$ZFnzZq6#xJLC3HntbYx+4WjbwdWNBu305UK!GA%GUEiyM$Ffckb zF*-0cD=;%UFfa`2oT&f+02y>eSaefwW^{L9a%BKPWN%_+AW3auXJt}lVPtu6$z?nM O0000Pxi^X9-s-km<(F|m90>>1aVFaQ7jJ482> z1RCPufoaIkmoI0{oO*rbN|1GETHyMDdLhn(iy$+Ax?pa5ckSAh_3Qq9{faCPVnb}_ z;n_BO=EV)`H_n>z_Wb$(fB!<1{r&Rg?YVOZ|Nj1st{uV$x*r@Axrb*j1csMWNswPK z1H-Ssf56}`i2nUXknzv|fA0kUpcnxW0Et1x|Nj5_9SFYt{QrMC`wAYQX^ctU?k-Ge z+%+jc4rhT!WHFHT0Ash4*>*t2T2B|p5RLQ62}x;*smbZd$&VjAdGzezQ)cEmbw)=v zMK^&2fikhe!qVdJAHID0@~!YwDHC&`x?$lACQf@#%}mKi%g9PrSJhO}P=kQtpz95q z7rtEQ;^5)pJDAB7y`pSJdPR%6AFI{GU4a)3=WX2K+i|(u|HGFfxlFU$>y!fQKh%}fkTc$dj&tSGsfb6VInvxJ1~^!bk-bO3`#=4e#0M>3x! z(BY~jt`Q|Ei6yC4$wjF^iowXh&`8(7QrE~l#K6GH)X>VnRNKJV%D|v@yNW1^hTQy= z%(P0}8hBpKSqao239=zLKdq!Zu_%?nF(p4KRlzeiF+DXXH8G{K@MNkDP!WTttDnm{ Hr-UW|(h03G literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/MU-32.png b/deepsoftlog/experiments/countries/data/raw/flags/MU-32.png new file mode 100644 index 0000000000000000000000000000000000000000..47d078836eb4b60c0af995a2e1f6c3316556bc16 GIT binary patch literal 3393 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 literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/MV-32.png b/deepsoftlog/experiments/countries/data/raw/flags/MV-32.png new file mode 100644 index 0000000000000000000000000000000000000000..eb830ba8a0f8ec03a6e9fb0a56fb97267c10ec1f GIT binary patch literal 835 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3HGD8EPYe6kC$Fy9>jA5L~c#`DCC7XMsm# zF_88EW4Dvpb_@(mF`h1tAs)xqPWAT)2^2Y2|9r1?zS`1@S%)09IIKD1E5YWf(5l;_ z(OKr?(!C&cZPPd1ZZX9ztHlI`+;$WQ3OfZ|4AXYfjCPs$biPd5v%Rmab?+I=N|zq9 zS^fKg_4}IV*57Nw+cLvkZ#)WcV42Gp)gbA*q+K(X*F-g5ZpG*Nsj4i0PJL8miHR2! ziDiBh(44^WGgeHsK}jcU;R?n8{vP>Hud>=s_PC$Y+Vx8Q*vB6eXD8VGaJ&4CPsa0z z*YTsGTy7aZUlxD4=D$YWgVoE0%c6-P-bjvLYSNYH)Uav0R~=NHF8{FVxUb*a_emK_ zr{A7DzT~Xlvq+W&eu?KerZ*&OSWI0h(68|7NCfL@lZe!Go)v{Q$BH7^cClGrubkGt zxPQmzkDP1Y@f|uask4wXfzO~jyMM!CvlTXkEXwGHnj) zw`Sjxu(5S<@Zj=TIpGS&><-n{)57+!2F@~Na{Iwoe_eogh41_)w{}bK`T2F;y=L1v zH?N<)yE6UCEE7v7g(&BqguAb{baJ#@oSHT7+fIg@&0aeWu}@(-W_jdL#kAk~zi$TL zK9(BXJ}G{hk=dfXm+iU)KHoA(d7Au0D6;TpK#PhKmuml`V80JHy3D^zMEaW*7;x(x zN#AaxvP6knPjN%Yrddb4oFo4y{bSrKc3ZOi@z$rn1gBc!8c~vxSdwa$T$Bo=7>o=I zjdTqxb&bqJ3=FJH4Xq4JwGE7|3=C?wtB9g#$jwj5OsmALf#=nnl|T)WARB`7(@M${ ni&7aJQ}UBi6+Ckj(^G>|6H_V+Po~-c6)||a`njxgN@xNAw@O#* literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/MW-32.png b/deepsoftlog/experiments/countries/data/raw/flags/MW-32.png new file mode 100644 index 0000000000000000000000000000000000000000..21f1d7d061049521233e513c07f75194729ebd33 GIT binary patch literal 1114 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfd65_=LCuxe^SF(>W!t3Td1b zR68r7c8NiCTd0=kLNoKZrpEI?2&e`QfQsP=s0)sO+TjRf4jf5<%!DAI$#4X;0*-)o z!4c3>ID*)YNkSY0^a(oygDxXWFbj7y3$Gm$8w*$jC<~MlXJjhj5bofXtl$zWd(!Y96^00;+rY zmGNt(a!JnOlA6IOxqw@G4wuwCE@>c|10=!R z>0FYtxuk%~AW;Je+bcrqV5D(bNF5Eqq|_lQ5#bMy2s{jIkzU}T84C<4o01^EU~rg0 ziT{5cnMuK`O}f&6S~&|mB8!2v2N=7Z%(i0yrX)`n#}JM4$r~6Mqou8@rPI96*y`8}7_>JOZvXh<%cpN2zkc4%xqwrY_f3oDg{24 zN4Y{mlP3iSUA|;&w0TqUBNmp&EfTGQYEN!Gc`7a$%vh?( z^^ED@o}b)edQp2)US3K)9lj=JYt_9N$(uWibUq2NW^Z6*J!hErLK{Ah=GBXsiBpD zskVW!m4QL+b`?<+4Y~O#nQ4`{HSoNevl6I55@bVgep*R+Vo@rCV@iHfs)A>3VtQ&& XYGO)d;mK4RpdtoOS3j3^P6T$kS>_vWH1=g z+!?$X&M+{5?FCw`1#}xw1YsT63ZQ}uipJ+fp}v5qK@$XO0ea^j9Q^$YbQ=~me}Ul7 zw=W+c3V~`Eyg=3gMc=)Cv~R=A+GvF}i)Q}${qqx8J20Sr|NMUE+JOaa5h>Qo#-@knQ z_W9rMUqBB+LSQ%8cfe={#Tz(SfWZz7Lul*+MZr>#*hCIzQ0#zJ0?o$^OvW^KCNKg; z2RIBNCZL7+rsItBfQ~mU3GxdD(jWkG1qc8Wpd&LFgWLcHFaad`(();xKuwHE-tI1( zA8#&w1LSZPctjQhX%8@VJDF_P*uKA}%*wZy!B!?C5RPilop9Gg79{ znKWzKyu|4sQhnG&6Ft@-lO?-@kbC z>fOtu%NDG^pLghp=j7!+bIoem!nD)QZJKSH{%+4t?l)pd-;XXjTIM}XFM40n(z~m! z-l*MpEbpzA_3p3IZ_F0W+Q7+V#{4+x^tIgE;*xL(|@ny05kofoe@mZR3g zkl3^&zwQ10MZkbnEpd$~Nl7e8wMs5Z1yT$~28Kqu29~-;<{<_KR;Gql2Bz8u##ROf zwcAxhQ8eV{r(~v8;?}_PYR*ca21$?&!TD(=<%vb942~)JNvR5+xryniL8*x;m4zo$ RZGegxJYD@<);T3K0RY#QeO~|o literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/MY-32.png b/deepsoftlog/experiments/countries/data/raw/flags/MY-32.png new file mode 100644 index 0000000000000000000000000000000000000000..bf85ba16d588e68ce5da6b52678397e681b846f4 GIT binary patch literal 1341 zcmZ{j4NOy46vs~~ln<+|>wwXPtT@KZSoIa>fCh<-7F%&mhxmc`0Z1_p2t%4cfexsE zV<^)p>KJa>!i*Dj6LEmElvV`VJ`gPeGmKW{J2FQ!@#(a8_rXM$Y%jli&&$dApL5?m z=T#^bYZiL(y#QdLTqcRbR)81RgNgUm!w1p2zrCUNkyNBN8Es!T^wSa5z>L>pIi5H!||7P-widyjn7(uUd$PJ;m%46d#ui-rA`smajl z>Qgw$D~r2DqLzk+Y=i*Q*_kAXZouc9(^Ac?sP!_stVepi3xo9a#fR^;+Y>HcJOt1m z6l4(!jmM84oSYQR%=n)?SsE6qXVBVinZQha`Wf0=j7oI$#p-knz;gQ76&3X}Gl3Zy zmjL>>+-p+FuLT9)mX#evvUBj+=x6VcE7?nE`7-qAR~^AlM@4z{w{6=P111YoR{OQPbJUfap_<{dkDL{+?mub@Ol1 z{_5%jCzyUjb4x*9zUD9L$zyj{mfOD4^0GCOCCu_u6UPUesnYhkkt2PL5BHO2?$vHh zZ98~uhjMfL*0?Pjw||tdVcYt|P4?cw!9iDdcDL|s=CuEbZNIP5YoGCg6g3g5sm9&5 zU1TYvJmJDPc_OsPXp&YQdw1I}g;y;b>Icrmu-LWf1840&XWPbviA|aI^Em^5tSWdk zZ7*^-0$xiBD;$|PfA?+0H)8GBy_N^Q%eG%C9G$wDK9Dt3%3z&K9BR5hq|Zgh>3y6x zBJ-b)OkNmYzWs8Zr#n01r@S3kj9)k1A1ErtVSREOA=d^=90te@} z13AGtVAHjkfg;(pN1w-~?LgpEwtp9e2T9_I1gwsWTj~7e(A;_r<2&>B&E|GGCx?sQ zi7Y1C1^|Ar9mpBzc>H)f@cv`KjjTWc=oUnrB>byZo5HQ#+d{xu2&e+*e|37Y1Um^o z6Nst^XOj!x(XY*kF43l9c~%op16)Vrm;vm!^08&j#zJ<5SA1Qz_OeRlpaK(ugkaM; zA%(jYSPuhXuDyA1`iJq`V-pU3FiZ1duzcn+se^tXmOU_g(8zGb0h+k$YB*6GTW?Y? zH&952zlx9-f5u&q>m~r9z{|npd=!*jICrVjJoA2n%|8GIKJ}QQj!+a(R4~o&%4h|c zY&>|oqhugI*owIlvPS@-0kED+n;0hZSW8CkquL8i*Sfwnx0@Li>{?)pxM1^kw}IFe z4Ctb_ZMFhg&N8}SX-*?HlOY3;8PEuzF0gg3DnIF0esE0uPUZ~%9RXY;U zFqRVNfPWPHhB-2xuWk-DU}n+{smW;!Lk_cymfmGsk=4F1`zIPJLQ6&*yz~zH|KW9` zMfEtPb75k}n|MuRW_hVmn3AmXa zjo$l7o?-oOFIUTTi^r<3Xa}n|7etGG8H`Yd9hOKll`Vxge>@zt?Nn%XgMKt$BF)I{ zd1LKPW$ReZ)FR(ELN_f_g}f5-+|>--OhcGz{P(E07anW@&e$fdF7iIfyT2~dFIxZC z#6yquJ1C-SB)Mi_=#c!LetzmsVhEgA8%68q_L- zMxLwJ;00vTjj~W_WT-46T`HA_ZxsH59A#8i-LBqwohnb0s!^#+in=u~;2=nfOIFmyDog(csCzLT literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/NA-32.png b/deepsoftlog/experiments/countries/data/raw/flags/NA-32.png new file mode 100644 index 0000000000000000000000000000000000000000..9e610c5d18104f313eab5227e8772d05d3a0b445 GIT binary patch literal 1185 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 Yl$w}QS$Hzl2B?U^)78&qol`;+0Gv||dH?_b literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/NF-32.png b/deepsoftlog/experiments/countries/data/raw/flags/NF-32.png new file mode 100644 index 0000000000000000000000000000000000000000..aab7d7847b1109f911dccbf312ab4a3a9046c6bf GIT binary patch literal 1131 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfeHZ_=LDhRaWFWf)sPg--A8)^WfM@|a0H{o{ z)()Z`$bi`U=ilGyhnB}JtA73EJ^3;;=lj?>DW9i zX>nD=qOy5M*8Kea^Y7okK$C&8Pv5^xTwGbRX+rSK9K)WFofi-O`TGYbzVrM6;a1m- zWpx%4q8KW*o7VP!`}G~-q_wBE`OV0Tn_uEJHPy5uFl|ZAlXoxR0rlhe&)LV;WG!#7 z>IhC+R2eip3 z`s3To-Ai2h<0NV=ocg29yTcd?RorG}@|W_Qu@meviE5~t-S zO)p%!f6dWbXLnpV^#037VB`YB6KEjNwLtRrle;r^ECl)&6dHg3LV|IRP*OWE=~$Em z`2_=G=@%SePc=Z3zyPQp2LAt_H_5vPXa-}Fx4R2d8h1?!ki%Kv5m^kRJ;2!QWVRhp zfuN_0V~EE2K(bNR4s>&@bY+EcJpK#IJPoKECy1Tr+3TFhQg~tU(hQ%wES1+3zTroE?Gc>)O$2XOMA*Qcq3SYRJ2{4pYOI#yLQW8s2t&)pUffR$0 zfuWJEfu*jId5D35m8qeXfvL8Ev6X>A?RFJW6b-rgDVb@NxHa&+nzIt9K@wy`aDG}z od16s2gJVj5QmTSyZen_BP-pJdYeY#(Vo9o1a#1RfVlXl=G}1M&)HN~>F)*+) zHMBA?)iyA;GBBv!t|E$}AvZrIGp!Q02A)@QRsuChf@}!RPb(=;EJ|f?Ovz75Rq)JB bOiv9;O-!jQJeg_(RK(!v>gTe~DWM4f?F~xr literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/NI-32.png b/deepsoftlog/experiments/countries/data/raw/flags/NI-32.png new file mode 100644 index 0000000000000000000000000000000000000000..0511024da07291ff156de529d7a14697da3df06b GIT binary patch literal 983 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfbks@Ck8cNIL@*VN5$CmT`t5 z{N#ftpa1{=|L@;_kT?thW#I^@3>g8nz!6X{8Uh-H27o4`A)qY~+hN9@1v5^IW}FrS zA*gk5TaXy17^2TJM4V@cInNLVbq0z9o_@Li-{lcGb zw_n~p_5atE|3B`6rTzg)up@!Q|3BYf{{MRJ!j1dEx$_>qc>Dj$$-jSoKxO~^`wLR> zy?F)&OLvz*0fJd?qACQu~;0oB71P$Mz|8UjZ^)6fvebX4%~AJ95v z1hyQ70J;PX0UZWMKo=q-pljg>=xjIwIUeFoxKEKh3-K?+%V;J;Oaq#ea#vLw7+8KK zL4LtN8VUS+C&&oG|6vTEhk)EaVDc{#2@ywC3RI}2?`8rtjxovG-GwbNZAUGT!&%@F zSq!8-z}W3%wjGeM+SA1`MB{w#*-*ab01<}3SMNYzok-LQ?cevEFW));eNxdrb;+de z#dlwQX>t7E{D;>=Mmf`nTUQ{WT;!D7O<5&%7L&g2vg#vo95vPd83ip^oF^Hu2&$b@ zNb<2!^mUq$bXiB~a9Z&u8p%{**LnUHht>3Usz=iEBhjN@7W> zRdP`(kYX@0Ff`INu+%j&4>2&XGBva^Fx56NwlXlN-L4{vq9HdwB{QuOw+5b9b5;U1 wNP=t#&QB{TPb^Aha7@WhN>%X8O-xS>N=;0uEIgTN160J|>FVdQ&MBb@0Ee_>rT_o{ literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/NO-32.png b/deepsoftlog/experiments/countries/data/raw/flags/NO-32.png new file mode 100644 index 0000000000000000000000000000000000000000..57662f2002eb7dc9068ed803bbce5da3abc5d7bd GIT binary patch literal 600 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7E^sf__XA+GPWb%D(HdIs-!g+E0{ zfB*Q=KClWXh(LMz9h&m7)XP_ zzjuO+*zn)_WgyRS7I;J!18EO1b~~AE2V~6lba4#PIKTCxJKtdi0f)fl-|uM~B-|<3 zUbyrBK_$VB$AYG8|0iVJ+$wO0MI%{+!|fD{Z~C=8-&6m}CG_OJ+cEFC)tzIfnDoQ{ zZsp@pyu3uFrN4;IPo~pnW`nO5hW>! zC8<`)MX5lF!N|bSNY}tp*T_7?z`)AX(8|D6+rZe$z@T=!iYSVP-29Zxv`X9>cwWs} y3Dh77vLQG>t)x7$D3!r6B|j-u!8128JvAsbF{QHbWU38N5re0zpUXO@geCxuPx#24YJ`L;(K){{a7>y{D4^000SaNLh0L01FcU01FcV0GgZ_00007bV*G`2iyt) z6B#3XBg}IE00J*bL_t(Y$HkOONR(j|hM({Ize#7NiIBz{pp<4rh!j%PaTIIP8B!VYg7eROEs8cS+RRL6 zbrxsw@SO7=Fz)+mt+05Hb`07$(L!$q5mc>$Bh|`e?2FIV*SC-ZPao9vCgPdng zM8~IDl}ePagy|2wI93yUzeL5u^T{|;QD1ycSI-WzZf7x8Q69dYA+%EbT@7FmC#alU zahFZ}l(yse>P8X;pa6tT5gnaGjre($W%AU$rxKW4GaZd+bj+DZ0}24G5%zRsNj^7& zV>&%#b+lye-_GiM0B>z_Q=nrS`$3a};g@Xbd4%(Fjkq@d*{BMA93^dIehOl!ah*DX zT<<_@jq`+uXilbR3=J4(XS{wqPxA0IClNpjmfrTGwMGcR>d+Y0)OVJp5?8|mvTD}r zhl~O$k^`ZH6hzv(h%H1&+g-w9cOOWB09K?DjiCWUYerkM%wmqVPVxFo;$v7d_vQC3 z#^MM=t{F<#G2P(a8*9ln3t5@}itj?=40!EsO-8Bs7ig}vXt)=Hfv~dg0uuHIegXX5 V&co6;7Ek~H002ovPDHLkV1l^DF$(|y literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/NR-32.png b/deepsoftlog/experiments/countries/data/raw/flags/NR-32.png new file mode 100644 index 0000000000000000000000000000000000000000..5c89d736c5d562977b370f054f0097cf34185240 GIT binary patch literal 795 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfb+s_=LEMnx{S7>xhYf;y}b; zoW^JjW-wz3t6*5VYumHK4+bo?yC)qB%=FWp>=P%#T@+@G`PvJC8XE8}*FiPbx zO`o=K!;=?pA3c55Gi@n@aXL_t87O6(#%c=EsOOxQoYxtX(X0s!1l<%ClXRdI1hJT= z^BSh`YbEk(B=H-kF#*-Xq<{=IpsX1Pfh+=x|FSv%1Q_UCB|(0{KzD+`zyJT|@vJNb ziZUj7ySq3ET(|uKvL>2>S4={E+nQaGTZ1r?;4AD5B{6L98;>Ci7*$fE}4)RM# zRQ&w$;|D8CYm2MP&z}a363mNt>}XjsWlPVRIeVHGSx6-arKcqXCWVFth6Z21aOKjq zi>}N$Rd0BHv9Yze9aCGD_DpPA7~6{jx7r#HU%Phh-oc9}Pu@Iw^{g0k0n^@>?;gH< z`u53_$FHCFpPhYR0|y5W7au1tcYntb!AXG^4L25kC#5QQ d<|d}62BjvZR2H60wE-$(@O1TaS?83{1ORs>EL#8o literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/NU-32.png b/deepsoftlog/experiments/countries/data/raw/flags/NU-32.png new file mode 100644 index 0000000000000000000000000000000000000000..25e1abd2ce0ef3c7baaa5033562957827732f37a GIT binary patch literal 1175 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfjQC_=LFL>*)A$_VkrYcZ!=9 zGB89iFgQ-`U-h6n|3Q2Hmod+*9 zw=9|1H|P6z{r~@2ff{cY7hNmJzn!0ZEheg?VfM~_=d!D3zd3yLciBm_;hs3mY)Ghw9tKie-{Eo(D-nzM)Gwbj5^}RlF`1s-T zHLcS=eF8b}-#;cG**ksXt^B-~+bXW*#okPa-A{GlDkd$f4@uo|Ic(gFZa#1*xM~7x6@L0N963-@7z{_^eg$%k|1KR$nTS6<2Xr0nO9Ui|p@>C>KFcjvF(uxLxy z#5I#A&;9;g`~QEIV}~!?>z}wez0p%MzrA7k#|;Hvb`-SLE(wllKXK&Z>*FWyPn^8U zw=6rX?DH2Hpf6r7=qpI5k$1^sVDOwZZQ-N7tj80wW=&hfz+l5E5LDeh=gP&)U(X+S zJiGGucR`?getl7S^N!);2i^}KM817f{ryoKh=7a_AEZ8gl6(D%;q`0&fB(b(|FHlD zEYLmR7!>&bpAF0anji!d2L&J)G5`C=2tgqA|CqpRpez?89)W5Wb01~_rZDT0Aiv;0 z|FD2R|Nj5~2gGRL-+v_d@4sH%Hy5BWoCO|{#X#BvjNMLV+c7XODtNj$hG?8mPDn^e zN=r;le*WOeqh}AFJ{A`c5o%#h6bxiD%r2CUwytJ(S5FrYH!tV+*Uy)?nDAj@%7jl- zr%jwXIXoaFC@e5E`1*w@7bZ0@=gKFt$=b*MZ#b~v!GsGNK6IQ|@j_yLM2awr~y>OgNIzZr|ZOSt2ufq zboKQ$vF)o4B<(%I#*x4H{Iavr+wyMjV-9V6>bE*}_xCqEFKsn vK{f>ErbP0l+XkK&;f9n literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/NZ-32.png b/deepsoftlog/experiments/countries/data/raw/flags/NZ-32.png new file mode 100644 index 0000000000000000000000000000000000000000..30b2f018d7382b0f784375e971186041cfc71fab GIT binary patch literal 1288 zcmV+j1^4=iP)gLW)ofgeZJx5)=g?R#1Vx>6M{DVIrb0L^G9S zS^k@~KZx3BI-T2|wP$<&-aox~oNhLW!0)Sj59glqz29@rz0&pNPBWuvxoXRY?ELm8 zzW(GeFvQN!H_?3g1RxxFWEq>^-c9+uI$o$t@_K#5lI8W}>ldN2^~J1q6HD`Z~!h5*u@tdU!X`{lD& zX3A^N&Xu~=Ps_!qO1AGhE{FDBVNxPSCgaCP_Ktic8CUzS^y3gQ9&dI3a(FOdlLPF+l{;AmLY!0KfSDZkN0cgs2Kq9=*#5TD5sz4I=$ zRY`P5D?Q!)oEm_?vU%KahQ9b2AWzYOODJk)O(xYkh|(c{v<;I80EDg0wal%Ec=NzD zqTU=vDVzh<**8K{b0bYN15)3A$AK^Q@zRE$IdJSOF|8@9NV4yTqdd2M2dDFKk`K>e zMU^V*!yh!Ke0#mi%5Vkef@YRwE8lI@eSwlRg2}2Ede9@u31?zFhr~m{Xy|EJ8 zdV!NISNNtQ$HDFlS$~uDPBCNv9G-yVhkj+np>{TGS;fYepJC;K2I>x3K| zE$uO7iqy!chaWS$ch^lpzRfDi99RD>rXFyKqRp)Q>+TJ8&pWRpjg-U>g4 zoz|dl@2!9x6GQ}JWdas*1wYOXx8sPA6azro2jhc}eFq92n1G?R6PoWN$YuS6c7Q+& z#u^qhRs!(L*%W~eF!tYP0v<2|4aORHdeSaefwW^{L9a%BKPWN%_+AW3auXJt}lVPtu6$z?nM00007T|e^QEJRu03I0)}b% z3{&%g7BQS-U^u49U@?<{VLk);O zkH}&m?E%JaC$sHAjv*T7lLdsQPna?(Z9-y7Qrba=H92p1HWhv1>he0JwJPgX zmPCVd?_@{kVDD)6aR2$;v)jd)KS+KsmXMO1J!96)=!jL3k;x2<*^X?|(bm=M?&|5{ zIbj8>ISqI0+F4yuRr&kJub=D*3=bUy+ZH^SaACuTjuR_h%!u$25I;X*!i*_%Ce4~Q zZ{p0Uy_`iZl0~0`f`UGAb9Hxldu?QF6A{qRUcX|^s&xn16u7cpzmk@kJ!>OlN7J-x z+rIUk)5~F4v|#u0?d$6gxd537L9d@^1~2zL&ZZI0z~E!Bv-`9`b34$NswJ)wB`Jv| zsaDBFsX&Us$iUD@*T7QO$UMZrz{=Fn%D`0Hz}U*bpmw{8D2j&M{FKbJO57TFUd>qv x)F276Aviy+q&%@GmBBG3KPgqgGdD3kH7GSPrLyp3str&PgQu&X%Q~loCIBpei(LQ! literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/PA-32.png b/deepsoftlog/experiments/countries/data/raw/flags/PA-32.png new file mode 100644 index 0000000000000000000000000000000000000000..68a4d397319a3a54b2713e52b275893b7f53d714 GIT binary patch literal 1214 zcma)4X-pGQ5MDtImVz}xRDNNiqLPL!NE8q`Y@r2hY>QkXwxxxjUMCE#8VK&@IqqoVTS#e~|bxJ8$RsX6AeE9or<2_2BvN zD2nosNySRseen~xxuTBjIlhCUTsCalkRSoHDGK;}kV?U7h5uX(gTQ~}FCfbjdqGC@ZNOmH-Tu|ixNczYvjtYhbn ze~7I0vxlv7h~XB>YpJt7ixT7Xe3<736MtcEX*Xw2CqP1#KvabHaHj&+zo%fwL$%b#VaKlSy$|M>2M zd4a&|x4<&&;yO)Ln{PDNc<^l&2>~DP$pDXIxIx zor6c4u6-^wt@*y}+Ws4bjebj(75JGeqJ@&~uwY?$eOQoxSfl^z`TSL@!ta&dUCcAq z?5Q34UF%-so>zJy>B_b=Wolx&B4zVd)t02*HdA|-R=qIiaSmV6_NJrfdFQL{mv3K3 zTr7Nl#0zSTzQ$TpU-^=FFL_=74!@VZ`RyQ$@S%B);%g-tGykXe{k?}RIi7-9K_@pRS8X3DyZ5cbP+=689=i0X=rVKl>6ZJ2VIgK^#nYnk z6Xn%4ThsDZn10k|-DV!LB|9scp ztHiB==hd8*Kn;>08-nxGO3D+9QW+dm@{>{(JaZG%Q-e|yQz{EjrrH1%F?hQAxvX=Iih<$f z-hKc7|Nr;*FOdB6HbE)-8TE z+5i8s`hWlafX(^$>+9#sJ2oC`Zrj?_v2pIo{nd3RC-glydlaZ2tN@}4WZLviH@gZJ z&M%o+)VgO)L2q2~<`dUm{{!0vRQl=5kC|&PN3>9T+u0bcTTm9MKR#PGCew3$O15CS~7}AirQB4F`YrF){oH5g`2U|DQcf48Q;X z*@;5_-uW9M_V@qJKf93BgY;}~(pU{NjWNmF-G%i>{>$S)4rhT!WHFHT0Ash4*>*q$ z8J;eVAsXkCKOE(%sHv3v@k6q)!STR(c_t>N<|gL^nS%j}YKejynl^ms@G$7;>g(+7 zZZC3Kd}PK^)dO5A!b^mNg(pu64!V5F*l6>n;-bboE-!5)#Ud>?F#W7)tx?d>(9zP< z)YV?UVhvNF=;x^sQ$r7Mg{;1s1q82ONlVS16&-c^mbF!5%~vU2Ghf{eOmAys7xb-r zH}BrQf1JYVzVnPqr6#POz5e(re#3(dYZ89-%-o!Iex`N)zoyoo-3PdM61jQ~aEU$F zkKC2>vuo<=u=SC<`9d2%R!#o;`g;D28T&IoPg{F?+xrvucXFRFkIg@pm&X{EFf*UE z=-azLw$S~38x4(L4Z_m5Gv-&NY@;(fMrU*Y4T?+n@% z-J%uyzCQZ)jZs@cCwWnfUdT}2c{LvDUbW?Cg~4Lq;rtORP11lbUrpH@=iYn1^ZR|j?|k34 zKi#-R>)74EhKp$mJ_%vd82IzFen-QB#A$OA8ul9`Ik#hWMG^KvH`!`r2mH@A!1p; z(!hM+51f{qh;pQ^kxoy8HG-`aEk3|1;4P){FSVM25xL~t59~>>Q(#|%od7EpwJ0@f zfIQ&BvZ4y?8L*GRM!?R3jf0U}ZxP9H+~%k#J}=J|_=@A0n~c<#;=s;;4S@}Vje(s6 z>jf)>r>AFmdHFzpKh)~OocuZkpo7x}76w)=;d{V#g0+Z&$z(ErfB%q>5HByUz@Q+t zLJ{oiOL~RCMJbs}6cq*kI9L%_4VV(%-rm(!RegPZ6xG_m!1p^l<02#PbyW^hT~t`o zV2J}WfaQpHS1Og^;o)gUql=4+o10sFeEc1ro?et9nT+n$4lGKU7b%oUr5FzlLK=-m zolYlHDBPtiZ3iwgm2C+I+^dTwjlp+rgkJ8doyWOr< zs|iL#>LqH14$_q{MBKD#lg(x$S9GeDw5T(QOM?jHkOslDTCMa8U*H2^Yo|>l++CJo z%oOcT#+(TXdNHSy7Ckf*Xe!7q9^E()+D$ms^Qk#v@l&OhGF%h~$SMp;38wYu3i8c7 zpP4<8&hrzdiLuG^6DDgx_Qm`kE&Jpyu~iB_F^DhVz4^?DQul~Qc%6y+UdWp4jy3k>y60lLf}rQ2&b&}<;k@U9jbp7b)+-MjpN+7Mwj7Nv)U^)9Shzpu zeM84{KY3wz%z7rf=c!&{vHs@auFR z`{GohAiUZzvpRP7Kl_veHS20s_skpHCm$}&O8c$NvFI+`b^nKkr&D@=u60Zl2~)*0 zv$Ndn^ylwYLv$P_B(uTD=jHfHnjVL$D0e7QwvSbN`G$4o455<1WJ z$f;~goh N49Ui%W1I8${tMaD%#{ED literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/PH-32.png b/deepsoftlog/experiments/countries/data/raw/flags/PH-32.png new file mode 100644 index 0000000000000000000000000000000000000000..245180855eb7fb26221b1a9ab63607ac3c49c551 GIT binary patch literal 1213 zcmZ`&4NOy46uzaDj22Lfr3K1>F*gihzVaiKIT!>cL{p)3FcO)qZ6S-2`cuMBWVL1L zG=s>dU@0uYY|EUC%?Wm?nF}U^)P<6gQY=F@h5{3Wk}O)nxM%l0(9I>g@7#0Gx#v6Y zeD~b<&KAmc2XiC12%+GD{9HL%W60e60-NYJCz}o-du#<5ffwd1@V}Q`%!#B5XZHtPsa5!d!He_YR zo|V;wP_s~I7Ktp+_Azc1Bh#O436@E{Mez z9&ZCfqJ%ZZa{vp(a5!em%da5RBoMTbSFza})d9#sx-ss-_!oeCJ|9@EE~&JWG(i+@ z775z9$Q;Bn2N8|T05t#&0F8j_@S116D~pT14$Ck?pZNQ?u-Sw^A@Gj?%mRD>fEYOq z&;xjuNhJGU|2ngD!eGlpEqnNF`Ka~Z0zjCbVzSNvd`Gg#aWTwe=!FLpe>E7MAmrQf znh$M%D)9`xlK^J`*TULerab_UmY}r@BR2L&!1gD%KnqNeQ^Oh|GYRk;JXwY7-$D{a zheRR}gaKj!i-7&Fcf5AB|T!)uU-tO43eAYVzP$Cx=Y;M(&IcxE+)I&OnP_NTp0znpU%E-ws{$ zfh@yb&i;}KmNC0Owo5g&rKQLzx%OpDvvKfTT4t;u~?v39r8@48Q*%*(>l0 z!vt*?S}&F=O5PrGxkuxSrw3jMxK&|n{oQ@zakHam@zcp$I54!O|1*1#sU)ZP3z;QT zJ=5(uKI5?bsEmzJZoa`U>#enqXn!v4-rrY0G+sULM2&L+*P1Llbsk&QYIEn!u*G*j zRGEA)p8cU@^>K81?VR^^98bb(ykB%hJ-Dx9S9QeIltSa5;pXeS;m!l!dvE6~a5X#b zl-o{dr$$euBlLNKr;LA2j!E0L>GR&vYgBq|hWeP6EGUVRBqdVP#H2I@MP;N)GN{x9 zDmjCq8muo1o=d3GY2K@-`~QTXhaKc6MB#LWVqJy4Ms-Y!vNgJc+L(eWRi#$0RcY#u S+O@j~2o>bXa(i-=roRDK4|m`I literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/PK-32.png b/deepsoftlog/experiments/countries/data/raw/flags/PK-32.png new file mode 100644 index 0000000000000000000000000000000000000000..102a2fa4b027e6924de0f41077a35d7192941c72 GIT binary patch literal 1266 zcmZ`%YfRHu6hAGUZ7Gj}lsT9}WXo8PtaM?fj5uDkEiDCsfglC?`v3cYb=6LW2vg?V zMEtM}M>1Wu$tx4$$UcmKm{1Kbrzp6oW0g6DZgh+p#g#{qoqxME@?kgU-h1xv{LbT^ zdynNP#DV@1{s0gtm1N}N9*vXB^20S{>Vye^{&|i(UjzgKu(p1<7F|#dl<7ZNZ(mzn zT13QWMTJJtSR@Nq)So7MnNK6AyOyZ<(rRe{8Q|k1Q&KJQ_kn+QF48_v3g0w+Q6_ci+_+A>%$b)QX?riSA z(hp@2tPe(}=pB*tU8%q#03G-deu!)`Y=ROf{h;*W-w!JrDxnZI8#luqXzguXSX!t# zRf9;lAw0$u1DRmEYMXyFkI}HCKr#?i(A3prpSD|0TA&oTdM+Z7hDda|KYRbd!UN2L z#V|=G-X)%hPc|ll5}0}>f)uR?re>zhjb_*lTTEN_T?9F&t@B{Yt9-$BU20ZjZ_8Wbh_H76{G4rgKf=S~1=cn}&{% z4~;F2u4UJXdu7HsbMN^#zxN0fb|eRmyq9e+56Zw#9nO_1Yh zAOZMBUM5}vV^Yr~2dp0o0K~v3W^6QUM3YajCsD>Io}Pz-3MN96@1f}g9p%xSS%tsz zWoxb?4`6xK?RKxOJ(&-oxji4s{p8=_Il5Oor#0L4U&GLerk05_=mh7W77y&VB}Myi zmw4vRQPU122&5UQ`LWkD!@T|ez}WR_c|`5%JAIS@Sm~7xu3XT|FNAaa(KGnX~P6GQY4pJ%8CR zRQ>jvv4Req<%4lq$?1dG#uu%k-Bzv2s!P)B)!_yLeu5yLFN_y#&*$@#5)+d6iE;c_ zllc7Fo)>uQ94gIP15y3|4gt>7U!%iwRE9h=VXac_)j_J(tky+KD^;W}SEtfeTSj%s ONCK%yk#R1qy#61^lk|50 literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/PL-32.png b/deepsoftlog/experiments/countries/data/raw/flags/PL-32.png new file mode 100644 index 0000000000000000000000000000000000000000..aabde21cc438f44a969213ccfddd226e750e52cc GIT binary patch literal 472 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7E^sr&$+5ZC|z{{xvo^8b$?|2;f_ zoc}yLATCw_R0Bsq#c%}F1xG;ba0D>~$>bT`EpveO$(IEA1p{di__L1*D=x4y3j<0s zCV9KNFm$lWdH^|`1s;*bKpMpMU~oH`Z3kooc)B=-Xq-QL#*~l2P=Mv&-Q+a2$N%qF z6xlU8hu_H(iqPZI(oS0@z|?tlQ|GO7uNQ2Hc0E! zOSPyYY^|L@vL>2>S4={E+nQaGT$a=ashDcma=HTUBJ!5P3)s@x%@4b|?;Nmjs z$zfzzkXEztY@e_`P@!sxYeY#(Vo9o1a#1RfVlXl=G}1M&)HN~>F)*+)HMBA?)iyA; zGBBv!t|E$}AvZrIGp!Q02A)@QRsuChf@}!RPb(=;EJ|f?Ovz75Rq)JBOiv9;O-!jQ TJeg_(RK(!v>gTe~DWM4fosMHz literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/PN-32.png b/deepsoftlog/experiments/countries/data/raw/flags/PN-32.png new file mode 100644 index 0000000000000000000000000000000000000000..510ed86534abc1efb3d234640367f77c0bfa1408 GIT binary patch literal 1518 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 literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/PT-32.png b/deepsoftlog/experiments/countries/data/raw/flags/PT-32.png new file mode 100644 index 0000000000000000000000000000000000000000..d318c662ac6deda9392ffb0ba241851967ab1870 GIT binary patch literal 951 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfcv{@CkAK59Bj207*DvNMle; zWnjo+*y9Bf{L9V&7uoI22;l-nn9>;3(-{~t7Xw{5$Q z?LYS6z~0Apf|sX=zK;bN_>Y%CB!ht=hM}ULar17eeT57s_MTpQ_|f45=TAf_-fZW8 z(8T;t2&59EESjNy5@YjxnJd-|H@6>Ibn@Amou{Asuw9rg{;-x2sEiwEVJ;&3HVjYQ#ZGRO zzQ3H|9|I#OxR^j;1yl(POwI(xs$PcDd7^8U$~% zS>O>_45U54*zIJt9gy+F)5S4F<9u>LGea4lpI)AxM8cz_w8Vr|7Dl!X8-9Ix`{@jR ztW8dblolmD5}Fhf6d~$y`oyV|+8SD#t5+1QOblMIZsE$MYZtFxo}ZAB(&O9MxpL;t z)}>Ro_O6|~m)VT9&+nYxy1aLC^WyH=?YklJ<0m@{8*6(@TdVsI7q`Sf0a;;b@%a;G zOqnz3)#Nr`$11n9urj~AxH?D0a6vQeE^n{Xr?j4-MoAI{&5Pc`_3~Gt#;Vx=|9^p`I*kTo5ckzrW%``otxdSzUhOjIfF&M)%i8g zCEf!4t6Jh3QIe8al4_M)lnSI6j0_BobPX(Zjm$#~46IBItqe@H4UDY}3~INlh@xo7 z%}>cptHiB==hd8*Kn;>08-nxGO3D+9QW+dm@{>{(JaZG%Q-e|yQz{EjrrH1%F?hQA KxvXrs-#FvQArP zp0>(7ZJTx4BI7i&8l$u`KoR|vvkd;17y~abhMs5ey(krZ0jLG{I^>_J&-Xv}6^sy?_5%{Qob0`#~;4B-Bz9kZEVN zQcpd4o(T4c`M-Z=fB#tly)${~DxeAQFa(CMSj_qKmVK|^h5Y*``v1Sw|NqSY|1)mh zKb;};f+Z}dA>k|?ecnC)*v7rnZ#^h{^epq#rN*Win}FeL4t6}y{Xk_vEjr2P82m0V zg`H=N2FBe*kqD4Ez<`Cv8jt~rdaF!e6ob+L+#;Y9T;&S>IfsGCh_k>WvKUBvfU(=j zY&#(1zo(01h{pNkga&3ewKOrdn1-pnbDJl3&u*XIFTZ+E!-5GLI#$fs(XwQUiJ7R; zrlL<=U0$cOR%N}CniV0Ek@@nQ^VBObY#gBk-s4enznrDIkV=C zjE{EF=TBd`xw;p1d3&8crLAQs8WMW_%B$;F%}vZ+ns48-Em14u{fjrRuDyTx_Vs*& z!b>SS_vRRt-ufbGoPKtmarwPJtlS&fzAifIJxwoqU((Z6SF^7r_4bs$HqW`UrSkN( z+}j)7#U$R`*qLp_O-DtjJdphl9(;zN`}aQsU2^Z{F$RIF-sP2xz>{K^~Fn|2-Jf>#{d8C&YoIV>F(1u=VEopmnTm_ zl3?Ax{{H!}bN#z%bzjb&01JSOL=A_p_a1+{b^GJJC*L1F_yU&#hY2unFcC1gPC&#V zAqF8uM9v5afkF?$g~V^F;etoNbl_PM}aD=hK z_NT-TRtZT-4y_M|7+LnV%xH0K;BwhpyWqg}^Y#h?=Y+Y1(x**u*`{>ESmlbbj?7`M zl^icU3_7~{I(xhQJ$#x9QYWQGK6%o}B@!eOd_cie*H+nB+ge@xP^ed6T4*4vR>0}t z^URHZnx-6D^k~whDMkk7{>uK7eZ8euI4qCZF2kawwR%-{*6UZnQU~r7?RBdyV|Gr_ zo)t7JI_mZCFwO%#*f~Kn$4Ueo=IjdTqxb&bqJ3=FJH z4Xq4JwGE7|3=C?wtB9g#$jwj5OsmALf#=nnl|T)WARB`7(@M${i&7aJQ}UBi6+Ckj b(^G>|6H_V+Po~-c6)||a`njxgN@xNA_tGUR literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/QA-32.png b/deepsoftlog/experiments/countries/data/raw/flags/QA-32.png new file mode 100644 index 0000000000000000000000000000000000000000..2363f00334f7b8c21950281a994b34842664198b GIT binary patch literal 1281 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfc6+@CkAK4+H=H{rmdiW2m+NHJ4-L3(^5NHHD5~A_%zkgpo zetLTQ?wK8X78h05F(?3I5a?gHr4O%M-@ADE{Nkz(8_#+Ml}09zt01zcw(bNbfI0@b zCYVPcQot~OeErtpH5-=Iwe-3N!F9od9h#8-{X4m7dmV!!$RkM6ebUG!6qstIOM?7@ zfhzz11tA~-@(PHAisdglDhO1@nB?v5!Y-EB@fyhCEbxdd2GSm2>~=ES4yeG>)5S4F z<9u?$gtRHsrX@~FO-r1bJUKidBq%5>Ff{o31r{dVT-jK*GFv`d+gfH@XXRw!VB=zL zZ*6VuZ0Tr@4V%jo9+W&ODk&+s^!VAs(z3$R;_n|=nDjX|eEaq>^#SwD2hZ1w3rL8_ z2uX>_33f6BUNqb&z*<%Kk+akDq~^-Zmy$C%CQO~n96Dk4^6Bvb5g{=_QPV>E7(}Or z2C!Z=-CFvUx7YWq?%Lc4(HC1^mzI>3e*g0AtN(#j36GZiI2pXmZ?;|XGo3eKFV4<0 zF2DDOm0Mglt|`{>UC`dt)8T7kwpN{udc*bS+S>aY3NJs?jozMn{y^TLzPY>0-rwAv z|G%+W^aaUDgw>&4gC=120nyglws+Ex2pZ&OoO^>=v&hIe)+p2kEx2m^+$YKdz^NlIc#s#S7P zDv)9@GB7mKHL%n*G7m8@urf8YGBDLPFt#!|e3cpU%$ literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/RE-32.png b/deepsoftlog/experiments/countries/data/raw/flags/RE-32.png new file mode 100644 index 0000000000000000000000000000000000000000..289b805efc6766828931062db509ce61b934eb20 GIT binary patch literal 332 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!VDx^^%AmxltF+`i0gkKgMk4^LJ$K(8Y5$x zm{OSPyYY^|L@vL>2>S4={E+nQaGT$a=ashDcma=HTUBJ!5P3)s@x%@4b|?;Nmjs z$zfzzkXEztY@e_`P@!sxYeY#(Vo9o1a#1RfVlXl=G}1M&)HN~>F)*+)HMBA?)iyA; zGBBv!t|E$}AvZrIGp!Q02A)@QRsuChf@}!RPb(=;EJ|f?Ovz75Rq)JBOiv9;O-!jQ TJeg_(RK(!v>gTe~DWM4fosMHz literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/RO-32.png b/deepsoftlog/experiments/countries/data/raw/flags/RO-32.png new file mode 100644 index 0000000000000000000000000000000000000000..6725563ec0341f8a41c32480b4cc804d8b070185 GIT binary patch literal 339 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7E^DYF2d5ZC`e1_J|-gd+xqGdw(J z7#PlZcpUrj!{YychX4QBLF5mH{~lmvJPg@v`hGxdY$ZW{!3+%l-U%}H@9oe8if|Tq zL>2>S4={E+nQaGTXnDFghG?8mPGDv%F)*+)HMBA?)iyA; zGBBv!t|E$}AvZrIGp!Q02A)@QRsuChf@}!RPb(=;EJ|f?Ovz75Rq)JBOiv9;O-!jQ TJeg_(RK(!v>gTe~DWM4fm)c#G literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/RS-32.png b/deepsoftlog/experiments/countries/data/raw/flags/RS-32.png new file mode 100644 index 0000000000000000000000000000000000000000..aa2af703210e04c18c516cafaed21bff04493b63 GIT binary patch literal 1439 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfiQ-@Ck7}W@ZBv0g^|}Y)_e4 zWZPvkI8;bFl*zkQGO%WJPg(K*|Nnpg{sBp#8mtJY5srW+z!A_WI0BjpM?k~j2xto& z0j+~0puKPev>Fb8E`bBMAdrFLFiSfi_k@YfF;nYfU^a@Zne{OhlVirVyFILrSlJy{ zGCpQ(b<7;qYe2pE$w!J(Hn*f5C`vk3k#)@0@tBDEFK}?>`(!wm4Cp^5pr;iwmaia%6aS=MFq7|NZ^@ z{KSz9v-)1We0^=xs(YJPLZpzR7-+)#n>W9`eDxoc7?A)taRRM?3W0S(xLcMx)dLf^ zQ%R6tFpx$9|K15Ql8TqCWYz;3!Ii$^zCD56N8<49V45gn?M3X(ceGJOwCQsPKOUEZ_w!I>FMd} z>+J3J_we!Z>uh0I=#eO>7TD2r<;s;UUwY20c{AtEoT0iFv1Zje%@&50PMMNoksVF9Zr$4TtL@mbXVb22`_^|Z%3#9kso@EsEgCOgy?XWT z<=fZu4GJ$k(F|T*+SnL0eG}JgEti8|US3W=Gsm?0+?~qL;yN)~Dy$?{_=aCkxZa`> zu_@)`rPR~mYht!moxN51+FXZ`d9CU#E16vatkULrceYfXzLtBt{LP)M)#vZ^CM?(< zc)#JYz@miv`)Ysl%h;6sIB_xgxc?lRt^7Pa-y~-j%ybf&V^{m@%*)Ns&&BVkc=_q2 z_HxAoZ?^1Y-LC3#@apRD^|AJ~kDsl*UG8^(Z@DPbnsrgPKiqHkxA*(zr)A<=Rf>(f{Wq$=?9k{ zgr*z=#*J!;YeY#(Vo9o1a#1RfVlXl=G}1M&)HN~>F)*+)HMBA?)iyA;GBBv!t|E$} zAvZrIGp!Q02A)@QRsuChf@}!RPb(=;EJ|f?Ovz75Rq)JBOiv9;O-!jQJedkAW*IzP L{an^LB{Ts5zvjd~ literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/RU-32.png b/deepsoftlog/experiments/countries/data/raw/flags/RU-32.png new file mode 100644 index 0000000000000000000000000000000000000000..e03a51ad2ee3a1376a9af236f1f63ba6b8432716 GIT binary patch literal 752 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfeil_=LFr|NkE-0wn+a``_IS zWdE0v`Y*-subbfkkn@j0>^}n|P?iz^G#L#+OzY|b*@%pQw!;y~8OVs?AJA101auo5 zAvAzp3v@69ft(FTVEZ5*MEDWIoBFL&S%6{TQxfDC45Z=U*WW*X|GW`o{QLjkJ3+=j zz@P$BFb>dfKpqIg8887Dz3k#Qcc5X6N#5=*3>~bp9zYIffk$L9kOr|m7~D=~+W{H# zJzX3_G|u;)J<4~;LB!$W!Mm~DyLaz4*44fG|G$vay&|;>oA;e`&FjDJ{^7BMKr2tY zMvw9gfukEOyc{N^1ZO(6oi#cp!&15KfM8e5%A8dW0Y|sq@BX#=pzy4k)w%B+6fTss z#@#n+NcbV}_ioHr49F-u_3wd&(}GKLu6#aP+3K)( zXXf|z*DH%Z>i=Mni7!?*WtgH4bgF8JYeY#(Vo9o1a#1RfVlXl=G}1M&)HN~>F)*+) zHMBA?)iyA;GBBv!t|E$}AvZrIGp!Q02A)@QRsuChf@}!RPb(=;EJ|f?Ovz75Rq)JB bOiv9;O-!jQJeg_(RK(!v>gTe~DWM4fTb*J{ literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/RW-32.png b/deepsoftlog/experiments/countries/data/raw/flags/RW-32.png new file mode 100644 index 0000000000000000000000000000000000000000..623a8dc95c7cd20edbbf2f08c4ef78ba8c7635cf GIT binary patch literal 1088 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 KU zMwFx^mZVxG7o`Fz1|tJQBV7YaT_f`l0|P5lLn{MQZ3AN~1B2S_DxxSFa`RI%(<*Um z;CVG?B~XJT$cEtjw370~qErUQl>DSr1<%~X^wgl##FWaylc_d9MGT&hz) literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/SC-32.png b/deepsoftlog/experiments/countries/data/raw/flags/SC-32.png new file mode 100644 index 0000000000000000000000000000000000000000..83fc83d665c8dfd5cac758eb6640127d82f2db6f GIT binary patch literal 1190 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3HGD8EPYe6kC$Fy9>jA5L~c#`DCC7XMsm# zF_88EW4Dvpb_@*6`#oJ8Lp+X8opRPcCRL<;e)0R(ZD$mija?EubbL$-7hZTDki5!s zscYEQmxqpAS(I^^^{cZ#HP<})!L@a3P!_Uu3N9fJiM1(_PxN@rw-KKdA?S8I28VRLwcgXx|{e`YbN ziyY$eXZ*gsd6qy{!>_6nPZegiq!bl1?|zk#c<;&5@K1B9Uhg`8CDi5AsoqVWPBT5X z&0x<__}Q^!;ROD(X^K;ueAr^d&&_L9b~iH*2(+(IbStj767GM`KaZiDMTrQz1dov1@1V#pJ{yIF7MpAbwQ_B zHLaWfcmgw^!rt;Kn-U2B_5f)|clOjuUKiJs6+?cgDTjBiI z^l%md7naET4yg}osw&&oG2dq@?GSsw&g{pr#pJ-}uLkp(tvRoy?Y(u2YueN1kb|EE z4F5bdJ!7iSuv+z#wq=fbZ>V@c{X>~Di`c;VUnb}u`Vh!)YqP=hCYNLWpZ--}s1)d? z&GM|C^zeN0{qx?$Andd?am~$}QEdD7xLI^S z?G~Qb^Fv|EA1^WM?MIUGChmM=bNOZFvCHK>>PZ&y-J|Q^|As?J!?kP83$8xB z$yZITWvg%AQ~aX(M}_&Fw~h1pf@w)CduRWhl&s7q&+0i3?+7eDU7sw% zYxDKb-h8HI7eb^JcP!>>2$I|q!*+Am)n!aOKYqRa%gI;Rc%gV?2EW19S&2%PCkq~l zx4n@_yLf2oBz{fxEF2OC7#SEE=^9w-8kvU}7+9GaS{ayX8yH&|7}Rc85k=9Eo1c=IR*72!&#O5r yff^)1HU#IVm6RtIr7}3C*rkf&W^Dzk{K`eqm^KJ8$ zfm%csSxTurBuo+m=>h2qpPQhG5ouuX|9|(tQz5AHfA^kq?>XnY=iK{WPf3oqw{^1x z0Q|iP->W_j-8USI3yl%={ufJHyP)S+G;Hz`zl= z@}LbGCOS8$O$Lj_iyHK3ae^C=(k1`8Y@{iQp=pGjTqo?6cgc;*Mv9_nEEX@vz~N!q z&WX-VOuLn30Ot;8Xn?xMb!L-!aei@Tc4lr{*cjXw)Bs1uk${BYvbVP-*u~!GegGTb z3;3dKfp!25jzUk$0|E$(pyI&+z#2am#@hp2^w#w2+cLN&fl08HLk@UyReo!lem- ze|Wc8<+LJP`_@SoeK7e>5m(+S-!J8TY!kN?0k_X}AtX0!a?E?y4k{~qc;CaTqfx)! zdf6GhMy=OMvx~JzK`%h6v{7i%F#qs!8IBo?T1wF<3TQ&u#tjYL6^C`*oe7^|xM0|}yD!vFvP literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/SE-32.png b/deepsoftlog/experiments/countries/data/raw/flags/SE-32.png new file mode 100644 index 0000000000000000000000000000000000000000..d1b1ca8a878db02b2c440d0222ec137049dc4944 GIT binary patch literal 792 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfdvN_=LDJq|F41Fs98EOP|3I zH|N35!2jnNK!Pv?l!7Cm8aM(fh9jUZI09;iBcLHX=`$IUXL%G(`F>pE|5=b!cUK!j z%v`CA89-xs!LpucvaxfeGe8!}WXxblndMV7y2Rj4c&I2)kQV?_w;cSrj zIi~+-7@<-?XP;pK3WAJ6B6sk1T?B@md`XaBFpvg;Kl_-l;sPtPFrYMNfk$L9koEv$ zx0Bg+K*mK+7sn8d^T`v~8ChLbQ$<5fOL;3L5~e>-c<>}CB_(A+Orsh{M&|1muU<+^ zNM#;k*sjJetS|4;Xvi^R#;lpq5mAx1B@Q#}-^j3efq+M&F2{|V))rQlyLarmd8lE- zT8{1&5+04#92FH+mA`-d`pLfIaKnz>EUTA@csMF>u&}nbw6(gsxUn8;C|STWdyPzt zV~I~rObt^RYXUR#pT9zrg*HYrmQ9+y+PlchsLZ{|HZ?hS>a1y9cV|CHFf=mpIPY;> zF5p4K)qrqjtpmd1Q#2SDnx=(q{{Q&XZlLE>OI#yLQW8s2t&)pUffR$0fuWJEfu*jI zd5D35m8qeXfvL8Ev6X>A?RFJW6b-rgDVb@NxHa&+nzIt9K@wy`aDG}zd16s2gJVj5 gQmTSyZen_BP-95G$&>$QW&P*p2g!zo{eS!R|DHV{jj^%+6&3#n1^u_T z2k8P@3Um_CC9`M$Pfh*L%?)w`Fie0(UBCYS?p;Lqzyk`%0D^!2l>Yw`1V(^PNswPK zI4XcT|2i^*F^Ks4A4L8ElMwdb|9}7d{oh&9_7SL_G0EHAh4n}N%i}-}XMsm#F_88E zW4Dvpc0k4rPZ!4!jq}MDE?&KO+5Cc`iILgGM&>d;SwA*CH-Q9$tA@tgH(c4c>DtDF z>kfn+KNolW;Kh?SkA@!Soy{a$&hIa)pD!ybA1`aahU*VAQ)yF^v(w>2rAiw#JFawg zUF+=Z?e@Rm>C?oRH%}!_&8~x~ZtjyQSGIiVIioZ8jf{kVz!||Lv9_p*t0zy7Ul1Iz zWO4Idaiyb+RF|ec6`dM-)pVUO_QmvAUQh^kM zk%6I+u7Rblk$H%Lft9JDm4T_Yfw7f=LG5-GQ4|fi`6-!cmAEzVyqdETs6i5BLvVgt pNqJ&XDuZK6ep0G}XKrG8YEWuoN@d~6R2!fo22WQ%mvv4FO#rs`uxjA5L~c#`DCC7XMsm# zF_88EW4Dvpb_@(GN}eu`As)xKPL0k92^DGEU#n+aoW>O#6{Vq|z&fQ{x9OMzbB1H` zsipdEMlSL`JZ%!99h~}7!t)I-vUF}wni6q@Td`viqv(|rx`M2lTb6WfxgfSoc8+9P zRob~Zmg)KOw;Wu34xISEY4hZ%_4V27_g)jTeZS{Gi)@0{=P+n{ zyvc+Id`(a)nJQ~M>_5G7H$sLXV?{6P0e!Hb?gl#*f4(|Hn<1WW{jskq zrlpr>*1r$=Qo+A++U1VjSrhiT>~z(-wnjNAW5?RHOZ1moL~gJszIp6y%1ho-X4e?s zB~r!W1!RiJ{ z!Tu}i^FLMJX5A*+Vf^(XOK*_Vk)+Sh-pzlQU#t74k9xZbon-spm#=tysrZdDtCKqq z>*n;_ZBBgEaLB;dZ0|?K_w|3cU&lwB>T0Wc_5O6x@$c>y#YSfz?&x3YXr;<9{r$Hv z;qy961lGD(%`K6g?~{LteV%&g3YI^s8BV{t_VVWogGm=R&atg(>`G)z(7FH4($QwR z>kBL0X}nj0q>L&H--em(-8TCtZ?Q(1s)e9_L*^q9(ZipGHUzMLPqxYzTz}uoB&cup zj)tq*%#J!sPw-WCJN3k@oifSgzmAX=?}QUxOYA3bzGzOg6JQVt4Yj&7{mZvhfhqyj z=5Q{l3kScl7N_qz@@m@#`wu#b*<5AU?RuWPee=u8-GG6$oWmg^erXE>`?@cN4WeRG zPB1>Mi=7~E^t43wkRb0BRqPjJpDU7#&zLb$jA8?O*rasp)cSEd84-^5;K8GuNw0i{2|qv x)F276Aviy+q&%@GmBBG3KPgqgGdD3kH7GSPrLyp3str&PgQu&X%Q~loCIHOtF7W^W literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/SI-32.png b/deepsoftlog/experiments/countries/data/raw/flags/SI-32.png new file mode 100644 index 0000000000000000000000000000000000000000..2e7cb29cb9f64b85fac7daf7cab06967e2d62138 GIT binary patch literal 855 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfiH$_=LFr#{mES{X-K23jF&0 z_r;4(Km?Kc{{7dFAHO_276B0t&nzj18C?u*-3)F285n@*9|H#vLD<+yGzdcJ14_clYtivV(kmO`9XCDr&0g zDs@HgYn*Fhj!7+F`s?4vpI`q5ul*BrCsq8)tKPKLcYpqVza{!C+uAtheua|izXuB} zUVPuhbeQ?xM2$Z6%QthZB)fYiia(pAqrc>7*48OvM$WUE^WTO~Ia{{@XF Bk1qfK literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/SJ-32.png b/deepsoftlog/experiments/countries/data/raw/flags/SJ-32.png new file mode 100644 index 0000000000000000000000000000000000000000..57662f2002eb7dc9068ed803bbce5da3abc5d7bd GIT binary patch literal 600 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7E^sf__XA+GPWb%D(HdIs-!g+E0{ zfB*Q=KClWXh(LMz9h&m7)XP_ zzjuO+*zn)_WgyRS7I;J!18EO1b~~AE2V~6lba4#PIKTCxJKtdi0f)fl-|uM~B-|<3 zUbyrBK_$VB$AYG8|0iVJ+$wO0MI%{+!|fD{Z~C=8-&6m}CG_OJ+cEFC)tzIfnDoQ{ zZsp@pyu3uFrN4;IPo~pnW`nO5hW>! zC8<`)MX5lF!N|bSNY}tp*T_7?z`)AX(8|D6+rZe$z@T=!iYSVP-29Zxv`X9>cwWs} y3Dh77vLQG>t)x7$D3!r6B|j-u!8128JvAsbF{QHbWU38N5re0zpUXO@geCxuuCD}dra zLx7&@oU(VyiqkJE8b9c0ep|iv*R|{4RB=@qmZOY0sKv{_2LH^a7&1E>7L2SB1 z!s_RFRi7gxzph;U^ZbRcD^`6D4SiNrZ=JY?L3BDNP>miaSd>GSFnBKTE#34Yqxf@k z%lAF|{@lFzZTH^Kb@k7(D?H0KGkPunssXA52A6{WB4L+#200s^)c5>gVECw{^=SEq zk21;I4_g6oy*|5tZ&A_nFR}~&AOZ1L6HKB3+~Ty zVxJfoKIi6boW9MzV(aGV+dgM!gG7Mh;DiT?DH)Bo%DV3u7{2&;y>03K;^hux14V%1 z(1?>(d8efPR#4_WP+UkB$bJVD0jF3HDX;!cRTo6csAiri+5k-JF(pBM!9W@b{P^?x z_pcZHjKBZ?dkrFi0K!0!|Nj4bE5P{gogm|X5P=UD)U8_%G@LQX+uensgH_f8$l)yT zh%5%uAhrjC+sSM@pn^J27sn8d^T`h$iwhiKa56lk#IvYJ;edjevYfQA`1}bo1m=qf zOEWVH8BPk~xg@}9baGQs(I+ki1$}nru9IG;e6$2uS7~Og%zP<1GxDb8&dQ&f0t@CX zT6l5|Yv2Oe#lZr>5g{=_QDJhyft(wi%-#IwA7of`V8f{uyOwQRw{PLbl{=SiT`SAe zv)ace@{9tPmDTQD)m6WLsr$?^sXTQh^YXz1doCZEbd_t-fvRI?A~!!jGuOQS;33!U z={m7&Y-YweZ*RO&Ki8LGW9~mZFK*5~0akJS zxLq|*Uu}JDo_B9o?ell893OVRczygSe_+A;dwYNL%h^@^dGd1ebNzSsn;ROc8y)W) z6kyeFd~o%(dH(&q|37@Z>aD?1DJgYKm@n`HCyQPE&tGqU_n)7ipztU-MI_&35>rXT z5(b9$peK{koP2HoqeQjDHKHUXu_VKd7c7#LWY8d@2cY8x0^ z85q=VR}n?gkei>9nO2Eg1JA2DD}fp$K{f>ErbP0l+XkK%?jWx literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/SL-32.png b/deepsoftlog/experiments/countries/data/raw/flags/SL-32.png new file mode 100644 index 0000000000000000000000000000000000000000..3ec797891922d9f67128191ded5e4f949618dea7 GIT binary patch literal 440 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7E^smuVM5Ld<7io37u2BQC9@b}+e z5CT&>cU}e}1%=rRGZ}!&fQX@w0gm9hFts2QG4uhogG^wU$<=)DFVIq+k|4j}|Ns8~ z1;c;;|Jzvns|JcQCV9KNFbnedd;)Sf3p^r=fwTu0yPeFo12Q~4T^vI+&M!TCRPcZS z!x4wpnU4*=$ER3X*zd_d+i{8Md&8<}8MoGje_*Q*;qb{2S)@5nbdqYU=x?RlpJE?c ztdCw;5!ZSCknIn~^l07i>c4vr0}WLzag8WRNi0dVN-jzTQVd20hDN#umbymfAqECk zriNAqrrHL^Rt5&O+f_tSH00)|WTsW(*1+>>&Pt#LNstY}`DrEPiAAXljw$&`sS2LC ciRr09sfj6-g(p*OfQlGAUHx3vIVCg!0HHFi5dZ)H literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/SM-32.png b/deepsoftlog/experiments/countries/data/raw/flags/SM-32.png new file mode 100644 index 0000000000000000000000000000000000000000..b826988122d899e5e182c9da0848cae4ae3be9a1 GIT binary patch literal 1296 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfg?S_=LFr|NkE-0wn+a0}}ry z?E23z@xRsV|Hd;xTsi=ty=Vy2QlP6Qf>Hl2s0)FP1S0F%AY?TQgn$l)APntbk0FWv z`}gnfzke?tT=@CpE0B#O^Z)OkKhJL;y|%6S*|n{|e|-mr3Pcv}LLm3|?_c+x-Fa|i z;nre?tE+3DJ-c)7;VonZKr`Ffm!q-9{8fOK! zukNc)jEFEU4>HUuZqjQ$sL=lrsDN?eKSZ$1{%<$?SLmcUCCkrs&)?Npz%Zkyq;lRd zv*Oj(Gk$`CZWbu?;NfOI>yP2|Z!ydNPup-YtzmlAl+CHD{;N;gU?2?vKmP#1 z&q9_z|Ns9f0+A5#8^|t#i$P@m6te*1rJeW#w2fd7lsa2Sq~tGv%n*= z7)XQI9t>_Lv+aNiyggkULp07OKX~%!nIr3-n!Gx3@Tp`qcV$!E!6awyxxvm~KVLrH+ zcCM-EwAipU*9utg+V0(3`&U@aZCutuuShetmR&&zN6`?!-llCyS_@B<=xto`g+@2>#+4@ac>Vj>{^uYeBIsZ zZ|`o`KX|b4uzOf?aKV=wABENZ=h_v2yYrJfLbTyZ%$|~;r>?)FK#IZ0z|ct7z*5)9JjB4j%GA)xz*O77*vi15cDsrw ziiX_$l+3hB+!}aZ%~=W5APKS|I6tkVJh3R1!7(L2DOJHUH!(dmC^a#qvhZZ84Nwt- Mr>mdKI;Vst07>-nt^fc4 literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/SN-32.png b/deepsoftlog/experiments/countries/data/raw/flags/SN-32.png new file mode 100644 index 0000000000000000000000000000000000000000..08f02a5cb9690ecacd956a72275e225f3d95a18d GIT binary patch literal 639 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7E^sc!*3A+G;{3Yf}6innl!#|+xKd4F&8;-z=KmTNS^@ZUdOu_HJ45#ih zEI9=>wu`}a5yP+F3?F|m^c`YwTg+fOkD+`!!`;^m|GGf7eE-St;v<9JGzNw?hST@J z7IlLx`u3CI$}@%)XBqb1VAy^QD*pW!!>1n%K=Xm70o?<1C&cAItAPmQs(&C6C>zLq zDH{XyHd{%MUog2>S4={E+nQaGTO!IVc4AD5h^x{*#LkBD${Q>>p%Fce4u$wbncyVGGfMW zv=!`{11y>}IFkxhCao-Ci`>On#8|ub_Hup-D7TsS=<9p^I;Q-zDU#Q3?p(DJ=t9*J z*NBpo#FA92CwWnfUdT}2c{LvDUbW?Cg~ z4Lq;rfNYQi*$|wcR#Ki=l*-_klAn~S;F+74o*I;zm{M7IGSvpCh{4m<&t;ucLK6UB CkP9aO literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/SO-32.png b/deepsoftlog/experiments/countries/data/raw/flags/SO-32.png new file mode 100644 index 0000000000000000000000000000000000000000..b0ba97a1bb0fc7c5f05557cd8bde2c76c4177803 GIT binary patch literal 842 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfjH6_=LC`&-@P*0g`x->CFE? z1W^EF=*;-9H60-W6gQvs-){DQsj2_VH~z2L@?UHUhzk^in`t`hzuc7nQj`8OwEW+5 z<^R!JAO?^tGv&VtOqtot|H{+;7q9z2WB>oU&HrD1{Qv&z|HiHVr|**b`{jQi`1=op9=!RVv*y3bwEsX^h`m6D`qcjnz5mbL|9|<(e})PFm8KwM zfog1K|7V!||KaQZ@4o(j{rUg%5C5g6{kH^b2Rfc}%Kzf^|Ia=A?=>GJc;>1uA#0%C)s!|z|XaV4hLdK1SnwK7(Q?H4px zR@yRxlBsHmYeY#(Vo9o1a#1RfVlXl=G}1M&)HN~>F)*+)HMBA?)iyA;GBBv!t|E$} zAvZrIGp!Q02A)@QRsuChf@}!RPb(=;EJ|f?Ovz75Rq)JBOiv9;O-!jQJeg_(RK(!v L>gTe~DWM4fFkYW$ literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/SR-32.png b/deepsoftlog/experiments/countries/data/raw/flags/SR-32.png new file mode 100644 index 0000000000000000000000000000000000000000..6dadca742570725c2d88ab8e2b6e31896af826c0 GIT binary patch literal 1202 zcmZ`%dq`7Z6#u@tx%rrxkL#lci^{ZG-C2^F$!=`rz?M^sMiEYTwPnj@Gxd)^r4lX4 zDE~+cB6^UT74(40H0qDcq(6elj5T^}P$?`*jqIMj-O=sZ9*DbKiG z8JZZ15KZ|LQIfBL<;O zMhMUr`vqG}Td>8<;f=?SU*q^`%s|`@#F-Hn#_ugaGM0i_6fC0vQSgX@9txII5dUjZ zGF=dc2n-0rSqv@=6Bv9LUSc?cAqs@@Vq++=1w@O!se2Lxe&Ihqcq<^M1%wQMK$QFKSs8BcCl`k7$uaLGI)^{& z2FkM$!s!MbQ<(g;MA08SDVa==N)wnmCYe@5E96adQ!^7IZ9H&@(bnj!=_gX=Cf#3} zA~UJxER0qLYpywbA)3gWyROeZd{?5YFFumhau$gOZdUjJ$oWTQ&@-FMqX< zYI~TLd5y<3x_W~=-np-8;>-AW)x<{R%U%5>eMqeeO)|EJOA9U-JF-hW-NVnkxiW`( z(N>3fL>u#>bh!Rh+NyHblq@WcRc~(?%lUpjVo+Q3t+}mh^A+=*h$oJ1o`<8KBqsN5 zmpw?a>(%wz!RPjo>bi`vSy?q%y{gcChsItigYS%ga`nbN9(RpC`1nz7a`zq8T4y%z zMwiu{i;SoB^T{$7I`vzeR*RF(EU9FPLaDSSRZVB8Q&$zzbY_|+lTKSgugIk7{kImx zPAjliSZ$@X|1SvtaOx5%Nbq+ks3>(-TPj(^SSyNImBDT)WAj;ywbn7fW|1Uh&>M9< IYl|9w0%Rc?+5i9m literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/SS-32.png b/deepsoftlog/experiments/countries/data/raw/flags/SS-32.png new file mode 100644 index 0000000000000000000000000000000000000000..7df5eabecf3aeb25337f74192fb7f1a1aeac7798 GIT binary patch literal 541 zcmV+&0^Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L01FcU01FcV0GgZ_00007bV*G`2iyt) z6A?K{n7;u400EszL_t(Y$HkPtOIvXi#XtAun->!$X(-emEs>(cA5a|HQmEBM&_Oym zi7tY39Rvp#!NI}*pty+OBDC3Rw}Ny~2M1Sa6e0>D4u-Zd@8x?PVuIR^dC7tAaPM*s z_nh-3_IgRheWE}^o@1U45Fgp3sdtt}z!4F!MIxQ!#7Dmnem+uP0rv+%h`stm%kXDH z@vgcEki=L% z(Fq540afVj$T9hDht=%~dfHAoIOzry1)}~9OUE00yxirl6S)gEEX;XV>ZblS4&n8^T7wl)DJOF521JA0i~m>h=T!sq8-% ztQ@aZEwHt;;C~@3Ususmn8m3y3j`d(2Q@?yKZ4(S$jc80B$^FY3BHD)U_%hS;^xg3 zHj(4#+CVG)(KOhJMhwN%z>Yp&G>>V>0ALME4_Os+!}X!EYpWn87pfDK&|Faar+ zF}cEEx~5Kd&rzv8`(!}~?095y?|xYzf;ttb3!+gPXp70G>GJ=t1HB3L4#ZP%^6z;D zAcAv28o_!mN}HTvFncjs>Hk$=_%H#(2NFs^^7k3W|5q6=u4g>A2E+hzA;AS#05{~4 zyvcc>A$`jKF9O3B5yF4ZGVGhn5betl?ai=j7Q>&jh>(Xw0mKcL6->@Cm_6@OLDv2c zsQ4no+rtbNh73kJ46hG@xIjS&0&0i4Uk2p<=l#n6uOPV}644hKpYCD2yq@vu2FAy` z82?`c#XiJ?5WTMDcjx@z4$N2K;*i>clF zWPu1CaUdEaloaXvX=Lc)|O zlcpWylt_8{L{wzzltS%ldzEI>uEpL$c)S7hay;9$%lc4F|5=Idtich~w;; zQHBw>Z``_RZDD1(d&jO_JF6?IDtGTbm=P`}AI27M|G(kDf(H{WZ1~V|V#SLYH+K9u z!J;91Q0&~f2`^?(nKNnDw0RR}PMte>_VoCGh>#ejh2EzvPFYF{32SSuUX`8o`jxcQ z>{-!Kw{KZn?N%r$=MUF6_i&8=-_ki*&3~p1uA~M zIa!?Y>mxVY#Odqf_E)a{`OY@%gX5HkkC&g1-&gm$&wA65x{m*UTBGCG7}o!~^GI>N zq6sj-RZCnWN>UO_QmvAUQh^kMk%6I+u7Rblk$H%Lft9JDm4T_Yfw7f=LG5-GQ4|fi z`6-!cmAEzVyqdETs6i5BLvVgtNqJ&XDuZK6ep0G}XKrG8YEWuoN@d~6R2!fo22WQ% Jmvv4FO#pYUYsCNn literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/SV-32.png b/deepsoftlog/experiments/countries/data/raw/flags/SV-32.png new file mode 100644 index 0000000000000000000000000000000000000000..87c7a62cd954745f040930dcbdea6913b62fc770 GIT binary patch literal 1076 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfhIk@Ck8cV)_phVP^i%!t!5S z9LWCv;K6?&`1kMs-@pI&?D?;x^dBe-6bB+8gOL%+0BQuXfg~#{NL)+|iX%J&zkmOI{`#zC z+KSa1*KF9jxqkAJkDng_1z~>q_xa1K=6QX2Z4D)D)0*c``26K1P!?zc5Z`{ZW%{cA z$*U&Zdb9~7^dI3_h~M|_`MqiLk1bn%?c4JQ7!D9YxECM{c$feg3JU*aW&g{{ff#Uc z=|Jzv!1#783GxdD(g^VHoggC+fvEp5Hkk1jg9OGFOqC$xT)*xGKvNi#yxm>c#S%MS z138=p9+AaB+5?Q;PG;Ky6|i}_IEHAPPcAshS`qv6ha`)Hr$JCG0^E34YJ*FGWnx6aPu zWi5VoZub6!hl`E|totj(?w+Uqr|{vK$4)LOf?atGX0fvcEO=@yfI*{L;u=wsl30>z zm0Xkxq!^4042^UREOm{{LktY8Obx9JOtlS+tqcrmx2uSvXvob^$xN%nt%2v&oRvTg wk{}y`^V3So6N^$A98>a>QWZRN6Vp?JQWH}u3s0un02MKKy85}Sb4q9e0H}N+v;Y7A literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/SX-32.png b/deepsoftlog/experiments/countries/data/raw/flags/SX-32.png new file mode 100644 index 0000000000000000000000000000000000000000..a1e725dd52642151edf9e2fa05ed93d6eb7028eb GIT binary patch literal 1252 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 literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/TC-32.png b/deepsoftlog/experiments/countries/data/raw/flags/TC-32.png new file mode 100644 index 0000000000000000000000000000000000000000..f185c182f926122e56f4b472f2f6b17437f3c89c GIT binary patch literal 1277 zcmVP=`=lAvMu%8+1{Z=8#%ATnR1 znDdrvb93s*on6ju$DR9mp6B0-b99Q`jQqX&^W(?=`}tj^_v>$x_%#NL#+-I)-EUK(b4wcloZ@#`m1?uLrsw%*%wSN83!!=HNcAcz#d#`c)=n#IN zheT3yw`TN3YCkdBFPO8v33+NoJuj?#j8Hhi%*sNkjSq?V^Z3mylChuq*|xTVb&pq4 zwQ`wscuUn6dyc9D`+ArX@Dh*Ty*Pk;{#9ef^?1#yDLxvCG}9|eVBR9akr>e}AERbe z;(O&ajI*bhwxo{Kw3!?^(aEo;JHU0=yXQEa7vdPE!m$B?ilAVstiTN{$A!?)osj05 zfi`emY*&-=`MDJ8$M9L0fdKLS2auX-Ok7f~rl+S1XJmvqhGJ1s0r8YWQ!EV#mIenv zYeGXAz+e(V05|88+W}OtTtvW`h~i{ytc44ZbP5qcYN{cX0@K93K7kXBVU`AwR1zE~ zTSCcxs1)F6j3O^PKdNPFAdO=SN)(0xqZ7i$cdjC&5hb{84q(5(hGg1i-txJuTsEJ) z;Shsu=W!o+5GP}!lS%w2Q%d-{P4+EkFq;H@cT&C<)1 zMS7svV0g5HNN5P7ZXIS_0d{)=Q<*mbRNI+Lx?$lgmKQoi8o%SUP7$*k#pWhBht4(ae~txi;#h zZJ(DV)!W$GR*e#i_ZD|?s`p)%u8mV!lBRD|&^ZY6JmrvbDH)ugB;X?)bwNY4JIUpn z6KeyCiKtC!undm@M;kl9us|%ZH5y2xfH;Rw7BlO<=h$U66Et9hUPa6CJYa;Bw$OUA z1maa2Gy-W2`j#FUCRn++j4;__Km`1LLEDf>>)ZSV`I<;nv3vVW7A$T<5YC;hXXEDI zDVpLk9+S!AkX_0R|LuhRjg=I-j6@8!Zk~>I;e+iVN(wb25xFDwo&boD6&$y7Z;Rmw z=s!_1|8H@~3Js47!D0_uLwM}3bG#=2H!M8*&&5^u65!w1A2w~h^HL{5Q~&?~C3Hnt zbYx+4WjbSWWnpw>05UK!GA%GUEiyM$FfckbF*-0cD=;%UFfe_$BozPv03~!qSaf7z zbY(hiZ)9m^c>ppnF)}SMIW00bR4_0)H8DCcH7hVPIxsK{>YS+n000?uMObuGZ)S9N nVRB^vL1b@YWgtmyVP|DhWnpA_ami&o00000NkvXXu0mjfhYLcl literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/TD-32.png b/deepsoftlog/experiments/countries/data/raw/flags/TD-32.png new file mode 100644 index 0000000000000000000000000000000000000000..d4a1449d2e104a7e494440118203a7309b6f3a22 GIT binary patch literal 465 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7E^spk8OZTI14-?i-9!ACJzR;li7Aa zMv$kAV~EE2WC3%EWc$ifMrc&`f`gWq*r%9|2jaC9V-ADTyVi zR>?)FK#IZ0z|ct7z*5)9JjB4j%GA)xz*O77*vi15cDsrwiiX_$l+3hB+!}aZ%~=W5 vAPKS|I6tkVJh3R1!7(L2DOJHUH!(dmC^a#qvhZXo$ma~6u6{1-oD!M1@Ck8cG^zrMFesIM`~KrU z7~JXZJI}xX6o;elV5vJjeIUh#Rjj7f3}VG#jrl-Qz@kRfq6WxdH3n(nGp+Ur?>NK2 zaJ9NIAY&4PXbG=rHAt~i8BiQ<6i@-s7PuOSESextG0;-DQQ{Ug4C>`x5uIPZft-4~ zr~fp_5S}YFO#$hX7{p3=z!m}R0wP|eG6sf155JZlKYrft?!LglaG8POMrCb4#$e}0P9zT5e?BU~=XO^u$+%n-<$K<1PRyap? zF({S+eI#O8%cNYwz>vwnl*Pc1!yu5yZ&nRNK&uU08w}kV^_}b4cncU9@);QN7;Nhq zJX#q%S{Upa81*U`O{ztVfx({KF=_qrv$qZ&yRzrd#f>{pOX`&~NECv?N~Z#dm~<;e z&1--T6Su74)vx5xF6Y!P=h3fZH>qaOsxbF$ZSGs+5!qc(Gylb_cb9KGO30g@UOGFw zavsomOh#2e1X8J5<`mX7XX)PXgr0=-zN^>n9zJxIoh5yxy?Eev+g zvC}thKX`fV)}v!*Za#bUF)pQ-fgu~H02r_g(j{>@Q#Wouxq9P~8@C@XTDfoL!W|3@ z1wdPX3b=s^WJ)7bCp!hS9XfWoqJDm4##B+`YDRF9045J$AWUDlv$=OQ14FKZf7^;p z#|=E18MG^adO;2_spe8BW?(8?>Kw6?Ia z+^w;57h|J!7Zbm~e!i)xe7ybth64*8Ot`S&L&ph?Iu+K7h8qh%a&~&2)LfbQQgUYG zP0O8?KbcrLSX*6>sxD1^Dmpdvs_E9!ue`m!XLZ*$<#MpTm7N=V*LH91Utu-BSvIM! zw!Ab>J2y+$#9d-tf*#MA+4~b7E;{NxO)q+1($W)JfjgK~Eh6@&z1{Uy+AQzZp48Ph z%=~n?7HxZfV`ujETl4n*{?;vjV41_q2MZ6o_sLn;J$jEs|v%W{f%2M3Ka4K!&0@xHKHUX zu_VKd7c7#LWY8d@2cY8x0^85q=VR}n?gkei>9nO2Eg1JA2D zD}fp$K{f>ErbP0l+XkK8+`yf literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/TG-32.png b/deepsoftlog/experiments/countries/data/raw/flags/TG-32.png new file mode 100644 index 0000000000000000000000000000000000000000..7bf6473388a409c43abaa902cbbad93c3c3c85f4 GIT binary patch literal 1304 zcmbu7eNYr-7{H&sq>}&K;%YJnnUjVI8UInD{5}z4w6d_?Iz|j zY&a%GIg2T{a||8PhQt`qvHT#Sy{3=31TnF&BD_}?{G-3x`Mvw@ zKJWW{Kf5gEA{D!k1pt-FXecJThOA_UChwJ3_P78PO_sH#g;bCTK)n~B1tKEgIlv+4 z`v~A&fL3VwASM}ri7*)70|!kghKX|2^qmKT zpeF1E>C|dPy*`>47cm16VGB^P^f4|D^Ybwy14AKfZpPePT$DOdNnQD3RzZmCq9Qzd z7N@50)-61I7=c5#0xtj#{#&b*6x_KJ@7%$$F-%QGhQu6?ZouK09!WJ!O2UQ)EGt8w z4+SAA<;C5!!|Bt|cVectI2R=5QJ8!mDkJpw^oV1*O`da)#$wJ~4q;@!Z>u zexIVCT`R=TS(R*WO!V*C)3n~muU&06t!q$hIG(-b;e)Pg) zZ-Nzpdaag8OMC3`N7K2qo+DjHcPMOUs=R7tqi>)1WA9%(z7jjG1-?J|s@76kwXx#q z`e(nLbLofgej2_!vO>7}e%NyG=u+GMb@U<4ORFOnHw{+~wB>9&H|o9JzOuyCzx0zt zL&*1LlRCrJ`|{-O)(@>cHcr|5n(L1|{-CvsEBj3NxnuCTlhv2|%O9DSvT!{6T6Vqm z(#Nim-}1LjjIXG*tLhPTWc_j{k$u-yXPT|F{7xtx5K(+6G{`E;^Q!&ckr{_VMc zD-|LOJ@w-e>+wM{I9LPc%1t3txmE*mM$|ZU6+@hm0POQ>2osmx|}7tC-gd9 z-Kj+n+@rAB?buY|{ci>SdRr$^SRi>QaaVY1g{@8~aJXM|YD}AjN@uZCaCoA+G`81 zckN1H&{Ak3~Pe|NP(81yqSZ5G^o`K)nzIGy#slhCvCSnQ#O&9FBmt zz!A_oI0D)WM?eR_5zr-Y1acA_0o_J~7y5el7z2IlR1)MD45X33zjuO+q~awjne~81 zFeZ7syRiPqe|a3p;VkfoEC$jZVC;4>+YZQ>`j|(3l2C?LzooSO}Foob0|L`h0wNvc(HQ7VvP zFfuSS(lxNuH8Kw|Ft9Q;v@$T&HZZm_FsR+GB8s9RH$NpatrE8eo>y~L0yRj2YzWRz qD=AMbN@Z|N$xljE@XSq2PYp^tJYDHM1Vd@s)>Q3%biK#_C81C-OMu_;+f>{KuAdEq= z$!ZuPW*G<}8I`G%JE>7de*}?Iz+BfiW?_MKOpGjZA~HP{0f;2XdPfMI|RZPh0T zB#99F5nu^G26zRqqP3Apz-yvnO!y4OFEN%d9>DlE#-m#JcC{tAX9}Pmzz5I<&;amQ z%Y&@Q8fIi=R#v8E<%O)g*YH|a-pR_mtdNq7M5JLI5<`&~fwbJ555ro|b@((aB^>$k;cN9|7ZU+nfW`98Cbvak~qsVTj;Sk9|U;AZoR zPMVL}%GqN_Dhf(B?7GA?Jru6=3tgjv=Y|l|s;_MyXc784grR1kx9x!tk?%=2Oil00 zG3Aat8Xh{IbN1Ym=BszUFUKgqmZHK8vHD2!z2vyav9YbmH+!6p`MHg;F+B!bn77l{ zdfn%1@A7$4o_kwR`E>43bQO|#&ACFZlh|&k6OE16Ot??!nB180?{HS;nJ+bk|4yuy-&Isu}3H_umcvclWu!X0&69>ZI&_j(hi+Y%FDkMC-eV2 zJlHw;ef{NoWlo*4=`sRFhKxs~cPql>Ada7+Qdis!aE#X-Y_$`b_7P+6~1qNm_K>iW6ufi8yieT&8u#j z1+jE9Dv15qXrh*q=3ySvn!f+<&!@}#)#hZY6?D`r$~arByfHY;=HgAm_9Qhn``( z%<=188RcKJ*LP=RieYPa;Bn@u+p_H|!}Fh?yWFbk$-*NcP_X)>O43BxIIrCLZ)d-8 z@7;Di<&w^84v~XOpThs>fB*mQ#oxbbS{zEVEm<5?B7}VzG^&GG1XN}#9FTarvsgJe zx?kq@HS>49XK(M@*|*@(p*IThHIK7?*Pd)mZP!Sfq{AX8$f>}hkj=~(;Nqm>!p7jp zV$c?Az2)tfosG+`?|QG1Z@MKfM)-j+la{vOJfWi(c+wP^3_DsReGhE zrLK{Ah=GBXsiBpDskVW!m4QL+b`?<+4Y~O#nQ4`{HSoNevl6I55@bVgep*R+Vo@rC jV@iHfs)A>3VtQ&&YGO)d;mK4RpdtoOS3j3^P6su$s5kmO}$U|^otBJ%5`+V733Ptp`_G0NX!g{lGS z1u6pqCI$v&Ss?}nv5a8xXS)^uU)1=zTIFe`;%#PxVpdjGdwY9JOG^d@ekCc+V{>Hw zU()z@S`Dc3S(f50287Bx${<(q^71AoCLTI;sG_1`*|MdaAbS{RSBd^OruP4$`u~$^ z-`0Sv0BPiwzoQD$0<@yFwe|b=@Bjb*pE7l-wyJcD7srDQivLfl11$n-`LRj$d7yWu$O^`bFwi=iLe7BKiFCP?q=oxmoQ}; zbwCqT~=ES4yZud)5S4F<9u?$gM=qf9zA>b z^zm^%2^N;t7FU;}M^p~ zJ1Zv(2OAf2du#gyORQnd$zgr-MpkC-oYf zj;S?1n|5v6x4v`h-pQG0vsAJE`o*f|GsmRz)RoN3>1XDcN}rur%<}Bq?EMK37ajGU zrWd_0>FKJg5{`S*-tPJ;ZI*XyPwHzkpUeeJ)84MJE_-)tZ~FUvexVXy!bG2 z@$n7b%%U4))9njCUCETW^yd%5DTB;%`$lz8{HT_=MwFx^mZVxG7o`Fz1|tJQBV7Ya zT_f`l0|P5lLn{MQZ3AN~1B2S_DxxSFa`RI%(<*Um;CVG?B~XJT$cEtjw370~qErUQ il>DSr1<%~X^wgl##FWaylc_d9MGT&B#G)1IY>XxZ zcsJYVv~jbBc`5M3ssg3pNH|ulQJcS6Pq59)Zfay`gs(C~oGL@2I%A|PL!260tO{Se zCXfMDpP8)7|Aq@NpT0kk8Sk($`@j4CZ24l%84vr8HappAR_{OBjx;Ta~ zhPbl0)jQWP_%cW)>Vb@kS5=5oO|g(I@>4DIP|b5y@pP4ENKjQyHg+%aWw2tHy?V~7 z9jh5!8Dx?SAXWp-uhJH))sw9^k!@5GkMNRXNYrGAlyE8Vn6`4pmIGUDGaMPBB)Q@> zfR0g!RV&pH$&!$W(~&J>6o~K!DpqHYRgp_Fu*!E643uPxRA7R5DqdA7S}j&tB*988 z$Im)SPQc4m0jQWWPK_~Eg&|5pEJ24G6k?!229k2Is%2WDIYMFyYBFU^!l58%sB_1v zF~_N~#;F5IpfZR`$yn7I4bduj(Go53CJv!Uuu7g-kl&RfRdZ~mqaw5;L$y=AmBL)1 zhJb@ntwviYUy>n1U$jP9A_}f6PE9;UxmsUwVq#QJhYCj|#xzGQ5)c~f!G=TF>R zhN2>()2B?E8XgiBdi~0^tL6z>897;bnYr2TU%Yws?&aIb$3iaHCq7zoGI*KaY`tEV z38H6aSZ05lv-9&a{R2xA9xgiSJxwoqUy`aG>*}!ek-PK$w)M^~(7drH_4T&5)@AQ* z^?DzixA*rqd5ek{9|U8#`sA$Z9z9ukIsM$D00xF1?5UngIy*vufumaD8c~vxSdwa$ zT$Bo=7>o=IjdTqxb&bqJ3=FJH4Xq4JwGE7|3=C?wtB9g#$jwj5OsmALf#=nnl|T)W vARB`7(@M${i&7aJQ}UBi6+Ckj(^G>|6H_V+Po~-c6)||a`njxgN@xNAg3xHC literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/TN-32.png b/deepsoftlog/experiments/countries/data/raw/flags/TN-32.png new file mode 100644 index 0000000000000000000000000000000000000000..f04ddefd555ea0ec62dc4881988e55105022ffb8 GIT binary patch literal 809 zcmZ`#ZAg<*6njXhAE~7?pJ%=-nr%cXsu#DiVQ*{ zL{t)EMIVMC18MmqD9VXwt#k?faDIhfp|1S?BmUUwUg=Lkmviqq_uS_^=REgbX~{Vr zSHdL-f@d`7%8*Y-JNaM?It#zI)DQ%Dsq}n>9?+d2(D|>CB*e#KLjigf2tX_biUK|# zl9C`H0SpE(8iB{dSCn+SVP*!FmSA=k#>c^Khva0Oce!9^2fDk#YK8uOn3{r(4PaSF zNx{q_5zh4VfL06Z>#(o@o13t^iy5R+3_y*Fi(zF20s)wx2c;5PS^%xJHAqW?xH#Z) zp{NL!mx059fdM=KqH1r4XcS}6%m{;cP%t?OJ|AX?L@;b?3-x1fQ@cUtU8Z($oSRk4fDVmu0BXD#S%w{YQ$yci(KOYhku_3(@2_{5M_xo1r+GOZ| zW8GyX)5RYB3MRc7?l4;z~+;o0N}) zMh1h!ycZ3bbIjroi)B$nC|+gHG5o_-d?CXZ#P|ZGfsi~T&&ZPH9Qz`Vd(HWFz@z5q zWvt+$>YAG8l-n=+9Y0qht5UJVPkGH3%%5$xkd1M$wU(NXwpM*(jJLa^|Gv-ruIZ)7 znVHUEdk=o!=o1X|VtR literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/TO-32.png b/deepsoftlog/experiments/countries/data/raw/flags/TO-32.png new file mode 100644 index 0000000000000000000000000000000000000000..532e69b24028a3e47cb8a445febb46f140824da4 GIT binary patch literal 800 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfjTC_=LFrhl9U=LCkyi{;yp5 z|Mcnq5bnQ!Ai=J#|58#Q1{^$p{{QLI|0`DfXJGhWQ}h4vC^uk82q=j{ja0* z-_7lRS{leqAOOk&!HymOJ39XV{tZ{!2=NY=j_BPmo2Sq5qSU|3^pvcXx-1dwKm=R{qb#1aclP?|)`ypkFK% z_df-OuUbivU+|xQf8hY=TOdRLAP*z}bkDi7kLCk)FeZ7syD)UH%6b4foCO|{#XuUw z_F!;3nQaGTZ1!|<4AD5BoRE-`l$My9oc{2^lSj`2ABQ?K^VGchBlT)l)U8)myQ*IO z%3_n?V&P$JZE5ruwH6|ENG7U2}Gz~W19&kLXY0lC$Q@8fcT03_ya~bQW zJ}$p=dRgo8-pS2-6_<5Sf=lG;RFf;US8A^Q{jf{mhJ!qen~ICBelieQA!w8+puxb96%~?DXKA+_=zP@@ z*NBpo#FA92CwWnfUdT}2c{LvDUbW?Cg~ z4Lq;rtORP11lbUrpH@Goa1gXw@bo04g9BkuBe1&*+uP981QH1p7D7k}0bE_d z&W5j#7uvO-{cdvJ4u=x7)nh5dc#>jPh3 z5C}+>H4;qF7fX z$yE{WN{S~OyFPT~`m6c!YphAVe)03y1xICq&*sq9_LkMf+2W$f8Jh?{J{}$w{x`23!sZcDehJ71k= z&V3v`q_IA=>Wv0QYiy{kFEL7FIb%~xUshi&eOr99v>fd5+IRB0Nsw?uIG@laEC_2B z#zje6+5;v!%$2oUF0GY{smOuy)w?r^JEe~KrP&P`)j|1JS#1noG3O< zC^{vKlc+=@sW?_D5=V>Tr6SSg=b^m65~^x+<)w}PPjFl79l!)WsgPAu%3Rdc(Ue?Q eqooCkDvh32(i&Z3?G$|mAxe>)kz`6NZvF*GRddS# literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/TT-32.png b/deepsoftlog/experiments/countries/data/raw/flags/TT-32.png new file mode 100644 index 0000000000000000000000000000000000000000..15d47d06c30a4c904f280f9df1027582b0e95850 GIT binary patch literal 1355 zcmZ{ic`)2p9Ke6O8{!VNtZPpeMcPHQ(~V6~)>T_sBvp%SSR}?3JE((4^96aP5*x z!Ro3OdjCDhWVpj%Fep?i3Vbz8Opx+w#W3xmL%_-kP^kci)2y!}7Y#mB zYRV*%-_>f6mxsLY3OF1BC=_H0g__OHhPE~ujpo2)W)~JdRjEL2?JjiD=|D#Zkv2Av z)N(jrX{mR3*virpl9BQ88=IS;y&aM83WkRNREQJ{3t(WN-M=49OpMRWnAq9rV;GF` zI(l?=aS;p+p(smBU}m-#b>ILz1#R~C|Fp8=6A}VpQ+@qmxg5;SYN=FIDv5+(eSLTZ zL^d}o6pFYrXCP^3Yuhm}09IDCp`nPhvjYSIU@(wgUcRkT<(HO1j83Q5H8uUIP=M4_ z$8sPE3-X4`*QnI5~pD!vRkx1}Te{F0$RO(d1ALAtE^CFTDD?=2;j)AMeIuPG5>5)Ek`v}vRyL+L z=BDSSE)giPak@u7=5lp81%!9)6U^-+JhKf$(_B-HbnqA7`sy6lZ;0{2q=F}Z<9?gM zpnGYN<2_K;Ur=^_S3|%Ti;Jg-ij`iAkmpR|4TQPjWhsWcNMT;V16Cz_yEKk-o6u0>FzTPQq>bW;Ce5Xrxr?0uU zJ-%;W6mBxs+>s~o7PU-uE4iLYatS9eX5J>?LR-(%#oT8kH$h@|&XuWYk?cgPpvm=W zgU>uWIDbddqn@)(`!S{a^s`UDzPB*a8ctNGR4EzDo!Rs0jhy`Q7f+66{(3#9b6*QS z_Vcyj!0~I8!|CF+jk`0+@{lj8PF?37yLF>FN9(745L#Q_Ch)p{E_U;>Th&ePtN2*g zr5nBJ%hLP_g_h7*VsMRUT^$}asl)wY-Rb==IfcUK+clNjsTN65UR*Br&1Y4+J6j=# zVIP>{fDgopLa~UQa8?8b=D~9JILLbEpvT*hEEe0#oz3!cWqGn$tb$$#i~j_qWh9M_jT(q>-3pC^MJdE|{f@@$wVoAmHizmr&i4pDp+uF92pmk3{8kYIzx2i2*yj` zTJuz2_$N3=Zp~^UV5Qb*9{aM3yKPI=p}txk;>n z;Zqs9T!0#QyPm;G5P~XNED~Fb{n0F_o`Px>jDa8k5wu(;I&qT3`SVcUM{7Q$Joq2V zTOd;5#=Z6->llBqL~4!I1|zWlvHpft1{5Pj0+o8PHz1x2fnEA_`VX?)Do<723qrM+x|L3BS*OB zwqLL?U*N~@yp7p&knPO^2Y<4FRKhZKh7w~c;6)66wt{@RhuT!0jYC(`6a_3tgZQ*H zZH)WvbysLOG$ijHp5VEOm~CG)n0&Rwwd)d0+RW*BrqXPC^gXui80DV3`q{AN2CiM% z$AZDP7()3NNCFL@QK*w=a1=>VTqcN)Pe9BTw% z4H$z%31h=W$tkv6zLQUibGUcp66PhFRMjvpA%E+ApK6fek0Tdy*ZjjAtG4j)k-0d+ zkR(tB;yC_hjt(%>y~IE`T^A!ofShNE6?~MeD3w^~&6iod=utd-2aNO(gpNvN!3*eH z_%E7a3mf+@;SV1!1smcLA;J?w-@U?q05YOv5$Y&)U_-vdAwSPxBgrl8V`ROMU8Qyw zW~(GoUYcyDRg@-BR>A#0f6Q7+sB!kndJWK2DoX-5Qy@hL(6#OqXCE#bR+_j zF8tQIK4%5mL^;_=uwvFx)-S)4qmxgvX=D*w-+i19j?ae#+`I2G5CsuRW;*+4;ha5? z5@jlMtZgl`xG=%~iFV#Bw~>;NDG`i~X%kR|3g13dU*jtwU=mXQvz);I001R)MObuX zVRU6WV{&C-bY%cCFflSMFgYzUH&ie%IyEsmFf}VMGdeIZeYYeP0000bbVXQnWMOn= zI&E)cX=Zr@~8FWQhbW?9;ba!EL lWdK2BZ(?O2No`?gWm08fWO;GPWjp`?002ovPDHLkV1hE5tpET3 literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/TW-32.png b/deepsoftlog/experiments/countries/data/raw/flags/TW-32.png new file mode 100644 index 0000000000000000000000000000000000000000..25e29a5aef4e3a8f4accd43b6774cb68d4b25bd9 GIT binary patch literal 824 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfi5z_=LFr1M(RdfFv9-FieFY z4vuMje3SY3CV|PxTwK$D;$jR_7#L>UXYl*a!0?xW3#@%AP$dJyL}%x@2?;Bcl2*C9 z&j)fj*{6XOPi18V8aPEyZ+1(|zHQrX?%H*`r{|EZ?E(gd$x`eAT@OZP*8>kMNM4X>YY1p|NHm<7#XIrvjJ63wz8bp z)phXDq5H>=Kb$!6sJGWb28Kz}oFGGh&IUROh@`oI+zGzk3$ilT=47o62?9E1f(+L* zMUd~N1C;^226osC2KJc@eA5{Cr!w#Z$!QGSGZ`6Xh%roOV3>WMA>c0qH&8JMaRl7w z4Y0@yL5g{=_ zR%W%dKryy3H-Ur%Vd3c$rc9bPaq8sb>l_>dJtJL1ePf-2y`@(($;R5&GCM0L3kMq) zui?_sS-U1Tr}xbpS(&*TvYc)I$ztaD0e0sumG5WxTd literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/TZ-32.png b/deepsoftlog/experiments/countries/data/raw/flags/TZ-32.png new file mode 100644 index 0000000000000000000000000000000000000000..d9614eeb03e14d12f5afc6dc1d939a2b4a452e14 GIT binary patch literal 1005 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3HGD8EPYe6kC$Fy9>jA5L~c#`DCC7XMsm# zF_88EW4Dvpb_@*6Y@RNTAs)xqUODYQIa1>I$M==d-K$h8&BfA<4xb7S7OkjWSbP80 zwC_7K9x8Q&)c$MuY%~9P`8h$B2~Q%!4kS0OU{sd;ahrX1c+$78ihp+pc5ykH3%DM2 zx#PW3%Cu9$>e1cZFZZtbX%?@tKp;SQ!+NH3IgGOzWo0#N?`}B2`B8AmZQhSNS{oVJ z6&g(v&UDP&d~2=47iFIG1?SnnUj6XE?#DLfNDbXqAF(}g6~DK&%r8Il_(9|M7gm41 z??2Qz`SN+u;?9H^+2(6p7Qx)CY;)c=&EpP;<9lfmp<^&>>xaY(y7~8cy6?{tbMKNh z4dr_2p(HHKcYE?5r5VfaF_qdMJpB8?ZN`)ZYj}b*H{5m%^q zX~ylW2)@_bjyAFu_XBN_4gP&#TGP4Yf`^YpWM0fy(qH#qU4pYu3zQ^7q0(M{PUt_pZ)4%ucuVVOj;f&tr3th z^+mjN!ltTv)j8juZnC>*XZl+6)oa5))gew%`n?C)oII^h#|Zg4T@r~9J;Ag~B>vuk zHRd(b*6cpNx+3hy&MzNC=IXEdXr=NlsWZ#Z^h+1H3` zin=G(B`E7pE}N!1C*XPTwG1vJp?{wo->#ao>zla3-Xa&jyNXr!Px5T)t9$`lZlz$ts3>MLVi;ef|n^aVf~? zC7zYiU+>&Pt#LNstY}`DrEPiAAXljw$&`sS2LCiRr09sfj6-g(p*OfQlGA MUHx3vIVCg!0LUY^U;qFB literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/UA-32.png b/deepsoftlog/experiments/countries/data/raw/flags/UA-32.png new file mode 100644 index 0000000000000000000000000000000000000000..439731419ab9484ffb3730fa7fcc76e1da6c708d GIT binary patch literal 593 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7E^sa*j+A+8KF{{xwfGyjXt`o}Qo z|ASZE|Nk@m`zHkwhasRW908RfBcK*I0_sIWK%>wQ&}1}(rU1wV+6!?H#7Rizcfp+p zG^Efs?<3IZh9yCM!9W@e{=E}q1mXWM#$Pb&5153o|Nj5`=kI^<_iw_0IyehFB8!2v z2N=7Z%(eqEDm`5sLp07O8ysP?;IZ5(u|v|aA<;m?;1F9yPsPs}KNPuGdVCEU7j#ZA z*v#S5xN_!BRyKjH0>bGN8#E?tnX>5+!=*5zO>2q-SU+9kx+dXpG0JnMFY6+Qt8Qn- zm{;7+%Gi|cD3THV`hj`l0;X6et}hq*)nSk1r?_bMRbbmWqSKu4&SxJHzuB$lLF zB^RXvDF!10LnB=SOI;)L5Ca1%Q$s5QQ*8rdD+7bt?JA-u8glbfGSez?Yv6e`XC+XB vB*=!~{Irtt#G+IN$CUh}R0Yr6#Prml)Wnp^!jq{sKt&9mu6{1-oD!M03_t{A{QJ)V5r??v zUk}UwR)&AQRzJ6u{n%Faugma%JHx+j7Dx#EXXpIGqxApYvm<-3Gxeu#U6O>_45U54 z*zIJt9Z&&>r;B5V#`)w82iYoeDt=1*kaTP~C?+kiK~yA3q)lVPVK$dHE=Ok^QRI5F z@W8=)7f;?idQbGs#0}G@Bu#76C}?IV=l9pomyfsq&miD`%r~shRc?`j08>+wv(w>2 z%1VnDIoh;3xT=Pwb~H(Fbo6$1`+N9!`FXN_3`q*PdgF>B*QEmrw#vrZ*6QZ^`xgit zx$1HGO49W<4UMLTN0Tn?+4QOF)T%52|K%Rx{m$~LGFdsI&VACw-tn8OOrQpSUgThNsG=rD>mLCx0%QH?pH_JBt-JYL$FCK1SkT!@+ z$U2tVC&agc!BR#niCK(WckPa~2e}xwt>{y@$5*Qi3>?)G*NBpo#FA92CwWnfUdT}2c{LvDUbW?Cg~4Lq;rtORP11lbUrpH@KB zv;xWSur_D!<`WB+z1hF->CT-%_iJh8Cnfd9#&$(VbpSO2wE)Sm&^Dkg!NDyl$^8sU z`Fjhi?zXjDZ)yU1Gc>e0A)z}ux-%YVOC*w(uy&vppd%e!YOkF<_vhW)ug{+Yy>DSr z0x=)x9-soCMu_tucBLfusaaR9X3#y!#&Cpz6&PrqUbV@|y+GOc_--Hx)B6?^ZKXvZUTd4WY4!ME;wf;WU{ysInURA!{HD2yj-k#MSu9Y5c)n2YOO2&D6 zODgX7bl+$PMZv5Eo2SlR2Sn56uAc%TH%y+j7DUcmJALlPNi$YYTe$UP*Mz$rZ9v7} zpFa8V>?uC<^vU-ZAa4TE5eA?aup_j@08|{LYncg3gC#+J!9W@e{{MBriXJU}{spLj zv%n*=7)X17vD?XPI|c?uc~2L|5RLQ60RbUFVS%B+*DqYTbnW8R%kE4vbAH9}@UXSH z9aCGD_DpPA*fq0lW#2p+W*?t7ed57`7f;?idiCtx!`*{JL`Y0f zR9IYKWN2(~ba+3@5!F|!k&;qUvu8y|-M(dQwR=}})$d;u8>W=(=aD|#(m7epf2LLL zub!Ek)6UPd&bJeqFm<;6`Ewf*9xgiSJxwoqU((Z6SF^9JI~=m1?(i|++1qpOZmT_h zE_V0#H%GT5-T(KOolnl9?)FK#IZ0z|ct7z*5)9JjB4j%GA)x zz*O77*vi15cDsrwiiX_$l+3hB+!}aZ%~=W5APKS|I6tkVJh3R1!7(L2DOJHUH!(dm YC^a#qvhZZ84Nwt-r>mdKI;Vst02%Tp&j0`b literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/US-32.png b/deepsoftlog/experiments/countries/data/raw/flags/US-32.png new file mode 100644 index 0000000000000000000000000000000000000000..1ace6a1d744ab62213e304862567b0e6b4eb03ca GIT binary patch literal 1171 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfgSD_=LC~XJGjD^5wH#yKXc$ ze|z!bD3JT&#m$Zmpg05pWg!Tt27-VpAqc1vf`Gap2rdFN0fHjJ+kAYgy}YUe0_xq} zD+2=?TwKZn0~?(j%YuWN9PEnyqPkZzD4yYBIL5#Vv{6s5Ffp+=CZ;PYsxvmWJ0hY3 zNQQ^E$Hn!8hPI`pPGn%nxPJP=pLg%R0&Rc!GCaI3F0MN&sspGcBBDJyx+^TK4M>KB zv;xWSur_D!<`WB+z1hF->CT-%_iJh8Cnfd9#&$(VbpSO2wE)Sm&^Dkg!NDyl$^8sU z`Fjhi?zXjDZ)yU1Gc>e0A)z}ux-%YVOC*w(uy&vppd%e!YOkF<_vhW)ug{+Yy>DSr z0x=)x9-soCMu_tucBLfusaaR9X3#y!#&Cpz6&PrqUbV@|y+GOc_--Hx)B6?^ZKXvZUTd4WY4!ME;wf;WU{ysInURA!{HD2yj-k#MSu9Y5c)n2YOO2&D6 zODgX7bl+$PMZv5Eo2SlR2Sn56uAc%TH%y+j7DUcmJALlPNi$YYTe$UP*Mz$rZ9v7} zpFa8V>?uC<^vU-ZAa4TE5eA?aup_j@08|{LYncg3gC#+J!9W@e{{MBriXJU}{spLj zv%n*=7)X17vD?XPI|c?uc~2L|5RLQ60RbUFVS%B+*DqYTbnW8R%kE4vbAH9}@UXSH z9aCGD_DpPA*fq0lW#2p+W*?t7ed57`7f;?idiCtx!`*{JL`Y0f zR9IYKWN2(~ba+3@5!F|!k&;qUvu8y|-M(dQwR=}})$d;u8>W=(=aD|#(m7epf2LLL zub!Ek)6UPd&bJeqFm<;6`Ewf*9xgiSJxwoqU((Z6SF^9JI~=m1?(i|++1qpOZmT_h zE_V0#H%GT5-T(KOolnl9?)FK#IZ0z|ct7z*5)9JjB4j%GA)x zz*O77*vi15cDsrwiiX_$l+3hB+!}aZ%~=W5APKS|I6tkVJh3R1!7(L2DOJHUH!(dm YC^a#qvhZZ84Nwt-r>mdKI;Vst02%Tp&j0`b literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/UY-32.png b/deepsoftlog/experiments/countries/data/raw/flags/UY-32.png new file mode 100644 index 0000000000000000000000000000000000000000..bdabf1026758e9b1c13caaec637093cff3a1e90e GIT binary patch literal 1248 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFffG%_=LFr|NkE-^61$Y2AgBu z3vc%o|0%@a);X2M;d(|M&CZqt6WNhr}F@G1?phT8)g(p6dg;1da|K%tf~1%$ateBjE@r z1vC)oW;gpOfn`^=foQQAQ0=XaEg)`SSkb$2Z=+d;a6c*N>ln?LGbi z=toGf0G;~l_urqt{z6C)_t#&Dy}(eiElY=;>bpkW0G zqR4wqslZf~RTAVE45Z=U*WW*Xq2SMNM`oaXe;t|sz=IOV0P@iYh$1)%lLe(jkYXT) zu>Ss+_F8xbXcc3Ux4R2N2dk_Hki%Kv5m^kRL2M5Ox0Bg+Kn3caE{-7@=aU~ieEL{i zKtxDPP*k{;xv*2mlTFi2AYsC}Nhi;pJbU_-zJ`ug8)M|oq)Ii`4yL0*s;Q!(rlq{T zy1B9v7p`hwO*d=M5YRQ&S-)b7Y zm7QPKu8Hx{qkfeFRVNV@Szo(0#-O17rG?9#MN(2yAC)pQ_})4)YodArH!$o}OI#yL zQW8s2t&)pUffR$0fuWJEfu*jId5D35m8qeXfvL8Ev6X>A?RFJW6b-rgDVb@NxHa&+ znzIt9K@wy`aDG}zd16s2gJVj5QmTSyZen_BP- literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/UZ-32.png b/deepsoftlog/experiments/countries/data/raw/flags/UZ-32.png new file mode 100644 index 0000000000000000000000000000000000000000..c7edb9753e583e98a4008ec1eb386486fb4a0fbc GIT binary patch literal 724 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfiH$_=LE6bnN>vaVik~|M!n! z<{9Q$XBeiQ3SM=^X60pu8E3eF+!?1mmR+)0bis4kCHo~84HldSiZIVS160flRvfqH zO3VIx471K~&pN{i6rXn5XT@cQ#TWcmTy|Y{$zKl2RF%rk;>&ofLvTe#y+-GK)TGtSzsxMIBY zveoh{4lAx$F1u{M@~Y*ED;kS0G0Z;41XMZayl2Nght@q6i%&*RJCZs3Skkm3DKm~_ z&ODk7rHuGrY#6vD^dx6RzUjEuM>HCB!-+Cv1>qAH1`=>y{1QaYl@b4c8{r&q7 z$lkH1dnp6MWqYa9#tdhSUwQF|0|S($B*-rqq%v2-trEy*O!9VjNjSQ_MgYj+Ebxdd z2GSm2>~=ES4#=3{>EaloalZAG^EBr`0fq}*xwp4n-I)9N_}>4#DgTO!UiIl4MCR~K zKQ7MUn$#Jh7CymYWl;7OtGx#^jH1_={Vp%Ch|TN2{+yr1`Jso2n7X6VOt17!J8K@U zkI)KVWh&&b_hQag>$`FF1~R?s!9o|(zWhwu8I`|n_uq#VR+AqzF|fG?hQBi3q4=P$ zft_g{M}^{p-iCS>DZ9sdOO`mko&)qFgKCLuL`h0wNvc(HQ7VvPFfuSS(lxNuH8Kw| zFt9Q;v@$T&HZZm_FsR+GB8s9RH$NpatrE8eo>y~L0yRj2YzWRzD=AMbN@Z|N$xljE e@XSq2PYp^-JAVDhJo~c zfAi+mx#J5i9B+Y%`~W)e@Be2HF3vu=ZUw~rmoJw-KEC1U;lm&g{`>#=*|WEI?;u(I z|3B1Hkk^pG`SUN|fP%gx$S;_I;pZO&_~pn9^zUCV3D@!05hwyhQ2H;3`{(bUKmQ%; zMdW~HF(!GtyD)UH%6b4foCO|{#XuUw_F!;3nQaGTT<~;p4AD5BoRE~3n3|gW{K1n) z&mKN}TKphgAi;%=r>W1Wug|aVoF3mgKE6Xre2aLJR&X7WRaH@4x+FE_=@U_rsZ(S_ zE{JZh@@n!eDE|K8OHgQW!10v_4&FZQ$lNVzz`C!F?;qo#S?{7OL|E7?S=w8&Ubnn_ z6d)k?P(V_2t-8?SerLy=m>Q>~NsSAe1^HM{YVxhje0fZbZ`lr+nG;`5n5vu8c3IqV zXXQ`U)@NdT({>zQxMIf>&Pt#LNstY}`DrEPiAAXljw$&`sS2LCiRr09sfj6-g(p*OfQlGAUHx3v IIVCg!00pKKn*aa+ literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/VC-32.png b/deepsoftlog/experiments/countries/data/raw/flags/VC-32.png new file mode 100644 index 0000000000000000000000000000000000000000..42734fe381464164d3df3a45b9de57b43ae8aa91 GIT binary patch literal 1029 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfcI&_=LDJ%u4`@h!!8cw?Fs) zRfgXekZE2@lYd?me{fR!&qa~{mxLaj()@B>=I=$( zf0u;6o>#bc0OYm*mn0sX)N@-L{rSA?|0~QH%Og%4wE2I95oi=h4cPntE{RXs(95UXtio7X(zZd6&z{LzX}_Ny{U@U6A~LNf4+8 zWYJ}@8^?@87DsR2>#${yQ{Ia3y?Y&j;y}j(J@WH{Sc2S6DH{|C5Z$q3 z*UsvSs>XY zncr-?WVLk#Gfb<`-KqR6t`pOuy+U>AlGK!^PecpYzCKd*o~|3eu}E~=i6)orizaRA zS|#OH!pu+>5S_4}<>PLk-&IRoBT7;dOH!?pi&B9UgOP!uk*T%OPD?SI?q=BhA1KSf|DS>J|9@7X?C0OMU%op784xa*0c3+s_y=S# zZ=GWR5d@hD65(4AJ)v*H%*E#z{{Q3t_YY_e3If^-7Gw*m>iPGNABcd?`1cp&l8a~U z;pPJwU7edJPukSoy%~srj)b@q=u`*-IT#r+fZPv3KwrQS&^vGh^cNg~JP1es8E!vk zSh>^W&O4y{Ss-q>d>_bWym3b*qG-aNW2*oEvH$)h1aUBo6#VxOh(KO|qu)PO&!4vb z@m2Z%e1At4t`jL-1!oMLA? zWnyy1*Y|uw!*!sPygV!n8BWWvoEBg>?O=H>EbyY1!WkxpQwlt%fryRaw2I{E5dRC# zHs=Jv%J}$!)}7BSzvB^b706)YhT6``31nPw@Vrt`a~CKMR(25>5nbTuXk*ye$+oGR z3CaaU5aVW`2v8iN1{zJ=4F6eSQO3gXp9jQ7jeBHce<=w(Aji3Lpa*ON6Z7R9>NmM(0ZQSOvyT5p)&3EOL zls+zK*SNvLG<$o_-EFnU&&BTk{^suX{|A=&%FVXfYq3|6>sjN0gU;>!GPY%Zj+_i$ zetwQ^x!ln%ZiRx6m!4{euaDhd_xRb`+vV@#c04FPc)kC${GtbP9C!AAfADax`}cRY z`@TPUxi|g$JJvhgJdgO=G%ENQ_2ZmgOxJfvIq~^|!MuWwrtljMM^>NExR;@#eSvY4 zXp0B~!ztz$MoOpSRszFYwZt`|BqgyV)hf9t6-Y4{85kPr8d&NYnTHq{SeY7H8JKDt z7+V<_)NWT1MbVI(pOTqYiCY8Dt2rPWBtbR==ckpFCl;kLIHu$$r7C#lCZ?wbr6#6S U7M@JC0V-nfboFyt=akR{0H&{PF8}}l literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/VG-32.png b/deepsoftlog/experiments/countries/data/raw/flags/VG-32.png new file mode 100644 index 0000000000000000000000000000000000000000..ee99213fcd43c26e5e37ee2c7302871b1f0b41fe GIT binary patch literal 1435 zcmV;M1!Ve(P)~!wg?IWLJ*1KLPA2sCqtqnBrXp|Bccz!NWcIu7!8IP6XHe)B#IFP zx3UNpN-2v#fi84`=`wR??%Z>Z4>QOTUP$mt}%1Gsnuj7UHc3FS!=@;S3 z0Io9Jtyvv<`bYN3Q*wM@Sj?YU$MdgDr7Jl^RYg$LWv&XczBo}(CWbpxteY3(N-95m8p#T??8Psr!p5QS^cz6g12nMs7BGHBLj!{?hHcw4xVC&AM6v%Q~GqWKe zG3G`O?6%$vuP$lek(fnl=PsI#ce82lHRdcgyktpCw198E`;C2v+j)28JjPW9dHh%l z^6!g$^{?jiHJ^|p@C_iq*M^`S!p%VA#0F|7)-!4kbm}nj4r3_Sy*5kLcAe$$wmq!g z*}>wy!|XiJ3kKY*!SyskO15upp>g`>tlrT|&*TQ?uUN>3PmiEhYSJb*UjUAPE54>c zfn`fNyF0i%1da@$OrG-QEm$yrqt#sy!YwXg;Lso=YHZTuOW5$`QGUoOFaa+AeuU`6 z3W{vW#t)jFqGNAU3s#mM+9x)iiuJjJ>5Z6uUU?WmP(n(dHL5HvR$Vfm#`uJP}n zPzLbxekXy=YI1`IL~R)CFg&*?z^Z5eqB4>Ov6Su2`}pL?Pnll1ka?riG*llTV`^yn zSy5UJt_H!__wQc7Z!;-C`%qg7rLhnz7W7k7egR+D6or$Z1jjE_via94yn!@FJ2jRA z%G@IW$Pc#sr4lBUcrbtf001R) zMObuXVRU6WV{&C-bY%cCFflSMFgYzUH&ie%IyEsmFf}VMGdeIZeYYeP0000bbVXQn zWMOn=I&E)cX=Zr@~8FWQhbW?9; pba!ELWdK2BZ(?O2No`?gWm08fWO;GPWjp`?002ovPDHLkV1i~zbG85g literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/VI-32.png b/deepsoftlog/experiments/countries/data/raw/flags/VI-32.png new file mode 100644 index 0000000000000000000000000000000000000000..1565d03a93578e95589dc67e6878c9e49d0d8833 GIT binary patch literal 1261 zcmV}B?v zCfj5;x3(rVw#Hg&iVD?~N2*y{mz{4oTEg<0t`S90R^?& zDkk_Ejk+cxKmes?fF58TP)aGeU1|V&?E-bn#^U)PD}dBW%?dDYReepVFiY<82^@QIDbm}(6pmw4n*W={xe5Q1SE&nNERj2vB6H`r z5{})48`@8xaSvugH(DS`&`coWF?I1<5(_V41x{kL4**cD*ioGBtvq@pQwKo#5k?akoV!P`{(1(_dY?l6W8%$m3Z)sG%rLPH`)JD~h&IBF z#SuIipt^X4!o}x_h0bFYZeW*_g!Jp^&7aWJ^|-%7uxX7y0F*78fT0slZ>MYz5ttoB zN++@11WoH;bbN#h=i{W^A*QeHCfRTbZ=#QCae_UYrwAB1>}r~bIgKOcrbvDM}c;BwjCya=?g0PqnP0)=1MyI_Z}jXN;92nrKQDVdgeV24BpGY zwq49jj^gV3$R?j+`<90|HafT=fWFpdz8cFC&~*mVQI4G&X0j-} zvg;s|*+*&8didesUP7ksSD5GGN;X|{_?1r1O61>mh+1<)Rk zGV2Osw!@w4Qv{3{ADw-h@nVRL{qqDmU#2-|v7x1z_S8B$QcZNGOoGW)68DVqN8(A| z$rt!BJH=wzCTtjMRo^mz2%r?bks#YlKW{s>^uc=g=BJ~~RZNmm4brD6+X6~awKdB6 z1ZMOC;ba$i+vBAWytcKAXe2_xD&tnGwNkAQphUz0jAGeB5aOmu$tv;Y;n(?W^aw+{ z_OZL;IKj?gvVWEcXDbxs25pbrPcZ)}74G0z@nK$g;6WOrey$hFWid2OMM9xm)$_Uy zP5aMIc(bR*%rJ4&L=Yn32!qcaVC2;^w69xFuy-8YNTEtklaGFmW4?hs{WVi9A8`Dt z$zzQRG)5zMwZ@b%O(LO?f5^1@ZTn`jmV27tYTH^ew6$a?ZoZGRzn`PGHAN!P&&K3Q ziVNUIcW^qJ<1N|ErH-DO@A6uT|7jxP$SUS}o_L-sA|j6COXja<<;rjG%C*bii-^dt zmnY=IGe1kow*Tc`dtMWfq=+CQt1{g@19c&9iOBQMA!_NZ$Z7*>$t4GLv&J-Zxpm^K zM!EdE(3X@+u~b2;gyxT9f9<;V52-NWv72w^05UK! zGA%GUEiyM$FfckbF*-0cD=;%UFfe_$BozPv03~!qSaf7zbY(hiZ)9m^c>ppnF)}SM zIW00bR4_0)H8DCcH7hVPIxsK{>YS+n000?uMObuGZ)S9NVRB^vL1b@YWgtmyVP|Dh XWnpA_ami&o00000NkvXXu0mjfPS-rU literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/VN-32.png b/deepsoftlog/experiments/countries/data/raw/flags/VN-32.png new file mode 100644 index 0000000000000000000000000000000000000000..ebffd075395c5f5e11a9159cb9bffad6a502d1cb GIT binary patch literal 821 zcmZ`#T}YE*6h3omw#_tc>eOWPLtDE1w469avbNfoE>R(csLk!$C}-B3$}SSoq#{k5 zNFsI}>#$T&gUuF(KsuWdDT}kPrhH3n&3h2Rz6E>ZCLkun#cE z0%GK>ssmgGdqBv~qv4)KG49{}G1z6aa}M8H*+5;??_scjD+ ziO;esHSA&@FppJ}0lNTy?v#E3-T@?%X6bopfIcQp`h-?M72~r2=Kx0lhXEsilu|Rj zO#`?H7yxVmTmt0SC!7E*0nA`12F%@AAqh~)Kmjd9+mQ%aDHL1IuF~hm`m1c!0Nda8 zOZwj2)e^J!hPkepyqTSI3k{_dtXqs_HJTNty-U)n-)B=xV#~ctIf~~!>e-H`9rrWF zqq6juOZDv|vgqh;@wQ1c#>7MfZK6H-QNL>-=pJ}DDD`m%go%Z0O<1daHX0rqYk=u5 zvQtyyWQ%`mGhWf#Qz4cwb0N+%Axwr}y_}i|x7nK`>*lg!dQa-b!nOqcgGBI}IL=UzXW$C5xswKtyY>2r@~?r$Cf8MW;Qs@PuOnkLp!#z|b(7oQ k=J4@Q=4z_v)s{wwhp*xtuE5O&zJ!{Hg$5JyW3aSRwxjtXRs9T5bV zfLwx%YeL7Mxfz-5tRJOrZpPW3N{VnSap%;epwJ2{x zM-OlXyk*RV!oq=>y}{GLgiz9r;T99?3E7l*Xj)P(72;EvT-BOoqxztgJwxfGPuh zUC`^%(1GSIyZAI3f`d_01FaShA7W+(vGM5Z!H^EG*AX4ToU%`ch(mZ1h9nqHXsXAA z0VRz(1J>Sl^bwz+zW`{j)&-_Dba*_h&oOd zZym6Gty$LIrdr4%=0D-^KekvFwsa6~*z%V2)qG;58#{6#^B~dTSX8(qVdqlXcl&-E z&<_ue3>Xg6CJReh>s3`%EQ+ao+d0|d?*42M+hx3@_>^Yt@sq!jC*+BNe(pTBpQjHe zz=QAo>jx2%)T3`6Pc02o#N|c5@!F}#=U8WymBNa5*h&>+<=)DDE}P@saK64SY36kC z`_!QwQi&=xvEb#bl+?1rY4Q0nnZ7KkA!_LAX||FvQlu^{ctoX}On<)8C^{)*UzOFT z)iGXZ^b{3*^9MgDgGOI$4JtCO)3&yU%G;l5_LR!u-6{IzuAyY<1TXeZ?_#@?X=Unf2E{EvTzc=PfghfiwTfMx zFLWD31_@KWNNs(o$o%kqkZw;lk;ZnNp#I&R~awibJ*Vw3g&+JFUepVfEOs$lwRpPWf6)_MB_6TVu|QBZy2JZl30XPHlj)lOPhdT0(UJtd^@aGHbajzDPX&oG fN1+Og%93ZO;#6{_CU-$~fCM2bLKfa1mRkM~tx3^g literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/WF-32.png b/deepsoftlog/experiments/countries/data/raw/flags/WF-32.png new file mode 100644 index 0000000000000000000000000000000000000000..289b805efc6766828931062db509ce61b934eb20 GIT binary patch literal 332 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!VDx^^%AmxltF+`i0gkKgMk4^LJ$K(8Y5$x zm{OSPyYY^|L@vL>2>S4={E+nQaGT$a=ashDcma=HTUBJ!5P3)s@x%@4b|?;Nmjs z$zfzzkXEztY@e_`P@!sxYeY#(Vo9o1a#1RfVlXl=G}1M&)HN~>F)*+)HMBA?)iyA; zGBBv!t|E$}AvZrIGp!Q02A)@QRsuChf@}!RPb(=;EJ|f?Ovz75Rq)JBOiv9;O-!jQ TJeg_(RK(!v>gTe~DWM4fosMHz literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/WS-32.png b/deepsoftlog/experiments/countries/data/raw/flags/WS-32.png new file mode 100644 index 0000000000000000000000000000000000000000..732973b927f6e6c63f36c3595104327d0af8225a GIT binary patch literal 869 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfeWo@Ck8cU`T@?M#eM=iA)BD zgyiJjw6uO8Lq;Zxg(V#*%L7uA?!l1!gF*a11H*p?CYY{NF|lX{2LJirP&-g%R&DKEQ`2Hb#v~S&Br~(pHERyr*pxFcBnh&C3}<5l+Ldfz zP;~6r_2}p}28MVRmSi2B+=&y{0R@3l{47wX0u5wkP2%JPs*jF|>1b?R!oc7pC5zt)wAsFN-WGuM7Yy|)&bRsf<5I0^%T%YK+~XzkttnF92gYgJ9eMl zcijc?PRtcka5w|#W6(Vd~!lULP}CvVrug92TvY7d-(LRxPXWQ8xIeU z(;=lrNsojk1zj@QRP>2!2A9axDWM@(ub7%_-BS9bWTVD~%jO0qMrMYl#@jbMIlAn? zsawacox6AN;>nvwMZ1~I%lZBF^X231|2G_1@L<9PgT{goR>6sZ7Y#QSe&p=*JgK=d z^Q9!y%oSXlHWe3r{>07I-R137eEO8O7VD}2(U9v`u3fu!)!f9)^!k-;TefZGE?J<( zFnKOh>|F;Y>4Xz44fEmzZeF)v$Q;|qz-S;L!oZ+w=vF*2=(`TkbE+k-5hW>!C8<`) zMX5lF!N|bSNY}tp*T_7?z`)AX(8|D6+rZe$z@T=!iYSVP-29Zxv`X9>cwWs}3Dh77 uvLQG>t)x7$D3!r6B|j-u!8128JvAsbF{QHbWU38N5re0zpUXO@geCygc?kgk literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/YE-32.png b/deepsoftlog/experiments/countries/data/raw/flags/YE-32.png new file mode 100644 index 0000000000000000000000000000000000000000..f3d8f7a5a3237cb052c4b0f34d9730880a344130 GIT binary patch literal 634 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7E^sbc{?A+G;{3R>mZ6cNf+l`7e(H zIh+L^k;OpT1B~5HX4?T7&7LlfAsXj<&mQM%3J`I<=q|XiG0B}Z=f+X5_5c3|AG`C? zvm$%XcptHiB==hd8*Kn;>08-nxGO3D+9QW+dm@{>{(JaZG%Q-e|yQz{EjrrH1% OF?hQAxvXw(W=!&S zcVX$zxEToKa29w(76WMyFm^kcZ3kqedAc};Xq-cptHiB==hd8*Kn;>08-nxG qO3D+9QW+dm@{>{(JaZG%Q-e|yQz{EjrrH1%F?hQAxvXjA5L~c#`DCC7XMsm# zF_88EW4Dvpb_@*6lRRA81B~|8l{Q2+I_kZua^Q>(4-OA^>H+JQ^^|fRO zXG;cpPS~=@{@2r0snNOyQ<~2FNe6;di!qQegFC#%cSkow%q&h@biZQpZDB9|NHZ^gWHz})l}yRT21)w_r`Sc%#~~Y z6x=c@jnxt0WOJS4C%EIDQF`@W1|}=Z1%Ic7^~_Xr{GAn5y)DDHJ^qsNLs2j3o`a{O zCuWFrbuHX70mz8Z_*e7#*)*Oenc0~b( z>DivFE9N;zh?-kpIp}RStG-aE$f_W#tGF{xPP@8qF8>>aIYmmcb3cShpL);Uo_y?1 zeOqfsTk2ijISeJDy|Z?jctmp>)p1E$yqsEX$HD#fYS7m5wH3Gj9_x*q+Rg&`=4L#n`XVMY1s4{r_|WK>qxE$9f= zoIBz2(f2F0Rg4Yo_PsVpy*K;B49O`$+y>1|-VUdup3UX*WBOJ5bZeR)BZK*l1q%FZ zkGp1hy||?p5^inrVRipCZNERe=IR_O*u=kSv%2_ch765$sSVd>s2})tJ;};?vC4V9 zFK!}>A3wNgEF$&nO|F<(YQsaexBLOG?z0pI-eBnZd@!>;BIe_%#~W%l8@!D?C%iY# zZuSMvoiRR3gnRsAQ;xqfkJ!0p%9_kYV&xC>GnSR!o5wXpVWXfx|DzjuiFetbELgVNBUP=l=i9}=>z>JPgOAjiRV*oNP<9V~@-$OrvbRCgyYH^AuDx1i z{VqLtf4kD%1*dWg%J#JHI#m60)x+RZpR+Bt=(}B>rr0%2ddid=f)ii=6M6hmhUt)L z>$TStllI!?1-#of`J7*oSz+V3U4ByUD`s*3wc@w^DSW)oUzo#U#vGA#eH^p4sYo6P z`~A2#iicxY={f(oiLw9w*6e&)e2V+phm-BjdoCEYT+e>+`DW+QCsHd@|Ek}!WXy~W z2{7(h_Pb(hlK5@2JswKWmOY$V*H^Zjqg6)bSW86>=e*g>^-RZ~&DFP+nVSR5rm7{b z5hW>!C8<`)MX5lF!N|bSNY}tp*T_7?z`)AX(8|D6+rZe$z@T=!iYSVP-29Zxv`X9> zcwWs}3Dh77vLQG>t)x7$D3!r6B|j-u!8128JvAsbF{QHbWU38N5re0zpUXO@geCx; CGXb&y literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/ZM-32.png b/deepsoftlog/experiments/countries/data/raw/flags/ZM-32.png new file mode 100644 index 0000000000000000000000000000000000000000..c6331a6de9c6f615f416285336e832e503331b29 GIT binary patch literal 830 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfcX*_=LDx%`gIrFw8S&m~ZX? zWY0EvSSJ2IiQ!*5A{1XN=@)40A}ZBd03P?^~bqnjBF2a9-sY?GPBS^YY) zvrU|47+KCVW|(KjI?DuT2oN316?;}L4m1sj9)vRdPh|ia3q<#$82@K70?h}a2ayc_ zGZ}yu0TIv&2m+cZIm?7)jw#!0Q|VbIK(_KM6QGp&Ok=6pCWUS4TZ#oc+f+LHG#56@ zM@`agYES}d0V3V$Ml+ifPvtP*%4B#^&Uhu0F|AhzZYEGW?`%`+X-1hn+G}(9RuqY- zgN+3$Fq~=3KF5R+=4@ zq!+YZQB z?CIhdqH#X?f-~DMwl=q8YRl4M?mV;M+0&zNpg|`;F*7wcIXnIRf#dHr4ybgjbU1(V z=FzKX?;Z~JxZ&LrDH7bcy?_1udWVF74Kpe_Sh`h~HC@>7q2t7g7c(L>Us_0pMf$LQ zhErLK{A zh=GBXsiBpDskVW!m4QL+b`?<+4Y~O#nQ4`{HSoNevl6I55@bVgep*R+Vo@rCV@iHf fs)A>3VtQ&&YGO)d;mK4RpdtoOS3j3^P6ZB3f4ag6lEWVAp~vjyn>o6+3tS#-n+Z^?!EWB zlNsrof&-QW06?%PHCaq_Bv~OG7LlL2zRv}qP)3?0rPJO4rNH}XDaJTQr$7kJJewxA zZy>}B_7L6E@w3N0>Mp0f(^Kv>fG}#ldAfuzTz& z!lv_84*>A|#h41k!~n`C>+0{CVZ;P3%>i6>(c@_EXtK1ej&%VrOW$I`fdE$+`^=%v zy5OE)xm^kH!rJP7{5U&jKcSS%<<`-VBl+k`Db!vpp7G$J;bEy<9ug8#eGD#_tTd{? zYOc3kYiJJ(aB+a)`9JEv_4l8n<9#;<95)(H8y=Dx7Vr>oeZ}|&8XR(4^wP=i0GCI4 z$~beq5Gs%tcUdhx=l$?4Htvt`@i0pTZ8%jz6ZUwGrUi5CF@r8Bfp?7W0?m2Fb2%*1 z!<+9IWn0dY>Lb3w&MEkt(-?d*Ac|ELo$8{Tot=3qIrSkhiAyKCt z+*2f!iQ|?@nJwJZ&o+14o!2|N95-A1f^-^T;f()@6ir)n(uMvo&iKjFvd<+?wr%Tk z%1lDZmg<_O%GxUP1yk^)sJjDgYbOPkhOad*p4Vz(Z8e_6SeHA;vb##xuo1F zgZZCB{-(*Iv;KjLV)p9d>l7nrI#=y(l10~yv0+y{{Y^yP)f&=wv^r&nT9Ktz3giV! zq9BeR8yCY*iiukz;qwIvu>yX=3VytR&(~i4VBx<4@>Gib*@gcf5cI@QMFJN4GGwZ< n)km`ml(1f*k|`rad0G3EVr7=1FyEp4m^gtbB|W)DDAm0L&5-w* literal 0 HcmV?d00001 From 079a0bb5b23abf138b7aec8281f5368909307546 Mon Sep 17 00:00:00 2001 From: Rik Adriaensen Date: Mon, 23 Dec 2024 12:14:26 +0100 Subject: [PATCH 03/15] add visualisation --- deepsoftlog/data/__init__.py | 20 +- deepsoftlog/embeddings/embedding_store.py | 5 +- deepsoftlog/embeddings/initialize_vector.py | 3 +- deepsoftlog/embeddings/nn_models.py | 88 +- deepsoftlog/experiments/countries/config.yaml | 4 +- .../experiments/countries/countries.py | 12 + .../countries/data/raw/flags/AD-32.png | Bin 1143 -> 0 bytes .../countries/data/raw/flags/AE-32.png | Bin 542 -> 0 bytes .../countries/data/raw/flags/AF-32.png | Bin 993 -> 0 bytes .../countries/data/raw/flags/AG-32.png | Bin 1092 -> 0 bytes .../countries/data/raw/flags/AI-32.png | Bin 1205 -> 0 bytes .../countries/data/raw/flags/AL-32.png | Bin 1196 -> 0 bytes .../countries/data/raw/flags/AM-32.png | Bin 451 -> 0 bytes .../countries/data/raw/flags/AO-32.png | Bin 1145 -> 0 bytes .../countries/data/raw/flags/AQ-32.png | Bin 1369 -> 0 bytes .../countries/data/raw/flags/AR-32.png | Bin 809 -> 0 bytes .../countries/data/raw/flags/AS-32.png | Bin 1241 -> 0 bytes .../countries/data/raw/flags/AT-32.png | Bin 558 -> 0 bytes .../countries/data/raw/flags/AU-32.png | Bin 4170 -> 0 bytes .../countries/data/raw/flags/AW-32.png | Bin 887 -> 0 bytes .../countries/data/raw/flags/AX-32.png | Bin 690 -> 0 bytes .../countries/data/raw/flags/AZ-32.png | Bin 832 -> 0 bytes .../countries/data/raw/flags/BA-32.png | Bin 1159 -> 0 bytes .../countries/data/raw/flags/BB-32.png | Bin 701 -> 0 bytes .../countries/data/raw/flags/BD-32.png | Bin 1119 -> 0 bytes .../countries/data/raw/flags/BE-32.png | Bin 317 -> 0 bytes .../countries/data/raw/flags/BF-32.png | Bin 812 -> 0 bytes .../countries/data/raw/flags/BG-32.png | Bin 639 -> 0 bytes .../countries/data/raw/flags/BH-32.png | Bin 923 -> 0 bytes .../countries/data/raw/flags/BI-32.png | Bin 1378 -> 0 bytes .../countries/data/raw/flags/BJ-32.png | Bin 572 -> 0 bytes .../countries/data/raw/flags/BL-32.png | Bin 332 -> 0 bytes .../countries/data/raw/flags/BM-32.png | Bin 1210 -> 0 bytes .../countries/data/raw/flags/BN-32.png | Bin 1356 -> 0 bytes .../countries/data/raw/flags/BO-32.png | Bin 3708 -> 0 bytes .../countries/data/raw/flags/BQ-32.png | Bin 665 -> 0 bytes .../countries/data/raw/flags/BR-32.png | Bin 1155 -> 0 bytes .../countries/data/raw/flags/BS-32.png | Bin 1182 -> 0 bytes .../countries/data/raw/flags/BT-32.png | Bin 1008 -> 0 bytes .../countries/data/raw/flags/BV-32.png | Bin 600 -> 0 bytes .../countries/data/raw/flags/BW-32.png | Bin 567 -> 0 bytes .../countries/data/raw/flags/BY-32.png | Bin 4099 -> 0 bytes .../countries/data/raw/flags/BZ-32.png | Bin 1085 -> 0 bytes .../countries/data/raw/flags/CA-32.png | Bin 1136 -> 0 bytes .../countries/data/raw/flags/CC-32.png | Bin 1009 -> 0 bytes .../countries/data/raw/flags/CD-32.png | Bin 4552 -> 0 bytes .../countries/data/raw/flags/CF-32.png | Bin 1210 -> 0 bytes .../countries/data/raw/flags/CG-32.png | Bin 665 -> 0 bytes .../countries/data/raw/flags/CH-32.png | Bin 404 -> 0 bytes .../countries/data/raw/flags/CI-32.png | Bin 579 -> 0 bytes .../countries/data/raw/flags/CK-32.png | Bin 1616 -> 0 bytes .../countries/data/raw/flags/CL-32.png | Bin 926 -> 0 bytes .../countries/data/raw/flags/CM-32.png | Bin 620 -> 0 bytes .../countries/data/raw/flags/CN-32.png | Bin 672 -> 0 bytes .../countries/data/raw/flags/CO-32.png | Bin 671 -> 0 bytes .../countries/data/raw/flags/CR-32.png | Bin 726 -> 0 bytes .../countries/data/raw/flags/CU-32.png | Bin 1311 -> 0 bytes .../countries/data/raw/flags/CV-32.png | Bin 813 -> 0 bytes .../countries/data/raw/flags/CW-32.png | Bin 1005 -> 0 bytes .../countries/data/raw/flags/CX-32.png | Bin 1357 -> 0 bytes .../countries/data/raw/flags/CY-32.png | Bin 1130 -> 0 bytes .../countries/data/raw/flags/CZ-32.png | Bin 1148 -> 0 bytes .../countries/data/raw/flags/DE-32.png | Bin 742 -> 0 bytes .../countries/data/raw/flags/DJ-32.png | Bin 1343 -> 0 bytes .../countries/data/raw/flags/DK-32.png | Bin 600 -> 0 bytes .../countries/data/raw/flags/DM-32.png | Bin 928 -> 0 bytes .../countries/data/raw/flags/DO-32.png | Bin 766 -> 0 bytes .../countries/data/raw/flags/DZ-32.png | Bin 993 -> 0 bytes .../countries/data/raw/flags/EC-32.png | Bin 1013 -> 0 bytes .../countries/data/raw/flags/EE-32.png | Bin 837 -> 0 bytes .../countries/data/raw/flags/EG-32.png | Bin 1037 -> 0 bytes .../countries/data/raw/flags/EH-32.png | Bin 1288 -> 0 bytes .../countries/data/raw/flags/ER-32.png | Bin 1030 -> 0 bytes .../countries/data/raw/flags/ES-32.png | Bin 1070 -> 0 bytes .../countries/data/raw/flags/ET-32.png | Bin 1194 -> 0 bytes .../countries/data/raw/flags/EU-32.png | Bin 1269 -> 0 bytes .../countries/data/raw/flags/FI-32.png | Bin 580 -> 0 bytes .../countries/data/raw/flags/FJ-32.png | Bin 1303 -> 0 bytes .../countries/data/raw/flags/FK-32.png | Bin 1450 -> 0 bytes .../countries/data/raw/flags/FM-32.png | Bin 1113 -> 0 bytes .../countries/data/raw/flags/FO-32.png | Bin 579 -> 0 bytes .../countries/data/raw/flags/FR-32.png | Bin 332 -> 0 bytes .../countries/data/raw/flags/GA-32.png | Bin 683 -> 0 bytes .../countries/data/raw/flags/GB-32.png | Bin 1677 -> 0 bytes .../countries/data/raw/flags/GD-32.png | Bin 1062 -> 0 bytes .../countries/data/raw/flags/GE-32.png | Bin 817 -> 0 bytes .../countries/data/raw/flags/GF-32.png | Bin 332 -> 0 bytes .../countries/data/raw/flags/GG-32.png | Bin 730 -> 0 bytes .../countries/data/raw/flags/GH-32.png | Bin 1011 -> 0 bytes .../countries/data/raw/flags/GI-32.png | Bin 1302 -> 0 bytes .../countries/data/raw/flags/GL-32.png | Bin 1253 -> 0 bytes .../countries/data/raw/flags/GM-32.png | Bin 783 -> 0 bytes .../countries/data/raw/flags/GN-32.png | Bin 339 -> 0 bytes .../countries/data/raw/flags/GP-32.png | Bin 332 -> 0 bytes .../countries/data/raw/flags/GQ-32.png | Bin 811 -> 0 bytes .../countries/data/raw/flags/GR-32.png | Bin 1273 -> 0 bytes .../countries/data/raw/flags/GS-32.png | Bin 1477 -> 0 bytes .../countries/data/raw/flags/GT-32.png | Bin 954 -> 0 bytes .../countries/data/raw/flags/GU-32.png | Bin 1172 -> 0 bytes .../countries/data/raw/flags/GW-32.png | Bin 975 -> 0 bytes .../countries/data/raw/flags/GY-32.png | Bin 1297 -> 0 bytes .../countries/data/raw/flags/HK-32.png | Bin 1047 -> 0 bytes .../countries/data/raw/flags/HM-32.png | Bin 1249 -> 0 bytes .../countries/data/raw/flags/HN-32.png | Bin 1211 -> 0 bytes .../countries/data/raw/flags/HR-32.png | Bin 1236 -> 0 bytes .../countries/data/raw/flags/HT-32.png | Bin 966 -> 0 bytes .../countries/data/raw/flags/HU-32.png | Bin 435 -> 0 bytes .../countries/data/raw/flags/ID-32.png | Bin 472 -> 0 bytes .../countries/data/raw/flags/IE-32.png | Bin 541 -> 0 bytes .../countries/data/raw/flags/IL-32.png | Bin 1229 -> 0 bytes .../countries/data/raw/flags/IM-32.png | Bin 822 -> 0 bytes .../countries/data/raw/flags/IN-32.png | Bin 1277 -> 0 bytes .../countries/data/raw/flags/IO-32.png | Bin 2037 -> 0 bytes .../countries/data/raw/flags/IQ-32.png | Bin 1271 -> 0 bytes .../countries/data/raw/flags/IR-32.png | Bin 801 -> 0 bytes .../countries/data/raw/flags/IS-32.png | Bin 1021 -> 0 bytes .../countries/data/raw/flags/IT-32.png | Bin 582 -> 0 bytes .../countries/data/raw/flags/JE-32.png | Bin 980 -> 0 bytes .../countries/data/raw/flags/JM-32.png | Bin 1047 -> 0 bytes .../countries/data/raw/flags/JO-32.png | Bin 1185 -> 0 bytes .../countries/data/raw/flags/JP-32.png | Bin 1002 -> 0 bytes .../countries/data/raw/flags/KE-32.png | Bin 845 -> 0 bytes .../countries/data/raw/flags/KG-32.png | Bin 903 -> 0 bytes .../countries/data/raw/flags/KH-32.png | Bin 858 -> 0 bytes .../countries/data/raw/flags/KI-32.png | Bin 1502 -> 0 bytes .../countries/data/raw/flags/KM-32.png | Bin 951 -> 0 bytes .../countries/data/raw/flags/KN-32.png | Bin 1237 -> 0 bytes .../countries/data/raw/flags/KP-32.png | Bin 924 -> 0 bytes .../countries/data/raw/flags/KR-32.png | Bin 1121 -> 0 bytes .../countries/data/raw/flags/KW-32.png | Bin 978 -> 0 bytes .../countries/data/raw/flags/KY-32.png | Bin 1423 -> 0 bytes .../countries/data/raw/flags/KZ-32.png | Bin 972 -> 0 bytes .../countries/data/raw/flags/LA-32.png | Bin 1253 -> 0 bytes .../countries/data/raw/flags/LB-32.png | Bin 1346 -> 0 bytes .../countries/data/raw/flags/LC-32.png | Bin 1021 -> 0 bytes .../countries/data/raw/flags/LI-32.png | Bin 903 -> 0 bytes .../countries/data/raw/flags/LK-32.png | Bin 1033 -> 0 bytes .../countries/data/raw/flags/LR-32.png | Bin 953 -> 0 bytes .../countries/data/raw/flags/LS-32.png | Bin 1276 -> 0 bytes .../countries/data/raw/flags/LT-32.png | Bin 421 -> 0 bytes .../countries/data/raw/flags/LU-32.png | Bin 679 -> 0 bytes .../countries/data/raw/flags/LV-32.png | Bin 408 -> 0 bytes .../countries/data/raw/flags/LY-32.png | Bin 761 -> 0 bytes .../countries/data/raw/flags/MA-32.png | Bin 577 -> 0 bytes .../countries/data/raw/flags/MC-32.png | Bin 472 -> 0 bytes .../countries/data/raw/flags/MD-32.png | Bin 1094 -> 0 bytes .../countries/data/raw/flags/ME-32.png | Bin 1188 -> 0 bytes .../countries/data/raw/flags/MF-32.png | Bin 332 -> 0 bytes .../countries/data/raw/flags/MG-32.png | Bin 648 -> 0 bytes .../countries/data/raw/flags/MH-32.png | Bin 1400 -> 0 bytes .../countries/data/raw/flags/MK-32.png | Bin 1040 -> 0 bytes .../countries/data/raw/flags/ML-32.png | Bin 444 -> 0 bytes .../countries/data/raw/flags/MM-32.png | Bin 930 -> 0 bytes .../countries/data/raw/flags/MN-32.png | Bin 1075 -> 0 bytes .../countries/data/raw/flags/MO-32.png | Bin 1118 -> 0 bytes .../countries/data/raw/flags/MP-32.png | Bin 1113 -> 0 bytes .../countries/data/raw/flags/MQ-32.png | Bin 332 -> 0 bytes .../countries/data/raw/flags/MR-32.png | Bin 1076 -> 0 bytes .../countries/data/raw/flags/MS-32.png | Bin 1356 -> 0 bytes .../countries/data/raw/flags/MT-32.png | Bin 792 -> 0 bytes .../countries/data/raw/flags/MU-32.png | Bin 3393 -> 0 bytes .../countries/data/raw/flags/MV-32.png | Bin 835 -> 0 bytes .../countries/data/raw/flags/MW-32.png | Bin 1114 -> 0 bytes .../countries/data/raw/flags/MX-32.png | Bin 1269 -> 0 bytes .../countries/data/raw/flags/MY-32.png | Bin 1341 -> 0 bytes .../countries/data/raw/flags/MZ-32.png | Bin 1355 -> 0 bytes .../countries/data/raw/flags/NA-32.png | Bin 1185 -> 0 bytes .../countries/data/raw/flags/NC-32.png | Bin 970 -> 0 bytes .../countries/data/raw/flags/NE-32.png | Bin 1047 -> 0 bytes .../countries/data/raw/flags/NF-32.png | Bin 1131 -> 0 bytes .../countries/data/raw/flags/NG-32.png | Bin 280 -> 0 bytes .../countries/data/raw/flags/NI-32.png | Bin 983 -> 0 bytes .../countries/data/raw/flags/NL-32.png | Bin 799 -> 0 bytes .../countries/data/raw/flags/NO-32.png | Bin 600 -> 0 bytes .../countries/data/raw/flags/NP-32.png | Bin 687 -> 0 bytes .../countries/data/raw/flags/NR-32.png | Bin 795 -> 0 bytes .../countries/data/raw/flags/NU-32.png | Bin 1175 -> 0 bytes .../countries/data/raw/flags/NZ-32.png | Bin 1288 -> 0 bytes .../countries/data/raw/flags/OM-32.png | Bin 946 -> 0 bytes .../countries/data/raw/flags/PA-32.png | Bin 1214 -> 0 bytes .../countries/data/raw/flags/PE-32.png | Bin 333 -> 0 bytes .../countries/data/raw/flags/PF-32.png | Bin 1401 -> 0 bytes .../countries/data/raw/flags/PG-32.png | Bin 1342 -> 0 bytes .../countries/data/raw/flags/PH-32.png | Bin 1213 -> 0 bytes .../countries/data/raw/flags/PK-32.png | Bin 1266 -> 0 bytes .../countries/data/raw/flags/PL-32.png | Bin 472 -> 0 bytes .../countries/data/raw/flags/PM-32.png | Bin 332 -> 0 bytes .../countries/data/raw/flags/PN-32.png | Bin 1518 -> 0 bytes .../countries/data/raw/flags/PR-32.png | Bin 970 -> 0 bytes .../countries/data/raw/flags/PS-32.png | Bin 949 -> 0 bytes .../countries/data/raw/flags/PT-32.png | Bin 951 -> 0 bytes .../countries/data/raw/flags/PW-32.png | Bin 1044 -> 0 bytes .../countries/data/raw/flags/PY-32.png | Bin 1113 -> 0 bytes .../countries/data/raw/flags/QA-32.png | Bin 1281 -> 0 bytes .../countries/data/raw/flags/RE-32.png | Bin 332 -> 0 bytes .../countries/data/raw/flags/RO-32.png | Bin 339 -> 0 bytes .../countries/data/raw/flags/RS-32.png | Bin 1439 -> 0 bytes .../countries/data/raw/flags/RU-32.png | Bin 752 -> 0 bytes .../countries/data/raw/flags/RW-32.png | Bin 1088 -> 0 bytes .../countries/data/raw/flags/SA-32.png | Bin 1269 -> 0 bytes .../countries/data/raw/flags/SB-32.png | Bin 1094 -> 0 bytes .../countries/data/raw/flags/SC-32.png | Bin 1190 -> 0 bytes .../countries/data/raw/flags/SD-32.png | Bin 970 -> 0 bytes .../countries/data/raw/flags/SE-32.png | Bin 792 -> 0 bytes .../countries/data/raw/flags/SG-32.png | Bin 894 -> 0 bytes .../countries/data/raw/flags/SH-32.png | Bin 1289 -> 0 bytes .../countries/data/raw/flags/SI-32.png | Bin 855 -> 0 bytes .../countries/data/raw/flags/SJ-32.png | Bin 600 -> 0 bytes .../countries/data/raw/flags/SK-32.png | Bin 1471 -> 0 bytes .../countries/data/raw/flags/SL-32.png | Bin 440 -> 0 bytes .../countries/data/raw/flags/SM-32.png | Bin 1296 -> 0 bytes .../countries/data/raw/flags/SN-32.png | Bin 639 -> 0 bytes .../countries/data/raw/flags/SO-32.png | Bin 842 -> 0 bytes .../countries/data/raw/flags/SR-32.png | Bin 1202 -> 0 bytes .../countries/data/raw/flags/SS-32.png | Bin 541 -> 0 bytes .../countries/data/raw/flags/ST-32.png | Bin 1362 -> 0 bytes .../countries/data/raw/flags/SV-32.png | Bin 1076 -> 0 bytes .../countries/data/raw/flags/SX-32.png | Bin 1252 -> 0 bytes .../countries/data/raw/flags/SY-32.png | Bin 996 -> 0 bytes .../countries/data/raw/flags/SZ-32.png | Bin 1081 -> 0 bytes .../countries/data/raw/flags/TC-32.png | Bin 1277 -> 0 bytes .../countries/data/raw/flags/TD-32.png | Bin 465 -> 0 bytes .../countries/data/raw/flags/TF-32.png | Bin 1284 -> 0 bytes .../countries/data/raw/flags/TG-32.png | Bin 1304 -> 0 bytes .../countries/data/raw/flags/TH-32.png | Bin 699 -> 0 bytes .../countries/data/raw/flags/TJ-32.png | Bin 791 -> 0 bytes .../countries/data/raw/flags/TK-32.png | Bin 1179 -> 0 bytes .../countries/data/raw/flags/TL-32.png | Bin 1153 -> 0 bytes .../countries/data/raw/flags/TM-32.png | Bin 1138 -> 0 bytes .../countries/data/raw/flags/TN-32.png | Bin 809 -> 0 bytes .../countries/data/raw/flags/TO-32.png | Bin 800 -> 0 bytes .../countries/data/raw/flags/TR-32.png | Bin 884 -> 0 bytes .../countries/data/raw/flags/TT-32.png | Bin 1355 -> 0 bytes .../countries/data/raw/flags/TV-32.png | Bin 1483 -> 0 bytes .../countries/data/raw/flags/TW-32.png | Bin 824 -> 0 bytes .../countries/data/raw/flags/TZ-32.png | Bin 1005 -> 0 bytes .../countries/data/raw/flags/UA-32.png | Bin 593 -> 0 bytes .../countries/data/raw/flags/UG-32.png | Bin 1060 -> 0 bytes .../countries/data/raw/flags/UM-32.png | Bin 1171 -> 0 bytes .../countries/data/raw/flags/US-32.png | Bin 1171 -> 0 bytes .../countries/data/raw/flags/UY-32.png | Bin 1248 -> 0 bytes .../countries/data/raw/flags/UZ-32.png | Bin 724 -> 0 bytes .../countries/data/raw/flags/VA-32.png | Bin 882 -> 0 bytes .../countries/data/raw/flags/VC-32.png | Bin 1029 -> 0 bytes .../countries/data/raw/flags/VE-32.png | Bin 1381 -> 0 bytes .../countries/data/raw/flags/VG-32.png | Bin 1435 -> 0 bytes .../countries/data/raw/flags/VI-32.png | Bin 1261 -> 0 bytes .../countries/data/raw/flags/VN-32.png | Bin 821 -> 0 bytes .../countries/data/raw/flags/VU-32.png | Bin 1347 -> 0 bytes .../countries/data/raw/flags/WF-32.png | Bin 332 -> 0 bytes .../countries/data/raw/flags/WS-32.png | Bin 869 -> 0 bytes .../countries/data/raw/flags/YE-32.png | Bin 634 -> 0 bytes .../countries/data/raw/flags/YT-32.png | Bin 557 -> 0 bytes .../countries/data/raw/flags/ZA-32.png | Bin 1145 -> 0 bytes .../countries/data/raw/flags/ZM-32.png | Bin 830 -> 0 bytes .../countries/data/raw/flags/ZW-32.png | Bin 1028 -> 0 bytes .../experiments/countries/visualise.py | 104 ++ .../experiments/mnist_addition/config.yaml | 4 +- .../experiments/wiki_countries/config.yaml | 26 + .../wiki_countries/data/raw/countries_S0.tsv | 463 +++++++ .../wiki_countries/data/raw/countries_S1.tsv | 1111 +++++++++++++++++ .../wiki_countries/data/raw/countries_S2.tsv | 1063 ++++++++++++++++ .../wiki_countries/data/raw/countries_S3.tsv | 979 +++++++++++++++ .../wiki_countries/data/raw/test.tsv | 24 + .../data/raw/tokens_tensor_list.pt | Bin 0 -> 537512 bytes .../wiki_countries/data/raw/train.tsv | 202 +++ .../wiki_countries/data/raw/val.tsv | 24 + .../data/raw/wikicountries_test.tsv | 24 + .../data/raw/wikicountries_train.tsv | 202 +++ .../data/raw/wikicountries_val.tsv | 24 + .../data/templates/countries_S0_templates.pl | 1 + .../data/templates/countries_S1_templates.pl | 1 + .../data/templates/countries_S2_templates.pl | 3 + .../data/templates/countries_S3_templates.pl | 4 + .../experiments/wiki_countries/dataset.py | 121 ++ .../wiki_countries/preprocess_wikidata5m.py | 207 +++ .../wiki_countries/wiki_countries.py | 45 + deepsoftlog/logic/spl_module.py | 5 +- deepsoftlog/training/trainer.py | 10 +- deepsoftlog/training/visualise.py | 30 - run_experiments.py | 5 +- 281 files changed, 4760 insertions(+), 54 deletions(-) delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/AD-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/AE-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/AF-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/AG-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/AI-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/AL-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/AM-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/AO-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/AQ-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/AR-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/AS-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/AT-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/AU-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/AW-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/AX-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/AZ-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/BA-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/BB-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/BD-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/BE-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/BF-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/BG-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/BH-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/BI-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/BJ-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/BL-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/BM-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/BN-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/BO-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/BQ-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/BR-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/BS-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/BT-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/BV-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/BW-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/BY-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/BZ-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/CA-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/CC-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/CD-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/CF-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/CG-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/CH-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/CI-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/CK-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/CL-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/CM-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/CN-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/CO-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/CR-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/CU-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/CV-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/CW-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/CX-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/CY-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/CZ-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/DE-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/DJ-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/DK-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/DM-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/DO-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/DZ-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/EC-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/EE-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/EG-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/EH-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/ER-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/ES-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/ET-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/EU-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/FI-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/FJ-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/FK-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/FM-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/FO-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/FR-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/GA-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/GB-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/GD-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/GE-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/GF-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/GG-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/GH-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/GI-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/GL-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/GM-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/GN-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/GP-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/GQ-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/GR-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/GS-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/GT-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/GU-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/GW-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/GY-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/HK-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/HM-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/HN-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/HR-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/HT-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/HU-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/ID-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/IE-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/IL-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/IM-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/IN-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/IO-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/IQ-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/IR-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/IS-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/IT-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/JE-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/JM-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/JO-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/JP-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/KE-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/KG-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/KH-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/KI-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/KM-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/KN-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/KP-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/KR-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/KW-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/KY-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/KZ-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/LA-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/LB-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/LC-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/LI-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/LK-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/LR-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/LS-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/LT-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/LU-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/LV-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/LY-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/MA-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/MC-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/MD-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/ME-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/MF-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/MG-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/MH-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/MK-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/ML-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/MM-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/MN-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/MO-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/MP-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/MQ-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/MR-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/MS-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/MT-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/MU-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/MV-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/MW-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/MX-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/MY-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/MZ-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/NA-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/NC-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/NE-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/NF-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/NG-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/NI-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/NL-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/NO-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/NP-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/NR-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/NU-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/NZ-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/OM-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/PA-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/PE-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/PF-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/PG-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/PH-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/PK-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/PL-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/PM-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/PN-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/PR-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/PS-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/PT-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/PW-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/PY-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/QA-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/RE-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/RO-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/RS-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/RU-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/RW-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/SA-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/SB-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/SC-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/SD-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/SE-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/SG-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/SH-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/SI-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/SJ-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/SK-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/SL-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/SM-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/SN-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/SO-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/SR-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/SS-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/ST-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/SV-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/SX-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/SY-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/SZ-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/TC-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/TD-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/TF-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/TG-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/TH-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/TJ-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/TK-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/TL-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/TM-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/TN-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/TO-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/TR-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/TT-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/TV-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/TW-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/TZ-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/UA-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/UG-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/UM-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/US-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/UY-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/UZ-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/VA-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/VC-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/VE-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/VG-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/VI-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/VN-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/VU-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/WF-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/WS-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/YE-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/YT-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/ZA-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/ZM-32.png delete mode 100644 deepsoftlog/experiments/countries/data/raw/flags/ZW-32.png create mode 100644 deepsoftlog/experiments/countries/visualise.py create mode 100644 deepsoftlog/experiments/wiki_countries/config.yaml create mode 100644 deepsoftlog/experiments/wiki_countries/data/raw/countries_S0.tsv create mode 100644 deepsoftlog/experiments/wiki_countries/data/raw/countries_S1.tsv create mode 100644 deepsoftlog/experiments/wiki_countries/data/raw/countries_S2.tsv create mode 100644 deepsoftlog/experiments/wiki_countries/data/raw/countries_S3.tsv create mode 100644 deepsoftlog/experiments/wiki_countries/data/raw/test.tsv create mode 100644 deepsoftlog/experiments/wiki_countries/data/raw/tokens_tensor_list.pt create mode 100644 deepsoftlog/experiments/wiki_countries/data/raw/train.tsv create mode 100644 deepsoftlog/experiments/wiki_countries/data/raw/val.tsv create mode 100644 deepsoftlog/experiments/wiki_countries/data/raw/wikicountries_test.tsv create mode 100644 deepsoftlog/experiments/wiki_countries/data/raw/wikicountries_train.tsv create mode 100644 deepsoftlog/experiments/wiki_countries/data/raw/wikicountries_val.tsv create mode 100644 deepsoftlog/experiments/wiki_countries/data/templates/countries_S0_templates.pl create mode 100644 deepsoftlog/experiments/wiki_countries/data/templates/countries_S1_templates.pl create mode 100644 deepsoftlog/experiments/wiki_countries/data/templates/countries_S2_templates.pl create mode 100644 deepsoftlog/experiments/wiki_countries/data/templates/countries_S3_templates.pl create mode 100644 deepsoftlog/experiments/wiki_countries/dataset.py create mode 100644 deepsoftlog/experiments/wiki_countries/preprocess_wikidata5m.py create mode 100644 deepsoftlog/experiments/wiki_countries/wiki_countries.py delete mode 100644 deepsoftlog/training/visualise.py diff --git a/deepsoftlog/data/__init__.py b/deepsoftlog/data/__init__.py index ccd9bed..c342e67 100644 --- a/deepsoftlog/data/__init__.py +++ b/deepsoftlog/data/__init__.py @@ -4,10 +4,26 @@ from ..logic.soft_term import SoftTerm, TensorTerm +def nl2tsv(src_path, dst_path): + with open(src_path, "r") as f_in: + with open(dst_path, "w") as f_out: + for line in f_in: + line = line.strip() + arr = line.replace("(", " ").replace(")", " ").replace(",", " ").replace(".","").split(" ") + arr[0], arr[1] = arr[1], arr[0] + f_out.write("\t".join(arr) + "\n") + def load_tsv_file(filename: str): with open(filename, "r") as f: return [line.strip().split("\t") for line in f.readlines()] +def load_txt_file(filename: str): + with open(filename, "r") as f: + return [line.strip().split("\t") for line in f.readlines()] + +def load_lines(filename: str): + with open(filename, "r") as f: + return [line for line in f.readlines()] def data_to_prolog(rows, name="r", **kwargs): for row in rows: @@ -16,6 +32,8 @@ def data_to_prolog(rows, name="r", **kwargs): args = [SoftTerm(a) for a in args] yield Query(Expr(name, *args), **kwargs) - def to_prolog_image(img): return SoftTerm(Expr("lenet5", TensorTerm(img))) + +def to_prolog_text(text): + return SoftTerm(Expr("roberta", TensorTerm(text))) diff --git a/deepsoftlog/embeddings/embedding_store.py b/deepsoftlog/embeddings/embedding_store.py index f57d162..a95bf0b 100644 --- a/deepsoftlog/embeddings/embedding_store.py +++ b/deepsoftlog/embeddings/embedding_store.py @@ -75,17 +75,16 @@ def to(self, device): self.device = device return super().to(device) - def get_similarity_matrix(self, distance_metric: str): + def get_soft_unification_matrix(self, distance_metric: str): constants = list(self.constant_embeddings.keys()) n = len(constants) matrix = torch.zeros(n, n) for i, c1 in enumerate(constants): for j, c2 in enumerate(constants): e1, e2 = self.constant_embeddings[c1], self.constant_embeddings[c2] - matrix[i, j] = -embedding_similarity(e1, e2, distance_metric) + matrix[i, j] = math.exp(embedding_similarity(e1, e2, distance_metric)) return matrix.detach().numpy() - def create_embedding_store(config, vocab_sources: Iterable) -> EmbeddingStore: ndim = config['embedding_dimensions'] vocabulary = create_vocabulary(vocab_sources) diff --git a/deepsoftlog/embeddings/initialize_vector.py b/deepsoftlog/embeddings/initialize_vector.py index f51bc09..4fe7d6b 100644 --- a/deepsoftlog/embeddings/initialize_vector.py +++ b/deepsoftlog/embeddings/initialize_vector.py @@ -3,10 +3,11 @@ from torch import Tensor from torch import nn -from ..embeddings.nn_models import LeNet5 +from ..embeddings.nn_models import LeNet5, XLMRobertaLarge SPECIAL_MODELS = { ("lenet5", 1): LeNet5, + ("roberta", 1): XLMRobertaLarge } diff --git a/deepsoftlog/embeddings/nn_models.py b/deepsoftlog/embeddings/nn_models.py index 98505e5..66929cd 100644 --- a/deepsoftlog/embeddings/nn_models.py +++ b/deepsoftlog/embeddings/nn_models.py @@ -1,5 +1,6 @@ import torch -from torch import nn +from torch import nn, Tensor +from transformers import AutoTokenizer, AutoModel class AdditionFunctor(nn.Module): @@ -42,7 +43,6 @@ def _carry_probs(x1, x2): result[1] = 1 - result[0] return result - class EmbeddingFunctor(nn.Module): def __init__(self, arity=1, ndims=128): super().__init__() @@ -91,10 +91,86 @@ def forward(self, x): x = x.view(-1, 16 * 4 * 4) x = self.classifier(x)[0] return self.activation(x) + #return + +class Llama31_8B(nn.Module): + """ + TODO + """ + + def __init__(self): + pass # TODO + + def forward(self, x): + pass # TODO + + def eval(self): + pass # TODO + +MULTIPLIER = 6364136223846793005 +INCREMENT = 1 +MODULUS = 2**64 + +def hash_tensor(x: Tensor) -> Tensor: + assert x.dtype == torch.int64 + while x.ndim > 0: + x = _reduce_last_axis(x) + return x.item() + +@torch.no_grad() +def _reduce_last_axis(x: Tensor) -> Tensor: + assert x.dtype == torch.int64 + acc = torch.zeros_like(x[..., 0]) + for i in range(x.shape[-1]): + acc *= MULTIPLIER + acc += INCREMENT + acc += x[..., i] + # acc %= MODULUS # Not really necessary. + return acc + +class XLMRobertaLarge(nn.Module): + """ + https://huggingface.co/FacebookAI/xlm-roberta-large + """ + + def __init__(self, ndims=1024): + super().__init__() + + self._tokenizer = AutoTokenizer.from_pretrained("xlm-roberta-large") + self.model = AutoModel.from_pretrained("xlm-roberta-large") + for name,param in self.model.encoder.named_parameters(): + if int(name.split(".")[1]) < 22: # All but the last layer + param.requires_grad = False + self.embedding_cache = {} + self.cache_count = 10 + + def half_precision(self): + self.model.half() + + for layer in model.modules(): + if isinstance(layer, nn.BatchNorm2d): + layer.float() + + def forward(self, x): + if hash_tensor(x) not in self.embedding_cache: + self.embedding_cache[hash_tensor(x)] = self._forward(x) + + return self.embedding_cache[hash_tensor(x)] + + def _forward(self, x): + tokens = x[:, 0, :] + attention_mask = x[:, 1, :] + + embedding = self.model(tokens, attention_mask) + pooler_output = embedding.pooler_output + + return torch.softmax(pooler_output, dim=1) + + def reset_cache(self): + self.embedding_cache = {} if __name__ == "__main__": - model = CarryFunctor() - t = [[0, 0, .2, .2, 0, 0, 0, 0, 0, .6], [0, .8, 0, 0, 0, 0, 0, .1, .1, 0]] - t = torch.Tensor(t) - print(model(t)) + model = XLMRobertaLarge() + embedding = model(["Hello, my dog is cute.", "Hello, my cat is cute."]) + print(embedding) diff --git a/deepsoftlog/experiments/countries/config.yaml b/deepsoftlog/experiments/countries/config.yaml index d0454c0..2b2cdbd 100644 --- a/deepsoftlog/experiments/countries/config.yaml +++ b/deepsoftlog/experiments/countries/config.yaml @@ -12,8 +12,8 @@ optimizer: AdamW embedding_learning_rate: 0.01 functor_learning_rate: 0 weight_decay: 0 -nb_epochs: 6 -batch_size: 4 +nb_epochs: 5 +batch_size: 8 grad_clip: null max_proofs: null max_depth: 2 diff --git a/deepsoftlog/experiments/countries/countries.py b/deepsoftlog/experiments/countries/countries.py index 860849b..6d55a91 100644 --- a/deepsoftlog/experiments/countries/countries.py +++ b/deepsoftlog/experiments/countries/countries.py @@ -1,6 +1,7 @@ import torch from deepsoftlog.experiments.countries.dataset import generate_prolog_files, get_test_dataloader, get_train_dataloader, get_val_dataloader +from deepsoftlog.experiments.countries.visualise import visualise_matrix, get_located_in_matrix, COUNTRIES from deepsoftlog.training import load_program, load_config from deepsoftlog.training.logger import WandbLogger from deepsoftlog.training.loss import nll_loss, get_optimizer @@ -24,6 +25,16 @@ def train(cfg): trainer.val_dataloader = eval_dataloader trainer.train(cfg) trainer.eval(get_test_dataloader()) + # visualise task + region_matrix, subregion_matrix = get_located_in_matrix(cfg.name) + fig1 = visualise_matrix(region_matrix, COUNTRIES) + fig2 = visualise_matrix(subregion_matrix, COUNTRIES) + logger.log_fig(fig1, name="region matrix") + logger.log_fig(fig2, name="subregion matrix") + # visualise soft unification scores + names, matrix = trainer.program.get_soft_unification_matrix() + fig = visualise_matrix(matrix, names) + logger.log_fig(fig, name="similarity matrix") def eval(folder: str): @@ -38,6 +49,7 @@ def eval(folder: str): trainer.eval(eval_dataloader) + if __name__ == "__main__": train("deepsoftlog/experiments/countries/config.yaml") diff --git a/deepsoftlog/experiments/countries/data/raw/flags/AD-32.png b/deepsoftlog/experiments/countries/data/raw/flags/AD-32.png deleted file mode 100644 index 67a865584dd17932e40695fcfa9a7e2a52657d93..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1143 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfauL_=LFr2l7GS+>ak7|Nk@m z|IZF4feeQKUm5;8GW_Re0IGqbAK#6EQvd#OK$QLa$N29*Gf1Tq(2%nX3}+yShv$r^ z=TWfX2oazyo}Nd3`~aB%wdfz%7AKG`aE)MPAiWSlpivMJphlp*|NgLm&|fB?r9g3S zpCeztm^{3u`tX*{u7!>}7dk$;rG5XJ-rr9w|6M`O2C4}NJo4ea`SxbJ(-js+nypW^ zT3)O--Q4T);|>3RAD|jWh!tTGM=qaq+m>qc3$oY>~IBHiikT;*GRYR`LA-uFl?uW-At$@G5=P$e_i<>$g8k36|=v$Ngm zZx8FIJ>m~HsD53-yKTP1+goz~LxIYm_Qt0iIkVeyQIhM+N$StmYuw(f_jrZo!g9|m z+l>DwBAFI-pT|~c`dH+T-xBVvCsAO4JEK?Am@2_90i5aABJzAME5PQ z+dI$h+eg7ae>osg2?@sUpcrHW1|TR5K@q|D|0^Rf`XFHij5SC&gT#U8AD9HkFCuL~ zqZ=5TK*hjh15PvF82&qhqHMz2%HP0Hmn;eL3kJsF-#>pr;Q#-B?*xHnLBUr3R1Kga z&H|6fVj%4S#%?FG?HCvs-Lp07OPna@k+Qf;elakXCQhJ+dGL&1rG z7Y#QSe&p=*JgFHWvSiuP^pv#J=TDwJ6&Ddp+`MSVk}YfYEZVec*RpMVvz1>XK|gFEfI37&8O?cF56dg z^i=5T>uX}$O;=pczp-Lp=I3c^Z*P0=!0+jj^7hWw?Crni?R^pEu&Da}Kjv5LSFiG~ zl($o=7jb1|s83Aavg#FIBrwcWOI#yLQW8s2t&)pUffR$0fuWJEfu*jId5D35m8qeX zfvL8Ev6X>A?RFJW6b-rgDVb@NxHa&+nzIt9K@wy`aDG}zd16s2gJVj5QmTSyZen_B YP-2Saxo1H)Vf zsTm9mGl6VIhPjN=GZ-0XG6JP~+JzYAiL1^O6PqOlRouY9FpWWK5(C2|hX0I=|AmEK zoIP^y!_x;Z?>~6;03;$N_W!|y|3L8XACUd;{{4SI=HI{nfLyTbzkB!o{{R2?&!4}4 z|AIt#c`qzkvi-n;J-c`B*|P^^3j;$p(2)!bQebwkv^0Z~l8zz>oIfAp0+e7(@^*KT zXXO>x3*>MXctjQhX%8@VJDF_DJW;W+x#u<+Xeg<>TiubU1 z^Ve|*E&X)iH diff --git a/deepsoftlog/experiments/countries/data/raw/flags/AF-32.png b/deepsoftlog/experiments/countries/data/raw/flags/AF-32.png deleted file mode 100644 index 060ab8efccce50b2c562ca122278b454a47791b4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 993 zcmZ`$ZA_b06u$2Z_LH^@ltox3C>UhJ6bMQ?MyS%!3NnPQ(3KeqeW_5Pz%UaFh{SHN zcN?4g!U$WkDTWmnKCBGey3K8gNHz@fhfeTg(I0O9FeWCN?B3&f!9V`+$GzvAd!Of= z=bSTCSy8G{C94P_8mpzG3T-N$cts4}#or(H62i+X%WY;1(+G(W0))`D8y%(~Vt|lQ zl5(1GBme#a&x2A4@$r(ghCvqPIFQRR1auT~Buc4xo@zAGV~!qn*`VDgIY@a}2ZWO{ zuUCwTp*+uazQ}xSOlV|1ekQn?)xtOw6T2>ea9kudmJSWFH+!L_8D^$g@B-91*?|D< z?-K(`6iMRLQqdYaot?%)?89+bU4ifJz`Lhmn~~0a3-+f~vL~C8?D6%Do?m|a`R;yR_BOxye$KSHI=q1`%Am7jTi5EzPij=TC?+qD_?!_O{~aQ=h^qF z%eHt^oZIYv`Bv4YvC%zst1H_JqmkYoI+gjmP7$ZlDmCii!9xd+Ts@ci%+p0_IZqif z^0T);k*5|1e!Dcf5_vH2`MJCAEYEaqRb^#4f)~6k_wS`7JKmcz%*+Qup^u{HXM^Db zp*fwi_|Msjk%HzwPE6b$Um6+8PxnmUI&;mqZ}a^J4^674vudw@`uf7Muvjx$7fSZm zP5yKvX_fr-xarr1;oHSHgp4k8ZI|2CB^Vn!1vDgApOc%dH)Q8NYt!qE`8h^?{uX_n zQLpcvOMm1)gjS!sxvBgA332yECy?-{RH53})V0smDG-y}*C3=?TU{QZN^rTmI~IgO P1QDybqU7Rp^#lI^;ux1n diff --git a/deepsoftlog/experiments/countries/data/raw/flags/AG-32.png b/deepsoftlog/experiments/countries/data/raw/flags/AG-32.png deleted file mode 100644 index 5c0f473a587fd84a98f75089b26696997af74451..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1092 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3HGD8EPYe6kC$Fy9>jA5L~c#`DCC7XMsm# zF_88EW4Dvpb_@*6v7RoDAs)x)PQINT6Do1E{{FmTHRH)<#==?eI5V4BL{=?w)%@{< zm04+qSWV{I4p)KhkQc!{;!y%09XXEFFWABwXd>9+AT7UUidVdsLeun_DYItGn0eAC zuh`P~d5zti8$P9zmPKy3`Fz9o?bmPJkD8t6!kEjp^c)9!pmN3*LEf7g&An!>0fO~w z<9vB+9PW!o{yRP6NB*%7Q#%6KubtK~KH#drwdRTr8;^)=#UlAfz84alOYBvi9oY8Z z`RxSO1+Vh1nlM!+FjV+XbqjTJu>Y#K-SIL<{^CEJER5_Mm;(wQ-uOJ>+#%`X3!gOP zHVaDZe#QOgo0J6etHvCz2^*jb@VRaJ

)Mkz?XMBvvE#*)#uGM?`3q+RkNc=H) z!@~XNT4=-cke^pucEo53PdD8s*_S%iYLv{LZ1f z(%j$MzrJr*H`^9gVO-V`KkxSpd!LTz{VweITx@9_&|&nKVC6?YQop3h7N-emFe&zxjdQ zCdnmxC*OIY@p-!5&)GI#T~{(&E+;M516&Df82rqjA5L~c#`DCC7XMsm# zF_88EW4Dvpb_@*6=R92;Lp+Xeol>1KHC5)g{rT#f)#s|uJu@@kHktRdg5!2I57nLn zYJQ8mGY<xY> zt;}Md@$f-8XW^H*@<;p5irVbfiVwTCZeo7@&)GLFU(r-r>e}P`^T`DE6$io{bQdt# z?O|`&wBB^p*ZPVWo0vz%3*WN7D!N$O)fy$?ieVv_?_KpS zQaX3-Z0ejJB`p&s9^a#SlD~<8X&D3O$|)`!Gq#E`Z1^}m@1=F$hhBlhofchR6ec?| zbRN!63|XhLkp084*^z=qJJ)N>e=>vpiC~e+=L0dP*hSKUKSyqNbV%DgmzjaZNn^*w z(;b^Qy4F4FjXfR5opS8p+&OO1L5&`f9_o{IH8ZRpcx+o|?%^A~CN949y{Fzcmy`OJ zGT(X#UtrCAuErqio!uhEvmx_-RNm)FK0N=qj&|?7RyM6EmUqgPd}V{esT=3FS=z5Q zvYnok@JGm?D>CoU)BBkjcTP5!nx6T4r&CJr_>JEtw$Jx3-1^w!>BOQ%%J+B~r)V2z zZhUudHwS;*lh?{?-_$(iUbHxPM#FQ@GV|IaGyes0O>>DbHFa6^nn}GX`N_hEm7jKr zhq^9#oRXwmQO4w3Ea1j*qCqJyis|XomWnc419shThMX35^o{ZGr?Uf9oPOEj3i>s?KS z$=SA9NpBANT{(JnhPJukl_IeVg+&Y;r=*q|&R!T0IAa^@JZ(n%+Zq4j)0QsPx>P)~ z?bwI6U*qXWYYMy`AcHfDd)>9iN+nNo+=5u1vtESO;&5o-_!r~Pqz<;=-!{PdOmG| zhwWCT^cnj6uK%48_HBOh-W6yA` zVa4L*p`V$7SzNWmHKHUXu_VKd7c7#LWY8d@2cY8x0^85q=V zR}n?gkei>9nO2Eg1JA2DD}fp$K{f>ErbP0l+XkK#9A3O diff --git a/deepsoftlog/experiments/countries/data/raw/flags/AL-32.png b/deepsoftlog/experiments/countries/data/raw/flags/AL-32.png deleted file mode 100644 index 319680ac273f8fbac21af684773a409793b899fc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1196 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfero_=LFLQxpJ-07*=AS5W{N z0Tm!~foxL}7Lyx~(X% zN}Q{KpY5;=FHq{J4DSP&;Xw6IlmvH4@$?9>FA(KS;%0GUWm+cA701CG%E8n9W!iJB2tp1lb)}nXW7F!$bJKqQG%kUSM>bm*eXa zV$bGgso`e>T5(aH|9~{_9auy_q7P_35CQc9WnEdB_DJ&pZ2|fhA`2uTp$cRG)d0=B zqaXk@A1(+t1Sp8C1;W1BD9sHFDYlXzzhDN2|9>5sYp1&VMMctjQhX%8@VJDF|A zz`&^I>EaloaXvYLnW>D=PcKg{&aRHpQ87_4&`d4OOpGne%^-n6Q$Tq7gejAzO`JM8 zJRl@U>|nrxMXQ#rTex!R+QqAv=O<*OM9%pEAvLT6joU==Cet5;a!jXXIq%W%lM|zkl)O)w_cs7j9p-PkglGWbiV-*>=g# z*4&f`+i-TKb^gDm)@~(n{m5N8Kf9)C0nH9u8@IXa?k`?x^W1xzN^h5)S>ShTWAXKO zw$C#5QQ<|d}6 Z2BjvZR2H60wE-$(@O1TaS?83{1ORLJgq{EZ diff --git a/deepsoftlog/experiments/countries/data/raw/flags/AM-32.png b/deepsoftlog/experiments/countries/data/raw/flags/AM-32.png deleted file mode 100644 index 3377419d8c668d1b342468914ec546aefed2209d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 451 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7E^sk#845LYSg8C}8c-60+S=Q4oM zOosmqAoP!c6N0)K+PfJ#A&7xtE*wcQ%zz@E84y9BA;<_~;J+E1Xb5Bl44M6$bQ$Op zwvr&f;QwGSZ?CrzP=vF)ES<4GtnK2anD@e0T02 zVHKutU%!X&<}e;PAb8+wjaM8?qKI*T=Pbh$-IJKK__k(gWURgS_f@;#v6OQ>(@KAD zmselYz3XGadJ!A>n)h1z65PD{K+{!ATq8hErLK{Ah=GBX zsiBpDskVW!m4QL+b`?<+4Y~O#nQ4`{HSoNevl6I55@bVgep*R+Vo@rCV@iHfs)A>3 bVtQ&&YGO)d;mK4RpdtoOS3j3^P6efIDgi0iI^tL(#1d5Ls5@e5T zQ?nTn<5>2G+D1w;lsTO|Hp=RzQ=ETn%VIK@EV@?~mYBGf6ukTHt&%O-PR@58zwMWb@Lm8L;a za+;y49srjOev1_qBL>78@uvX~aylWagJKneK}6=z*N4eT^z}lm;v31e zWNYx+0KzjkxDTIA;r@@9`WTfJP$lzKq9PHDl^7nv^c4h7!{^2Ry*PIU{ymWL@6QXl z=7bQkp%CsCBq#F#u{s^JtC5w3bTu>?P$(WViAzd?j0_OO_t&w@B-rS8*qx7|gnP80 zrdE_s)D&<3c@k+XyuFpQr0ub~dWk3Nlk>v$_G)quB{s9EzToRN=JS;O^RbvNS!)`g zN_KX7-MhRZr@kPPdn7n}^UfFF-MX0*sxc3_WDSR2J$2^zM~90dvX=7hv`kyQsB^)a z^Fhnq>Q8@_EG>ogdZysn+zp1Rb?K4g4^9rdPgqLV7Tz)BZ!D<}8`Q51t{JH^n;bn7 z)!AUc=kc^R9-fiv82VGm9dUvcYIC^zdUUyrR@&mhRrhhpj-(EOUCA#+QsnFP$fp>P#U7Yx> z+TciA8BmzE<0ly|$>S>C(>dPkGyJ3>QD$d?9^g@B};7IPRM2Tz+HXD9e7Y z8JG>uOK)7-Eecs0&UZYQ**ZNR84{lcl!s5M?dvx1ubbz$H2FPlKWl93VTnT-Q(9Kc zR2G*#Q_nEQic%v}QN)xR8K(bo?y7$^baZ)kc@O-5gY5VBM@fT@pWy8B`uDkeSeQIr eFSB}Ehug zR25&L+9@ZtNpOaYh*zi*D#?FgHt;NkDnNqoJ#n+7X*lQfV6X&7iU$CkSV=-?14g~< zeo_lwwo7sGnGub4#bmbpX*8?G<{K|f#aEEX`vZ(}0=nAB1vXz19*3&-RFFXHBF4w= zEv~JtSu9}I*L}7A%D^1A?pFBG^<1bPRE8Hd4tMm;Y!+bKCAg~yOF4d1XE0HTU}2jr zmg}SjDI5T1s0g*7P>77c$F%p<%jKVs=2j10BQ;OzSiRY7nf_fDR8GJts3t)!A2D9= z>Cp0u$+&7>F`5Ae!0n)eLCfHVY6OWb7l< z&>qCW%snzN8J{83Cu*B*6TH7;@kS-~s$tXUwS{43(|d1w1qWC168(oPzA`pPPE18@;>O zr_y}TFcc)kH*}`Rw+Jw25l$E3a8+KkMWGyodRez4;i9{UGtx2<#4_(rv!2zu+Ga;D zK!kSqwUnfkL&|a(+kZb!Y+mG1H0!#R!GXREi@*`_ni2Xgo4O^mj^ zbnypiiC9=xDiIkT>lXD3%S)~fN&DRBzFWMX^LO`}_4j+$$5Y$-NmG4ITR?CWgB2LL zV}kX<2rI1bn)2dT-5)yVu?zBK$^7gtd9A$l>Q(u-@^{e0z+IhH7an{zywjlnIL#3H zMOCq(b+T9CLKmbpy;{(@THi76#w1W;|#Q$EoeIf71_?4Dk#EPHwXAH6(vL@3=3 z%lYQ*u5pwYmpqK_7Ko>2dS%#K#dN!46F+K4doVQm7e|>~e?>b{QE8vezI8qEqdH$! zndxVaA@j>SWD85$>X}WOI$7Nqda&o{Bcrq7?EK~8sUCTq;~TVdGiH0&Z7jv2Zfwaj z?4VK+SbZLGm{+0(%TG7nJlA*3toMuQMAi~&0^RL%{6YO-adNJh#})Hqj|lnTkO*dY z1cMpFh=|T&GGn8{W0_Gqn31teCVDx@;~xn{0$xGB?Ee#<(X@0xf|s>IrXXJ|AQqOReu4758&|t diff --git a/deepsoftlog/experiments/countries/data/raw/flags/AR-32.png b/deepsoftlog/experiments/countries/data/raw/flags/AR-32.png deleted file mode 100644 index 7a22a8be0f13f9ebcd13ac9e51bc1d899ab2567b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 809 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfb+s_=LD-ocRwyPd@*LqyI?Y z-~az`ly>Gn5W%&;82>WP01-$${3JGX>VM=J5DGtqMHX%;i17vJhJO#Ay?prm6_5eu zLS2P$(Z7E`pX~T_-s#f?&tFgX!Noz2{0Aid|N8X&^=aoXj~PBcVt9Qf==Ya5KtZ4s zvVu2fT|eGs_;`om&AE`@U*AF$z>NC$>*?-K=e$0h5BT-`AVd)1wimA-zI+4Yg1rOx z9g^R{p#cq+USZETV4(At1o;JnEc*Zd@8AFbe*@{?EBEfgH{P zkH}&m?E%JaC$sH7huTxs9vR)Yo^7`tsrR9prYFxN_+1$Xy$js2RxpTv;&4wGI3nCmEmrmW< zyLRs0=EcH3Eti|R8*k4%F3A-WbN7y|&E7q=HHk`l>S|7K{b6QmZgO@yd`NkMs6wQm zq^PX0w0Qo+2^~4Co0KO{3J$t_$=E1Rrt{I+HE-tJ+4HB#DJ6dqTS#D`r)HFcAWv3T zvM|GY3D?3f%Riw&pQx6&MwFx^mZVxG7o`Fz1|tJQBV7YaT_f`l0|P5lLn{MQZ3AN~ z1B2S_DxxSFa`RI%(<*Um;CVG?B~XJT$cEtjw370~qErUQl>DSr1<%~X^wgl##FWay Slc_d9MGT&jA5L~c#`DCC7XMsm# zF_88EW4Dvpb_@*6pFCY0Lp+YJoq94qI#i^6fA#&(r;BC$Guf8=bx5lp)l?~*)5y0l zQ`*bw0Mo&BLFOGy+z|_=sXBQq;8GOjH1p_)RTgkcYF@#zD9DR_l@m*)Bha$`z|Vd6cRs(T{h;Gfy%z5VW;HHFR?T*m=T`(pg@RnKIL&&i z zcE`l_%m2OC(0%$qK%kJ#h4%XIc3Fq@AM>#p*4k~D9pisQa`zwR$KvM%Y-_uUm!JFm zr(HScW!D;!2X=!du-T#-;%)OaBKz2FO;%@?10ciG-b+8tuCR_e#sTOM1le*fvIPV<@e ze`Rm3o;>A}rV7_x6T!B|9aH};>(QEeswmZ2=<@zx!|$9kE1DL)J7kda~xIeqD@j_ogtw_&p$^l|uB|6bYOQkb8& z_|kj#u+X(V^`9$*jD=nH|K&)(o3_qBR>k>Zkq5)Xi7&@Ack&sOA4~|GXs55Qegl$P*$du~su~t>X06;hw5~rPW;I z(489|`=+EC3aZM@c9~&!%Sw)IX~0uu?{%;BBW4Hm$lX?X+Zq|gzD>wtNBgdM9P6er zEL+d_a>bs#Pk*soQ(H2%b(+Z1n>w;SmsiI>W7KvnxUDx!?(On*yM_H<)cMSRe~;y# z?+T$-HHGBqDS5sbD_u0FDIPMddg{Mw@f3lBjR#xzGsZfssIZiLzzQq|R7+eVN>UO_ zQmvAUQh^kMk%6I+u7Rblk$H%Lft9JDm4T_Yfw7f=LG5-GQ4|fi`6-!cmAEzVyqdET xs6i5BLvVgtNqJ&XDuZK6ep0G}XKrG8YEWuoN@d~6R2!fo22WQ%mvv4FO#mn17j6Im diff --git a/deepsoftlog/experiments/countries/data/raw/flags/AT-32.png b/deepsoftlog/experiments/countries/data/raw/flags/AT-32.png deleted file mode 100644 index c9c1843c15a8d57189497ad72624a3938f59afa6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 558 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7E^shI&jA+G;{3L4LttH$sTt^(=VMsuPtBKy{2s-tI1}Kk{E52XZ(IJR*yMvY9|?wSVw?)jb!iyWl21+IuCiK$)Ul3nBA;y%Td zXOV-rw!rnN2~%4%E*$1s@@2`*6a}s?8<`?&Ez2sE)*2k(65$cCoT9+Rvymy)S=297 z>F_}g?EvGT=a&>Nu{d!t>~wLyW2$0N0<>MV#5JNMC9x#cD!C{XNHG{07#issSn3*? zhZq=GnHpLdm}(msTNxPCZdVaS(U6;;l9^VCTLaIlIV*u0BtbR==ckpFCl;kLIHu$$ fr7C#lCZ?wbr6#6S7M@H6g)M`ptDnm{r-UW|=#}5U diff --git a/deepsoftlog/experiments/countries/data/raw/flags/AU-32.png b/deepsoftlog/experiments/countries/data/raw/flags/AU-32.png deleted file mode 100644 index febd9a0eb8360ac8577b5ce5045d71459ba40f6f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4170 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 O8vtc_4Okfz9{eBj*xeBT diff --git a/deepsoftlog/experiments/countries/data/raw/flags/AW-32.png b/deepsoftlog/experiments/countries/data/raw/flags/AW-32.png deleted file mode 100644 index 8869ead3cd251a0977c0798c8074d7e4a3496f03..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 887 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfh&z@Ck7>o_Pi+VmzWqoP%C7PwCA#15^W7EH&e-_TsC@ikhls9AcPz z$z;Z9h(?V$=Yi^v6*OF6U^o*Rw{*%T*98~!z_LKYf#y`rICv&3eqQ^^;5nx)WIIq)GzX|Ybk1ppndjhk0c`}bf#$m{xByfS7YA!W4-Ko?r)^-t0trBH7_J8g3yA#u z-5VY_K*qVd-M}D%qZjWJ-~j~*aJ1lx{Wo_ZFm6;!g8YJkG!*=nsHm#^{o~h9_6I=%5+X7}Qetv~o!*WiB|bSZ zHBL%?@h@hms4ic!?BTbxDz~(-GCw`32WOuqKWf)Far!tL%O}>EtqNRRT-{xUjRhMy zx;0!JJu@RM)dW@xq)% zAfQDfZ*;&|I-XT ztrHlWS4xE~F^F2sV88Of@^WO^{@nr)upde66)HA#v7#xx%L4LtN8U%jVv!Ee? zwQi??5}XAdk;OpT1B~5HX4?T7^E_P~Lp07OPherx%#@6@tYmdnP4(nRnEoW;K?(~a z+bL0x#)hs{vv##Do3^cQod`>TXQA;&2ay+z4f`4wPTbhJa^}ufIhGHvJ{o>@7KvzT zn7Xxh?cBZ1izjbZW#Ne6+Qi`~vZJA4_3Yj4%cpPeUq7Flg=2TehAt}Hj z84(pOOYB)Xes*v66j<4?K$Jz+^TKQv=B{rOSs7aW-E70;nSr6qpjzS@QIe8al4_M) zlnSI6j0_BobPX(Zjm$#~46IBItqe@H4UDY}3~INlh@xo7%}>cptHiB==hYmL4U!-m tg7ec#$`gxH85~pclTsBta}(23gHjVyDhp4h+5iLG^yeGJnM!v&876avxFkdi}YNvEnNUR$)~ zOvR)l0YyiGi;e^qL1dpYh=P!);u8jjw@qz-uHJZCQv1py>Y2FC6K1iejNDHd#DEI! zb6ec!vA8d7dzXRX`}Nx|x+mObU;wh;%vt*5_JhZMN%t5u?u%H1l<}E@5WnetY0G;+ z#W(Lht82akR{U<&#y{^qJc-P_#~^oK!V;+LDT4trdM081n1SKLx*$-D%dvQmBOZ$9r}tdjvGH7I(uJHo>Jp4578D$VhB`y2Sbn(RFFaf{g1@8P=tG ztZO(1j4I9okH}&m?E%JaC$sHN9<($NwdHkTKa6qOa07JvWnrHPp>Uq0TR;{!hj4;LRNFL!@O zPgfgr+l(7KDl|Mie7yWTeZ9}0ICBapHYdj7#A$sE9W6agUG4QNTA15bWm&9PxpsAa zMov~QY~?fC`m~yNwrEYN(E93Mh1pPx(1fI zM&=;~23DqqRtBcp2F6wf2DRH&L{T*4=BH$)RpQpb^J>mYpaw~h4Z-e@3c2d)LE-rRm=yw8NU2aJI30h$j}05T1T#KnQ8b#-)t zOe-we?Pt{X_J9dUR&+VA#6)s+@6MXxj2A<}II80O&WKL)2 zfe#m5n#29E1#00owy1T(%E87D$1gZeZ z4Y#5qR#-c&Oz;7@0jM3WvAumi*cW^JjDfa;Gy**f)3|=`-rMnUEA3q&8jXQ|{Ck@3 z|0Q5Fg2F*e4CMa4zJnh>d@nBB?GG{m6$|NHm%-+wsx_vhdL>CDL|fbyIL9+ALA z#NYwOZYQ(t7#J80JzX3_G|ndr2qp@orX-~$iY5zBpD?9~DN{1ivXWI$AwfVeFeE4} zFf{o3g)5h?HLkoc_2Omo22BH#q~{NwJTfygG&OEtxnaUa7Y%`po3?G-y1Bfdq^PX0 zb=8Imh0Z|=kKR3e`Sk7M*U#kzBv=9)mpL5KvQRP6u~9P8vQiUU!xY=-5mV!o6jbDu z6}2mp&4aa#Y2ukRZ|2ZkBEOyFEW6L^_V> zM(oJ=IBDtWY3n0)W_^{?;cBRh+@1Hgt=DEx&1|#$n_aGq7kYAUm%q8Qwfg+M+TZ*M z!3s&G9|Zm*kackgtHD@JIgCxj?;QX|b^2DN4 k2FH~Aq*MjZ+{Ezopr0QYF_fB*mh diff --git a/deepsoftlog/experiments/countries/data/raw/flags/BB-32.png b/deepsoftlog/experiments/countries/data/raw/flags/BB-32.png deleted file mode 100644 index 83f15c0442a38fd5334ac500c87bdf366c0320f2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 701 zcmZ`#Ur1AN6h0$bB?^LNrc)f5C?Q-Yw!CGjY`LYW=>m%$ob66UWO^Ij=9IQ_MU<63 z^bc|VPjkBt!vftk@J~7`MexC=vWN&@5`v)S-RXC&7a!tqzVmT@=R4=)ce|u0KO!tP z3;-hZI!!65i6kR;?;x1-p|uu3w!fs%pv9FH?CC*4z|m2RkHeoGwY;*(YKDb6i{`IPu=6>{dt% zhj?;J>~iDF@rlLJ#O`6FmnK#vFG;?QP8pHJ$j)shWD>~_fsd1Bdr z5|$0|ya*s3REUv)O-+9XLiEv3lOtnh5IBY33gT7HzvKfqCR#H@Xz?WpxZ=zHi zg+fM0#;%W3uP=JlrpQ$}7o2Vj&wIA-IV2f zEXNw|Cx0d04q3J3R+G`n(3e<-6i`v=sx&GqO{F$a6rGt)Q<;aU44R^vUnT9^CaANR zYRtC(3&PhshKS&RbfL^*wsJ<6fn1ZNl1bFp8LOC5#%QuN1eoJw2=v+_4WCzW{SO9V BQeXf8 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/BD-32.png b/deepsoftlog/experiments/countries/data/raw/flags/BD-32.png deleted file mode 100644 index 9184dc5b7521eae06436fa5fac521d57a7348e18..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1119 zcmZ`%YfMvT7=GGvKx$hrm4XI8Jp{S{Tb~&c0V)CUJZABjCP4Z> zf|Bm(vj(Vzq!w@?R>1Ue0-1@R`0 z95Di9E~rHj%1iy!h#4tLvVq0Y*%)9Vt~=czUygL+n$Y_c{bMYdg= zlsac&@{9A*Usy2LSF+XDyX({LGi`^uKI=Hq8-GOF)Tk^;b0@4@+A3R-;!v9uobXVy z*Ww>qe7ed1MD>AjAWm+z-WhIOntS$4>!!xQm`s{6BZ7N(`$+qapGOMv3-lMx_uEr< zmKF|{tQ_LncAM|?{-scPxQ{As`j>p3#Cb>k+zx%5yrXF4mCM>>pT%tX$#Q+Ly8QJu z_r5uHdvN%>TSF&re|z&<=fML<`%Z0X`|Z5p!=sOk`xdwM7k}mJ`Z&8~VA%U-?4xvR zZ*%lsU$v>y|Hf#?o=+^ND!!--w0GV}F8bQ}{lm1%KKH#Ib&Ip7=hs_jYkof$h*BkH z>ff)!j|*2n@R>U1Q{U!#^yMC>-NWZN8hF}}smsVr(=AEMe95fS|B4gyuMl?3?(Gcf$w$HWl-Kwb}%WB5^s{!~6VHR*Q9X3U=u5YesNNv8f#x9P?c(lYeY#(Vo9o1 za#1RfVlXl=G}1M&)HN~>F)*+)HMBA?)iyA;GBBv!t|E$}AvZrIGp!Q02A)@QRsuCh vf@}!RPb(=;EJ|f?Ovz75Rq)JBOiv9;O-!jQJeg_(RK(!v>gTe~DWM4fdpKGS diff --git a/deepsoftlog/experiments/countries/data/raw/flags/BF-32.png b/deepsoftlog/experiments/countries/data/raw/flags/BF-32.png deleted file mode 100644 index d86bb323f7b7cc1796380d85b68cd67bacc3ee15..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 812 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 Hl+XkKSainf diff --git a/deepsoftlog/experiments/countries/data/raw/flags/BL-32.png b/deepsoftlog/experiments/countries/data/raw/flags/BL-32.png deleted file mode 100644 index 289b805efc6766828931062db509ce61b934eb20..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 332 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!VDx^^%AmxltF+`i0gkKgMk4^LJ$K(8Y5$x zm{OSPyYY^|L@vL>2>S4={E+nQaGT$a=ashDcma=HTUBJ!5P3)s@x%@4b|?;Nmjs z$zfzzkXEztY@e_`P@!sxYeY#(Vo9o1a#1RfVlXl=G}1M&)HN~>F)*+)HMBA?)iyA; zGBBv!t|E$}AvZrIGp!Q02A)@QRsuChf@}!RPb(=;EJ|f?Ovz75Rq)JBOiv9;O-!jQ TJeg_(RK(!v>gTe~DWM4fosMHz diff --git a/deepsoftlog/experiments/countries/data/raw/flags/BM-32.png b/deepsoftlog/experiments/countries/data/raw/flags/BM-32.png deleted file mode 100644 index d79f4e00116165d8da6e03ac2b75f45acb4c25c1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1210 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3HGD8EPYe6kC$Fy9>jA5L~c#`DCC7XMsm# zF_88EW4Dvpb_@*6mpxq^Lp+Wjof4fB5-QTRzx3S9>geS!OT1DuR7EZeDd`4zb96Zz z5ePiEK>ybh=C+J47mr9haGdNmv0;+L7uKd0mzE0dFjhw8(1p{=o~U^(bn;H;;=BAZ z=6vdJgQe5A*iA@?IC<{g&Fb{E|NnpAzbz&wck7{k-Ro7hqHlgJnp=MVk5q{K?fdnu z$Myg7Ogp-8S9|3DS9)Hvr7G(3I<{VJ*}1v7Lh5;O=3%xs+suwUZ_b%^o40lb>+CJT zu|dg4pI$ur`N>W3>0XCKc5XkU|Mex~!NMmskuDvxFYQ|5bj^fiNm^!i%(_{s^7WNY zS!H>`^$y}wx3WxO*lyahOSJgs>G#gsUoT&&Zv9mtS#4J_Q+lP0^X$IH<7Zzz^|g@= z3OT#-@XFbTFP`h3lk;9JgJWKs+nnOq1-lQF9b3`a6V2Q=D~K^Uca3lkx3}Xt`3LX! z*=@0{F1#D;_UuHUfTQpR)4AU1^~d|_UDhTS)~9l$MlNY%3uHJYw|sS9i&o%a%@g7i z0ys*I8F$`EVKCaX@=^1RMGM2jovm7nKda496Zw=dYsC}$8?D(pva$kZCQ5jT8e5!8 ziRx>Xly+D>ukD4^v#WMIf+?STd;W^{MsV=2n|EHBJ8f~SjknD&_Ejq-MKzpNg<0-Z zbO#tXyi2h@c~E8fraHYPn_iq$>Hc%Pu$Wg>Y6@$DMr+kGO{r};s+VO|#k&KyW{KLq z&sE!8$sLu-!M47i=|Yum;>)fyIj$$2^_ynPf0Il8+jm*U;!^MF+y`3v>G$^?-t*yB z`yBn5edW(;Z6@qHvZjyk+`o#(8h;_)uJ`YY7BcKL>PfF^33KQIWyM%=iAHgZ``VDE^Ys9`6Juh&bmKXV*yv?pHt5^&z-+H<)PcQ+Um9| zi&Ax}Gga4b-|C-PV`RU)o?{8ilaJsX(-C$4NvP}y=rhjHyvHtj5 zzD-uYxX)Lf4v>>S_DwG6ri#WgmMQ%3M6|U=>eJ-^jsMvhj`~M31U~R6oTt@e9a}NwribIvdhzz8&v&lwc+K#S z^|)^Tekp;LyTE*|TH+c}l9E`GYL#4+3Zxi}3=EBQ4J>ty%tH(etV|893{15RjI9g| zYPYM1qG-s?PsvQH#I1qn)tr?;4U!-mg7ec#$`gxH85~pclTsBta}(23gHjVyDhp4h R+5is4dQ`RD1}ac>q;wR24x$ zOxcFTOFcB0!1^OtZvb2D!LdgfAJ1{C$LFz*e(Zu;Ns!92U0Rrj^8W@(5a0L1NF-wJ zFR5A5^Mu6{*x(ds1d*Wpt#N=xkO*i1swAXX8hspAbIi5*CM57D}P zxYfJCc^Z*sR0|Lepmq)+SGGt1QXor_vQ`+!aR|eZ)-|i>-1Z{tH#|XWYYWZID@mnN zI3h$UDsYV9#ODXeAO4D339+FtHFk^Gp4WMP|J%5c7=?V1cy$F}(J+U4BUtY`>h)p$ z^JvfoVFp!$h}4Iwl_r^rvZTgmdUA}>i4YNRj6*35Y47OZ<#>b*+jr8`@eIMWKH56B zkv@AC4Fb0A-b2rK-?FZA8yC91C!ZbXxxH^;t;Lx8+|>XLXHb6>TO2?>{>Tk4^{P4k zlhT(4$GC*H8mMIX3YVISB3EvXvN2K1d$kdIvlBF|ZspUKExe;X%`L5@UfWCf^GPb= zHDr$+Wy=R2QvFE7d{*S%Jlz*^3DXjKJ|;J77@dIh2=omq=YJKtPQuuvvMd_swm-|k z?awkDwXAC_vHz1Z?A!V{wb3Z=cK^bWS2xl#UZSPtDe^mZ(YoSMQcX=H5(y&F=mYs* zfXeqtD5A!3z;VDBuoenM!%R-dj0;0IgbM=!%Z_cL``jcuU#X$3YAGYbA;uUQo1=_+ zQ+#nML+6S{-aLMe8UZRQ+4a&cHgDO=y7qQftzJVinWV119@llt3KaS!1U0IQI;`Az zI1V@l5W%W4I@~}eYq@-AIW2XS#N8-Cpv=r#ejCj5e)lcb8iiIpUMvCQb zGzM!eE0;I%LgzM~+`NgkZEbe}{%TGwK$S-Zk(hEj-N4}CX6%@Y8?gjMgEwoaU0WiP z%+S?4%*C^Y)0Y&-xLB=1HBPcILVb--ZhDkV)*>>0*na|e0LTh%R0#q@ex?q8Y6)tE zSYn!r+G(odAtm21dq>Gm3d19Y{xn?dRgQEk0}COK163qb?!y6;RgrRwI(qj8QLv$4 zLlC1lW>KCLygeSaefwW^{L9a%BKPWN%_+AW3auXJt}lVPtu6$z?nM O0000uYmBjza(d;Lz2% zbe$1}84b$L#ON=MM>+!lM8Z*16Ypqa0|4HiQWNeG2t$8|^wiz+&FqpR9`jvs1*qf9 z&vg)wtnJB}N9EpsXbBF5Xu;r)3Zjx$jsHmSNIf%VXNL?k@i507ix82Nbk`aTE3B>E zT3`P)GwQxnx>Y|}3n@MIUon`N@1_?~bo=dPM=Y2Od8WNyVdzAdje+ueJpeCSY~E;%3LDmI5%t$8N(oH_$Vk-vRu9W!ax4;R*&!o? zN$kPtz&?C8{z>#af1Y(LB{sF0n>~UlslZk&9d{3l#W}3s0U6hBIJ^sW#v}HoL`j& zLq#++KXThV46Hf{(t+_ruTs5qCAwR>e~QZ)5%NCMf%8sO|F%)2hpTbUn;6WTkOys(o#P+3^9o zi3-)w5pfYEK$F>TuyY-G9eU{*Yj4!COS3$RP^nPy$3vl6E%!wEVnFXAVK|wFcqmpjRw#Dj3SLxC^uFjY&mt-hWr|`Iwa}SHm7~l>Z(!$i z6R>Fs^w_5f&DaH?`hxZj^d7=2TF8FLjM#-3ja9 zr&dd!(NdR4hABeAOCDd>uGZkozLoQaAmqeT{_v+jd7=tZ3h9hGA(nzPlOgHfeHi?K z_>XEC%=FX}%r$h=LjQ92j?zl-B(o%XtT1{flBCv2WlTuKG&BRSn zMXvN-l-H3rTO&`yTOCn(F+n`oT;qkfK0iC-k&DX4K9TF(Uj)CHzzyND@x=Hm@tukLVmsR%f3%?bJ7jFTzjD++@tmJjdU-?uMU*<_#nv z>tdG43{^}$Hk0plwRWk2rxq61X(?rye{Hc|!6GFyHK*=sjTuQ_`-b>Uhj9Ir?&pQI zh0$(lZduEkn3A+ui(rda;{tvWs+wvh0S&t{Ov8)uW5kb>69Re7RukJm~}}@b{@-6Z{bZF#^Z=#S&@gDd}9Z({njf{}M0I zl}h63&)!|ge1X*es;`%Anl0X)-0d=-)y<3kiPlAn-?XSou3k4cyE#8f9~*pQPShT) z8x0>LVQepGVDc^qlAOH7ycK-Ay-i53*51$}H#fhJf5FhRrr)mTZY7!6*SIW|pe0}eRa%*?`S$cEui;OgdD zwoo_WE`4U*ngSi7^ikL{eKVUsbj!Ufq80rts=mFoTCz%I?+-2KRz$*))zqbH!#PDc zS=UOXFh1Q_W->>@p&_0v--Y{tioJVuW z)6NkemFDjI`d!YY zJDVNjf+OWy@(t&x~ zp7=EJr?M9sZl7Ffrni0z?@#1GM|!mpRjc?te(2x8-&lc9NDUSGTGWj$_4!RD&y<%A zExk^!ZmR0N+dpUT9PM?r^Xi~l`L|EsDmF(p%O^@|26`Kw@9mKL8((~0u6#YdR_*C| z`-jyYp7vpEiZ(^9q1VK2U0<%NP4^1eZ3+&dg|tRL7mQak^1u13bhoDqseqi<8q+4F z6?m^(MV#B*Nqldq8i7znsmY|{Q*zSFo?JNpMcHd{q{CsRr$4>tD&n`~Z|APR>JVx> zb30}|dM)p_vAdm*CMp}QdwbE#2Nt_W8b{jQuTQ-1fj1a>lXe7V%(s56Zt-r62o(uQ zs(uZiZ_oZ(n9}&#+}r>#J=xe9C1gqOe?;2oT*m=`FA4z2K>+Y$j}aFDz)KDQzFGl* z$`b%UxW`zwY5@S48LvmUJS@nxPt8334R*_=NX;9FC$%_;crIj)gzB;ctECt*Oo z7{C|97R*N|x44PFt-FBGjr3)OzSDe-$}2q zK7~Lz8-A1!=n`>L8rsq-E-Hq~e*Q90sd&8@QV@n`xw6o~caf45pBkHzXo)vwp3b$+ zDalob=OCQp0Ch(bpUZZJUN~2Q&}@@ut%V$h83wOE1I&@QE}2)ZO9H9p!f6&ksv#gk zpmpUnF6g(-?^mBFIj+a$3hPIEL?6jMMQAEpIAafPDj4yc>rQE~ni7FJyd2T7)kuuUyHo_KEyJkR)teGnE>E85Ah>;BwXTE?>YA68!UQA_KaL{bdGTcHD zFB=nWt%-IjHh1h80XQuue_BRPS?07NK~7HPoV<$MIVrg_Dspmum7@E*^`8P)cUwn$ YpZ~w$=+~#Y`+KT;S^rX@hSh`r0%BRmj{pDw diff --git a/deepsoftlog/experiments/countries/data/raw/flags/BQ-32.png b/deepsoftlog/experiments/countries/data/raw/flags/BQ-32.png deleted file mode 100644 index 3b20c0b71f65b280a81d69d00fe4df4b1c052547..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 665 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7E^soMcQA+GCWG=R(vx~9v30(0R1o;I6X$1K9PLPol+_L4g0#G+&lDE4H>yP}G z$AKKq0*}aIAngIhZYQ(tfQ)ue7sn8d^GnZ~@*NIfV7VxtmR9n{!1#F2cl$t*+}*89 z_f#zr)CvyhRt@a?)A66VcV))as4aaC=~7jjMYEL+X7pWrd-OMlPg(-s(jy#=M^8*M z^79k8apuarv%%dHxZ5MGR+m;aA4uKyE^of2!iO1)%dOJ&IclE0y8mt`ds9Ot+xqf< z!g@cL5}i^^njA5L~c#`DCC7XMsm# zF_88EW4Dvpb_@*6b39!fLp+Wzosydq94c|V{`=C`r{8VsySVjr7tf0)w*w+QI_Eox z&yoL=Ai+6HC-AXR{G)va$vy=ZNl7fpZXO*CE;R>lbV}JD5Q;BoDr`FZ=BP_yS59g6 z%4_TLv&*aBe?9#6#GyAYKFq%}XHNCM^Z);xw>4=YniT5H<*M>hE`6rRE(3f*INmj(>seS zPW3f3neFeCW$e^$U;JfDn7}TrgmB+~Z+}e?_YdoQAfRZ%8!hePSAKA>uT*n0yJgXz zyk%-@b24T;etFLOP4y$!clp~s9y%#=KhE^S)tQxom&4N>7Bt%^RO(Lfb<*Li-R*iS z`mM!OljHq+k5868TVWHaB-nf_s?ozm?M8j$wz+eU1c&aaHal1>FR^A7Lp1BHEnO^g zn70*otBAZ%SkK|H(z9ZRWYw*OC*wI)IR0PtE5E<^M^=c;q{$UN2{kTHj<3&gNl(=J zqP6cAf1{V1y3m(>%**u`YGzLiVtX!dqpz@AOG8{?YWqLif-HTLpN^Mh8UC2;YYm>i z^GD)^lQ%YqhKh3BG53D1UGKE`#QFU>Yz~*-nEZVBckhS5?JJja9Js?({D6(ibe^yD zi^XAey{}uAu}qN7ST#4cfBB25tTw6gQ+wPTcUx{r>BwXjk-Wus=-pofBgREjSRb70 zO>XGh?Uyk3zJfr5wNyxxx`RjE#WILR-A;d14Phy&Z>o?>s}7Mr~P(v#?hm>k7ShalGN(aPrXOTRW8nYJ}G zX3m*MYtB6gR9JHF**bH{3)7TcJ|#>)@ch~io7E3jx9%_Pc;4NnV{>rRF76-V?k|EK zrrr6u9++WOOI#yLQW8s2t&)pUffR$0fuWJEfu*jId5D35m8qeXfvL8Ev6X>A?RFJW z6b-rgDVb@NxHa&+nzIt9K@wy`aDG}zd16s2gJVj5QmTSyZen_BP-E}ZCLq8dA_Alt z9UK^zFBiLbLF~dMhSL`r&s=1{L_l>w!$m~6c-fuul8@{yd3m|;;n|{lr;8q(K|_Tg z!@0RRM1<@V8TLtPk^kp~|DG29 zcLssLsu-Dt1$p^^%0yDbMQ&{ZDiis8TIAmu1OkQ?mx!RZ4#V-;4FAug+sMGe0t{Ym z4p8{Gmt~zkQ2z3A$%8W`_fCUIR8$PIQBaUUSeVhvi($2<1 zl#mV_0FkhCRW|>bGth0SB|(0{fByZ2fPa7g|NV~uU^YnT@BcslTV5%e05xzHctnDH z>LF*Vt`rE~)`n_O(1T^*yN zVxnN6p^n2GM<@TF`v)$ZxN+plnLCGscq1Zj8+hFCx_Q&u!pd^@j$J#eD;6>7=gYHk z#%IRc|7W;=V8Me47dCw05D}0R(W848e^l)n~IA* zf8yrq?h179)O2x-OsjNF4K4M}jjd(o%E)Pox_IZ&?OWIGUA%eqZZlg0S4vIw?_cUZ zb4)5vUCF$hzMx^|<}~9I=O)gw)-V3o)Y>hkAGs^XQY&I(k!bUgEX(_*+1JUO_QmvAUQh^kMk%6I+u7Rblk$H%Lft9JDm4T_Yfw7f=LG5-G zP$pI_foaIiPsvQH#I1qn)tr?;4U!-Y!TD(=<%vb942~)JNvR5+xryniL8*x;m4zo$ RZGegxJYD@<);T3K0RS&@=wSc= diff --git a/deepsoftlog/experiments/countries/data/raw/flags/BT-32.png b/deepsoftlog/experiments/countries/data/raw/flags/BT-32.png deleted file mode 100644 index d7ee15bd76a20210ca089604bf198fbf52dbd5ee..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1008 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3HGD8EPYe6kC$Fy9>jA5L~c#`DCC7XMsm# zF_88EW4Dvpb_@*6oSrU@As)w|9p4xdz-wpOEZ_ub@5GFyLN$6NA9kb zZ!fX$(9mNo&x_$IQ|;Jstv6r=hpTqpk)^A-w*5Hfrkjyty+pBX)*0o`C+40!Gk4~1 zS#je97Zm5NWPkVWQ~lh}bCq{B86~dddZ2WPT}PpTv6s#MNT3wQ{ouzk?hR7wm5cu6 zt-HZc$W-*GBiZ4WK&qqcg6>Of$%2am7}hbEKJZ<@`o-<>QMFQiwIxBVS<1%`e=fDT zo^*Bb6`NCYc5~Tt{#o0%}06jCiIDGP7yj` z{(i#xT@&6mZ*6{O@mslH)uB*e<}$fA8}3%kadtm9p^N*j&pd@ME4NoYSs!~OpK&I~ zqL0;9Z4DAio(5jW+RvO}k~KehYwcVpPO}g$%VB&r@1pnovKh&X zKQTpLoh-wlpETQ*Pfu3;gWRIKFN;1rDYo#Rdytp$<8ih7=8Q*Oefq0jYg}*Me$&vq zXEJ@0W|?xwnTTu&>y-0dRN=Cg$IA5jQo*(#U9(EtD3JU-d02^HK9PYwrecaY4{ z-rTOs;a^iLssBSnNNi7~31{cqQn6W#KlvVm;sQ^6ceJEM^Vs8;lAVHZX1b_5N*u!OTbnrs&=J(|=#J zKYzn)xzXZ;wZPn=TH+c}l9E`GYL#4+3Zxi}3=EBQ4J>ty%tH(etV|893{15RjI9g| zYPYM1qG-s?PsvQH#I1qn)tr?;4U!-mg7ec#$`gxH85~pclTsBta}(23gHjVyDhp4h R+5iz9h&m7)XP_ zzjuO+*zn)_WgyRS7I;J!18EO1b~~AE2V~6lba4#PIKTCxJKtdi0f)fl-|uM~B-|<3 zUbyrBK_$VB$AYG8|0iVJ+$wO0MI%{+!|fD{Z~C=8-&6m}CG_OJ+cEFC)tzIfnDoQ{ zZsp@pyu3uFrN4;IPo~pnW`nO5hW>! zC8<`)MX5lF!N|bSNY}tp*T_7?z`)AX(8|D6+rZe$z@T=!iYSVP-29Zxv`X9>cwWs} y3Dh77vLQG>t)x7$D3!r6B|j-u!8128JvAsbF{QHbWU38N5re0zpUXO@geCxuEFR~k?Y*J4Fg>*`S{DPt8f~ep1Ecj7!Zn+3h9cO_@WHFHT0Ash4*>*ri zrKgKyh{pM~7u|)L0vK2>_BSXk&`4rnc4T!a+V%gUM)tPgr%v~GmFpIrI^nx+fROB7qSz~u}2z-yZ(0aqm_y1RY)Sba_H_zjRICmZ&&=IO7t`Q|Ei6yC4$wjF^iowXh z&`8(7QrE~l#K6GH)X>VnRNKJV%D|v@yNW1^hTQy=%(P0}8hBpKSqao239=zLKdq!Z nu_%?nF(p4KRlzeiF+DXXH8G{K@MNkDP!WTttDnm{r-UW|-8kV9 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/BY-32.png b/deepsoftlog/experiments/countries/data/raw/flags/BY-32.png deleted file mode 100644 index 921d1ef9ceefec5d0bb18baf689e5cf85b4c711b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4099 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 YL*rK`$I|{~|DRPy^QuOvx^?h>0JU2b!2kdN diff --git a/deepsoftlog/experiments/countries/data/raw/flags/BZ-32.png b/deepsoftlog/experiments/countries/data/raw/flags/BZ-32.png deleted file mode 100644 index 7c49fa0782c43d6d99b94b966a23d677b5e925c1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1085 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3HGD8EPYe6kC$Fy9>jA5L~c#`DCC7XMsm# zF_88EW4Dvpb_@*6VV*9IAs)wpYrtb%Q^d`C(pPh;Kj2oYyJ|E z)wP1zjx6ya@=NyJ_%*40TZ=>Jn{JM#js-uIIus&UJ~lfA9$B=I)il#NdeXXOyFAry z=9vAS`E!?D%GQ$f-MwE9B+fWJ=l|ck|L0VW>>b6hc`zF8H>-5nSQAajNo_M|(He{V6+Mv^Vy_+KM~& z5|5`Y_T1$rtK~NH%bW*yrW@3rb1h?M@fHg4Pxw-BO9>MG*y>A=9(k-*laSy*%j6{D>!6 zUzFM_+J3lA^4jWUlUL|FTkUMA**=Q{7oT%U#6Gw!a3_e{azTa3lZKG3!vANtao!X? z`Y&V(^YPPnI{ZEw9S_(%slV=5i}8HF4Z7ze|`F{0?cRLRy%P5(bPtF#XAQC;Hj zi|NBhF&~yD(@!C*RE?fm*6o=0>_~KNOoW!<i1Z$F{48)K)>(1E zV)i#Z=Wnjx)oEkf`F>_kikn8-wZgeZ7q6)lpR_;0|L5q3H^F-hrX+_|NbEYW(=<$q zXVC{!k>(g4LvG#<&1c*n&i>3h(;Oa|)+oX0vuMrg&_{=qDwC&_$LoH&SsvP^+ZoKY z^>Qvl=C@YHgk2jmh1Qg5++<7^*8C>Rwo|!XUAAYdSz5h`#m_Xkuvn9o52tT4>T*BK z@VxT>x%#sV8)db&b*nTTHB)JtR8SByHN(rjifQY;4ZGMD{9~?YN>*gJl6K$ZeBKl( z2Tks!B~xCxuC$xdWwQ2j_W9%4lLN9{e)4a7So_j?nafjPR#Po;jVMV;EJ?LWE=mPb z3`PcqM!E);x<=+91_oB9hE@iq+6Kl}1_rg;RYXxV8U}fi7AzZCsS>JiWody{an^LB{Ts5sax1@ diff --git a/deepsoftlog/experiments/countries/data/raw/flags/CA-32.png b/deepsoftlog/experiments/countries/data/raw/flags/CA-32.png deleted file mode 100644 index 805e52d7181f84aa115bc3cc8f6aa442d52802bf..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1136 zcmaiyYfKY)5Wu$xh?OFVmIMg(5h04HS;58^g3@tr9@boEh1!Z9YP_b5IBrpuoeD0s!{qoWWL1F^9%F#*%lBoB&GNt&FR0cUMn<5h2+GT0 zco>XEc<=yxKEflWQh{0xv$G_5aWQGtY6ZO>_U!|+87eDDMFbE-2DQ2xR<8z;h>%fH zuy!ptouru{rcjWao29Sso?AQX~Ad_2jFT_J!S;_zo?!0iT!geblODjpIN z;ObRU2!Y_Z@TI!CKr9A<0761w#R@WHGzLe3D|Y_!C6tvxYb!~J+T08k6=XQ*Lcxl7 zz)|BIf)-*0lBBnne6MeFJG<)kcKl1$+x6NUSeReoLwOQwl1dhy+p%hi z;>4NmI^NCSaq|9F{^7O@zBYf&t-q=-o!`G(#~2lcOp`9db$*!2I?>j^ch>X1rmkA9 zk^j@dx3>uE#4}M&ZSv#f&Hh7ElFNCO$E)T7pJ$hPy`kY@r+%%gRbSh9`rH|3cD>_l zezt}&WNQX9wdpw*Jnq&uR}<%IX?I=x&2?$N?lgbRd+&yU`~7}~lDmDYkmK+8C9fJp z9!FO4fV92zLqc-PUeBv{&dKqACZA2_H_=B1EsYyJIkKBsYPq>?EOVgXkGGFnQhJ9pRc@f^ zG+9a-E!#wINu%kX@2(dw3MjQ%ezaEocR=L(D?SW}B^7dPR{Jq?8B3*GYzNpino@Hy Xt7pxYsv~{uPJ}3pQmgQ16xDnM@EV<% diff --git a/deepsoftlog/experiments/countries/data/raw/flags/CC-32.png b/deepsoftlog/experiments/countries/data/raw/flags/CC-32.png deleted file mode 100644 index 516fe3e34399eb333574bb05fef01df75a6a82a6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1009 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 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/CG-32.png b/deepsoftlog/experiments/countries/data/raw/flags/CG-32.png deleted file mode 100644 index 3dfe2e8d0ba2f517c5f74f15064cbfa5c9049e4f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 665 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7E^DVB6cUq=Rpjs4tz5?O(K#^NA% zCx&(BWL^R}3dtTpz6=aiY77hwEes65fIEC2@ErnQg%jsyYKVsfzOWzK0krv9k1W70)E``dYmZBGCzS~b|S~T zgsI0u{y+BqdEe*fUGLxT0>2z|ylW?TO_-4pWJ03mir8~k{r^Ap`VLg^$oKc#z&BG2 zZpg7-6J@%o$i_53A!b|Tr~5u%?*k3@{`J!T=RNNyY4X3|F#TA_pZ7su4mdE(O4ME%d;Y5b&xgKm zCL4rrjeL90_i3)uHGYQw|NrxyHmV2ukuk~J-Nij&@5yQ)hqJ&VvKUBvfU(=jY&#%h zy{C&~h{pNaGcU!Q0wh`!r(AMa=s9_xNucM#%6aepPdb$-s=oYh`To}nHEK*Idu&>1 z@;y#%_UZqB_5^5jy_o(aXlKyTcT(%GNS~ed{dDeD=2+cd-zApX3$)AGU+VpslErlH z{2I&GpSf=v#xl%_-^94T=_{Lp%#jZh75eyDKmIXS_%OfW2s`7<@6Gl$Tp5YGxhs}eU1IrLYQ!5h-D-hSj%D`a5r*{r08glbfGSez?YdE+*><>@_gQu&X J%Q~loCIC{C5VQaQ diff --git a/deepsoftlog/experiments/countries/data/raw/flags/CH-32.png b/deepsoftlog/experiments/countries/data/raw/flags/CH-32.png deleted file mode 100644 index 5db01ef20ebcb9a57fe1ad483224126b31109cac..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 404 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3HGD8EPYe6k~CayA#8@b22Z19JVBHcNd2L zAh=-f^2tCE&H|6fVg?3oVGw3ym^DWND9B#o>FdgVhl^2IT#;v8!$qJeBAzaeAs)x? zPTlCm>?qK-KeDgo?hQ>g>3D^Lxe6S1S4+chb4JBJKh4qTV5O*^Q0(FJyh>xz#t%07 zySj?1x%^CZjL+DAK5wtxeRAKWgKFK`FDK>yNcMK>U)2>R`uf#B)}^H#TRS{T7!GoF za6Hyg*R{=jDVbiWe{}zngug!ozEm?WSoKzr;ceg2I_@LKZZWRaD%-s0U6_QdjG1Hp zz9cs1JU@Sd=ZhF7giG43&GYpBzjn#$y@DsdowJ|3aARL;;XcQM*De||lwbD#Q*$jK zVNEx`!*Tn%2WRDvSscoisQ;$Z6X8=G6qjqKbLh*2~7amXq(Oe diff --git a/deepsoftlog/experiments/countries/data/raw/flags/CI-32.png b/deepsoftlog/experiments/countries/data/raw/flags/CI-32.png deleted file mode 100644 index 71b5e95c87e15b4170a1b0e8f0cce46ec36e2b8e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 579 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7E^sa*j+A+GFa*?~;fv#iMI|17cp zuO9pdf`9)&B#;Ke|NpygcS)U!C8<`)MX5lF!N|bSNY}tp*T_7?z`)AX(8|D6+rZe$z@T=! ziYSVP-29Zxv`X9>cwWs}3Dh77vLQG>t)x7$D3!r6B|j-u!8128JvAsbF{QHbWU38N O5re0zpUXO@geCy_T;YEJ diff --git a/deepsoftlog/experiments/countries/data/raw/flags/CK-32.png b/deepsoftlog/experiments/countries/data/raw/flags/CK-32.png deleted file mode 100644 index 65a2b29605d04f7304142672557406ab7985ec2f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1616 zcmV-W2Cw;vP)q}IrB}Gm1(yD1Amxn;2w1P&h zf^s1x5(Fo-lmuTC0|w(EC6wUt1$*u@XXcza=j=Whr2_S(5}&lCEiLV}el7jKwz%@* zE2a94eR|9dh!+nG$=$n70(k~r`j&U!)iKXoNHW;9MgH*7gEH9D#J2VdzPDWWHmqy( zoE2T%zw;gK#JdR*T54dr3V`~6r0hW|X(I$gq6Ps?Fjw-p5iM?Sc-EMV$qp?i?%KGD zZ4Y%bmCn%GQYBW|38~DYoQ&QgrpFd|;cL}Avc8sE`@2Of+$f)aZB)Lw|B48=85CSa z)GyFIK`NG~WI6PIp`MPV6-=B?W6qYSi24cpB_&6JSQMc5Y`??%m)|elpq~x1NqU>2 z9DMb0=5scsfm3*8m#tgYvb|B#w7MOuWf|{{UgXqhjFu%~I=e$$h+FtV5_77Eoq^Zi zevpxmF44d7Hi7{kUAK+$1rYz^7HVwmlLft7&vedT?a>j?j}+QDR9#{oT7!+SdW)CDQB`!vY=q$CX+Zh z6SwT4H`PP2h-;PbJPDowhJ;V%`R2AAIF3jE#=SJJtY9{!z)>9g=N00UM>ur&QEFE{NX`9CS;zD?4vr&X>!igEKel&r5$6AVi*@ye-6p>&4ikhk*V&WXL za~X#722-Yun>TrR{}|`blz8UnYbclw$A_mFp3G8PsbMLQfG!|qy7ab%`BGmC)zJ{o z42+=#1@eQl)3Udxjm`Cv!r$KJ=-xy8=-Cnedh|3tUEq&|dHu~3?D+8>PCEf2%}eMr zKc(g5F#mXKobxFMiXQiWeFL9gx0K;`uh3j$khB%~vLahnq-;e~mBGmS)2vzD%mdr| zAP-6@w84G9+qvXYOpd=d&hFt1KN~A>c65%r?`@|wH;0`s^6&aKo`3G|?Anw`wY`ns0tr*@dT&NUS>Xz9}5MCN?j5kPa~@&o4?V4xSD0~P=fw#4g7KU z_u2FE5uW?SD7CA@ByPxjjbD;HSKuc(Id1nfIp&9 z7nDq&&fwPtfB5YVnj(_?`66{8NyHFT>VmqEBpUN_7-ytP+pLa4UE9-$KzW zG7+0$^kfdIH3aQD|5yM23tbcVG8X2n#l(fDIWztV$BxJFJcV6$35EQu?{4LbcXrXy z_G^d=jD{d(SKS-|D5&%adeSaefwW^{L9a%BKPWN%_+AW3auXJt}lVPtu6$z?nM O0000@#DXT z2axlhhlh*njEBdC@8AD`#Bl?lnjb%Ks{tAaM?jO|2xtWy@$dkxgCGWmGY|x{otqoT zJ`J=PA|fn&R#fy15J^g&1&YJ%1~0mjB({|9g5u!v_>H>`=tW@t+$JK0b=`CIh2NuO!GX z7)XP_|Nno1;MX1|hCln5K=JfvACLj!py0Jw->_xVwvDD6 zjT@OAg%#NnS1?txyQ`;*hYJQ878+ViFqqh)T~Pe}!B!vsb?Z`b)LMHKHUXu_VKd7c z7#LWY8d@2cY8x0^85q=VR}n?gkei>9nO2Eg1JA2DD}fp$K{f>ErbP0l+XkKC6l7Z diff --git a/deepsoftlog/experiments/countries/data/raw/flags/CM-32.png b/deepsoftlog/experiments/countries/data/raw/flags/CM-32.png deleted file mode 100644 index c81ef945285c7d75a8bfd045dd9490ced6d41e92..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 620 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7E^saF9$A+G=b16d3}5{?*VGVsh~ zV3@_=F@@oW1_Mz3KMTWu9)|xO4F7+?lrb~>X9bIMgVg}poDBcj82ZNd!y85#Zq9RoDS11th`rzjW+fNcjl9*B5BvPzBa zbAeuED+%%oW?=aDPLQ#GZ-*vOgtNdSvKUBvfU(=jY&#&M-_yl0MB{vN0yAS7pPycy zTwY#Wo?RWIBO{|4W11LSn43Vtf@MsKiGqPPTt{{sRaIH~L1V(RX%nYTejavUsY9S= zq?_y1+0nkT?M%GBy1BBkwt2P8F<}x#(vq`h6wQ9P>Cl~~+m}w=YP&7AT>0&ex3V&G zcg!u+DtK5{TKxUMTkZsh%BsrW1-~zu=xxwuU}*R(@$^Wc>;jUO_QmvAU zQh^kMk%6I+u7Rblk$H%Lft9JDm4T_Yfw7f=LG5-GQ4|fi`6-!cmAEzVyqdETs6i5B tLvVgtNqJ&XDuZK6ep0G}XKrG8YEWuoN@d~6R2!fo22WQ%mvv4FO#rjp-TeRn diff --git a/deepsoftlog/experiments/countries/data/raw/flags/CN-32.png b/deepsoftlog/experiments/countries/data/raw/flags/CN-32.png deleted file mode 100644 index c8645f9073f5898a36318eb09e67821963114aaf..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 672 zcmZ`#T}YE*6n>UJZ02f}Wd-JtegreVt(G>ToNc*9j5$Yb<;6DlDPcOZwKZ@TnP@Q= z72brYgp2T^^^0jFcr#*wuB3~u47|vG=+EdvN>8Uxx+nWUx(9NDa;3Gkpzojs&>0E23REa5 zvYa2(3+e$yB#BXw2vSOx7{iv>TM@_!ssp*C&6yyM^?#xp)Gu+DY%`vNH!y}La>;`< z)ES09@ke9_?A987SukWoUQQP9MA2e)o#twm@?ffQA2&BGMuVd`J&}HDZI|VBycn3N zx>Hmk5RAcf`C{FWVy4M*AV zmVn6_@Oc8FzOGf|0cLv9fV#jMPkC6J03x7v2m%@c zK@1F+fTn>BEC8AbF&1bt#BiYbFe{*L_;CzqCKLhP<6!|b8IC~CLq>30V0Hm50$K+} z4;X+pA`r5TYaG|f1AVSr666;Q3IZ7TUC)9aRUT}u2P)<)@Q5r1(jH*!b~4)z$msEO zaSYKofA);4(4hbU*NgqTce8z0*|ED?;deZb>)yog4T|YCueoMEoo0I|`-jkf0S%q` zkIdNwR;*bdWz;IT#rm$C=u7vrhAhnwGkkm=U2akBOfZYrS$Rb(_pCxh{x)l^-P3a{ zS=t}J^m(e!S}l0+Ygv83()62wjte%fiaHzV{-Nr1Pusnct##Hl44OY8pQ%)qiUZxH zTH+c}l9E`GYL#4+3Zxi}3=EBQ4J>ty%tH(etV|893{15RjI9g|YPYM1qG-s?PsvQH z#I1qn)tr?;4U!-mg7ec#$`gxH85~pclTsBta}(23gHjVyDhp4h+5i`78hc diff --git a/deepsoftlog/experiments/countries/data/raw/flags/CR-32.png b/deepsoftlog/experiments/countries/data/raw/flags/CR-32.png deleted file mode 100644 index d59b4b8399760fcc76aa73c21e8439a77d97a5d2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 726 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7E^ss8~!A+FNavw=(ohKb!1cm4nW z{~r+V-u)jasi^p0O6q@i_uv2j_w2vIz|f~;HyfxJj(}R=2&fm1fCj(;&@?y#84E{1 z^Wg|+5gY++grn|mpzRO@bORg#9Ro)|SHTg`d2j^w6j45MPZY@l`rf@H$S)Wi4hZ7U zJ|+foaH3W1I-n_xN#5=*Ed3cb1A!dQ0*}aIAngIhZYQ(tfQ)ILE{-7@=X)<)2OC7#SEE=^9w-8kvU}7+9GaS{ayX8yH&|7}Rc85k=9Eo1c=IR*72! z&#O5rff^)1HU#IVm6RtIr7}3Cxai6azw=Aplx0DL+g@VOGdSLSY<( z(WEz+=pzQ;#>ZgL8pEKEPo+{@q0~Zqdnl1?xV*VRd>p4Ru1-Hap`WI(ZRoXqd!Zmq z)9<<;#X25v!6~G{lTfjO)mX5aVL@c9FnAF`wIH;~flv#CD!xdATs8$I_L}W?$(M8x zX+T6X6R!b42>`+^0s#Xu>4?+rdvrHC4U_YRmkS2{w83CP{|Ta+$L0 zOm(-y(jU|lTB^0?!9lpXN*RsR`SUc{!vnH8$i)c!NFWEG&Ymvh%YO>Zxps|?H824A zd}w1s->|IB0E`0SI4A?4)^1Drv^(T-p+W%*j=(_- zxj{!qlnG_$fEq#(n(DZeBlLcu5jc?W_u-;D&!WwW<6Ar5Xb9`u;%S<romYlAi?uWh~xt+gMSnv`aSC~FI>BV!G&A*3v4gb=Qq=`*aD zi2n|GV0j5KQQYMpa+lCyTTyK038Z5!|A!9?_aK5eE^2T3&VETwvLyZ2f#IPi_iRa5 z)$gh$F6W}+qr}JU;Dms6z~s^{+9BjeSGWUCCrDc7rA9y-EK2*UR9TmIuibu5C(!A2O)wdHHL*$Q! z3x46{{M@Jh-lg|&LZ4bJqsl-3wo(w7sXe+`oU7!$X6@g`xh!;BcYvbcZj0i^DNle!(I6|2uF@jn|Qb uD;*(Cc8ENcTPy{8^JRHb@3>>Rhoz~~+jA5L~c#`DCC7XMsm# zF_88EW4Dvpb_@(mZk{fVAs)xiPCe@#k|=Vl{`uVM?2>nL4YvxGcivd!dQt0=>rA1J z*%^x4G`kM?&i>b|;hl9+jq8@`mduNrlr)+;7KrIC646t3Pa-31+gqHa%O zS+)A0zmti+kKc|JPFk!Vf86&z@Nv&6f1$uG*TXqs79}eF`R~*9;%}Y(F~iv=?_;fN zY4KAIrh+B~t=lWshc8$YFImnQjl$8@K2j|;M!R=KpiT6E}|k*iBV ztfT0fR`!0!Pho3yx)+EzvTxiby_8XX8^_6e1a@ zUiZ=IXD#EKVgqM|I?cPRxAT$`mOHc`tYPZC))wEjl5gh$1-2OR6-$^56P_QO&vf$O zC%51OXB~|A&2Ba5g=c&_B@*#KZrhE{O`BaBIbJBSF7Bx8F36etV0A#jpBD>4at_^O z`OSYv{o&KfUmNDVS)({t@6tungFhm4s=v$e=u+CTPP%*QtPL)!KfmydDBG}( zFD>m^#`}LxtJG4S%szd!@%tRxz5SDGoooK?>rU5Ko}{_EQnG4Z@HPu`_I>MPq%+ib zc;Cua9=f1>mm}S8t8T5!wigd7>-pqZ6jt{p>oXd%8%a7IaV(v8D~iKeL&U6Q>m!SQ zoU8Y~{AD4nTmwv6swJ)wB`Jv|saDBFsX&Us$iUD@*T7QO$UMZrz{=Fn%D`0Hz}U*b zpmw{8D2j&M{FKbJO57TFUd>qv)F276Aviy+q&%@GmBBG3KPgqgGdD3kH7GSPrLyp3 Rstr&PgQu&X%Q~loCIGKHR3iWY diff --git a/deepsoftlog/experiments/countries/data/raw/flags/CW-32.png b/deepsoftlog/experiments/countries/data/raw/flags/CW-32.png deleted file mode 100644 index a9f2ff62a4978f0b0097cba00cb614f5a7aaf62c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1005 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfiT<@Ck8c(5?rHaO>4GNH@6o z)_i!N`Tre5TVp;0LzARY9Y_|2c=YOl2&fWBGDtN*k#qx4qq|=<5COHj`Br~=qzOkK z?rVO0sQLdr1JF!l)ZUa2M?kyUnn2dU5zt;_1attSRy~JuHM0i7J#YpBxlcLU?{M#Yi3|B zWzuPYdyriR7!(Df2K5~iHtaugB_U@vgH}DOPCX;oWM-XuWecDqEB79{^#A|=_Wtz@ z4CNv)!}$yv7+5QF$`-WuZwQW_#K2w2tq(F88fd!p{Duues?`h(#lkvuJo-psDA~ZE z*vO#P#30+i0A#}g780bGBs^^4;Rz2(v;dS74Sx%aTCC^ z1tI^#MZpZuS$c{{mZw~#S9o{1a*idRMi?HKHUXu_VKd7c7#LWY8d@2cY8x0^85q=VR}n?gkei>9nO2Eg1JA2DD}fp$K{f>ErbP0l+XkKXboa- diff --git a/deepsoftlog/experiments/countries/data/raw/flags/CX-32.png b/deepsoftlog/experiments/countries/data/raw/flags/CX-32.png deleted file mode 100644 index 65ec36f33f9b72dc08ce9c2f2a2ae0504e92d54e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1357 zcmV-T1+w~yP)(r36A`q=H7cg7c*%~02k`noOADa{Qu|s{@?$I_rxbQv#DERi+%wy zXpjX3#PVO8BQR)TM_jpH5q=G!*@3Ep)Yq8u*_@1iwvDlquTs6X88Jn~EdmDA{A+Lp zy!v28OnJY(NM6(WVvLA7(pdP4z)Zj8Q2b2=1 z&I6B93;pwHW$)qu;|s^Gy1d-xqf-vYN9ukk5au=N9H zdxa-|kMd@Z$Lg#l6|;0?Ew43N3N91@p|w*RJi!Qz%_yR<&?pl=*qDLwDwGtW2?_~i zsC|Twcm2dm>o4Fs9;GsTKNO)Dzzh8@_eN^D*ZQRz4E$CU4lfPayP-_r3uh-B_Fsr{ z(gznKObq)_QOHN?;t>iB!j;}CAAGcud`pt&o;{0cjld5D9@&%O!%IRe@HkThqwrRH zK>HQL`OxA5ArMjc1K8bUd9WqmyMYK_jkp}056;<1*=04%1es zOoc#*&PrUc7I1vZl-QPo-s{4*Gs4ds0~)+B&YL7pMKd%z;9!Y5N^=wz#gxN+5x$r- zc&^gy)Wqv6xDc{=V-pLqF`%Ec=Q4RNWXrA$vBwPi_FN>M5m*+*ScTA~=lpthKl3H) zn%j}6M@wdapSxd#!78jeK`v%UYL@Z9aH?oIK4Vy9pu?mdG`|AHl3lYmY$32+3{Wngy3!+CRp18 zjb}h0VKXc-;A5%I^NzW=F6-2k3#u?3)_yi8gq!0b(=&?XT-4rbHE9Dk|8!wdKs*km z!3fzlpGi@i;Rxxd5`TDvNP9QZ*o6f&%-qq?gk_y7Qe$SdUc>`F>3bYZ!eO$kx6u}$ z;3+q&!c++PxH3`^0tImtWuCKc9UUv-eV|0c7gV+M8ke^a=u2;-&;Q)rUA`upX$Hdl$5BAS9u$?*_x8 zWx!Ak@BZL~%0Eoj!05UK!GA%GUEiyM$ zFfckbF*-0cD=;%UFfe_$BozPv03~!qSaf7zbY(hiZ)9m^c>ppnF)}SMIW00bR4_0) zH8DCcH7hVPIxsK{>YS+n000?uMObuGZ)S9NVRB^vL1b@YWgtmyVP|DhWnpA_ami&o P00000NkvXXu0mjfNxWQc diff --git a/deepsoftlog/experiments/countries/data/raw/flags/CY-32.png b/deepsoftlog/experiments/countries/data/raw/flags/CY-32.png deleted file mode 100644 index f872ecacb13c23f0a86226c0baa10e5d0c329732..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1130 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfa)O_=LFr|NkE-0whTX|4_96 zxo9FN^8fz-0|6ijW1vWr#(~%cu?}e7Ux=wF4*2~EBn}5ZUjF}l_5ZK8P&I#l{r~># z|JMiqzuf$PHU9sd_W$qC{C{`y|Dy%}@3j5D-~0c|EtqNl{{MXa|ANi`Gur=8GyFdz z^#3ID|C4P0k2Cx~CGr2&9=Hu)#_#`^ll~oL_;*I~|4GjOCmH^o|9`*# z|BvLJ|NsAdy!!XS)c+T3|J`c%_i)z#M|1!E`Sb_qs=vP>X0E!idHu~@-#*>?|L60o zukU7@opP?WK+^wEbW#~&R{*d5z(tnKCJ7eFb9nirp+Z@#(l z;>!z19v|6$Yx|d9U*LKn3{3Lz>yr(@1YuDUYh7ML)4n2Hufp9|&&CWn}Me0|PJoN44@Fk71T zBvC*IlvPzrTq8hErLK{Ah=GBXsiBpDskVW!m4QL+b`?<+ z4Y~O#nQ4`{HSoNevl6I55@bVgep*R+Vo@rCV@iHfs)A>3VtQ&&YGO)d;mK4RpdtoO LS3j3^P6&Vv8 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/CZ-32.png b/deepsoftlog/experiments/countries/data/raw/flags/CZ-32.png deleted file mode 100644 index ce0c31e6cb6036c4eb924600ed37875caa2765e2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1148 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfi!__=LFr|NkE-0wn+c`0?Mv z1IYQ$!_(Vy`@@HyK(T)y0FuN7goV!v3Z7!yztVU^pWna7I@4EYNCiuk#nqzk|yHrGSW$@r<<8Sz%#> z+u#m^D8MiQ#eAS?5JRL;4S|RQt(E~ql4?)%c;=mAKg#-dn4afwL zM=r-R?YqU41{D9tAoPz(=syoPBxHbUPz+(3^@CCMAA{IG26mugWE0{*CZt16U=V~@ z0VG8kPP2m?aA6rpuL?vj1H;86roDHVQsL_7GA;bZsQs5g9B8tu(n?LB*`_5ye!(D1 zfZ*>RF!=pOkn!I;K}hU?;^Lhk5P^hHu*r^?nLtg9N#5=*3>~bp9zYIffk$L9kOr|m z7~D=~+W{5Gd%8G=Xq-<@c>dtYqh}AFIx^NQ`@_W3)T3}9AuTU4D>F4WE4hoM#i!LZ zfy?FS5ml9?OH!AlEERA#7ZS&~?7+2i_YPh>dFAF&(USrx!guc2+U(s^TjTrpk1z8E zO%5I&E?Bq^TfNdaTR~GpLq|(bQ&)TaiZx8kXSH;5#bkFhy_$7v*RQr?%brcUX2x+L_wwa* z(*{kAjQ20zyn6TY?d$mlg+eS6env)V#*G>?VvJK?ZFy;&w(ab!yJpLIyE%)WpN-#8 zaPg6<_jKL(i*3FKPlc|&z9u(%yWB!q--B(vv(55vcC7(2x4q4^E?bo09?HOwvT~x- z+#55*fMKRu;u=wsl30>zm0Xkxq!^4042^UREOm{{LktY8Obx9JOtlS+tqcrmx2uSv zXvob^$xN%nt%2v&oRvTgk{}y`^V3So6N^$A98>a>QWZRN6Vp?JQWH}u3s0un02MKK My85}Sb4q9e0Ft2>4gdfE diff --git a/deepsoftlog/experiments/countries/data/raw/flags/DE-32.png b/deepsoftlog/experiments/countries/data/raw/flags/DE-32.png deleted file mode 100644 index 2c4b551ddc26bdccbe8af0723288626f93b439f2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 742 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfa-R_=LCuxrz)7dl(r0Gcf!G zk|GTMOBw!OV)%cW;r|&BLIyyUa0Ju>M?k%B1T+MW{tGie5zts6hW|w{RLJnZjNyMC z!~cs&2x#dAu)RR5krCJ#5XX>8qWccw9=J2$wnMA~TeNSh({Z3SuaY3YU?ji)*~i3y zj{k!M{(;HAC?qQ9|DU}~)vu2l0!`yA@Q5r1(jH*!b~4)z$e8Ep;uxZFe(BjzzC!^b zt{2;#3(J9^T`TU^PyQC`hToIa*1Vrv%;BAwE_>vqQp+Ft0+GCPi$DL`qVqwd&TavJ zn}UGGA*Uk(y^ab&M~=1_&TLZ9y&E8@nSJW%))hmx6 zJ$nOmscMO9L`h0wNvc(HQ7VvPFfuSS(lxNuH8Kw|Ft9Q;v@$T&HZZm_FsR+GB8s9R zH$NpatrE8eo>y~L0yRj2YzWRzD=AMbN@Z|N$xljE@XSq2PYp^QGVD1?}9yDfTwpvsz3rOp2+W2f=_%nSW zNQ?Yv2w;((EYcfmp-;zMM$yD{jq{TidS`nH197?yRA(T+X|)sV$FU4Y&Vuw5f2OMkbI{ZcvKktLw7ISi#4Eb6lP-<(rwOR|91^QR zT~CudDFQ=6(SvsF4!AW0`OT1A19^>fInBSCpfWUKd>odSai{qyn12YDZo-~A>OdVF zM6FOUm(fU*38Yf!>H?<|n{e?X17(?o>UL{d^K{nPnatKzqY-0cAd!H$= z^%MH1`aF@)&+O+zt|Lfy*W2OqdD1da)DpGSGj%nxKa%Jr_#~fi=C4qpgCq>$(88VU zJ8H!6OgyA=C*4;b{ZHHd%3mw71a{(Y_UDis=4#RLcK{iHabL49kK|!cHjs=Z@W=pg z9ra$U!9Q`hRxV4$of#B3%H2^6{4t*Ehznz`7`n97%TU|iwguBzS&6&jxP{k+$$0QC zk|>YhE^*CxV}3LO5)wjqn z&#Rk#wdd%&r8>vstTe&B7iPBj@Ol30d^gOU+#Bvi&}(k0@vHf)(lK$V+SFm-nlU zgBnxX7i4-zsd=Qt5^>|b>G-hllG7Ez)zYS}L*|jrGDCmHHQUUXr(2_=d>7`$;>pi>#yer#HTw@m=wwk*T42Hs|Y;qun}-Re#Mk z*BV_dJwD(z`C-lG*L0<`_wr`gNi7Z04P?zgDf% zYDC$^8r+Cb;r7rFVPr^XghD73g>4rJ!-9mbh=jtjuE6#GNhl~(=jG`BKY=sdd=V2i s(G^k)bF}ZMiZw)xx-d&4NGMR{YUCP~T6fr}i9!&OAeO~_6`NV{5B9OxRsaA1 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/DK-32.png b/deepsoftlog/experiments/countries/data/raw/flags/DK-32.png deleted file mode 100644 index b60894ec5fbcc76ab0a4c4949e46aedf8d8bc5db..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 600 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7E^sVxCMA+G;{3*V!B zz+)3*ez)}p)$EgH8z=v5Qo8p~AfduW^IGWMp!=+|=I9?3T^zmUrUU3`-I!v|1HKHUX zu_VKd7c7#LWY8d@2cY8x0^85q=VR}n?gkei>9nO2Eg1JA2D zD}fp$K{f>ErbP0l+XkKMdJb| diff --git a/deepsoftlog/experiments/countries/data/raw/flags/DM-32.png b/deepsoftlog/experiments/countries/data/raw/flags/DM-32.png deleted file mode 100644 index 0d6cf59aa7636c5a1504b979481dc1546065a20a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 928 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3HGD8EPYe6kC$Fy9>jA5L~c#`DCC7XMsm# zF_88EW4Dvpb_@(mJ3U<-Lp+YpoqF3lBv9m7{p&M@d1@;w5A#TG^zl|TDB+5C;pm#z z-1SPaV?qa4k6wMlPaz>!Hb*BG+i#QfBl(lK6z{flY*_Ze$#~Ynb3KcV)4v*IsouQA_KG*9cb_y4DV`LxWTzSwsC`2p1X@An8 zaQHHhX;bzl@jTH9D^9V>Ke71Sk&wZ_5j!bR+o6$pV$O@73rs3oE`>Ykyhyva-Qk__ zj2pbpoECwqB5sMNjG8B`51w|oYx3)j%SOxv6ZW{C-$<~l&8OpSBo5J3(+{Y+i&T*@@Y?sD+&^rmzKu8D{0)XdgiuY zVz@`a+pmr11r%=B{P&+ZL2k!V)rT8z`+A-hvRZ5rvN>~4&%0ThxA<4B!la3p1P{*jN>puYWYPTk_@V9Z`+J`L>#J&uiVymz#GT4{TI-r*CTnRq3QVHN8h|&`5jvR+Oy`Xn7dpQ%jzlWYg2pPZ(Nz%ex8}} zPVs$(i3UspyNs4U4d?m$r6yv*$;DIlwPh$DsSUWW+{f%dH*5Fg&^WHehMy(G?&=!V zaI@@p`@*m3rLQ-@nmi`WLw28kP6 zyUd;oznSsC>4QS}Ex$xpCj+Lye6h<`t;rRVx0fwh{Z^&+f49?}seKv^7Uy1RSX&%Z zPna}i|IdkW-D@P)b}W3E{YpJSj-h9gRN)_BYE~_AjVMV;EJ?LWE=mPb3`PcqM!E); zx<=+91_oB9hE@iq+6Kl}1_rg;RYXxV8U}fi7AzZCsS>JiWody{an^LB{Ts5ur!hz diff --git a/deepsoftlog/experiments/countries/data/raw/flags/DO-32.png b/deepsoftlog/experiments/countries/data/raw/flags/DO-32.png deleted file mode 100644 index 2ab2c56120ca2c41618f7f2d39967d768f0dbdab..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 766 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfhsn_=LFr2l5#h{wpf}-?QiM ze-PNS=L!QuzoOzC28LNcSttT3fS^5lfGQx0f$AYz!1_QMAqc1)f`EoV5YQ+%Vq}~p zCN`UaVe*3quYel=fvp7Dq6h>a^;%kU85pKLc<>q|wRi7-0|TIGjEwzaViOn`+8;c4 z3A5|cL0knVfr20aarTZK|37?q`0(}Ctrz$1z51V#@xPeZ z{|68D?77Im(5R?55#&cLEuaVk!$bpvd8?Ln$pS-1wIs+d7!*tp@VlM`7kYPPnl?}o zW0JSK3+s>km&bt|&H|6fVj%4S#%?FG?SPC!o-U3d8t0P(TA55sd3|+rWn*n)4IW&2 zn)V=(g^A5d<3c+Vv$Jxtu5fUyv8};_tB;c(v1=Q&GjV%sXRlGa;n28t?%w8Uizjbh z$tS__g2RZrQ8Yu5QCv6Nyqw=a;G00AAglI=21bAVd|mk+QHHvOVVoP7WHml~{mfr* zm5Ya~?S@9C@=-P3um#+#iVJro%0)dCoG4&^ddBHZryE6II68)G$?Mr2R*)leh6yeKUAIkNfPAA`;u=wsl30>zm0Xkxq!^4042^UR zEOm{{LktY8Obx9JOtlS+tqcrmx2uSvXvob^$xN%nt%2v&oRvTgk{}y`^V3So6N^$A k98>a>QWZRN6Vp?JQWH}u3s0un02MKKy85}Sb4q9e02i@F^Z)<= diff --git a/deepsoftlog/experiments/countries/data/raw/flags/DZ-32.png b/deepsoftlog/experiments/countries/data/raw/flags/DZ-32.png deleted file mode 100644 index 4cf5f733a9738c6a3ca66eff1e0947e4a14d4c7e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 993 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfiT<@CkAK|NlQwggxC8t%jXdLfPxGeCSeH%=PaZ@a54PO%=kBJ*1x-VA+`W@@dFLX zFbPdCcrVTWm4Trz&hqWs*Z+V0{&(fd|5vYo4q{9*mI12CG(B!B3-nb(s5(Qg<+~Tp z{=a$q@767#0ydy*x-omI(K~6b_cHuk@hY0t;cwTj`mbmBciOc7A3**B0(P)6;S{3} zlALek1sLL$v}>c@u3h=JzyJT+w?G9zi=@GhIb$VV7NNy^~3s9Ql+yKeYS2)lOK+`z=h z%y6oa@$qE`4qZBR>)5q(_YPk4JS91sNj%)VoZnwRUp`*beofd9b{00)_LjC*cNZ^L z*W^F}VQKOC6J|_#GjWpE)HYwoDz~(0?qz;?ar;6X6~o-cM5j-gHZ|NMG|V$pJLzkh zZ*FX@b8_(J5O3{k6LNyH-@kbC>fOt?hb6E46;|_`rDN*KHJyp`<;u&;&L0qt6cRE{ zKRZv^RQxatgZD-cPrtscEWiLzEpd$~Nl7e8wMs5Z1yT$~28Kqu29~-;<{<_KR;Gql z2Bz8u##ROfwcAxhQ8eV{r(~v8;?}_PYR*ca21$?&!TD(=<%vb942~)JNvR5+xryni ZL8*x;m4zo$ZGegxJYD@<);T3K0RU!L#oGV? diff --git a/deepsoftlog/experiments/countries/data/raw/flags/EC-32.png b/deepsoftlog/experiments/countries/data/raw/flags/EC-32.png deleted file mode 100644 index 05c3e59daab590288da216a5a4e9fd489b845147..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1013 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFffS)_=LFr|IYwH|Nb!m(f|L9 zFa|`N5v~Bv`1gD?RFrw>?u{e-FnYJd5HZT1||ydu^_Z>C8T zg1o{cGm{u5^zq-j#|5zhXbS{=`ow$ckk#CU^3&%s7gcFbo+fzdGTVV&dT-x~K@|M^ zCjdl${|f#8&vNyG&7$dMDLxE^9XTZh;ZrAurGzs~Y_L3b*x~O#pvfSWK)3z>&-(Ty z!{NQ2bBd~_pFCB(?^MX?>y3qFtJVeHzOC}_A9Hv2wyv(N-95WHn-?6}k+i6yr}*}^ zj0by^?=PF#Hs{3d@(F$Y9i4l+yS6egTx4dx$iQ$}Rr&alqm}EDTfHxq%3RnMdOUDX zblKSx^_i)g85pkd@mx@lIt@gcs;3zk&YZiNzpJrpO+~rS(nWjnviCU5xOgku*Zlw! z!&xP{Qw$7eL5T6Jh|oC(h6C;0Q`T$s!jPCxa7vnLcB^>>)jQtF@gV*T?BTxZQ7NqPy1H*qNhX1S#|9KhyGcx_>X86y;@SlYND1LRz zAxB_B;VkfoEC$jZVC;4>+YZS1=jq}YqH#VsVS!OXN>W;4YVz{~D;p+rdlVRd_+a!Q zaq=^90TCfFK~dr96Q&$eJFk0IL0MaU{el%s)*M=JidQt$nW2=|S2tHS*0z?}S(z{?lWE4x=!mGu+c$3Aw6?Ia-0i>;_@Re-&;S;6CJ%5@GEqXNR(xy*cr?h~IOqs4+ zxpvju#LRU2mTgVK$lZB=+onn!C8<`)MX5lF z!N|bSNY}tp*T_7?z`)AX(8|D6+rZe$z@T=!iYSVP-29Zxv`X9>cwWs}3Dh77vLQG> qt)x7$D3!r6B|j-u!8128JvAsbF{QHbWU38N5re0zpUXO@geCy{O1;kj diff --git a/deepsoftlog/experiments/countries/data/raw/flags/EE-32.png b/deepsoftlog/experiments/countries/data/raw/flags/EE-32.png deleted file mode 100644 index 308453dcdd95daca836466315cc7427a008d7c17..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 837 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfiH$_=LDJq@4kZfXKAd3>g;~ zO!635g~i3i8yXt^|NsB*-#;J;mIW%nM5jTzAPA@zj(~>15y*5HU=;=$4ndMI0JIAT zT3cJ&V4%Lf9%4JtYGeR(3>rX|C7uoQ2oWx46^1!e65=|bJAoEKoB?F8EKoQA^ju&` zkY6y&lOX#4Uq@z~7$gA<*1z`5e}G0=GW|s&5h7MhG8ZII0nK7e@^*LO{CIQe8z6_X zz$3C4NPB>>+sSM@AY+fGi(`n!`DBhGToo0}KP7%hHa0XaXi`|?;9%g<;VH33!9qoZ zTR@OkELn_Qn}fUm0F#P}^3sSU2e}q4O5VUAc{9Q?ta3w>#To}kL%+^I$u$ac+5v&R z;mN`5+7~=Ljxd>QowVg3aOMJ1NcT$0EXyxFAKk9z~t>5|nY zJ_)HlkIhb7E^IiZtNX0FlPov{bFVlLm=5b^Nc#Ahd8vW7jF`>ffuaee$O`*a2m zMur&Q{vM&nZq`75sFt`!l%yn;m8PV z6$$}S{QwN^-Me@H{(Z0m5rh~R0No}kDhhNS9Dp1NbQ|1N;^P0fx&QO={1+Do34*-9 z_zy^OiT&pg12GsF5e|Ov;NSgw|6ja%b>hg!3#WmM|G=OC`UndCy?S~3%)uFF4^9R$ zAnyP7_wRvKoyS+j01=P@XWB|E9L7)`S&p_Xaib*JI7^rI*h>1%8xe)J* zi;MGs0gww6jCyzL7*MryNswPKBBU7py%S^v;s0R9|9@`<82|kL_lBSGFPMa|f$;$p zhbV!n7c-r(7-V^px4R4LkNlU%fgH{PkH}&m?E%JaC$sH<3b;L8978nDCl?%J+cCGY zLh^@%V?*NtCh?qx`>qZXJUJFQ+_=iibjQ|a@19zP9KrBF!?eN>?V7)Tn3a9f^huB^lra}zVu?OV2Oz202mCVNaxW|;tM+FXGPS8v|E zeEa%M{%14Fqauu=97TK@nmQ+|m6!R=G!Zty%tH(etV|893{15R zjI9g|YPYM1qG-s?PsvQH#I1qn)tr?;4U!-mg7ec#$`gxH85~pclTsBta}(23gHjVy VDhp4h+5i1@Ck99$s-IDIV>oxprEj4 z&z{}8cmD^2zhLkW3?4jtc>mc$(Hf`2qB8rWWv2P*Fx1+qF*1oTFfal&gTYB5ne}|) z-ps6`42*0rk%NNLW$e6yKsSIzjtEKvEjlVF4OBdxTUd#aNs5b0Q9(fw6#!i#D<-ZW zFAot0>Vjwl>OCbSvx#5Amzj-&fdL{8mpv(^w3mTlaYokuLx=Y6-@kj;E{J#b?A^O} z-@bK|r|jCcZ8um5=t&?A1W>&qvPXqvP7BFCU%T%ApT7|AL&(>A_kO#6+|P8(}22eOrG-M(BZQ&aX;R?`SAP1CUOc}4^udE?kASiE;Q6D6ub$qxaQgn^ zdkikDV@ z94G}w1;RkD0h7crKB*H75)%V-Ijd|LYwQFoZA5Dv#cG_85is!xRoRJFL&Z-rNaQ7( zFx1)$SK0DZ+A>txG6D5g*#gB^Td6t~Suxbvi&omQR)M4-NUqXW7_1V)m3mz99+;?v zOM?7@fng2|_5Z)X5ENR!|8KKh=ns@;O!9VjVM|QgQ48d77I;J!18EO1b~~AE2UOtf z>EaloaXvXgAWcM2R9O5ltAvWm(j!Y!kE9f8B}|$eE)X0d6nt!{gKMa7taGrBceH!B z|NR3OPTX(_=V$bpDS76MuFl#uxkqveEt(IWyLa&7$(u*7p1phc^6A^hub;P9FyLT| zXo{44^X83{)8RwPN{bgICp~^7EHru2;|C48eX>gqoYPS?)wNYN*4DFDH`m|4V8aRt zE(-8&XsmHTsB{r;Xm0odR-`2Hz7jIs@d--<#b@hjicot3$ zT$?f1sPxtsN#pdh^Nh>y{bA)6*Nxj$BFXbX=Xt6|?8c(2uS~PAuf4ya@bWX==kJsW_EsAyP_{QJ_@V*&$TQ5cIPLzy1(K9S39rkne!PkBAp1FQ=a`JZaCw(C>HGaf-9M5HMU-OI#yLQW8s2t&)pU zffR$0fuWJEfu*jId5D35m8qeXfvL8Ev6X>A?RFJW6b-rgDVb@NxHa&+nzIt9K@wy` saDG}zd16s2gJVj5QmTSyZen_BP-jA5L~c#`DCC7XMsm# zF_88EW4Dvpb_@*6@}4e^As)xqUWw0`S}Jq=FM=H=FaL|_vK7tpn#@I(^?Oc z7A2<>4_&`MOl5JLu=|BxQ%7FY7W+k)T(7u>H*(*-yXW4Nf`Cb4Hw*J_irqeUr*dEH z9QCwqN6*xK`0z(>pUwU6pa0d=?>E`%ZMQA>*R#aFuLigK=6v=X2b>w1Aqbph+=sQ6!u z{(}7i@e_CxmGdUBe`P#YelIc2a#>B7=4?ON-<=bErhHQVyxQdhlV5^F{-fkK2huB~ zlUc9GEt)?=E!u(k<$Htltds4wcg1e6s+^{uQdzfG)KP2do?9`BOciTx%spb3bKJj` zQ9{3ALYk-X+S)C`vMJo2?=!aF`y9%?=;7MNU7fP~fA9Lw_>?@v#ZSRE-BA7uf>c*XSOZTo2f2#H$tW)@#BKcncIcm{;hktLgTD{ z^dG;}rC|7-r*1iSW_Rno=Ns)iXXafDo!V=%#Q)W$^`94I zU%YZ>0XLsj`u5;ov7r;YCf`xlNr)X%e*F*hb~?z_VM4cj$oy- zFr|*yuh|~Q+zm0Xkxq!^40 z42^UREOm{{LktY8Obx9JOtlS+tqcrmx2uSvXvob^$xN%nt%2v&oRvTgk{}y`^V3So o6N^$A98>a>QWZRN6Vp?JQWH}u3s0un02MKKy85}Sb4q9e0Jsm!D*ylh diff --git a/deepsoftlog/experiments/countries/data/raw/flags/ES-32.png b/deepsoftlog/experiments/countries/data/raw/flags/ES-32.png deleted file mode 100644 index cea27b7a4e309e1fe76d3f0b7c330b2da74e8bc2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1070 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfg$M_=LFr2l5#h{_`;W_hR_} zo#Fp~FanCe5l{+_;DR0u|2@H4fFw}Y4=@5UAP8az8RS2(?Lb2yPJ&nmv;t@y909p5 zVB6sgi0wZZ{(WQk|Ciy<52imqn1Kus7bXSu7syFmZy&Q?-!6E0tLW=Tg8%<>B1tj) z|Hts*EyJVztOt!*k6W@oJ;?a>El3cAKzbRkp9_7mg5j*U>D3JjA3y56e%AH>e^#&* z^WUEg4>lIvOq1N?qH%7`@`s0)-CYy+?-x)P2T;M^Zw#-GmVa0(dzz1DnWoXhX`UaB z7XJnM^glP)aK?Xs7>=G!eY!*JL7L4e4~yF?l~0~Y`u7*8fDL3m(0AV%Up!R&`GMi< zE1MrLtbcxFeECobCTqk0K+7T;lDq_|4@eiVPHlSBPgaIvJ4FW7?{B^%le;z z1;~JKjhXCnfQi7UB*-rqoE(4>?*th^`2RaW5cT)}zqbO6fBye_!w+J^$^SsWk-6(5 zP#0%`M`SUO_5fqIli79*42;~KE{-7@=aUT%vEAsku#ns#;n;9cLi&N(vxljVnl&D< zzces3GG!I=P~+e@tE2M-q?ColK+Rwm2%O4cyf4yL6XPfx6PG2_OLA1z0gJmKI7 z=nM!=4sO@D@ZqY@M_*s>^C!-HI(x2h)`F+2*B)NQ9lT)r?CJ3V5g{=_QDJ?qjX^DS zd9JCUrM|hbwa&_7+9@@>vt~s{-M(dQwR>0f28*CG7dLEQUw`O`=j7!+bIoMC&Ci}m zKQqU)`rMt$&*C~UTO_<48k?$4UP?V3z9wd?RCa)HkB-wtUWUm$`Cm$9J*|M@qgvt` zQIe8al4_M)lnSI6jDW$QYhbBsWFBH*U}b7(WnijpU~FYzP`h146h%XBeoAIqC2kEo zujZ@-YLEok5S*V@Ql40p%HWuipOmWLnVXoN8kCxtQdxL1)dr}D!PC{xWt~$(69Bh- B>pB1c diff --git a/deepsoftlog/experiments/countries/data/raw/flags/ET-32.png b/deepsoftlog/experiments/countries/data/raw/flags/ET-32.png deleted file mode 100644 index 5948f54a9dfbd81a7d86068aaa900d71c98ba8e9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1194 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfgSD_=LEMWf}vKXr}RlCsGh} z|B2N9{|s>S?;j%^{r|^+Ko1!HL(qMO|6*Vy%D|9jjD$=X(trpg!iYddOzD;kX;y4$ z>TGEm4Cz*k=@yJ>MnDA+mjFreOe5|L3x*_F#uNtbG=H8nKgMJRhGa#a3=5zXPys`j zDLM+ZVvXikEz6bex)Z+eLBxUwlASk|OX3)!BpE`jpo&95x)9!ctn%yy!=AI%TvI;T z&i^`L-_gFk$L;2SVVnGM-?=iN)cwaQ5XIo2VEq4Ic+Szoi7Q{!Z9B5;^xS2qXVq*y z7Paj4!s7@3{}=uL9~4S||8al(W*55X#oVKtSDc;Ow)1TJt~1Ne%$<2;TkMi&Uw#<; z{l^JZ1`NZ0e>p#YvkaR5%6j(O<)`N~ZoSg7?c&l?^UPWr(#Nd|t$1d=n zk?}t>2M7Tf3=9i@Z~g^Lc~T`oe!>6$|Nr;@|KGp=|NjEw-yjU)1BGQ*gfRhCaTa() z76WMyFm^kcZO6dCXyfVP7@~1Ld4dvy#01MrMw^O0adlnN;F>b!p@VCvZ>)2$ceJ~> z;<6(L7A)syWovUgrnW5Ynb@>2wg5%9Y&ACNXzOZ&f`XEwvcl5h?;pN=`c~M`@$=VD zV*~aLEKQC91s)j@6)q_uB|bSZHZDD;jlGSw6O{#dCQT9!4!V5F*l6=6;o>62q&b~2 zJa;N>DibEmj|hkei3y4diwm3?!7BK8?X%jhUZHs3n3>sQ;cWzVKv+xG1UU&oAu zo1y z+8af+!*%2LroG+uReD-}%swW)GYb1MjYV>9?#lh$H+Og0`3Xe14}`6-!cmAEzVyqdET xs6i5BLvVgtNqJ&XDuZK6ep0G}XKrG8YEWuoN@d~6R2!fo22WQ%mvv4FO#nyU53>LO diff --git a/deepsoftlog/experiments/countries/data/raw/flags/EU-32.png b/deepsoftlog/experiments/countries/data/raw/flags/EU-32.png deleted file mode 100644 index 2bced08764793cf57011535a9bcd40243741017e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1269 zcmZ`%ZA?>V6h3W1pnM643g}iMDB-j8Lu|Jp#nw@jwopcK!|~Ny1cWlcVkO|{U|SPN zse_h#dkbzT(+JK)1s%G?2rOjEz8Ioo{#asW+!B5`jgmNaZku72Wy!tod){-NbIx;~ z_qA$NZw7Otxd0HX%#j!1&clDbKL^*W`#rS)>?zIuLIns(^f2pxK9-Q=iWz@^hzu1m zhQEmP@fa_`0umBjcnnM>!xBjlk*p*aq)}*~lPx4ULNZ$7)E4zXByBOZjr3Ll+nuYi z3HJ0sI_dXMwE*nCaWF66Hu;&Fo#9Zb?S={~fP2hY+F@z~7>d9~Ua)|SkvNNV-7&kI zaZ(2$!$cQr8;#NJuQ|fS1N-uAVtF5O;D{K)7|qr6UK`F!k@Z2c3;AQyV9#8U7>%UQ zlO^pTU$rK9fA4dVtWvuB`71&TlMog3xF9L@4X?n-qx+tk5 zC98kWemjKGXHF1pO~(OFhNm*QUh>}7X|jG(y#=MVwjLXEQ~(S%RCj5#Hb|jD*EGlC ze2N|IM%uAbXWH(5tia~c*cYqeD+)s-s+Uf&k)DvmM0}RsF4z1@7Vr(PYc5b}0ajng zIBoNDThSBHkaM63_Z-i^ceXYYfR(9~%L)^|tt{hkOd+b&`d8k~Y-h=0c}^?Y)78-* z=Chf{?NrF8r{d#IpCa@RE+mxw)~nML78K>brM>greE9r~hBrEV?sH?=A^qWs8bf_~ zb=Rlw|9Ed^VebBo?`Q8$|8)D8n-K?Dlg7Vw^U;4BA*63l8ujH!vxo?+ZI?JG}K44Z5k(A{Tb??iS5BJvbE}p%5`tsOyPM)kv z*P=F-uKJ8yKiRG(rFAPolIGG|w77L{$^3Xza>=Emvp*2u=tkwb3pG!u%fBxe7q3)5 zc8vWzzPxA+3u&A*E#I9qu6BIzQOK*3V}Cpg2=dL|p>}6BJzaVpxGC-6SB+1m#L4y} zFJ^APGqJpMy=C>r&4}Vk?ZcJfuhoN@t$+Rc;M|=vT*%IC5`_9EoJ2|En-#^)`toK% zTG>e81_FM%AcZeU5o8qd`BHJZlrK)=3#EL1+eBRCzY^+<`f7vu{}X~9(PuFsis_&= n8k$?m8wrrSyx^~6cFWl^Lw+z>j(m+LM1<+U1s?kmzcJ8 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/FI-32.png b/deepsoftlog/experiments/countries/data/raw/flags/FI-32.png deleted file mode 100644 index c06c8590333100367410f2c63da3d287f025f1a9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 580 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7E^snr2KA+G=b{|7RGzn1I0CAKBcK*I0&4vG_urm<&lwm_7`UGUG9V(mAtG+)fDE7^-@g6cw(}WK zjlSzSh&kSo7mPj5G3cLRGd%-hK+IG-&7gaR!Q>2s@fje)an*!ipj)L%g8V=<5d8n^ z$c&CH61RQ>N--vRySp%Su*!M>Ih+L^k;On7#P(otJDF_7PESt{&lK$d21Zv+)l|{cP)%1>i3g9u9wa_eJ;h=w5HS7Hg)5h? zOb7~ZX0)p_WlVFNz?3U+;o{ZH<`>MbT)o)FsF;{5C>A(@Nm;e6xX}SremS zp)zNf=OPh-ElmrQUkU_>XfrT8x@y*(IaNaw=pfY+*NBpo#FA92CwWnfUdT}2c{LvDUbW?Cg~4Lq;rtORP11lbUrpH@@ zsI5R5!M2vlO{6mjRS^Wm5JQtD8ea%OeKm?vqw;`;M14}jgNYhKqAz$U55$0hh(x?_ zi&IKKgc@mq(u=)VrgJ}g`!MZL0gcAXpPaLI&RJRe-~U?wlCHPjEL7jWQguqmzW>P~ zwr%|!7~!35kMqE}L%0b0YwzZ%O*@G!tmm=05gwiGW#PPPG7IiuW1>OzW+0%z@b}>i zW#(^jP9#*Fz9OraFOt>`%cb{9MxxV#GH0|`0686=A>M(Mytb-RT4OiM%oWSzY`9w9 zZu?#m{@aQ8G{#;{Dp&-rdnVqKq35n^;#|Ow@%xCK?`D2Y6(4VZmcijslCK=Z1cJ1# ziStO*OZB`)^0VqVaO4afM@|r(8exV{GiE@IC$s{25iG@TwnPf_4J6X7J;$-GOTh{$ ze}JDpyM*KY08e=tsV~0*?cg{HR~(Xw1a4nHb=qOUln^7TiUSoc#&K}0#UN-mPb8B> zBjgoeKrG}P$oR^z;{2WfV`C^0=pVp!4Z5ZVNvE(wgJ4`pXOV0MMn-XS1@tXZNTpzS z5DA760c$~9OSea8={Zg7hl{vSzZCCCigLeVEC7*{UF>-JBqt&@L<$xo#d7Ff)9xbc z8k$-bvT|u7PFE)biBp)xF>EkIA)O+$c`KEX5T+wRe@{P0Qz5!W$H?bBxS~o@7XWQt zym1JXU!ZDU4?5#eE>lP!9mX}LRH{-F&S_e`rDbhQn!<*WeS0~)_b8j+JA+#-%)N3M z$LFW5E5)|$`>0>Kfa#TCsxJLV`rG3iIGf{qT{8j4K>?jcSQW}rH9Ejhau&0b4dmT8 zd-nHI`}|8>j5L!d_^A-a+Z6Q6>+d7qev-rOJ$%|{_^8`Mvdi+2r<`AvAJ+=_Drnnz zkha}Bc;>}s)<66pD`L$=51nF@Skiz;z|BErw1ScF8pceBK>K$@;!C)*Wi4~&FUEJw zPkInUUv-1r@kXC(0zowt@H3Xq(x?>%@M;IgWN|GR<)dI+v=V+8&ElfCcXk6 zfl_EJXGPeMInNWvHlf3}l5PJQXL^*f`g%q)8D6M=l?#Cif~MH809xHtjTo3|K?OBA zTeM8lf^obEpe#5VvOwchKLT_PSRADZj2E?lPz!t^)2OXkMm*L)_H-xH<8eCrzQHVh zj*fH%QCo~HxxjHPAQYf9$}FIv*xnPPWqg}+i);C~jFYYHvC!@Db9vE|1RE|AiQPsj z_X|#J9lOmEluSxFLBQT%I!%z^5B^|cvj{8^#@2mA(PF_{U36wh@4001R)MObuXVRU6WV{&C-bY%cCFflSMFgYzUH&ie% zIyEsmFf}VMGdeIZeYYeP0000bbVXQnWMOn=I&E)cX=Zr@~8FWQhbW?9;ba!ELWdK2BZ(?O2No`?gWm08fWO;GPWjp`? N002ovPDHLkV1kEgKdJx# diff --git a/deepsoftlog/experiments/countries/data/raw/flags/FK-32.png b/deepsoftlog/experiments/countries/data/raw/flags/FK-32.png deleted file mode 100644 index 2c15b28e7a252ef964b6b58e2f5d9ad9a69eb670..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1450 zcmV;b1y%ZqP)?8Cd+$uA)485=whz5fP#;M6ll8K*ve(-Gzt+EnxpSu>*VM>XyO%xR z{KDS1zQdxQ1G~5KV&nIa?qgr!qttEv0?HOpw>XoRvlNR9y+kXPv3|$5;`GTbQd1m+ zBZ|9)mek62WL>%_ij9D%sVW!iH?J1MrV_K$-J)W^FK{} zvs|>^zfkNtb4487*NofcAQGD>E(O9NNpTC3N`N*Ix&Wo%jvjSwRS8GjE;_v~s&8DU zEYruKkG3#85`p@!!IQ>@%2I0GQCtre6E7~|RI{IkGmQ|5v9LIemTM6-O=6k?VHs$# zDDjwLCK?(F1q=fbT!6f-0ioV_-NG=0i3C>)`2C0!C(`GELx&;V3y)W$kXT+H3=Tme zjy5BcxCI-J1UT6NUYB4b8mF*w4h0XFla~qy|4e{6&dO4cWa#X9{Feujx(&-1r$VQz z3#35n>48WLRa69lVd(0BXcQ80==mE4hmlDWF|PV&QWoR6n!;hyOZ>hRX!Y%E|ipJpGkz{{75=igQLh$n7@9%2!l~#QYQhFrYQFNCT1z8gFP^W8vKKSvrlc6!Jt-AG3^R9+CB|$RA?=rn%f_2T<5;(-?SZ={7O=Kpv-E*%+7mnd#IC zk;5mSUEtiX9m^4;$$g&G)M7lTlJ~bCW!HzNs9INnuOq-814*zsP;&h8ML9Yx-BDcj zJe*_0qI~h0p{}(obuO(mY;7QZX7G-*blzqNc^VwK~Dh4hHlz3gk_? zI|Gc_XX3MUqY)u2ok&YzP5M?)K`059dAma;lZv1PL6fQCldvop4OxUHiUW9301`aC zp@Q<<0REWdK?GU$36Eo;ENEr$Z5sPf8;u!a@L=CNb`i`kqNJB}GzTvk6QK96FdLBrS<9A!+_Q z{~xnB0z4pZX!-yE03~!qSaf7zbY(hYa%Ew3WdJfTF)}SMIW00bR4_0)H8DCcH7hVP zIxsMOwr(>s_0*XMSfZ{-hp=kjcl|AQd?%Z==Ux4%i6#(4>(E^l8oPN4=(S^9Fr{Efa zjJT<%R~@?l_S28~yKlq&2-E_!D{J=Is}J7YdHS(v!Fh<)5VyrmJH7VEgHPXnE!uM@ za`MScaEL*)0E6Y$lMfGGd@5ad0a;7pw9`3r&y_5^0CW!|7~yUMD$AL37RaqydJ!00 z2)BU)0q9L&P(bVj215K)L?8ggfnJ7~22=n+KxaTqfVih_`K5*xmw@gE1s7Ni-2BX0 zXTm3)JbU}~k6(W~)?9(a6i^K$a<`v)eCzRtw$)ca5d@1GpdmnIS#yAi;Uv@-kYoc) z53pqOoAE^eFtst41o;Is{H|5*`lt!yau#?*76WMyFm^kcZO6dC$mi+e7@~1LIl+xV zEX=Ho&rdIJ2ZOS)Ff;QcCb>AfIz~su#5r6pE=P~3sw`cSTA(>$>g4c%kf5-GSxnul zX6wqx_SE=7fv+X#UvaSY+TIkt(`3$ZC%aouAVM#!n!W+o!q>*dv^Qk{xLQ> z9#mYIn89^OS!wa2G*_%y zwQl9w)%h7YS$Ubc+3#PxaVk$K_s@_2-_ki*&3~p~kFiQ8Ou_ZP3UxuN(2j+1Ajx8>d5m;78$IL2{r_4#|XzxicsT8uYE zMDWX7R=xSbDZn61qp7(}Wit`Q|Ei6yC4$wjF^iowXh&`8(7QrE~l#K6GH z)X>VnRNKJV%D|v@yNW1^hTQy=%(P0}8hBpKSqao239=zLKdq!Zu_%?nF(p4KRlzei bF+DXXH8G{K@MNkDP!WTttDnm{r-UW|a;Ymr diff --git a/deepsoftlog/experiments/countries/data/raw/flags/FO-32.png b/deepsoftlog/experiments/countries/data/raw/flags/FO-32.png deleted file mode 100644 index dac74e37dbdc26237972a7fe0823cd2b9aafa1ae..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 579 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7E^sW|~YA+G=b{|7RGzn1I0CAKBcK*If@p*r_3z*Ruip{I0>x9oRsaQm{QUFg!;d7l4L=yjC6&7I;J!18ET3gTd`&wjGc$+0(@_MC1I{iSB&O4m_@&@Ap>cFbh}7KKNJ8J&QxL z+oM_J>DqsfPF`hVVDvcCl6%1?(QLa|v-!36O#+A5j!(T*dO&Q}(ulR~v-`RHKm1Yn zu-B|+WkW}zhWbl-hj?5r*jI8A(MQ0m0=C6>&Pt#LNstY}`DrEPiAAXl kjw$&`sS2LCiRr09sfj6-g(p*OfQlGAUHx3vIVCg!0G*-wA^-pY diff --git a/deepsoftlog/experiments/countries/data/raw/flags/FR-32.png b/deepsoftlog/experiments/countries/data/raw/flags/FR-32.png deleted file mode 100644 index 289b805efc6766828931062db509ce61b934eb20..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 332 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!VDx^^%AmxltF+`i0gkKgMk4^LJ$K(8Y5$x zm{OSPyYY^|L@vL>2>S4={E+nQaGT$a=ashDcma=HTUBJ!5P3)s@x%@4b|?;Nmjs z$zfzzkXEztY@e_`P@!sxYeY#(Vo9o1a#1RfVlXl=G}1M&)HN~>F)*+)HMBA?)iyA; zGBBv!t|E$}AvZrIGp!Q02A)@QRsuChf@}!RPb(=;EJ|f?Ovz75Rq)JBOiv9;O-!jQ TJeg_(RK(!v>gTe~DWM4fosMHz diff --git a/deepsoftlog/experiments/countries/data/raw/flags/GA-32.png b/deepsoftlog/experiments/countries/data/raw/flags/GA-32.png deleted file mode 100644 index 282ec63e660ab04f0191b4ed8ed30dd775c565c0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 683 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7E^skZ?>A+8KFfh-2bnG9mH7#Joo zJb1!y#6H zY=I-7b#Mf<7mk1qfFp=YFiD`pi19*SSmzC(Z=Fhl{DMK=Mu30s1Q|)iOI9-L0Zrg6 z@Q5r1(jH*!b~4)z$msWUaSYKo-+R_o=um(N>qY*9cke24zI%71_W$Wbr@bd-Cm6q5 zl_qq;&|j+cL6y;+r@UC-L1;Fyx1l&avFo0y&& Yl$w}QS$Hzl2B?U^)78&qol`;+09+FVZU6uP diff --git a/deepsoftlog/experiments/countries/data/raw/flags/GB-32.png b/deepsoftlog/experiments/countries/data/raw/flags/GB-32.png deleted file mode 100644 index 22c0acf9a67e3b8274ec417bef015bc6d0db7f02..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1677 zcmV;826Fj{P) z@Lm!U60;J(Kq853rc{bFBw-ns5(gEm&Y;neq&A@4XOtPosyIa>u_A<`BDL)>(@v~P zU@Q;<5yK*A1ZrfFY=-0|koO3A+r9VrMG{gEl{naVQv1{T-R%D80^T$)amjA{K?{FWF~OtJdZL?8KL4$i7rZFHx_z#Yz)hPr zE4B1Km6`gY9G~aK7qW@b1@VR?&^1WF7i3}CG%D|%p{84xt^Q}%ViYeB>8r|2-BDDm z^=+uu`jT%V>Cu%en4iy_IXUca_<{}9`}j{?8=h1z8OcrzT>uIJ8Y4^ygaQEyLxc1& z8vd>z9ljt%D|0BnJCEsd0QvqlaWxpxCv2-BcJ@r7mO@{9;;Qyg>7(QfUZne(wOmZk zAoa;r+_~sB78K5);XpI5ZP>%dJKM;f77sW8!Szi;2Ew#|Gf43xIh5a%&rCUhsQWw7 zfglM_R}x<^8%x2bM_btPmwlRE_s(hYw^vTG^7ps$P}x&tU+JRzx#v--X{4-roFyf* z`04!V9BBNK%{BF$Idux9>`{(~Dg%D<78X#oD3=-XDsuNfFvAg&D=UbdJqt_0(c@>R z*|L|nYFda(cO#%&0XW@$!a<9<_swPXJ-JNtcVfT#I*x@uA$@f@p8RP9gHb;C;1E-8 zy_rduTKRh3JS333@lC|C71X`Ahr%=i?c<$9LtzqsSwX^_0tPKbdpRN2q2&w>wKp0?N zIEC+=LUX%8m-II`V@IPXTcNvMTseLM2?)j!K6@Tt!vPcm&EeqX|zF%Ob{t0mT3|RMNsz8glld$Lf5fEVT2R}nvUZC-LDXg z!?o(?B(At0D;hxviO{tnDF7=JLKon08rVvW%0wx>Cu6D&XhMJx63em(1|!6JW0;T< zcP;vGZy#oFFYcQYkqHT?NQBFPFo$$;F}9{zxy8cr%gB?e2~wh9wrz4 zh%~2x8ZNal#z|XeA198ruxQb3xZO@vC`fztCd{VeXlp9@dQ38}e|U<<9mjCFbwWWe zpfs73?FAIGew@NTYb)t&dx^3~7BV&%;QR|O(^a_!eZoY#o_dz54uhpn{2PDZDpJ?4 z1t2t?NHj`m=|&zd+r-|6W*j-W(;`Z z-*T>MJJH5NI9DvEqo9Z#hg;e7cr8vVO3E!B93BnY25vC8048Frhm4uy+27R5NAGXt z&ZSwbsVwG>JMx+GMiqhow%~hv8@ZP+v94r^C1b*aX6xp+tkdafrk05UK! zGA%GUEiyM$FfckbF*-0cD=;%UFfe_$BozPv03~!qSaf7zbY(hiZ)9m^c>ppnF)}SM zIW00bR4_0)H8DCcH7hVPIxsK{>YS+n000?uMObuGZ)S9NVRB^vL1b@YWgtmyVP|Dh XWnpA_ami&o00000NkvXXu0mjf`ic?m diff --git a/deepsoftlog/experiments/countries/data/raw/flags/GD-32.png b/deepsoftlog/experiments/countries/data/raw/flags/GD-32.png deleted file mode 100644 index 2de0b4cc7518857da6cc5e0f801fe4506f6b48de..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1062 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3HGD8EPYe6kC$Fy9>jA5L~c#`DCC7XMsm# zF_88EW4Dvpb_@*6_MR?|As)x4UiHqH>ng(j;r^Z9ckkHjxs;GCHT%Z_rKyWpkNO5) z>hT0Iumg&LQpUTNLBz=>6Smw;o;w5|nWx4OD~Z-1G1LuIXs z`Tf1+F=y_~i2GHPFyr&w{AY9i|35Rc*d{Cx|(i{I>JG^_MH`&a&zBZ}G_Ox@- z9?R3~I}59)UGJV7y?O6~Gj?U}E?nAfOSN0r5<7NGnb5#^Ws}V3s1)0hPjB9xUG}*0 zkW8ZJs&$r5YdTX;Hg2yhQ7-3IP2bo%DPT>@OxbN0t|zZl37d2{Aa&(Y^UFQ;E59BP z?>d*2AF^z3r;-Zy%=1=r9^YkI$zE{xx5upX;l|FPyr5*%6^xGYjV_UedFyX%nx1 z_E1@7miIZW*acT*w$3{dI>)=xn5#*@XKe;=I&wzV$Z7?*PPkd^pmfCtK{lJ#ZPxs{QsOfI5~#r2lIW^XUFvn z3#a_<-;_VE)byA3oF0?iXPUG7x@LTvle6)=7+-!;l0~g}I7vkx!gVX%l;j9 zH?{i~aTl#Q_B-A3;-kZs$6m)|6faD9Eui1Ksj}r!-lI&j+@wt>)0bDKTB+W-6=Qtv z$bU|TUs^JGpVHem9jlpqoW0^}nOyW?hek6u&g2XuvjgY8=14!BtXXz`$u85VKjEv_ znNM54;6!QBvXgBG4qE@nQjWfMN#FjUhV5b2)22$(R#v=?I=`{{=FYB_s?$!*liA}H z!ln2(dQHLv|Kk-!EumjUuHEqbS+LaU%GIMYO1`gow)U!x_37imZz2~2Uu<3??x5QG zZKmrt9wVmUn;&_nJvvaN$rt)=^{0CZ(c%*OrhMPBzKH#9-i|w>%{Nv)eQ%p|=h|i7 z?cE>m>hO1LocOf-$PcG&g_l#!^4CZo(<;;`-EiT=DbF+MJLg^hDWYhgqRKJnkWZR* zpXm|lirN2}X3JIoegDaEH!x4BmbgZgq$HN4S|t~y0x1R~14AQS14~^a^AH0AD^o)& z15<4SV=DuL+U+W$C>nC}Q!>*kackgtHD@JIgCxj?;QX|b^2DN42FH~Aq*MjZ+{Ezopr0QZmSkpKVy diff --git a/deepsoftlog/experiments/countries/data/raw/flags/GE-32.png b/deepsoftlog/experiments/countries/data/raw/flags/GE-32.png deleted file mode 100644 index e43988c3ecbbcceca5d1c321001d424cb5dacbb6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 817 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3HGD8EPYe6kC$Fy9>jA5L~c#`DCC7XMsm# zF_88EW4Dvpb_@(mUY;(FAs)xKhMe_!9U$;esD9R??iJ@BTzme3x8$KyOvkQ5Z7#d6 z*-^WSlp}H+17kcyMRc|}&JZu_CV%!gBo(w?1}`7_PINF`IHw@}A# zpXcJ4Pi{u~G{nTIF>bng>ef@$pWTbJJSTkdRPwKDvps)2;lbjYUj&c;G+uvU`V^Vo z8WSnILj{-kg*Q#u)P9aJJp8~jwSs#77R3)w@71u#OY}C(mQJXa-m!P8ovLQz5)*&_ z1Lyb>*koiF-oLN+XJELMn@}&`p_Gu%|Dt3<=Wp4IXENMotxWFke{xIe=KINoK5YyC zg=@X~duh^>!_EKPC#LMy-Jch}E7GJdda-22v&(A~7#Y=;T8ODnQ3+dX#D3_C-NdxX z`yQW(_|4a{c}3XX^G1`kexB*MwP1CF0>i7)n_sFXJ%8@7T6GRX{NH7nvJ3`$pT!rO zOf!8Yx1U4sUrFXa`&ma{Wo?ToTw}<^^jAIf*7fk-7kB2I+P8^GN9V-7&q4cxJQx2| zUlmfME5X-$ZsNI#hZTQ*R8-(?e{|5{*UOb&yLV_*mM`b@cr#~mtkChD88X}5o;y6R zu?oM?R1~?MmuW%Fwb!po6YAvVr_WnHo$=-CCWon-Q&ZfTrcd8Aw`b;aCmxl@7vD3B ziyycqR#3ZklAoW)vJxNRBEAfhhP$x~Zcd4N66|m@ZSNk2_V!oLPjVVaEa7}|JS*sZ zNyFph(DyGmDynD8wa)L>h*UU#{>ibn4F+eGyw2^8EvlXS=4;)Sj(vHDG`twUPWGL_ zaOsUZ=O4C64e4oCvyV>%CNI?z*NBpo#FA92CwWnfUdT}2c{LvDUbW?Cg~4Lq;rtORP11lbUrpH@OSPyYY^|L@vL>2>S4={E+nQaGT$a=ashDcma=HTUBJ!5P3)s@x%@4b|?;Nmjs z$zfzzkXEztY@e_`P@!sxYeY#(Vo9o1a#1RfVlXl=G}1M&)HN~>F)*+)HMBA?)iyA; zGBBv!t|E$}AvZrIGp!Q02A)@QRsuChf@}!RPb(=;EJ|f?Ovz75Rq)JBOiv9;O-!jQ TJeg_(RK(!v>gTe~DWM4fosMHz diff --git a/deepsoftlog/experiments/countries/data/raw/flags/GG-32.png b/deepsoftlog/experiments/countries/data/raw/flags/GG-32.png deleted file mode 100644 index e31776824f5619f660682cce0d13e7a6ff3c05a5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 730 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3HGD8EPYe6kC$Fy9>jA5L~c#`DCC7XMsm# zF_88EW4Dvpb_@)RpFLe1Lp+Wzow`3y*iqnEef7R23T8|}3Tv1rbEs5tNjWI-zWl@` z@3k`2K=i7J9JU#c#=br^`QD^_no|&IkmNs#Ux0cG; z@V<{bE<9Yw5;RTH-p*{MMEJ?GDPIDFCJ9MtunNhq)@0FW2tOeAL8xP4ESn2^)bb;Y z4DTCaAIN=>dr>-Rj{?I~Ka2B?Kbx9gJ$cc_;IyK(p*5wo)p~Z|sfs&m7Me^^nb6<( z!tCzjn=By*O0pClWtrb%l#$ha|E-b#K>qg+VT?7~Hvi;*{C)o6`LZ5LXBwCj*nd>> z#W^g{2pr)U>jvw-9VIjW9eHodypQR&gWs3Q%;n3U zZ`~r$sIxjOT*l%4!5F=TCvD!lNAov6v1-Y!ZqYPg+}5!AK!cX5Vc7d8UrH=lnw*xo zy|S!tDLMOGp?A)H$6rrBH{RDzl~cI;rP9H4uYXFJ6u0@)Cn=TNdEzG69(u|0ZV!Xq ztml7Pw$Fd?P3}qM)fI=Fmht+De*62EjbZV{Ury(iA5cC2bJ|;8;~j=3%4e5Gptfd5)4pd8ABT7;dOH!?pi&B9UgOP!uk*j}f_qhJx3tN#9D*uDqms=o{u&M|bfF@y#poCkF0_8p+W0g`Yx zpE$FXJ8KV!J_jA8yJ5Emi^^3)^-MxehYGKkJ*V4cFi zK9xasHi!!noCNhO(5Di!7>iSsuvNoDs?i)XZ7n5m^kRJ;2!QWVRhJi3oVQIEHAPPu_5p zts?j54@njY$A-oQOx6|~$_qBM8?nA^X_@Jwz$KG-;N;DtM{jZ-5-SxIPM_wm`Ow+B zhY#Q7z0Bp$@!`|Ak6%B3{`&D7(?^xROP55ZC~z?yP%u!?uuxD@QLx}R!NW0ucf#cK z&;|_-*5(Z#8ahs_SaG7G;e&xfxM7IrOkdVT3Q|l-Nsk{13kgl0lu);$6$Yq_2m!4f{)X->c*z~FE)T&prZtXG> z@ZTQiKmRhrq6LghQnP18N8P?m5DNp0Y%eSxJ%{SP{e#Y>vnep>& z4H`3Acq9BaZF;s*(T|ZKh_xr{+5sm}AgPwPMwFx^mZVxG7o`Fz1|tJQBV7YaT_f`l z0|P5lLn{MQZ3AN~1B2S_DxxSFa`RI%(<*Um;CVG?B~XJT$cEtjw370~qErUQl>DSr e1<%~X^wgl##FWaylc_d9MGT&9)299UV`GhwToBb$Qutv%M98kaJbvSfC6BYG{Z?g8>Bv(JB<;b-bTfi;I0S z*??54Qz&lu`gQ^I%4CBi*_)I!XEMr@qF&C;{Qz*&&#&Ll&&XyQS*!sT%dlya7T~ebhzTp@o|(-Z0DU}Ox4S#$!3$LH&P-y8JhYW;Y+&A~XH#JK z1GOyH2*4Ns&TJ%zVSuT&HmAculbP~Q@7yty8>&k6H>(q@i`&)jusZmi`-oJ#RqqN z{H|nYsh}XP_>8*c?6*F3Jr~p*iBJ(_6qW`BdAMaYJqYiuc;$I9bt1H>(V!Z diff --git a/deepsoftlog/experiments/countries/data/raw/flags/GL-32.png b/deepsoftlog/experiments/countries/data/raw/flags/GL-32.png deleted file mode 100644 index 541b8bb58e283354b583e463bf2079d164c3e5e8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1253 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfhdh_=LFr|NkE-0wn+c`0?Mv z1IYQ$!vo?H3I6`YqVW6o|G$2L41^<~$#4X;0vQ3VgCn?E|Ni|4BB0?w5*a|aaPq^4 z|CcWPKY8;1-Mb(gA>u!O{$I7~znU7z7CyfJ@$vt!T?0w|`SZW0=f8x+e<`W|a&rGg zMgOz0{Xc&ms_Wpv|2jJVMMVDd@Xfn`*qenq51bX(( zoBz?#|J~gF`}q9#_J*Q>fd8th|CcNQsrmK|8WcbSfyl+>e{k^s*RMft25N_d5>O2g z?Ai05mG!^BKPb4Em_T;jz72H%(DoTK{>#WfgG)i-|Fmh)AOcE35YUgWUj5h8`!6gE zawO0MLBapWjv>4Nv;r7DO-&&0Lt=rM85Bw@R{RGBCeV=IzyII4^S`(lssQL1F|q&p z`u|Hy|F^dOkBj@y!2vZKs8L!P#ARdzDTWvbO>_45UG94+giB z*>*q$ah@)YAsXkC6RtnMV1B{e#K_Fh^s@Q&b_Ty%y*xHKH-Ur)SD$abuzky=?Hev^ z-)6|Z$~FAJdi@3Y*~|0aKX~zE&HJXKERMB`;kD-F{Qmm>`SP{#wcI?cY=?f;{hPsPEt~m78#IZ|$$Y^MoCyt*p+<*p%fc;xotOW^vcQE18$m z&&*kBU)}foPN%~H+d%i}zWj?06yN*9I*Ui9|Ly!#uAr$2vZJFnW-P?RC`&F%UFpBFq|csQW4gmvCLcbk4W z>$*oO6OIKiFzkBW+P^R32sbduRZCnWN>UO_QmvAUQh^kMk%6I+u7Rblk$H%Lft9JD zm4T_Yfw7f=LG5-GQ4|fi`6-!cmAEzVyqdETs6i5BLvVgtNqJ&XDuZK6ep0G}XKrG8 ZYEWuoN@d~6R2!fo22WQ%mvv4FO#q{Sv!MV0 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/GM-32.png b/deepsoftlog/experiments/countries/data/raw/flags/GM-32.png deleted file mode 100644 index 97048f64ccf01a8b34c90e5e3cca9dcb706aefac..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 783 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfi%|_=LEg0rD9b&MGP%WnlPl ze9wX7{}~wmYH9(=e@~zMpMJQTp^rgowiLrm2B1nf0;)$wK)rDE;rMQ#ImifTCK>`- z0Y{pe|AE%Q5zt;ZdiwZ3&<)6F`r$61laLY6d2j@DCo%%M8IFK1hd3C?ogha-90qX= z#0?OSL;Mc$KE!-TAgnn%uL>Amz9m6^!QhaC6aU@`GX4h*t2GEW!B5RLOoPdN)6W)NYxaAjNW?QOZrxs!g+UpROF z+4z!W`F}fDy>%LKBA)nK~xQY#;@=G@@VOscW z&BUD2O&6zZQ`mD)WRY*_u1#_+cD<4p4o|G%X>|0R@zTfezh(_X0&B;XV~a260$r?H z;u=wsl30>zm0Xkxq!^4042^UREOm{{LktY8Obx9JOtlS+tqcrmx2uSvXvob^$xN%n zt%2v&oRvTgk{}y`^V3So6N^$A98>a>QWZRN6Vp?JQWH}u3s0un02MKKy85}Sb4q9e E017!nPyhe` diff --git a/deepsoftlog/experiments/countries/data/raw/flags/GN-32.png b/deepsoftlog/experiments/countries/data/raw/flags/GN-32.png deleted file mode 100644 index d26246d27c4ca23256fbb51059e3d95a94fb5f52..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 339 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7E^DYF2d5LbqoKo$dtgrWZo4F7o; z{(CU||H1J8KNS7=#o)1sfngd0&n%EiM;_OYKwWGlL4Lsu4FBE@&?T5OSPyYY^|L@vL>2>S4={E+nQaGT$a=ashDcma=HTUBJ!5P3)s@x%@4b|?;Nmjs z$zfzzkXEztY@e_`P@!sxYeY#(Vo9o1a#1RfVlXl=G}1M&)HN~>F)*+)HMBA?)iyA; zGBBv!t|E$}AvZrIGp!Q02A)@QRsuChf@}!RPb(=;EJ|f?Ovz75Rq)JBOiv9;O-!jQ TJeg_(RK(!v>gTe~DWM4fosMHz diff --git a/deepsoftlog/experiments/countries/data/raw/flags/GQ-32.png b/deepsoftlog/experiments/countries/data/raw/flags/GQ-32.png deleted file mode 100644 index fcd2990bd73162da0e3669d8a38a0c9361ef1e37..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 811 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3HGD8EPYe6kC$Fy9>jA5L~c#`DCC7XMsm# zF_88EW4Dvpb_@(mE}kxqAs)xqPW8_Y4iq?AU;Merb1~<{Ssu|FL!71umE3OKagkp^ zPh?|2f%1-x@s7KS7tUUEqmJn==OZs>R?Qv3BCP*i*7n}I^vAIC~yGF|4TzH!>ZvuZOQzR3SxFWA9Ysc&PcE#ucNW??0_U$;ihL(XOI z^RK^|7T?^+xP_ndh{3108UA(Yx28UDUb1;dVu!`Dq{6W9{hwBcC7Vol=3+hbdtbUj zfrO~wvZw0C<T}A*)Hw zQL`P?-rSR8S$%zDmZ+4eM3?f*E8iAhlJ2_u&-DA5^Y<$k;}xlnUv{p4{dLakRWW~dzPXL7nUnYPE~hBQyN^%(;mw;G zzSZ@fs3tIBsg}4#l%ynV6h0To6opw5V6=1FRgo|U@wVkV286ZJ4(JdWy8RebS{Y-t47wN~D(#qU z6$HUSrKKYKB_bcffKsSsESZQD38iYHNHhz>EG9F{MjUH*dN1p?AG>+pk9*$doaa5y ztIw5W25;eP0f1n!NRWpsiG#J-ALso`4P^j+irnmcAwUyG&YT(bcsvsmivVh?)tQuZ zIV#FDI5-EOOGq#Sw2`E7Y-|BJ$mDR0bQUIh!Qr%H(1)?Hd8BEzLpb|Boz7BSJvctT zh(Hwta|BRJLyfwVllScQd#GZwZJaV3KHnS{XHHJOj5kS3>jY@U2#;ruj5Ni>boeBE z8!UpQ5I1kS1_m4!%L2e@tPh|E_zL4bCT_4GgVfYcMg{BBXv3}nE&((ETmUf8^G3_4 z3($y0VFkT@44`G#F4LYpCXHrTtFF1G`lMH?B2L|ynIjg1ol0hffrE;Qud zr;L;MC_YifUi#tCSj5I9>Ag3C1fQ{g`{{L67SM{uL7^&7atPOdK96VJ?QuU3A(+WS zFHB^e+5fzaa6f0^Kn_M&1jc{dO8n_@ufEDe*YTe@@{*P|3*Nx`#L=uwfqzI)_6z(8 zEEj!PiK~bn2d2wXk-!%V((|L|ighbF%THeug=W7e5$AkKT#1v0ymIgWtB92~ck9k= z$Mo#X-sl(&@ypIYan##7&6DQ5Quc!zFV5cX>5hqLnrS{u}F+=N-MrBkn$%cS#q830Fq?PJj2kxJ9~OdDcc4cL*k( zr3)ppSyOzC<6%!#d18c|ZKRADp?3=V%MZGq?9OV7EgYx_3o=|!7%3X5i|+rZcp{UmUFWCX?6U8e;coR$k|$d!Yewj(qVln=c%}DIO_TbEkKf-bQR*}& z|Jb&DpK8s1;hS6b6+_=!ZE4QBr$h|}Hv-l7AF?inZTG8u_a}XSO9Z)|FNi!5Dwtg5 zmvGa6wHS_=lluK&G;`kcdx+}+`nX#qJff0GRq~YL3OO#oqqw|SDmj*ym`_nD@!S+D z{vC>+LQyA2BE$ZZpis(6k5&DDLeMkQRZL)e6%HwnsZK~M)RZ**=Q^ diff --git a/deepsoftlog/experiments/countries/data/raw/flags/GS-32.png b/deepsoftlog/experiments/countries/data/raw/flags/GS-32.png deleted file mode 100644 index 42342122b8777fd1f54832035cc83ed4588cc73c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1477 zcmV;$1v>hPP)`IFCb6|?U(FZdxo-+09M z=$*Yl2OoU;qJH?=c>%Did^9gTx1Pw@F)SZd!pf0hHTAyHDqS;5%zF9@qxsh!Lbi#U z*9<@qHZ?+PoIvnjFk0G1y(Q27YL1G!a{lazEM7T_WHLkD$YL?pO9RjlD#F>FV%@Sz zR?MlRcHTYWoQ%tLUmli6_FST<$i{IB!-arIRIp%XC-oyTboNBaWF^t4!1Ml1z?|{S zY%W_iMl8a#R1Z_D%h25Sp3jeCc4TbsRa0iBMVwIMX zJ#Y}D#FP?ODgL;4fgqJ)j3K#eP${Wgj`f`$Ah0C3N>g2HGih=;znp-Y-jj?qy9lN) zpuVPr-MiaxoWhoLzgi|jAWRe8+egrs!AK+!ZVv6`K}t{xOas-MMfGJc6A5q~bPyD} z^f!t`1a6qNF@EkC z=H4@oXvY<Y9h`z(AwI?@ovEtH;|IRSu^IaIW&E}>~-hX!!qo<9hs@SHorIGG^C)l&UnbR#EAr0C9-&ahXQNoa6 zJq#(c@bkY@T52ME&CvK}Vr5~Pn~Sk5g;IrN$oE!1DC%1;^3zv)cw_rtEdQ>HL$o5a zB$p3x{Q%Rj*|F;g)9-tiwcCHDW6}&BdVK|Nud0V2z%>OSqkp9qR91NOddDE%z+c|S zELaj{`l8hwKD?LmgmFt6#JIA>x;orH>uhQ~A883%EtBNsJcHr} zEy*@OvgnDsag!+y9!w!Di;$_wIRPu4OwiYLiqfh%+&S?yS!EG(mUH^pR<>-}Pb9ho zCmY;!Eh?VZ_=>?j0Xk-q>bHaqiP8irGBwPDH+Mq3@&?qH{5As;Ps+4s5 zMH1CBsUBO5)E;~Hrm3sSa;fPG2fnolhb6gOzXw9jl(nV{X)Va+1}>Rl3c>;`DZnUX z93Y$3q%)dWk&TIg@AuaTf$IbeE^k3)I*FzmNy=diy<;Sg&!0@9C`RL-e{-QRz_Jbe zei=-6z>v2f@WJ_y^Qkpt()yOa6dHw1_M*qQ2|3O+#_4i4ke1`PBlHv^)kKMJ00Hu* znI^XhAq`GUKvM+^mo`vS8=>P$72PLWIoI?kQ-){ob}j|80^$0AxV;4O63A%2kK43$ z8`KTT^YW(2fWd~>ig3D4v8$>Sk_y)l5L`DQ&+7j%_ZA318-n{w93mx(eJwFini)g# zMAMo>>F~e_9H_Z{1a82Vg%J7uVvB;2Z~Skv3jhEBC3HntbYx+4WjbSW zWnpw>05UK!GA%GUEiyM$FfckbF*-0cD=;%UFfe_$BozPv03~!qSaf7zbY(hiZ)9m^ zc>ppnF)}SMIW00bR4_0)H8DCcH7hVPIxsK{>YS+n000?uMObuGZ)S9NVRB^vL1b@Y fWgtmyVP|DhWnpA_ami&o00000NkvXXu0mjfN)4LO diff --git a/deepsoftlog/experiments/countries/data/raw/flags/GT-32.png b/deepsoftlog/experiments/countries/data/raw/flags/GT-32.png deleted file mode 100644 index 55fce717ff93abcc3d37fd1adba98708dc58266a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 954 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfeWl@Ck8cNc#^I5zF}h;K_d= z`1cP)LcsSQ{}~eggA~9JnwlR!|6|n%6bEV)&G>&GhnYO-ATt?(#)kj*to#q;0?h%k zkPa;*#AdQ|Ns5}eZ{SnAAfxK zd}Q(CdqvPD_Gjv*T7lP@qZ`l{)siG`V&nU(SR zGka@i zOGh(X%c$M3wy?6?y<^wT>WW7O2Tvckef;|Q`w9vIyPFmyG*7s&;X}uX6&Y{1l9C=j z5*C^~DLClz25pb?C(fKYck=9MeT^dz+mxCgO}ezHsJY8aX5Wfc>sGE^oo|qFee#r z)(L4<1GzwPpe(;;HPD<5FfBlFCe3O_FanyuqgBnIQRB&ipO<+d8*7tT?Q* zbX#Z7wm8uo2JKpIuu(wk81!lx81kF4=SOXMY(8U_`P6AaTb_0mE)itNVbH4sItFB* zZoNB0X2-M>IScLYcYIw{Agd z>(2J-xqh;_4B8+yAiK0{MdXVzU8eT0+M6?JziHvdzO}oi<Z{>TaDu#(*d<-mfa)Oerp^ha!IWaX(NkK(kSyExFFC}M2-n86V`IEKPH9}Nm z`jlx?!$ZPCuV1;A7#eW@!i_6;F5S9z@8V6M#&ZAs`2Q`PlhyoZcHN!GcX`?Q8J5}K z=Is3ZOu4%F;33!U=?(`jrJfF76SKAI?5)y(#;?+5QHD9U_N2Zx)3~uO`T4rL)!*JV zfBY_QQPJ`6!^FkM`wk!IoV?s`z9skbdDit0l@2dG9lkE^Fyp$o{e{8|4NvzLhn>?% z0*0JwiEBhjN@7W>RdP`(kYX@0Ff`INu+%j&4>2&XGBva^Fx56NwlXlN-L4{vq9Hdw zB{QuOw+5b9b5;U1NP=t#&QB{TPb^Aha7@WhN>%X8O-xS>N=;0uEIgTN160J|>FVdQ I&MBb@01RG_{r~^~ diff --git a/deepsoftlog/experiments/countries/data/raw/flags/GW-32.png b/deepsoftlog/experiments/countries/data/raw/flags/GW-32.png deleted file mode 100644 index 4cb39ac2bd3775481011354bae81f5e9a73a6113..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 975 zcmZ`%T}YEr7=ETr>dWQwXEE((QHCskK4&Hkt2zAn7PhTz{zl|LS_YBh_f(el&N4>$?&3!=+g2h-PhSSv^DDRo^#&!oacSs=RKTOt-3%! z#Zv$TDkfJ)b_tono#A9vEVkDGyh&}LA&&+ASUl&qfn~w^xRp2|7J|R?Z{+GaR@Q+| zj*!q2*fuA};0xvn_BjnC)yvxwMovN`0UH3pECJ0t`~rRgzCacD!$F_`I1H2nQ-oaX zr`o)Y6&9;&Ald@vKLqULMF1D^1z0LY@*oQPpmKr14PFYk^x#(AlHin>YVPaPYwP+vtI#S1RQTzQ*2-@Wj0(LL)abMxnS zRGY;SCHyRVlqSu3=<->%X+mOym!-=;G!suM`X>iG`k_iG@Y>S8w`g>BlsrnJEw9vOGTO}Ys(Lfo zAfwY|DfFonS(bsO<(cVnI`cT4A*bmZua3t3l~8LnRa+YWpAh-2XP6|2{T1|9i_LDV iHzUVntu#wiwZjA5L~c#`DCC7XMsm# zF_88EW4Dvpb_@(GTAnVBAs)x)PR`D_S}Jkee*gc{+c!_XT~WO2B*zt|sYY*`T#__f zrh15<-O#j$CDH3kTA;pJjX29xp%4RYqfjJIzt-v2k> zUq45Ac186)yZz6<|NZc=^2(c1?mN$?*(BaDm75=X@ak^FX--23ZI7gbzyh3WD#~tK2G73JiOkuKVQb&(jf>k0Y1O`u;dX$|Cf~%p_I+ zMxn&J3nH@@PP2-+Bi+c!z-z(rhb5!N+2Bq{Q2vi~ecQ}mZ>&BV61Gi0{o0q^g@3~q zF&}#0X~ACAx54r!tKU!kDR~QS%L#u?V`*NKqUpitn0Kmy>%j7B*FsWsoLe2u(q-Aq zGSN-P zeh(^(ejyn&$4BMH?Z4dfztwxL{G;x5{bEkyq{`jhoM1~E(t z%~Jd?m1?GheaYJpxqa2dlV{nKJXyqBoirKa7@j>oE%K{a@!U7wLW{Dt^N(*^OuzYF za#m`^w#$tdIukZbTh07O+{Lva>V@Bd*$3wMi)hcgW^mTf!FGbX3hxY!r%c}&x*Kka z%(>mM{3D<1cj@@@_b)b>?lw+x>sfbvw;MxGw%o+J&Ltc#j77J%I4Tb`nQizU?>pB63kHg#joUNCFnqs%uQ{fYNy z8R+i~dUEb|a6@xPbI|7i8@4-+>n^#JY&f-Xp2qIv**EPzFfM!ja8^M2%`Lr|i?u?7 zCOL&$Sy{PuEoNj1c&uw6{d4Q}q|345m0up4NXwr}oNf1kXM;eZ)X5mz=aVIY31PGH z#)*q(&Yh9;Fp4kvt-)8*UXi6PZbl{Sca;;@?O4pq;b76i)&BDIm(OvT6L$65<*%J_ z=0@Ao1GQ7`p8S%=@*nO~@rfs3tqBD0}fi|DrO9fx0 z9Tj&Q7c=yU*OuAsoG~*y{PU+Xo+_W6Oa2wKtryBKw%RZ4>|=8}b&jlB$;?|neB0yL zHf*Y$`1{Xc{#$`Rd#`Wbd+g^KPM+VFu5D{m>sjIJ*>_MnpnC6D{)9O{kLDKp$pecI z)e_f;l9a@fRIB8oR3OD*WMF8dYhbBsWFBH*U}b7(WnijpU~FYzP`h146h%XBeoAIq zC2kEoujZ@-YLEok5S*V@Ql40p%HWuipOmWLnVXoN8kCxtQdxL1)dr}D!PC{xWt~$( F69AI~I+p+d diff --git a/deepsoftlog/experiments/countries/data/raw/flags/HK-32.png b/deepsoftlog/experiments/countries/data/raw/flags/HK-32.png deleted file mode 100644 index 3adacb812712dabfc474770055d6dcdf1a62dfb2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1047 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfb_v_=LFL(-Z)T07(*%2H!mc z*?UHc_cVB+x_}~j5_g2T?uc;T(-FO=!4ETy|DLu82!| z&aD@{?e|21CQE=61CfC&$neg#ANTKm2P&>Dd0w6iWV~Iy94LNAl=q&t5LBfG|9vC5 z+YAhkOA5YTJon@7tEOe7`|S;{OA4KKOf$| zS+?l+%jbXIy?LCG2n>gNdXgYV3Nt*4^8b3_+_&pjpZ9bCjeWCx>5qGN?{PDLOaLN~ zQG$0BI6%$-B4LhuYTWmX^&a?p-j!syrvtVN=Jr%Kg+QLXt zCI}J-nyCW}Pf$E6g_S)7CK29}AirP+hW~#Zng2R5|Nra9eDKQRMxX>|fk$L9koEv$ zx0Bg+K*n!R7sn8d^T`ifnQHz7un8OMb2Doza~K>*Wo2n?adj!w77(63ValXw6OXQQ z@QZT{^o(>3^^J9omjP*PM@SXzAkgc&U>6)aUvb#0Z6wXN07_4h9j=+^J* z^7cA?N?U97s_d-S8(N)fos)x$y|bgM-P6UdHN1NF^6l&S28EZNXa+A&3^k}db|!N3 z^D}eJ>kl4sjS$s|+f;J%lc;w1+PKYPA~$?;_PpVdSy8w#?=RcG-q~jPH@l3@CNipv z>zgz4M=&z5?DP7NanV)*7!0ZVn zRNKJV%D|v@yNW1^hTQy=%(P0}8hBpKSqao239=zLKdq!Zu_%?nF(p4KRlzeiF+DXX XH8G{K@MNkDP!WTttDnm{r-UW|%@ehH diff --git a/deepsoftlog/experiments/countries/data/raw/flags/HM-32.png b/deepsoftlog/experiments/countries/data/raw/flags/HM-32.png deleted file mode 100644 index 32ba6a004cc748b653b9bf9ac765e7cbb1288ae0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1249 zcmV<71Rnc|P)&Y} zooT1E43tM{YJEV_!M8!7F)>Et#t@8QLt;V*(HP@SCXpDvhCa_Qv1Y(S!0mViN zp)5oZq_l<7p>#U5v@`8=o_EeUF3L+YRhsxM?(Y77-|zhIxuR$1*M)G~Qv3MTqV?gS zIN_kn&UKb@j_fz5U)V0U?&y^p@3YvrHel91)~qh%9I<6jpVeM%QPu_kDFrvCJQCB2 zhZg$)6kq{ezy?49`o!MN{1f}5!78^iofOY?MEL&Q7-zB$R-)I^O4C#yVBfYStXZ>| z30!e7K4brMCc#RdK$+QaTM7myOT78ga@txVe6Z^`LRAvm5_rmBO92ABvY`_4{nbjv zqL51_@eiD((;34V8D!@7Ypl)<@$5>0Nsps0{K@*_5Zjh}jB0^(*AUNuV_O9ME}Ge} z(^vE4ikj}>JYDe|b76C6A8w&YVIoJowhp(L!Ml7NbtT34mtRpzPJ?6PUmn3{vKX@h z<2;HnWuy=Y0qylJUmU)|_F`p$AD?+c)`kOg zwA8UGBp6FhQ%;VM{`7MqpL|BxQly3woE*$CiA{RCKz+|B_$)GcMgOEnN0X0+8khXs5g{Znhro&kpJ)vUGQItLd}@sDKpi{QC_>8u9Q|d0L+2)V z>-lCn7D_H%Nbu{qJhtmFl`He){bAmTEoRp@eU!@@Z6N4cTu&8v{k>xZUBTYt35N`gwcvN|r`L9O=Hycc+pB96=~((^(@>+E6xt0lzBWe%hi9;)KuYni;kOV1ik>D{P&oEIR<9&5D>1u@*|pqz6H9>Qh05UK!GA%GUEiyM$Ffckb zF*-0cD=;%UFfe_$BozPv03~!qSaf7zbY(hiZ)9m^c>ppnF)}SMIW00bR4_0)H8DCc zH7hVPIxsK{>YS+n000?uMObuGZ)S9NVRB^vL1b@YWgtmyVP|DhWnpA_ami&o00000 LNkvXXu0mjf&rdP7 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/HN-32.png b/deepsoftlog/experiments/countries/data/raw/flags/HN-32.png deleted file mode 100644 index 48f439e8e1a0b717a2fda2cc723903e9a8be7668..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1211 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfc_2_=LEMiOm8cQPEis9=w8} z`}be{M*{zF0GQ&J5bX>MGZ+|Vq9I1cnQ#QL2u||x%@Pp-Sq(uzHa|at%fK*^fngGu z1Tx@gGB!b=GN3qI{Uo?YAdDL~p5MFo5-xcE{!1W&bAeJfZ$5`}A^!gP^KV1Lfrk&@ z|NHkJ==-ZzUv_mJ0kVMr9vFZA{CoWP!?$n0fP#Pj{@b(X_R*sc{{H>@>C=xVPd>tx zAv6B``Fr!`>(8Hm0M#Eka_`KU$3XS(-+#M(`wg-(pn<=C|Lg2L^61eAi1_vEFDFep z0kZ!8{|65cj)yq=?p?T#KvGB^1aW~L1S&w*g%qBUfCUC1a!@0<@YsPffayd~5GCS( zQo_O@LAV-tj0Y^=^B$PmBuaw(f`KjvhTq@6K)-=7kPE~>mYeQYkQ&A$Z+91VvBZwo zKn`btM`SUO_5fqIli7Aa1%93`jv*T7lP64=GU*uS5*1YmmDH4{1x%5Wo@|w@uBvk! z0v+cyI!3yRvRt`hYO?i;gHEn&tZgmx28G3n!p##mc4`XDm>C@r6*>FnjaxTo+_bi^ zvYg%M5*zbYa>m_=JB9-WL{1`Gsm?0+?~qL;yN)~DmXntQdVjlHd_8v+aclUs;k*OVQV9HmL1*oRoW~s zid!sZW2W)pX=`t9V?Nk7cX!$Qo4fgs+^K)?VBul+vW6K+?nfp2WbGTRSNO}=yIE}F za5ZOGB{NIuXw5k$U=XX8xJHzuB$lLFB^RXvDF!10LnB=SOI;)L5Ca1%Q$s5QQ*8rd zD+7bt?JA-u8glbfGSez?Yv6e`XC+XBB*=!~{Irtt#G+IN$CUh}R0Yr6#Prml)Wnp^ T!jq{sKt&9mu6{1-oD!M<_{w8X diff --git a/deepsoftlog/experiments/countries/data/raw/flags/HR-32.png b/deepsoftlog/experiments/countries/data/raw/flags/HR-32.png deleted file mode 100644 index d17f1a1ad0b008956b79ad1d21a2b543eef585fa..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1236 zcmZ`%eN0nV6u&J{N=pUj+OEJB8bKgR*48lrow3*|6$LGw8Dn!4C=Qu{mQK=aOQZn< z+Z17BGF=!Afl-+q-w=g@#H_#`G|SXwBSSqt*ZNlMjuVH%H&Et(@aJl0M01U|HzyJ;e47h^}w{sz2K~6Aa2d+kGh)zd7{)kRP zG=P|ZGI17z=~gJ6htnT`Blb&|Ckz#1;LL(5$9*gX`7_rqDHOt}sMfB5kGk(&1ex0I zVZEgsee0zgjc=rV-8t~*xgr=8OqIi( zt^qeYIQYD!#fzOb8`2h{&nsZ>Z8rcfEEZ(7u8#!|1b2>?%Y`Z{;lKddU?Q8FVRsk$ z;!Cu+NJTfMgqD`z{5;$h1@8{Swsx5L9&|d<@-ik+)58)Wa%P6a_nezUWo59w9^Su? zP15xghahIHmZHje+-UOm7pF5xtCjq*jV#n5#}x8ymE0Oh1Y_^=AhWY7q| zRZn#5tO5U&A$nzMI&O*@4vEk|8=JDRyK~6)6=u=0Q;y2~dFl!mHUf&0Gm5cJUfoAV z3l3t!L4{1JinixmHTvYo2r?23e)33747V)W#~9Oev)LkSGDkMu+FAZ~sin5wT576p zuQb;RYUqq&HnXj(rlY65yR)Q7U!%KFS|PqI5gsopzP7yRSzcN4y05XAvbv$LdoKkt zgeLXl?bWA#5w~lX0)kCh4`pvMRwAxMFq2aiCsOPq#Mp#ltemCYr4<(~EX^K1Bvqb$`jTN1Y|p(8oVWS{|`2MG_{x*l4@*UA)2R`KEK>s;^*TXDOTi`ukR$ z_W&y^J`K>6)@#8O7*Tq0_9v+Z?;mC`3x*fx$)S#uGK7Kr~ zclW$a^9~uBZGx zCz;y{%)i)JfeOH~zyM_a&mag6Nyh&SLjM_nBsf$V8UC>`{$qzBHpc&q44jt#R|Dfx zr6kBN7)XP`zjuO+xbUoN_mhB%I14-?i-EKU7`vU!wgWO=dAc};Xq--WXw4-DR@Z=ln2?~Tu(-g;&=B5d zr$tVl+IW&#^vV?{huB)@anxHD_snsr-&zE&-9jVMV;EJ?LWE=mPb3`PcqM!E); zx<=+91_oB9hE@iq+6Kl}1_rg;RYXxV8U}fi7AzZCsS>JiWody{an^LB{Ts5l0Qm` diff --git a/deepsoftlog/experiments/countries/data/raw/flags/HU-32.png b/deepsoftlog/experiments/countries/data/raw/flags/HU-32.png deleted file mode 100644 index d7d17598429aad30a973af3357303421100528b6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 435 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7E^sk8u}5ZC_<4F44r{wpd1$$vX{ z{@=9=g8u%8f`5Ph{{Q#)|6dUL^Y`yR82JAWq~Pw;`}dwf5koZtLlpyvtY#2v6B7p` z#ui3~7KRJ%;+{Yo8I!!-T{u79T>1vc;VkfoEC$jZVC;4>+YZQx_jGX#(Kx^LtfyFm zf`IeEhGcCHi|(eX|K3$iZBw`Y(`Wpro-$FvwQk{>S8bu;s!^{xt_F6;y=+_>%Ab7q zMA5Z`MKkx$$UL+u&pJC=T;|`Nh~@SIkLC(6&*Rx6dGi5tIJX@0)spI8K&whErLK{Ah=GBXsiBpDskVW!m4QL+b`?<+4Y~O#nQ4`{HSoNe zvl6I55@bVgep*R+Vo@rCV@iHfs)A>3VtQ&&YGO)d;mK4RpdtoOS3j3^P65mXxng<*1Vx5jgzeexwie!*ay85sV(6J*4O|JEjc?PRtckP+bN;uxZF{_Gi3z5@mVtQUEWjiuh#AJe$? zOmMI%e!%ST-KfAy=&B3QY}FFih?11Vl2ohYqEsNoU}Ruuq-$WQYh)f`U|?lxXk}ok zZD4F=U{JeVMHEFtZhlH;S|x4`Jg?@g1Zt23*$|wcR#Ki=l*-_klAn~S;F+74o*I;z Wm{M7IGSvpCh{4m<&t;ucLK6UNU%NN} diff --git a/deepsoftlog/experiments/countries/data/raw/flags/IE-32.png b/deepsoftlog/experiments/countries/data/raw/flags/IE-32.png deleted file mode 100644 index 693a20791f3b3990ce046b58d07a89a460666838..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 541 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7E^srdmuA+A!hrMh-?{r~^}-@kuA z5(bvn9#W0hBVIsr-5QhJ03_z7YHdaIa2QvWe1(G1e z!3TcVSB7u1NuMI14-?i-EKU7`vU! zwgWN}JzX3_G|ndnv@x-Xx~Zj!g()N?r#}jK8q&kiglo|A@&A&e8bT3TFPS{ogFVj`O6ESP38ZPK)fQ<<46SulhtpET3 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/IL-32.png b/deepsoftlog/experiments/countries/data/raw/flags/IL-32.png deleted file mode 100644 index 01dde524fc65becb6ebe3f750baf0a96dab35219..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1229 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfcg;_=LFr|NkE-GI1i1{J(ea z|G$4h2*?16-~vD?Gz8R(iGYTnAxr}y)*+J+HOL|mHkwgr)}grvkK=*n!xc}OgkVFw zk8I1HJ^z7d|9%jHupzQQ6aM}Cf9%-*%a=h6WTyhTA3y$o`}Y6+`~Rz|{(~Fkd;xh2s1m5)?Aia7mH*4j|8L*^f6bcz)z$wiD*oTT4Uz%^pp&+4{l93@|0PSH zA`roC+fW4IhV0z=f89D1Lm;*QodLA>-aU|A&CUOxKK=jd)&I|*K~?}20Kw6tQ1>Hy z8OR3u6i8zF8Yl=4H)O`HX3lNE1QbvbikqKYxC|7GMO1)H^{S38wym$v;Ts z|345hs4AdZh|1sp{{H>*R**4v{_;M-M)nz zH5W+UWtq^_Fs-5C+O~#u#S=9g#JFH<#W0#Vc)|dv8F4_}i%v}-Xi)M_{Ohdi2`0}NNy64!{5l*E!$tK_0o zAjM#0U}&UkV5w_l9%5i%Wol?;V5)6kY-M0jyIn;TMMG|WN@iLmZVf!I=Bxy2kObKf soS#-wo>-L1;Fyx1l&avFo0y&&l$w}QS$Hzl2B?U^)78&qol`;+0Q3{v`Tzg` diff --git a/deepsoftlog/experiments/countries/data/raw/flags/IM-32.png b/deepsoftlog/experiments/countries/data/raw/flags/IM-32.png deleted file mode 100644 index 5fb87fcb4c218d8cf64279623e702b0e9164d589..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 822 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfeuo_=LFrXJCLLMkwPS2g^TR zm>^sh%=pL0^ zIT(I$BaHgT3S_gLwq}^08E|;!?DqbKnR5$1IeDCp(41K8eVC2mKQr?`Ca`*tV_5$& zFsv%IKN24Ngn?n*nspDSPTO5ub*jJTzqlCG&CCqHS(t(Bj||)^=65Y$HSGWc!_wBK z$0a5I1O=gLfJVuP{bFFaxpDJ~Eh`SMU9flmk>1(S&)vBGaWMVkVmu!ylQ+5SEQ9EG zE9>`mdVfGxGXs4Db}iQvLxx#h)w_yI-U0o~%ln^^=|2lh3g}<3U~A*i@4&d>Ebxdd z2GSm2>~=ES4#+s;>EaloaXvXgLD1mQw4|hjw8Yfp=MSDddUkMC!}R{f_y)%Sj|i73 zjy$t(KH?FY#1nMMXj9QAE}kwg39c!jAy==Mnrz)7SyJ-#3onmhuYr-7p{eoq4JjKo zrES=F^ckCVHM_fdx_G#GIU9dY-93X@$rYV-pi2lZ70N3=Ba^w(7rL^#c8+TH+c}l9E`GYL#4+3Zxi}3=EBQ4J>ty z%tH(etV|893{15RjI9g|YPYM1qG-s?PsvQH#I1qn)tr?;4U!-mg7ec#$`gxH85~pc hlTsBta}(23gHjVyDhp4h+5iLass{k?zj*c?`jfJ3p&vpUL zM@AsK(9oaXK--ZK&?RU9=rA+@bSD}DIvb9F?ng!tzhIJ3uR&c7@rA;_Gvfcwi2Xk+ z5B8A)+%L$Ce?SkO1EUkjo`w5#*Z=2x{yg9F^u(;kN2mXKy6gXoy^x@Q`~Bbl|A&s> zUbE@)x-D0CAGrSO&p)6DBqBg@@%uN>zfT^&SiAaIbK{!w(j{wFAHRL;;h*2XAR+Vn z_wR=fpRZYSqM~v|M&|t0t54jx`4A`w3Z;Mlj~>3dZS%$LTQBY3d-3;gXtY9u>*a$- zuOHoid4Kn@BRdWsy8ZO-XWy=>Hg%f8^ojZBhDL#)Vba*ReOX9b5Kn+O=)p`uqg^m&b+o`^qmmu;BCtX^yI@-@nv-=9ug(=juqm zlACiVk1H_2>}rjafY1B6hQ-(3SQb}5Z>$izth3f)jUrc0Rc>`-Lf!kO)^0KV$XmO4 zj%0?aTj$MU2okeo)Z7P)($hp6<`1(8B z>hEvu86H*UeE#z2TbsrQ%L)!2K6%TkH$OTjFFzo2-?{Fe4Wj_-^79Fdjpgqv)F276Aviy+q&%@GmBBG3KPgqg dGdD3kH7GSPrLyp3str&PgQu&X%Q~loCIH87rb+++ diff --git a/deepsoftlog/experiments/countries/data/raw/flags/IO-32.png b/deepsoftlog/experiments/countries/data/raw/flags/IO-32.png deleted file mode 100644 index 9ca1bfd54e4235ea51955de48a4013cdef599a5b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2037 zcmV#?=0>hqp%>a-qHhoXW? zCn^Xco`8s=A>0sxfpCQU|H*HkkEZ3oAxFscbor@UC-$GMWaoz4;O=MV!A#~_9^kBf z!nGOi^T*GN@tI=aofu!TqBKlN3c+V`8lEw+czS37xci`ieTQ%G_N+waWTfEd>kWX( z+{uppS4fC8@ZN%Hgofw=G{a6+)pmQ#$ko=@%W)c;lrdwRG=FKbWVYF)=*R$RyxJqV zELN#LG)^*`dZcY{_)DLr1W04wOqI-rC~4c7ds6O}Ldh}ID-{&plQ#TVBF&r{Ar)Mz zm9oDomPSVjskFRKTK#RYlsYj)s;+C3mVS6q8WNpSgQ;EGzWXwozwWuH2rn;rjNY4c zos;nJK-^;|V6i(G-m?Se<9d8HY(jqenDDVtxMSkE@yJYhSq=VPGKq2Fl$O^MJi?c( zB^l`TzPMb1Cv`0x_}>w9Y6$6*;)#wKLGqYaF_}9kD6FE<+)Y|?jH+qe`Zoo)OIF+h zynS$4y3u-Q@$mPEQp(rj69WCbb z>{2!#F_Jwmlj??gT5R<+w!Y-MQx-BuMYD4GEGDOo#oJS+t>dLCE9NFNS_!qM7u7z9 zc9apJIB~bMLSH|k-+^LoMzs&%cDj&98DVe`)!K~{nLqvZC$6{x!E9&!_o-CfU(WT1 zm4xTaB{MdaX2)%U+-c-xCo$2OM$Xsgxpln@uf!mRpLL_zzT=!S=uqVNq*yYhkHi0E z2VJ)xpeDV_aQ-PAWtHf6@5T@k05y;3ve>yZC2kDk5$_ZbtU>7g>i<>gcq zRFZqdggwNIagKIGe=p~4I`R(RBrYX^@IY@2&Clp9uVdfkR&;?9iSb7I`W<}s#Q}1@ zyv?AH@C>ry?~cJs>(8|Z4QxAkirf`d^bJ`^h!4XM5=eEe$*mbOH!0#pgIrtF#(9&2 zgLS>M6}GVF@b7rn`2yv+iR(#kv*eQtAbGNSb2=+B(@F4f((|yEEmvE~+w}zBkzQQ> z?{cQ5jic6FO<_q5^@VMCjK9mmj8!DW2OtR@W!GP@bme8}>}AfvXjSu~szy0Sv zti{yW&Z)Dvn3@{L%-55#cRa&6+>ItMiPI-a85t44TW==g=j+YD;4oUPq-wWc4PF1* zYeq?@ILKOZl>xP#=GHEL`nia%VU@s`FqVH%NVDZR-PRtCpRS;~x|MjNKRFvq_|MsL zhMoOfEUY4DeIcpIMh+dn!_8lBVhm`*-ecm2yiz=LGFA7QS^WMF%ZIY84fCOnjJ`&deFF0MI|+pyb9wu3oEUdiogNT`&VLPc2TTi^{4e zTqwHF$nXF@U6MhdzYdoMo}Bp?J-f2;jPbxDaW#|HY(^3qnp!LrT&m>R^Dd^Pk5MTq zzN;7$b4A$1@5H%_6{5FqP`HH<&l@|$yhVQ(@Riv2&mz&)-78#fA*?U$V$C;41gsL@ z{%}GxHgyU`b&DZ~BK96E6!2&9hrj$=+&Xtml%H8AO7pjhOS^IeY!JVhvsILoR*Qi_ zr*OH2Xm0IR?vl!+@tt}>KRg;TsXdnjq8FrcCwVvkgo}k4x*#6 zj{}G2Qd75*E5AMrGQvQ6hn3cLD+zItIGqZ%-hN`Ejr8>m@Z8kK zs7M1kA8%UQx`~bs$L(_Sw4sH70AGwFgK0E(Ffx1uIzK<|7hgjiu#qxv0jKs@Y5! zAI%F>8y~O8$J(f(i_)@lmc;p*=BKqK5jT)cdj+4GNr?IlaHU!k#iEkSx;$|~wun_ECl zc^gTS!zs?sB0esH+Q*G-&bvhR(ldZ3m#!@1^e;&?w^-P*znBYKDq+~gqRpA~**DSK zH^7P0rA(c?8&EZq(t}<92f4dl%r`Z`RsaA1C3HntbYx+4WjbSWWnpw>05UK!GA%GU zEiyM$FfckbF*-0cD=;%UFfe_$BozPv03~!qSaf7zbY(hiZ)9m^c>ppnF)}SMIW00b zR4_0)H8DCcH7hVPIxsK{>YS+n000?uMObuGZ)S9NVRB^vL1b@YWgtmyVP|DhWnpA_ Tami&o00000NkvXXu0mjfoGRpv diff --git a/deepsoftlog/experiments/countries/data/raw/flags/IQ-32.png b/deepsoftlog/experiments/countries/data/raw/flags/IQ-32.png deleted file mode 100644 index 949c900f0760682ff2b5266e31606280b01b46fc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1271 zcmZ`$eN0GAyK$PU+tb1S@H|ECB0A(~iDk1y%}8*fQss zF>Z6NvJYmK7)K;dH?+`f3X`|CNa7$}+p)$KQ=sjmj1C_i<#jDB{qVFMU1Rj*+;e~D z+;i^vIxeiP%*lQx8$pm90iRa`cOIP8S&xC-HhHohL6~acc5%5LbOg~e7zQ?b072%R z&Uic?i^ZbRC_xbU`T5}Rh#3s+GIPK6RVRMsQ0s=y3YUsr!z}BzDj)(oecU1+d_B%{v_4$qA4B4(*x(Op_pCCW+xdccDml znx07vAs!1x7suwuWAQi@ob!cfUwC1Pc7qB$?Vkxp!{F9q*2pg6<|#8Bq%G6t!3o3I zJ=@3HgJ<<;{`Sw3_gyCUP0L;Lu=7UUMOm+nRQPJ9`}Qs}?r!>46$l(&U~pBQ_qDtRj*vhD6PX}VUu)!8RJJW3W+ea(4a+x+J&x8C-%qgN^F z8kD{M)N{4Rm}e@ioOk=U`y8YFEjI6#gF&vhw5fNLTK#)AJ;bh5KfC!8(tXKVXa08c zVHf$m@g2?XJy*!9zaByR)j4B(`f9JXwxLaglEvCMp}O0wEV#Ymi(CY0Ut`^>s37xU zdIhTTohqqBg_qPe<8UFxSWz(t+r%k;MT}u3+@cbUyB>SF1j7#XJrAK70gVc&Tz269 z1D>4y<`M)voyZ_k$W*P8W*jM#D)!=ef<{RlUV}@d2b3fDtKftP%By*r*FO04AHIvC AX#fBK diff --git a/deepsoftlog/experiments/countries/data/raw/flags/IR-32.png b/deepsoftlog/experiments/countries/data/raw/flags/IR-32.png deleted file mode 100644 index e81d53bd9923130829d56b83ba928f0fb799dd40..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 801 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3HGD8EPYe6kC$Fy9>jA5L~c#`DCC7XMsm# zF_88EW4Dvpb_@(mR-P`7As)w%PCe@<;wW&u{_0(0>)jcf7^h@#+^Jy{+WWrKT=Ajr z7v36Pp~an@G9ES+ZjCNUPG8c(m`-JdNErRMr5OC8_h z)E;!&d+sTf#hbVo)cbnq?M(Yc5t^ zQM$)^rCNedK>os>*8Yi4R#$vnp{c}YaD_*|FGI@pNby zf+DyHFH+XC1E)Xtw6knH*l^(EM<4$Kxff&q^L}0RNd1C+-GA$=&CS5% zq*~${QIe8al4_M)lnSI6j0_BobPX(Zjm$#~46IBItqe@H4UDY}3~INlh@xo7%}>cp ztHiB==hd8*Kn;>08-nxGO3D+9QW+dm@{>{(JaZG%Q-e|yQz{EjrrH1%F?hQAxvX!0=X_QStKc- zIUvJdKn;g@|3297$gXAjs~!!ELW`0hzhEE@2mk*%G82m*Jy?GesFAb4BeEDsdw{Xq z$!t4d(h&1>aSYKopS%GGwrtwAaqH&tf|5-P%yMzuc5HQS90?6t1!aY$#orGsKXCc< zZT8hn-rnBv_Wv6WEO;>C!iE9^0RbNIB%wCV4VyN7>h9?2>g(+7_V-|67QEURJ$+M^RHFUJtm?du}S%y{4Xqq%> z(xpwGx=yWnHS5-{DuaN4HQ`CYZebTL+_-XQ((PNdUxYgvbnLGEZNkY=u+TJ#Wj{BGxwg=?(J&h@y2Mj9J64!{5 zl*E!$tK_0oAjM#0U}&UkV5w_l9%5i%Wol?;V5)6kY-M0jyIn;TMMG|WN@iLmZVf!I z=Bxy2kObKfoS#-wo>-L1;Fyx1l&avFo0y&&l$w}QS$Hzl2B?U^)78&qol`;+0DQ}| AlK=n! diff --git a/deepsoftlog/experiments/countries/data/raw/flags/IT-32.png b/deepsoftlog/experiments/countries/data/raw/flags/IT-32.png deleted file mode 100644 index ca3db0ca3579351ba0ed52dadda5344ab179080d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 582 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7E^sa*j+A+G;{3 z{vQo|{|;1ujDX61{Q7~S>ch3BZ~V#oPXcGf&kFr zZ+(_T1GOXoM9LV7;@Q5r1(jH*!b~4)z$Vm5eaSYKopL~IhQB5{YEX=H| zjL%OmHqW-UR<1VAj;+p3Ab~;Kz`(@F%+S=((AaSMh2!fS90EKdJUm=N&IHZ(5q1+5 zSbo4O#wo}vD#|VFT+}=rVUZk>sZ&BjLa$yi%`x2?Ai}_~yx2*|EzSzaVo)t{jVMV; zEJ?LWE=mPb3`PcqM!E);x<=+91_oB9hE@iq+6Kl}1_rg;RYXxV8U}fi7AzZCsS>JiWody{an^LB{Ts5q)!EN diff --git a/deepsoftlog/experiments/countries/data/raw/flags/JE-32.png b/deepsoftlog/experiments/countries/data/raw/flags/JE-32.png deleted file mode 100644 index 001da836ce7ba2c00aa3e1fb7fb386c57d79a751..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 980 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3HGD8EPYe6kC$Fy9>jA5L~c#`DCC7XMsm# zF_88EW4Dvpb_@(mZ#`WcLp+Ypo$Bimk|@&F?>sv);?nwVP8TO}#dls4#DrM%Zn?Z; z(Y`p%%+>XQKZmHVh$!o#AWxCZrX-gOC+2n-m~WMI-4dV^m~kO-)y~Uj?!33t-Bqchrcjtfaeg5}e@w=Za%Z>Xw9=!~1&D3&8y#1@`N$TnqK^r%8wf@x-n;EM0%{wt# zaz;;Sb~abPdK<@^JC=PN3XdE%F|7|T{G!ouV5YHwt*=pz^oFl%yOP)09Q#wn_}N=} z;(>0TIcp0wScQcH;`x=te0?8$mW(FoUp;C{XTzh@2myu`0nlZ zS7Yz^e)rfOH5V(^*H;rxHQLuFq_CVi{q&#s9Z_d>nCx7rW{%m1szHoiHaF}e%roS6%+t=;ReD-L&Lc(kj zp`%BYmM;DE@Af1Q4V9os%|}I@7IQUY0s|dO{+B7#sv8>@yqa>aw$!wz|L})`Ro}vQ zC#0q-i*Ji)DrpMfsHzI;e0RswRPw+frX6>GMZ2>0^g5dSn(sR!f0C^Aw2V!YclvJY z>pgz(b?Ypt-rU^Qn>R~x7@5BOxwheH>Wep5QdCtx{ITrxoR*#ct5{({{o&H>zkWY_ z?*I0{FNGklfUIUmk={cuG-NCmaNfzw{dnx|-2L%(wN1k6ChoPiK7L{b9e?Uvy}RQ| zo^VLG{ZhGYQ)y>j_rERue8P9VT8T=V4I2^?Bn}-AW?#KJk|{>7m7}Em`RtVF?k}aq z#TTxmC^Ds{x_z=(x9Zf1|KggnE~IXgE;9$_0M!!Lh?11Vl2ohYqEsNoU}Ruuq-$WQ zYh)f`U|?lxXk}okZD4F=U{JeVMHEFtZhlH;S|x4`Jg?@g1Zt23*$|wcR#Ki=l*-_k ilAn~S;F+74o*I;zm{M7IGSvpCh{4m<&t;ucLK6UMiKQC= diff --git a/deepsoftlog/experiments/countries/data/raw/flags/JM-32.png b/deepsoftlog/experiments/countries/data/raw/flags/JM-32.png deleted file mode 100644 index 9f832862d72ff1dafe2c037e9c208e606b13bb98..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1047 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3HGD8EPYe6kC$Fy9>jA5L~c#`DCC7XMsm# zF_88EW4Dvpb_@*62A(dCAs)x4PCf4*5-!m;|NS|G86FGo85S=4W6*SK**|Hmb-OcM z*L17h^;q;KTXdr0m369tV!ncFxXXF3{*%m7YKmBJ!)VzV0}fB=9p7v8_8A*7&viWi z>0a@<-+SJd?<;nZ7k;VM$g%5#{HM$DClVNgxDuH;CWHsr<#0?8E#Ug^BEZcf+rmA6 z!Q0*yO&(pkGk=R-zuDKpAb5mpv$VlZo}Hl{jO>%PJ$(J0K~UjwE4QEv6LaQ^lLs#T z72ue#<$rPa5vCVg?JVx|#>y%%9a+F-ESIu^gV(_-(t4uTL(%sY2E4YBFK)g6?%QBB zBevyZyFrcglLX_aTMZ`;I>>*S)0q7BsshlWKt>@oMTTjm(H7qh=`|b_IG1*|F!F}w zjL4QwO$oW?5T>YE4lWmbIP}^MNx5(_i$A<0X%RKCBe-HC-{i_2ffGC4J-nfL=FH(I z`4c`LO5E)FZC3`HNRFeL$)!WHREyT~SM6Tyc&hVGblbs2N9&by`*xRE%!_T<&7b(g zZ)?H6h}d1LiuN&gF8pw;Ii}^FY$tL)o9PPk%l}gQ z{xaFU-*8xkbM|UO4+j5d55F->?B(a>^tdjl*S{dndg{wLoAY}$@4Ia^6TUJ1Qvl!n zH+EaCtaf`%;8pBONadB8u$v{m)H!_ie39FWmaBSj%*j}(cd*<3;XUOYc3dY9OyUrl z){@2BaKK&e=!PJphYRaoSaQzIty}iK?PckX-8}YdZmHdGzc9P?vG3KtcH3Dd??3!C zdaI+#hg=EQvR}yx<&x*-H7UPc=ABb(_nGb3XSF$6+ZD?m=Y}@OWPe)vsq@TF7dE$r zjtV(9*(QE*fAOl#QhFax{JgevVft^@{JZ@6L$O@lmqUq{UVIi6pUB)L_r#0idAZsn z@6X-ro@^fqC+j<|yDw9|?Ok8hpZpz>w{-v1D{EivtaXAAZ>tyVuc{v=zSX?{e@st! zBYMz7Q0k~mw(Rlh#*~`hqT3RJA7n}G%RDN3&wY)Tg66h+Op&_vaus(2EP$CvwZt`| zBqgyV)hf9t6-Y4{85kPr8d&NYnTHq{SeY7H8JKDt7+V<_)NWT1MbVI(pOTqYiCY8D zt2rxy8YDqB1m~xflqVLYGB~E>C#5QQ<|d}62BjvZR2H60wE-$(@O1TaS?83{1OT>& By7mA7 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/JO-32.png b/deepsoftlog/experiments/countries/data/raw/flags/JO-32.png deleted file mode 100644 index 607ac664f63f8182b1943a39e5356170f356e412..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1185 zcmZ`$eN0nV6hE(zNBU^#s+2;V68xBP7`A7fBR0&TD?)=I3^304Pb)1BY2~YeqKFt1 zWhfOD;ep~uwjqPbM(MD&P9+;3nR95E1SL(;$-*>q%l6NE6Tms zuX~4vyx81s@}INtxkw33qvgv{Lj&^pP}p$1vQl)pkV=IjB7#i{6eX~%03Z|=3b$_y zqA1K6Av|zEymbr3#2|(tc$N|sj3{M^M3w=k#Q#{h0fNLAE2of@LDq6~XAB7<>4Igk zG$D}#ijW{+pQOOlOvyjOo0R7 z6!xF498 zQ-G-g-nxgBsCZb|N+MeZlOEy6QrmO0^8_RYzTia%*CIN2to9~(&h1$l`fYY^^ILes zmS%3Pz;k9`Y#c3KhXF|j{rdbBKNJ|11*(=4r%#?~8dAi!n)xR`#j2W5m#r`v-#2aE zoHsExes5@36y2`yT#j6cd0cV*GCiH4)cK5DE#zLAkz%g$E+&em5OMqlqLn$_@IC)c`1 z4%Q_*vfjLLA*c89)sOpoyqEeuyY{JC1E2fvcXyY3Xx+K1$Z9Kg{Ce|?4UXYHXSb(w zptpAL8^fv2P3PXOiPS>%sj8Wt$%;Q`?zG=9PG9;q>&zSPG4lQ2{k5fMe4DHK`v<$9 zrdX%?HH$c@b>8^HYqozH&v`1JPkLU7;iR+d^LI;s8=GF5;aD^r8L!Vi+L5~Z?-9+j zd&3SII;|snY{}wbe0{Ik(?77AO?Hc}pxlBd&~mG^$=upxZAw1J>DH{$acfp`t92Y# zGq5c7r2<=txu|gO{};%AIopK`G(;hbii19N~1;A+s=uV4RPvEqMK)&Gi$|BDv=fA$Qd5{Rx``LCe?bnAZ(j{j_I|4*EN zngEn~_3FQ=>3=1q|6*bwq^S6xhXfhfL#2Q=0$m8SPG0{1^yyHeor|EEs@dA{@?xW!d9RL#w2fd7lsa2 zSq~tGv%n*=7)XQI9t>_Lv+aNi_W6e|35UcC=};YUpU` zY3eq|l^AyPPJR?Rp}{3mMKjXRbL!&28fBeLC`1bA{ZRRIJ8|CEv4m@i49d%EE|7XDG zpI_g8m=gDZ-FKaj26wd6U0{%@mbgZgq$HN4S|t~y0x1R~14AQS14~^a^AH0AD^o)& z15<4SV=DuL+U+W$C>nC}Q!>*kackgtHD@JIgCxj?;QX|b^2DN42FH~Aq*MjZ+{Ezopr0Bzeuq5uE@ diff --git a/deepsoftlog/experiments/countries/data/raw/flags/KE-32.png b/deepsoftlog/experiments/countries/data/raw/flags/KE-32.png deleted file mode 100644 index d262ebf304931623edfdbc6c7841a02a53847011..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 845 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3HGD8EPYe6kC$Fy9>jA5L~c#`DCC7XMsm# zF_88EW4Dvpb_@(mX`U{QAs)w!0zq;N<6*DGZ``qJmPfaZU@w>n6rQ55^(w5mAzxZuiYZs4&SD{2(%DnT1 z8&}W1aX~=ZU(RqsaUTI)^ zwsUJv>xOxL#&rb;0!@EerT8cX8frKQZ@7QuNS59Cy#_4TRoS21zP&@TSLhG-fqQY5 z4WIU`l4HH$(UR;?Dd%V7$H8(@BBNO-ljniP?6tQTxlP=YdziAyrweC$GG2`7dwlrt zG53P6pErfHRp zgXRA$+ysztoxLicvY?rybvZ^!q$jV~2$W!0XrsQs07Pxq0 z#G?$JS@(<1h}~`xGPzcN;7aj{B*B(iCWQrCwkFzMoArxZZ~4bAs~h}|z@(>I;u=ws zl30>zm0Xkxq!^4042^UREOm{{LktY8Obx9JOtlS+tqcrmx2uSvXvob^$xN%nt%2v& zoRvTgk{}y`^V3So6N^$A98>a>QWZRN6Vp?JQWH}u3s0un02MKKy85}Sb4q9e0FdQr AI{*Lx diff --git a/deepsoftlog/experiments/countries/data/raw/flags/KG-32.png b/deepsoftlog/experiments/countries/data/raw/flags/KG-32.png deleted file mode 100644 index d09c922e0601a7dba313d2752e2787db881cda5c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 903 zcmZ`$X-Je&6g@MO+o+Yu1Z9|#nl>1pic?J@IgVS_xXftFq&YgD6{C&IRA>vKNsClQ zi(%%E(n>3_f+S0baLGso2|+83XaSM>8&Tb^&tE~od-vVIk~6<^d8g> zss_CR?EyUnjf3(;V~pVr**1bEK|P?0pz8v|Y;}T%+h)u)(3Idg1G)iXdrvUei|9Ot zVNUVbD)<@Cvvh-)N){r_w`2gdfxdtSM8y%%XHYXpC-mXYGeAwCQP6A93o%iO=wx1G zCJ6(XK>46epl~4+hgc9^EH!J(i*;ryzOv&v=Nn$$`N&`8?#ecqf!|;K6z6(RM(~SQ zS?cymK2ya`9&*I9Gm~aau!N5m6(lNWm(P~z`~zaVRoay+RfeVu^;b_cF6ve;JgP_t zw)ti4RQL6ThP1WH_KA;O+V>5+&6$?$+^n1;^We>6d9_>2>DH938Pm@ihCS<*MgBT- zOr>|a))8RUZ8)^qZQMn>hUIr%G8{lW3TD{$0`>PcbGZ z4fYN6uL=pfA9|~x+`ihnqdK`b_kd|%pfz6SJgw={EYUPxynN|lj-}A|cE?Ot(`3&N z_eTR^cNP63#nW%cCda3Och$u_=+HmuIaIyAY%naqY7X^i_GKx2#-w-ORyg+a)S<4V zZ7#dbCF_eSWIhlrMMXzS>m#GrS|mvy8>N?GwNi{;l8$tTX#Pqlb=vn9SN%W1XQsKG t6PC_ZFguG~2W=HH670@GIVi2vwp-4YZT712AvumgNJ}yqI}HUje*lh diff --git a/deepsoftlog/experiments/countries/data/raw/flags/KH-32.png b/deepsoftlog/experiments/countries/data/raw/flags/KH-32.png deleted file mode 100644 index 9da5d0f71d1bf9cd2f89d4686c79c3a9da205b28..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 858 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3HGD8EPYe6kC$Fy9>jA5L~c#`DCC7XMsm# zF_88EW4Dvpb_@(m#hxyXAs)xKPTlPv;wW;gKKNc4PX;Vc=&OjeDeqU4ZoclcB#voOxW*k*uZ?r?`7<1mi`85_XVDO zF_(^b7ASxIF1a?WnoU0$l&)YWg!nCtrW zi^E#C<$^yZCHZ`I&YlzWWD&>7=bo!VJ%V?!vCZ11-5R|1-88;snd=+uO*#%;Et}OW z%(CS6Z3~B{2j-nFf@Xau%U-?E=w}UK+g-eieZyMrZ@XnZs)JZwzEzA~Z}20l&G@O2 zwYPUkf8V0T6ONtY^2+w9w}1JIEpzRu6PGnZ?rUC~XX`G`6|l18nZv0Y>%3Gq%u`x^ z{$UmSkALr!KR!x7Qy@CEzhnA7rDF+RuA97CzZ}=P7}g_Y z(ABEu^5%evx%~cZ^D+aMIB=NAtdaS;?CBp>4*n>?)9w1x>O0%~9Tq3gc-%WbqwJ1@ zmN!EQFdeFvxJHzuB$lLFB^RXvDF!10LnB=SOI;)L5Ca1%Q$s5QQ*8rdD+7bt?JA-u z8glbfGSez?Yv6e`XC+XBB*=!~{Irtt#G+IN$CUh}R0Yr6#Prml)Wnp^!jq{sKt&9m Lu6{1-oD!M3RS$Tf(xZu@In#61zW20LaYcyG>NFR z8miQ|BsE)YOeUR7_Dm+TWtsWU=S6Z?h4jJ$=j!FW&%^oPQ|Y^F1f^K*QA?mSXaz(R zMjq&ZpgkZ0=Bk?j5o{>Msst41EX>`OBNGsGD2G=mtT_X`tRhA@j3~qBc8a${=?G@Ea3Y`303y_yAw4gM}eGlxS4Hi6M%d zu`K%k3BdA@Em%my{2vMuHu4RHy-cuf5dPl+h6$p%ZkS4;EQ9g<9Mg}?Bc(aCrLbMI zv$oAaz_OwF_jf1-T3?SM&$SFx3i6y_cS1T2$^?fSl(C#SoESzPlU9t;CvwHVZJyt_L?eog3X5h^-q`>L)~!) zGBSZ&>_e4#06};5pnI2?d8QhD^WPM#8KveH8v%co#PkT3%fe8%;y!Z~i4UOyg^*oD zU+9IxHK>Z4&_DeG(J@qs57H@g`xVe%eXcVPH%h7=$$j*;$k0{EC6Xc&qhft_TGGw+ zl4`6L>-4)Kks-+@6OzqD#F{xJ)<})$=tfzZJSB^XVaXip3!i=2!;jyO&~#4)4?k4Lx^j(ZVPMeW)3cYk)H%-m4}^Gd??y_UIkbkp z$tBL5y-eqCQ#|_E2KL`uL(p7g$x`%=Er@E~^NIGYcPUSSgTc-iM~-Y}Q{6hcFGqOu zL?_i-eb{UU69WmJd%m8^sv>^>EzI%PFSC7D5!tMeNo9EUnR+TJf?RCB%F9Q4*ng;u z+1W+x3t0|7y@jG;FF%~W!fUTw;i0F>h(~@p&mBkDUjMLRM!j>%+l$ZMnhbM8n9h8^*>FbNq*EhlT?Ue+BUcy6@ z(034oI)yQ!*jvvcQ7w6{l?o?hh8p;{Iea=iE6pX}HXpsucjwzeSv4j!y! zYAVJ1@AuNwR7xo1=iIpg0s#jH4s0Y6iSxk+S44%wGuDL*{YE^#z`lL86crUPHI=~c z_mE1>)6&unKyz~~Uay;(nIyqrKCxJmmX;ozPCHFawYXdk;_)q22ySIcFUf9N_P3uS|=V@*2LBSgW2FrH|kHNLe*gdg diff --git a/deepsoftlog/experiments/countries/data/raw/flags/KM-32.png b/deepsoftlog/experiments/countries/data/raw/flags/KM-32.png deleted file mode 100644 index 43f21ef6073a8877364e51516d062820c3013e5d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 951 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3HGD8EPYe6kC$Fy9>jA5L~c#`DCC7XMsm# zF_88EW4Dvpb_@(m7d%}YLp+Xeo$8&_6DV@L{`+h5w?5WaU(N_RVmz@!Lr5n=;3G$p zV~bl;(oHp?mI)l8EqZHuI*w@bPSoR2(y`GF6gt1nG31Kz+XZP+#&fTKul*h|#ZFAD zEH>@CW}zh6JB35(P@bT`!6p1@PcOF=zU)1H z!~Xu+KbmHi%UU@aoHY3tFeEZa?BDdtw(C2W#GK_n=4^|IiaxL_J#L#`M)Ic&?h749 z9KY_KS$O7slt$Ulk57-T$jw>)Z0-D4k#pC~H=d)|{7mUmqkz-O7$fzkaqAiOKUDvs zd}bNvY>n8xU2WH%Pr3f~p-ZxMyV#k;k5`^nY^v>0VRT&S({bW`@cSbxcLk_s&YgDa z_g14H3H#>M7Pu`7^B38su)1&URCQh6Ptt2$T~6Om_C< z%I#AOsqfgdP;d64Wg9)NDHjOMjARV7sC=!W`q;~2>n9Q3m2Pf7j|F6iU3j=DQnL5+ zqq3g22PItf4?n1EFH%2ndcXU9P8K%S8{Z0~C%UwxUY=g;!p>8U}fi7AzZCsS>JiWody{an^L HB{Ts508N)o diff --git a/deepsoftlog/experiments/countries/data/raw/flags/KN-32.png b/deepsoftlog/experiments/countries/data/raw/flags/KN-32.png deleted file mode 100644 index 330de38661128e40b54f3fbf1fc72fb275c81ff9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1237 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3HGD8EPYe6kC$Fy9>jA5L~c#`DCC7XMsm# zF_88EW4Dvpb_@*6?>t=`Lp+Ypo%-MZN~z3o`S<6i?|x_T<=qPlKidT-9du75xUIc0 z>+gjaGt>0s?7vBpoL=j;Ziz~LaO00r_P+`CTUO4#-1+E^myWLU1g^qeF z`z&BNg|F}Tp5G4>vb>ni+dugE_UoPBx;M6Z7Sh(PIy)1aNpNQF`#5>tB}-$6(3nT{}*LW7X8k3L4_qrOS;zZ-YLFIcjW}NxAAA# zZ#l9tdf|Ju8#)hsTJP0e5D{>&Db&B;!h55komJv6S7lVwvnGK`i8psepUstJ+Rp4Y z`ElvN0vV^;2cJ2F)I2zw1uadPlUMf6ICQMXF)W?^<*qAkXZ4@{sg|l}Q`d2LPt!^L{?7Kwwc68v)-bcw ze=*WsbNSo0sS({xs=;d4r?aXwtYeq>z;(gLpiRW=Y{y2e%L{h@m0F+ETeK$oGgxHg{qm)XT;KR6P{K7Ze{ zV>X7ppS{=ilyK?H6q00Z`yc;Bk9lDtYxfkB=k37Ie;kn8b0|n7D!?cDb@`qjmyE2| zOPo3VIr+C!O*}ttgadO{0yQ_0ZTitm5a-FT5N?)pU9JT_EnSNNg`b(Ne+H7~@N zcpIW_T(5hdUh-{`rqP{(uTh&0hFE`bdw7`3(>1f@veLD>=lLksTsipDKSal_vif20p05=@#DjRcbJwlyr~(!NswJ)wB`Jv| zsaDBFsX&Us$iUD@*T7QO$UMZrz{=Fn%D`0Hz}U*bpmw{8D2j&M{FKbJO57TFUd>qv x)F276Aviy+q&%@GmBBG3KPgqgGdD3kH7GSPrLyp3str&PgQu&X%Q~loCIAhuHBVI?f|AvbHJ+1#I^*|Lc zFaYfUAtt8(%uFE5Iy(Q&U+{0n%zw6a|Jm7rF8MDj_n(RNzpd^6`}h9?!Sdz*-@g6- z_wWCX4v!ExZ7B$Kw?KlW4HC9fz`+X+TYKSy8o&r+D+%%o2ATi=|Gd54MnDn9 zByV?@h__ph^Z_}X1s;*bK-vS0-A-oP0U7^1T^vI+&L<}%Bqt}Qr#DaJU~)1tC^*2V z&Te+#z=@+r&K^E}Twg&$MMp{N*kNTo#wXrho}QmR6&M#98X0(RK5^p2sgv3oTAHg@ ztXg?mfmtjwjg8k=*O!+!S2otRmf6`?nU^EpJ2;s8P)dR+8G1&>(IGwWJUX^}nRuN(rLDDfmBC(4 z&K0j_-P-l5?bx!kGYw6wrQX@m)$Z!k7N|)?wk(onD7+BlY@};74;T`vC9V-ADTyVi zR>?)FK#IZ0z|ct7z*5)9JjB4j%GA)xz*O77*vi15cDsrwiiX_$l+3hB+!}aZ%~=W5 wAPKS|I6tkVJh3R1!7(L2DOJHUH!(dmC^a#qvhZZ84Nwt-r>mdKI;Vst0BVx8PXGV_ diff --git a/deepsoftlog/experiments/countries/data/raw/flags/KR-32.png b/deepsoftlog/experiments/countries/data/raw/flags/KR-32.png deleted file mode 100644 index 4fa6a92a9dfa94987abd5b70120e7aec8e12d5ec..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1121 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3HGD8EPYe6kC$Fy9>jA5L~c#`DCC7XMsm# zF_88EW4Dvpb_@*6Rh}-6As)wGt3peVqlsaBsvhkm%&juBTo=p?<-n41-vWA!#E^ACMPrh_DBz;C1 zTN^{_y$|=EC#4nKa?<#vYHn`%{Z941>T^5qn@);RVBj#A;wW_NPU<1*A?dGSKq)g!!w@a(5lRN*}E1Wf%%ehr|-D{)opJme7*>~3byuCN+t=EAm zL7WE0w$4T~4{Xa-Q&*q(K7aYG_~^s&@yGS^&OI&iiJ7%v=TCu^(c5?YJO1@;(VO-I zWq*Y_Ssp)*zkK7ykyEF*Z13J>$(4S8jQ7vKIv;ltE9;Nv=O6c0;cRvKGS|-6*OzzZ z86#(B=QV5BzU^;O@ppalxl&h0XT|%ocD3e~ksFRCebQd7GC@oGsdXRAr??u=Xm9UH zOZ1N)Gx-p=KWXC(oAZ;GtbH``@}vnVZ@pH`ao}7T;x$`Z`jn^FSAH?3ZE{oNWA*R5 z&F;6=lHXGLagj=<>FiLexq9}G8aX4Z1r}}GIPui0ETfygN#S{7QYQ19%EKh;f9TFz zSKI9W>i*Mn{`;F=Ke}@Dq5$9f)!$TE%D0H!&z{=o|GGa=wr=L(MvMFMmGgqx`z~eK z+{?>ZyjAOr=VNh}C2vaq=rbLYc=XZYVZn@FR_)(j2=>KS_IbGLzAUZqsGJkPP#3NC z{bAvT)hCu*u859yQJTmuv_95*!s(|!QuF%w+3uxhWpOpkyFTy1%nVcS@bHyBIh+1$ zKYoZ`d(W?5ii=|XnF=zKnu^oU-(4&HTQOi&tl8|;ii#P@Z{NoJ{wuZd#(bH)ya%(_ z$35JvFSp#dYQnm8%{{&LN1w~jRjFAp?dVZg9UY~!f^KeZC!gM_6*QP+!zI*Z*mm=# z{LHyC)g-o@+^NUR{5K>dgyF$6Tb*PMwzav3((hS1dwX-2mMU6VE!tvxsZHg)gfK%| zgZPcd`T;AyF{u05bPID$ERU_)wR>ak>?V#5E^7yajNJ4yg)&vu)jwaS&51g$$*TXp zaqsR;G3+(>r>iW@zaOSH`C^>L&*edyYtzF2Pv&E3>7hwu=b`-1ZGFo64!{5l*E!$tK_0oAjM#0U}&UkV5w_l9%5i% zWol?;V5)6kY-M0jyIn;TMMG|WN@iLmZVf!I=Bxy2kObKfoS#-wo>-L1;Fyx1l&avF co0y&&l$w}QS$Hzl2B?U^)78&qol`;+07uQ^MgRZ+ diff --git a/deepsoftlog/experiments/countries/data/raw/flags/KW-32.png b/deepsoftlog/experiments/countries/data/raw/flags/KW-32.png deleted file mode 100644 index e0471dc186361895dafb62392f3561ac833aebda..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 978 zcmZ`%ZAepL6h2dCZr$q#x}}m};nY&&Zn>lpGR?0w9XjX8j~|SUn%$D!`3D z!MqOMCV-D$0g#YBd%&y93){mcHvwA#d`XO+l)FYG*4+etnGeEXp;Du?&RHGb9Ja4E zoC|?zG)1e`>eba%&wvz7q3LqD-0N=7urx(wV}Q%Wy4{M;kK7jRtIY0+x()>t>$EJ|{IvE1gmCc@3mvkl7_%_~u7qy}6cq2tgHRA&|($2*gp z^ojB$RF+h!$-0=gCPPk%PM@2f_lh6Vp3p9T_@LHOTfNILV|t&+B*^wjO6VsTho{CL*8ro(P(CQ!2C$IZXVpYc2jK7$OWI*esnKFq zm}<;;fsB#L;+g&NvP2!jDCANFBadbFDj23=ERy@(|0Yycl^!jt|9=AI?C!^eP_9B= oRhgyESYw9d(y9`3gsReb#H=+NOY4tKm=9nOsM0j4Ln(&F--Fa@fB*mh diff --git a/deepsoftlog/experiments/countries/data/raw/flags/KY-32.png b/deepsoftlog/experiments/countries/data/raw/flags/KY-32.png deleted file mode 100644 index 7025bf7df0b8c0a4db1559aca88d174274a4b59e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1423 zcmV;A1#tR_P)L_t(Y$E}s!Zq?E@7^4PF3?>SGVnU4L^*Di4myp}WE*FMDmLy}3a~Ry8-WX44`rWrnD$DU*i5E>XqBa?-C9 zx(0ab-ZIwTHJusD7t0YTQ?GrzPyN!;L&z>qoNr)av1Yx4+|nbODal94I4hpDbRv;-~_5XNL=)I_qA$P&D#V1RO0bD zy!B=`6*u|x=C5SnNi>3pz(5+C9>Skhi;U*LS@1njf{Mp6gG1PK2CwdV$c=zjNT5M3 z*Io%EdM$Mi#ArEtichv}WA2SBXiZi_ph=tmc7pd=ypgSRB&-<<}f;?ct5@QatvIWsR@UB~d>Ad^bNG=-`Ft zRx+<9;O@SY9Q?J5ZRZVrIZIRtqYg^Mk=H&C_wHwI=RS;{Nns>KQ(qh@UB|g3#C#Z> zPzdkEjZG3BIm+IXNj|+``1*X7LR&xUjAL*V)QG_pD|T)_$^jJf_AEJ1@Bs^;9P!mliPg*|GzQN=p{5*;#-KfoyG~u9NvSP;#wDkf;EKyA92;V4 zy~n6hXkVBT8c;$?DU@>*DaFMT0}xZ(@?agVJI#r6StRb^tfSh8L|e#*JJvD7zle=C zkWXJAC@bgfZKwJEqvI6c6eByqFhp*C#kss?YG?@~id12oo^fMcbRzKdv0re*fX3eKF(ZLLfV_GlrjfbxVuAkbrL93aq}vviMGqVocRm;&plR4|-zyfEKm^X3${)&IbqiyqoiK++!@3eJI7AUe}gq!s<{%9-F@tKa|`2jUdbawx7e zC>&Y|d8-)+9ix+^dQAzy-~GY(bd(9ZljARUO8Q7}W3V{@001R)MObuXVRU6WV{&C- zbY%cCFflSMFgYzUH&ie%IyEsmFf}VMGdeIZeYYeP0000bbVXQnWMOn=I&E)cX=Zr< zGB7bREigGPGB;E(Fgi6cIxsaWFf%$ZFbwLPsQ>@~8FWQhbW?9;ba!ELWdK2BZ(?O2 dNo`?gWm08fWO;GPWjp`?002ovPDHLkV1mGYgE0UA diff --git a/deepsoftlog/experiments/countries/data/raw/flags/KZ-32.png b/deepsoftlog/experiments/countries/data/raw/flags/KZ-32.png deleted file mode 100644 index e383072e3fc63cf30a741e1028b84e641a58b929..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 972 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3HGD8EPYe6kC$Fy9>jA5L~c#`DCC7XMsm# zF_88EW4Dvpb_@(mPd!~6Lp+Ypy?Q!-N~i?ehxGYPlWiw{_?LY5& zJW6Uo@VzHVqRP8(RC-v=^%cjad+9|MT`2G442rkVn!JHmDA0Y$$`wl& zC<~Q(|BJ85-E8^BIQIze`JY}#&5N?wYTvP{^UgHOI>sLE^Q)(@gU%kHvDRg!S&s*#G%gX^9y_v61F)DszfW+1kVTETxPyYt}KH7v@WzmdZ1(Q2rpSKT=ziws zWjXum$XAYzvB&Fz`*y!jY>zR2m+jrO!=3ffwmJ8Eymc}=o|;8W;QCc~bOCooizctIaSgO44)>{8Jn;5@aCf;m_$d?Z>S+q9m;)b?W%f7Kalk_rL{$=+Q*Ynnk zbvI_T7xP&>-XM9{%FD~*(VWYDzr*HlTC;q*fV)wpZ0EOKqS;HYXRP5+`?!z!o(Rv1 z=%9(l`Jop>tCxJzTKDs0u-(S-MJbjnU6+h255Vy^8y~ zc-0L)R%Jblmov(3o&}iizusZIa__%s5fePN?yf(W_A`uiv5~e?DYM<@uES{)KJT6W zNAKejpX%AYntC3*vnGZIZ+VsWUFn|QzsXzqFQ2*>D)z9@riTBhVw}M5qk^5PmnY4; zRoJ!X%tYQ-CGR$>{^$Pn;ftPk!LqBsl&@Oi8c~vxSdwa$T$Bo=7>o=IjdTqxb&bqJ z3=FJH4Xq4JwGE7|3=C?wtB9g#$jwj5OsmALf#=nnl|T)WARB`7(@M${i&7aJQ}UBi f6+Ckj(^G>|6H_V+Po~-c6)||a`njxgN@xNAJ4L6M diff --git a/deepsoftlog/experiments/countries/data/raw/flags/LA-32.png b/deepsoftlog/experiments/countries/data/raw/flags/LA-32.png deleted file mode 100644 index 55404196452577c211d58f8d8552c194d6136546..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1253 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfbJa_=LFr2l5#h{xh)rV9@Yj zn99H~i-%z*1H()(ISVKP6bH%zl_4P@7m9$ga0FBgM?iDn2xt@>0ZoP@xFEzXxO%uD z5ZmGA!!3om2ka_lhX2A~!~$|5TrrUGok9JFfbI_wtuG8rUw~3V8b1VeL4u4RpQ0fj zwrSSv6HNpr)~2ti&st|CHraw{q7TP(h%&g_fDB%~*$fQRg2I;Hy7T7GzyCmV@4>t1 zxK#`cQ~CLUQlJ3jXPGI&4fN^M+qYl-|Ns9V7(9CTj)7qYFT)H0R!|@a2?2v>N=nMQ z-@pHX)c^^QN+4NLv6X>gl9<>mh? z*AVNTJbn+fg%fHWG&=Y|E}Rw-v+~}9_kV%b{r~^y>BpqhwLqr|2+l?i6ZUDAtP?DS zCbbl-Z!g|xFE_=EVS*3GG>9@pP&0yqT2L1l!k-x!far&y+7BU6P=nG8FkVEM{);mG zX9Xp*Cr@O$feFsGB*-rqob+JCzjuO+q~MkpaFneg_va5u7753OgM88gTZDzugc>y(GB<56Ehs74R(jCj z;MKFTEH*ZK_te(>{lm=UXcJg&SeVAy(X`;fgbNogZ1~V|V#SLYH+KAJaZw023h|od z%C<;B(~^}V=<+3Fqs^O&i#~tiZiu-lVp$o++R@}>prNIwsjIzSWA&O<>llkfxu;IK z8KS_Ib#TGDeG50P+_`k?+P#Z~PlT=w4NkxA5O(3}-OIPH+b2F+ax!??BF!0QvMgz5 z=9uozId^AM~nN+604f+2W1uQCFe3-cSc;9@BN`WKBwh3wH zavPk~Z(03LBrRb6aWo=IjdTqxb&bqJ3=FJH4Xq4JwGE7|3=C?wtB9g#$jwj5OsmALf#=nnl|T)W vARB`7(@M${i&7aJQ}UBi6+Ckj(^G>|6H_V+Po~-c6)||a`njxgN@xNA!wBMV diff --git a/deepsoftlog/experiments/countries/data/raw/flags/LB-32.png b/deepsoftlog/experiments/countries/data/raw/flags/LB-32.png deleted file mode 100644 index 46819a15910a06d0b5760b30bf09eeb9884da2df..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1346 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfgqQ@CkAK59Bj2{O95M@9zHp z`}hA4@Z-mS4-b$aPzsKKTsQ&>dU=5mP!~`oP(2(04FR&r1`zFV(|`=1`EUex0K{zw zF7JPCuK(QJ|9N;J4*ti$07M`*#GP=`)APT#&%cPM|IxAk1A_j0xFZxGTl(Y2KcGwg z{MmM3)xi_n{(S%T|L0Fo_(0UaeE09)zfGz*;%pE zqn969_Vf2opaP(cfB*fx@c7b`_s_3Bxz3QuVB28(;rqugKfhggaQXG;Hy~%jy$|u` z-~X>(Jvwvs@V$Fi=Wm{T{M_z;Km~un${-4WAqkHc7~`L-^G|KHf5Bn@W0U_!M*lFk z_+w%A&&?H_PQdCRk;2UVkAV>yM_dB`nOQ+G1&K`#_WwM^C_CGKE>4KJ>G#Q? zlxkNJgt>*s<3!syTKr zDXvg6w=U=R*H>uGYuetwUY_FzI}00YdrMnuv&A7nrA23w1Xv$U6bcLsylA+w@FQoZ z=Sj_#4slabW=%2a=5cAv*%eb&RppizR#oPg7gtxsIAOZp{B;XXtYQgV5VImEBqSte zQe0G6TwvtXxLD>VtHf5W+??qklCdm%>GJE>mR>hEF*Du1W!uv2R;5wDzDOFUpPgr1e(w+KOYY@`MwKx6!udi;edwp;CDsp{$YhUo; z!NSAteR9@ykDjc&oPKVeb^V70Hyw+)`Mjqr*jMoJ(o^m5^|AXam~B_&I~`nmyZqg~ z-TxmvR2De?YS~ua<+?763tzA?WOgqLZ4hZO2Zp+8iEBhjN@7W>RdP`(kYX@0Ff`IN zu+%j&4>2&XGBva^Fx56NwlXlN-L4{vq9HdwB{QuOw+5b9b5;U1NP=t#&QB{TPb^Ah ka7@WhN>%X8O-xS>N=;0uEIgTN160J|>FVdQ&MBb@0Ip=%(f|Me diff --git a/deepsoftlog/experiments/countries/data/raw/flags/LC-32.png b/deepsoftlog/experiments/countries/data/raw/flags/LC-32.png deleted file mode 100644 index c21c1d7c37f1f82e0a5d96799fdba7572b2434d2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1021 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 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/LR-32.png b/deepsoftlog/experiments/countries/data/raw/flags/LR-32.png deleted file mode 100644 index f4124f19379c25c28e8cfcc741f6252947358633..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 953 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfi^3@Ck7}&cFacFZS+*p#Ly% zih%)wp6}TML2!|m2M=qLjN1but)0)j9_zCL{lK_?j)Ac%n>jg>WBKp>Ns zH-Vo&O_nE}fgx)WgV$LGhGPuuK!-6fq;qp8GcW|Dr}mhe<#01ZGcd%g>YDlf@WE$$ z_5dBsz>wtTRvi)Ea{k<{{{9tV;VlddzI*l@1A5}`-+v4YiJl&H7cboT`0?x1NoyDw zQl<*{Tx0~=&JOg8oGdUHT<6c*@a6N5>(?HzFhnshM6c?c`To#>XS;R-y{w{=&B>A8 z-n!Vqp`@;MPF!pU1B1ujy~n{OI|KDHFz7Qd*aArj273ku_bCiU7eHQP1{%Kq$T=W7 zaP<8CqagCYk#oC`oWFYb#G8W$ULHII481?EULvEvuU`Io^$H%IM;I932stEyY+&#L zgAo{jXQV&I07FQtB*-uL-zy;^(avQntAV;0lf2zs*b>ur)B-u21s;*bK-vS0-A-oP z0U0+vT^vI+&L>~EbnW8R%jO0qMrH>Yc+`4)c$TF-6Pp%x&1_rQH;IOu^IE4KJb3Zs z&7)V(-aUMonR!FyhGK(?%HI_~e*I);VPj2ZIG3Q8*EZq8h7TPlR=k*T!-D64@bS~f z1?EqfF=fuASs5U-+eA|NIxDl9HAGBh^0o3SOU)m7rv zD`_d|S+k;}Zr?I&$k;u@!kL|;q^$J&mv4y-opzp@ZFM#dyW-uZZD``GXt={t$=cRg z(eTJcHMPyNqT!TEsA=2DiiTe)yuJ+Y;x38{f4+JK=tCwWnfUdT}2c{LvDUbW?Cg~4Lq;rtORP11lbUrpH@$mk%&>GAK^>W|-;>QVByq^~eaQ7mm7m_W{j8MiA4GNuU*I z09h6n8|WT11W~!`(te;jkrB|%aHKHZ8|Z#G0(k_E6y_uQLQ;DH5J7?h?i~h(>0ku( zAdms_CfsX4pZ50e@0)O-yKi6L#DiTudm#Y`bk(t=hj;GW`uq1UARF$}uV23|Sg@eK zf5OwJPyYhF0t;t|nyFK#rlqC*`0)ecDTv^!SFc=MU4apF@#00edT1d0{rmFe%cz)W z5phu!HPuU(FaP=b2O5SjCOFS_DeDJ%QAGcFhIEApoRx8kRd0WSg zV3<1#ea!{>B%~zBFBnK8f&YIUnSsd-NPrn2@(-B*8z%`&qHy(4#;1yCS)ieeN#5=* ztUvN!9tUzb3p^r=fwTu0yPeFo11fOwba4#PIG@aMknP70XBG(-Nymo91xyPs7;td( zcl31ewQp#3J>)X;hyqtq(&GaPW_F5(nwF}fX9TBrOir2Bq%py7vL}0E&zUuE=G@s+ zW8fa97dy|DagoDDhm{O0T-;n;UEW+?2W3*HGKGejb})T4>Masjp|N7ks&$$x)-o5G zY(2I0W{Cn<$?LDL8W$|wxN^bHrCS%Ql|6FVe1&<6d6S00JA;=Djpv%yy_ z3E5D=IZIh~x|J?-(^KuRby0iM-tPJ;ZN^l2PH%S1&N~WRX8AXF@p5c?e`9C%_j!AN zf0JkUc*mBns;Jsgq(a_`ht0iD&bsc=la-ef`ug8X+RN27b?3|Q3?*NBpo#FA92CwWnfUd zT}2c{LvDUbW?Cg~4Lq;rtORP11lbUrpH@BDMQ6 z!=B3winBpnh&Yf7L=3$M1e66LsTm9ma~ZnZ82&Rb{Nn(TuLZ@w1MT833Gxg6^A8CA zL*W1a|LbZS{D4xN1s;*bK-vS0-A-oP0U4g2E{-7@=UdNS6>JC)IC?>Wzx`VnRNKJV%D|v@ zyNW1^hTQy=%(P0}8hBpKSqao239=zLKdq!Zu_%?nF(p4KRlzeiF+DXXH8G{K@MNkD PP!WTttDnm{r-UW|>+7B7 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/LU-32.png b/deepsoftlog/experiments/countries/data/raw/flags/LU-32.png deleted file mode 100644 index 225b8d6dcb112ac870ce737ed4fb218efef00e52..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 679 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7E^sV4zGA+G;{3O_&Py|#4N4s}}w7?NaGZOgw7ibh50nJ24K=Y9i z&@Ko9+6YHLt04&J00;uP0b)DEQlM>MDAyGZE zo!8^0=jIa)A}4O0woG9D#K*O!OM%s^?^NH7hOWh0v!w#VR#<0RBs0%C7xm_r0;}G- zymvPm`gZHJ%Xu{JYgZ3Tc#wG_lO^auE3-uP%z~LsA{CDr((XOGBX&fCfx);sb643$ z?ju0Asg}4#l%ynPU^Iz=0S!%NU_jRB9i=oEXfjtxkYDis|Ns8~|NHm<|KBYK=I8-M8I!!- zUDy)ScGLnnoCO|{#X#BvjNMLV+W{GFo-U3d8t0QAC^1NAgdgx_FfjP=;Spm^56>T_ zCMS!=4ILWHlO;A=_#IF>c-L1;Fyx1l&avFo0y&&l$w}QS$Hzl2B?U^)78&q Iol`;+00b#srdOU|?ltb#-#FG_#ZxkYHm5xq(@OhgltpSk!r#)VW3VrC7vR8Kf9kHTgI+ z`6053GhI-Tv+_(=WssmVP+WPwI|$8lgP_xH+y4QL<}C1tEC$jZVC;4>+YZRM=;`7Z zqH#VsL4ieL<_9J>wluLYn}*hzjlFZ5g&BA3sI2%Y5W`ny##YDZs3;*ICMYUAeZrJU zZJZojAB;~ZG_0Akr>ALA&!kN~Tuu`lMH#PLNi{Lqx}~(_>leYM6KWDCB&1HBkeEH= z)C|R$4NDHh96J=`cI?zGw_{?SjdN{fEG$l0Snl4jYiD)Ep`&jm_(HKHUXu_VKd7c7#LWY8d@2c zY8x0^85q=VR}n?gkei>9nO2Eg1JA2DD}fp$K{f>ErbP0l+XkKAB);r diff --git a/deepsoftlog/experiments/countries/data/raw/flags/MA-32.png b/deepsoftlog/experiments/countries/data/raw/flags/MA-32.png deleted file mode 100644 index 2d0e044247519f23199b39d64f78df7c536a4eae..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 577 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7E^sgnUdA+G;{3V0wW*;sF;c2lN!S-BdCI30t~198CE4S{1gVs{$pl%qr)&OgJEF`!^#AP{%nTZ z4h;WT!BQ*?k8K#{W-=^EV>lDY@Q)p8K9F(Eond`E!`=vnec=rMI2isjGJI5K_zg6W zk>R~M!#^Y!0$ufw4eAV_>_4Ex7#IqA&lm!I!d4RG7YtPU*O9sQ$~jq}2xoyuWHFHT z0Ash4*>*ritEY=&h{pM)7q9aja^P{f$a?6ms>6%D-|toH|NkG@@!diwabEwMjcW?L z4O*5SYRtdl?@-O;d_+x)$yeu{$|TKx&P=1oBBc|-3nCWzxbAM&+FG^vX4d7GT(VVP z*bfUn?%a@MmAo%vU4-MiD-dn78p&ivh{nQg}}@3~k1?~wQp24*RN1zNjy z{sB5jwZt`|BqgyV)hf9t6-Y4{85kPr8d&NYnTHq{SeY7H8JKDt7+V<_)NWT1MbVI( zpOTqYiCY8Dt2rxy8YDqB1m~xflqVLYGB~E>C#5QQ<|d}62BjvZR2H60wE-$(@O1Ta JS?83{1OT-u#tHxc diff --git a/deepsoftlog/experiments/countries/data/raw/flags/MC-32.png b/deepsoftlog/experiments/countries/data/raw/flags/MC-32.png deleted file mode 100644 index bff4e1f5575c9aa7a38893ab000b922a84d7a556..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 472 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7E^sr&$+5ZC`e1_Q%?M#leQV*ejJ z_zwjC{s9FM2q*vt4rrfzNswPK*k+)LzmCkZBXMZE}X%0_JkHG;0 z2@#D2%z1LGacXugOs*vd^cQHH&~a%J^?KnD;o>>Pm1m)Yq-=+`hW92fMUfQ?m@_3s zBh4&@d?Z-781iDZQuwYpv;)mnEpd$~Nl7e8wMs5Z1yT$~28Kqu29~-;<{<_KR;Gql z2Bz8u##ROfwcAxhQ8eV{r(~v8;?}_PYR*ca21$?&!TD(=<%vb942~)JNvR5+xryni ZL8*x;m4zo$ZGegxJYD@<);T3K0RWB+ukZi> diff --git a/deepsoftlog/experiments/countries/data/raw/flags/MD-32.png b/deepsoftlog/experiments/countries/data/raw/flags/MD-32.png deleted file mode 100644 index eea84e18d3e2673c90b67107fadddc79eaf480be..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1094 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfcg;_=LDhiLU9Yoc{kY!@s-S z|L-yWzsG=r?lSy;%J6;(=Y3s)ZkV!vcfraYGyH$Z@c%AQBjdk2P-P4ZYZ(|e-ewTI zrzik48OVm~f*Ae}s2*+w%y6K3Wb^+&W&C=b;qp$-_m?^TKVSg54QLC<8A~}KPW^R< z``{YEFLxN$cFSy=C;$B(!-18;e_^I|lu!TvoZ-PqKA@NPERfjHEw{E?ZtpxP4FM! zj&Z)eQ2Xj!^)=xZ<$4I>&|MYI@c20Y z|Cb;ep~{{!JUk)fWg)esL$|NNtFO97obp{LC zv~Mh9=r0g^dYT<#6etj$Fnqni{o^*{zSX>`PVyPdB5>@$BNP#9KwXfC1I0KZsU%6Z zKL92vsgfYS;Q#;s!NGqNke0@64^+ij;1O92q&>jc?PRtckn!Ks#W6(VeDZ`QCbmpB zwKTCXvobzEy*xR|xJZqJ2F(eR!vjKs!U98suV1)w>DtAkiyHdl9RfTeTta+eoP<_0 z+14^UD<=yF8y9nXui;v=CO7Bp8(EpTb7EsQY84cJ|M2D0w~t>x^K%?orJ!M8U}fi7AzZCsS>JiWody L{an^LB{Ts5mBRx$ diff --git a/deepsoftlog/experiments/countries/data/raw/flags/ME-32.png b/deepsoftlog/experiments/countries/data/raw/flags/ME-32.png deleted file mode 100644 index bec947abe03d270cb03edaeaf6698294de160402..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1188 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfio?_=LEgpKf$%g(VQ3pJoJP zqoZj?hZz`-u(2LyWI4=$j*c*}9^vCW!o_)nlk*5K=MiqsBW&zPxH*pSa)21ToIuln zx{k1LKoK*T!OC`ok>e;o`{58pAUZ0*4&)vI3Ide@6+jRx#}Nj$V-Dg+<++b&3mmJ| zK3=JPR8R1zG}kdZu_HiPPEMf7K=Y5V0adae73VqArgzj);$)r9i7dqvnTkNhQ3r95 zpdug8D3CI^7NCO}SdLkVo}FWMZlb|44~gULrYGACk9mlnonQbIJZ3KrQ~>f0TnmuR zz;e_{;>=95E6a_yXWC6~O{l5L-stL&d(Thr#-+Tn6wg2jn4%>%BA zAOqPrp#cI6943yVe$qg6x>f7g6ul#p4bL`f>`&ES)!=bhnjhpxR?Z{*KzA}8OI12v zrg6kt?EE}4AUfhKel$YiaF{YMpg^XvaDc)MXdp1yg}Dy1vmZ4UIN7QPL`O}9jsT;Z zl@X#0NFD}8F(iIDIY0rz%66EK?Jz&v5oXpS!rVs$xqv|gOgX?rau}FMpeckE7UvC0x>9L6k1{xM>Oqeib(zJ& z>f#z9@kI29$W#Z1NY_x`Sm$8xX!mgccuAcl8p{;UA2_DIE`@=q&Fz@lvb1Mn)55MD zGfNO;R*klzm!30g-pskPr$#4CL_|z<`jlx?!$ZPCuU~Nz>G-@+QRK>1a}zVu?OV2O zEiWl6O%A+p`Sx}D#79d`1~2oQZI`Sj#>%!i?fgvZ{C`cY-D3KYyLc8RSn4d861FC0 zYt`9XrLWC%?rf>#R$3sjtt+pYWzE}fvexBq?`|Brc_hhy!B3yBpevX)hEesoS= z9-!R)(S%uP*ZDcNOSPyYY^|L@vL>2>S4={E+nQaGT$a=ashDcma=HTUBJ!5P3)s@x%@4b|?;Nmjs z$zfzzkXEztY@e_`P@!sxYeY#(Vo9o1a#1RfVlXl=G}1M&)HN~>F)*+)HMBA?)iyA; zGBBv!t|E$}AvZrIGp!Q02A)@QRsuChf@}!RPb(=;EJ|f?Ovz75Rq)JBOiv9;O-!jQ TJeg_(RK(!v>gTe~DWM4fosMHz diff --git a/deepsoftlog/experiments/countries/data/raw/flags/MG-32.png b/deepsoftlog/experiments/countries/data/raw/flags/MG-32.png deleted file mode 100644 index a296cdeb68f888b7b02965b3b5f91e784e065c60..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 648 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7E^spkPcA+G;{3KrA2y5Cl{PM?m#(1k?yeKoj5yXcQd%hkzeH{(E?U4Cmqb4`h3S z+59{p^MT;Uj~_uE-+38+X!8Iq0tx*3kuuN2eiDP%R34yp5D|~X9t<-WcxLkeErp19 zE%IQP#vnSA2WT}^4OoO{77x$?idUL`0R5>_666;Q_A!w7_fC)z7oK(PeiBd#W0JSK zi^>+ZpFm$Qa29w(76WMyFm^kcZ3kpDd%8G=Xq-ty%tH(etV|893{15R zjI9g|YPYM1qG-s?PsvQH#I1qn)tr?;4U!-mg7ec#$`gxH85~pclTsBta}(23gHjVy VDhp4h+5ii_@% diff --git a/deepsoftlog/experiments/countries/data/raw/flags/MH-32.png b/deepsoftlog/experiments/countries/data/raw/flags/MH-32.png deleted file mode 100644 index ae7cc6b9ae9907dc4db6f2b41f8f85ed241f27c8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1400 zcmV-;1&8{HP) zLgEBchDOm)tpgQf>duNg=WnFTw`fm3R0Y_kq$=#9VAu?04HQ*iKPQW@kf=b~(9kWx zzLzH0v+xef!fm*;QPxIamVf{h30B@_Wi&u4t1~pFBfR3dfHh!3*U)W+cjhJ88||Pj z+=fd{QpgCVa*&fV1T+DrgattdD^^EXyS$ui-oz6a=6X+(RKY?D{#A(*ArU}Y*D!3s z{z#JD(JtysVmRz!@+lA5B6wEpBUt~sWlfHtAwV%DE}pGM=?w6Mu3<>QyX8rCS9VexilG%p$Pa-zH;ix7L4u8M;Hh4U;&2-P z8a712E|x_DtXo;m`c+XveitD>Y<#(rJ3XUl*mMl$7|9w4@s}}6#q?>S=)eTts~G34 zXcslUv#8ku#e{*V-Azf$KKu<$IKt%!o*qI&K+&*CXLK@C21VVPZ5DKkOx`4&(J?K1 zHW_6?A|C@Q@If@in+tBSNIQX&1JfPB`RXS`8n@!DYCv(ip8`##rx<*cQbPgHv0gkoCN!`dHoGMy_i}FoAiee@OkKH{{u!yxM@JO3f#^6d%ny_CZVL7p#f{*6M z+3IVh+J6Jjk{!64z9qO~1FF9SfNWl;zkiThoew#Caex!2hj9$)7$pw8i(OQ14x-zT zG;D^7_KXLfC{utMRJa$YECB^5Lt;1-`g1BWqw}HN$&RH* zXxOxe@cJWYwXa~hLkuUT=!$g{yVT3^b8!aRv#6SawZz5zW*-`mHYG_zGG_eq=b@=U znJOu&D&rXq^HzqB>u$4m=P32fui;(RMJ`lLUsC60TR-Q{cXRBUM`*)3X2^lN#zk~< z5YvVULo!sb|JVM|6rnH@2L>`6ZW*EF{Qy;sE#yneSaefwW^{L9a%BKPWN%_+AW3auXJt}lVPtu6$z?nM00007S-=cs-w_4-BDd#zj;|2S9emOa3o`KYMiLWyu{h$ ztuf5o=^U4ttMoFhKM;#e+)URN^ICF`$G6#H^WF3PJumw_pXc-ZzJ{d4I8V2+ZUEq^ zkjJXXi|CFT?n2)MuMXw_4600u=ViDZuniFZST!I3x&w{}9K_;DfK+q=Gyrh<0~`w|VhlBa#~6(8PR2vb)c%U4H1q`^4>%Ff6L1{hAx1)T zeE8aI{UT>pfBJMz;Z@q0gMJT z0-j_6rI#2(4qyUc09%=+4+GrG_BssM3HY7~qcy4M1ndF)4CnxS3-}bU8SoBZ1>i;o zCOid{QjzSRVm~d3As89$+fUoCiiA-xaEopjk=Qef-b}1hC8qQ_2Of0dz~f{&0qQSx z?4phldGZyT$;;VY)Q}TRZ@y9yyO5vJQe19NiAf%93ywA~HVB4zT}xUPR5?YoHD7)B zw!Cfs%L#=h!Tc!S%)VQp@4A{Jf277tb2ajd+)Li_mFEIVQ>z$FHHyiWXDy~%eW}nFldTp|(th<9lkA4#0d~Q27u4&tz8otWD?{++nY6cK!16lpvtwMQ?bvBe=7$sqtxAYMkSf<7(9w z({oE92;wq&+HF1E^uwp?WXp9LwN5L|*rX)~A)F*6kc$iq3FkRZ8YYo)VKccg MWQnm?V^-^b0m~2GPXGV_ diff --git a/deepsoftlog/experiments/countries/data/raw/flags/ML-32.png b/deepsoftlog/experiments/countries/data/raw/flags/ML-32.png deleted file mode 100644 index cd99d45610f166ce6b79efd71dd67a9234155850..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 444 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7E^sr&$+5ZC`e1`teR`2LIG|9@2U zo#DSb!+#zIpc**(fu;rjd)3r zUogzm0Xkxq!^4042^UREOm{{LktY8 zObx9JOtlS+tqcrmx2uSvXvob^$xN%nt%2v&oRvTgk{}y`^V3So6N^$A98>a>QWZRN c6Vp?JQWH}u3s0un02MKKy85}Sb4q9e0LK8G#sB~S diff --git a/deepsoftlog/experiments/countries/data/raw/flags/MM-32.png b/deepsoftlog/experiments/countries/data/raw/flags/MM-32.png deleted file mode 100644 index 7f0a8c13c4f0f3b0add56808846b0250efb7aec7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 930 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3HGD8EPYe6kC$Fy9>jA5L~c#`DCC7XMsm# zF_88EW4Dvpb_@(myFFbTLp+WzopRngBv9nI{que1iy!wFE^9oqWQmAL_QY?@D)kMl zZ=1v<9R*xwZ&@P0I!n}Li>PDQ3;7H|!Q3W|=1nf*dR#^m6;2rVmdu)&^K5T*^qGLq zk9&Q;wI1F*=kvLp&*%KMb^pTBHfbRPb**haG|^KYAH^azy;n}nGPtXRSPQE=V+ z=U1nT9V(m9VSgkgr|tK}z*C{TtKFUlroUC(%-?Y?P(x5=Bj*lonOj??pIdvE)$jQ1 z{tMS@SQyjx`4(rtQhUp_YRW;=ogaO|oR8TE1srqOw&Pa9!(_{?KG!Swl_wuQGHK(P z$20DWX1@JU@k=mwv2Kt1@fA}P`pQoBPuHC%EAhE_PCBY32o` za#{PdW8N}NOYeE3zT;Wq^rfHp9-kCuZTa)zDeJ+Rk!z0Sy1c)0`0tO-2UAaL%V*Sfdi*RBN7+bfqP?cHb)y!pquc(>#T%W}c=6poG!UmmF* z+b8ho=4}&Ssj#?$I&%7$N zYW1b(S5-XP0yV{5CIm>_DV;X&puV4(2OC7#SEE z=^9w-8kvU}7+9GaS{ayX8yH&|7}Rc85k=9Eo1c=IR*72!&#O5rff^)1HU#IVm6RtI mr7}3Cpo diff --git a/deepsoftlog/experiments/countries/data/raw/flags/MN-32.png b/deepsoftlog/experiments/countries/data/raw/flags/MN-32.png deleted file mode 100644 index 2f9e6cd04a6567a11a9776a91a187613a0b89f11..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1075 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfjQC_=LC~QP+ne4gDjk`bU7I zy8dAeqm#;VYs{h;f@bjtPGbt3&Im^0fzud*=kz<2oKg}wtYHk*sG@&VSMRVgNH0ud zG(#{#qj&&Vmm^G^bfHZoQu|azE}dp z1*+FDT4M&X0^}IS5}@EwJ^cd=hW92YeLK#6F+=kpgTWD9L$DX3p^ntmKg_HDV!6bh zYYewrl|TygkrZg^9~J{CxYwodVu{$*VzmPd28UIRPO1U}AsS-%gDDD67fD~vR)4ut z{Cte&+btp&bG45#D6FvpIs2%g{(c6-7b~ScAL6-LtNdiH%*_VnUl$p!)oC7OP+Vgj zebfM?;Mp>%_dA6iPLqGWQ0#iC%JZ!FH_% zUBQRlf|t|Oo-dKS*{t&IB>(?YT^*yNVj>%hfS{=G^a)cYO`AA%GP`C#KuAzn zpli^AW$PBMT)KAg>gD+ife9HYIZaCrTsd>+(4|wi+^%2aTXx_cV`Ssv$(y@Z&)(g> zT)d3+p54B>e~gWe2Nf6I5N&C7cX4w)e&pCu^@Q*VGp5X$G;7+ti8H6pZ4PzJi>q@? z3@r4_jI=Cc6`dM-)pTp=SKeOV8=@xLw`|*5UQ$;2{Yz5#h3oc-kCvPaUgkI3j(K;} z%*|=%XIkg~YijKlOAgZ-Iclem^?Cm*sx78l^doyus_V;;v ze}9v=sCe-~aLq+thOfQJ1;HF5e!y^1Epd$~Nl7e8wMs5Z1yT$~28Kqu29~-;<{<_K zR;Gql2Bz8u##ROfwcAxhQ8eV{r(~v8;?}_PYR*ca21$?&!TD(=<%vb942~)JNvR5+ dxryniL8*x;m4zo$ZGegxJYD@<);T3K0RWortx^C0 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/MO-32.png b/deepsoftlog/experiments/countries/data/raw/flags/MO-32.png deleted file mode 100644 index 63c82fe09176e7da29907a58c764400b4f70f2ec..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1118 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfjQC_=LDJ%mfNBfJh9)GLwM= zRS?RZ!N4#Lq@H~y0~4wOpdd3)YC41I0v7kB>^$M^TqSFfn3fBbps>+EMA~R)w^ovotu}o zE$!X+ciqRjI}dkEIXRVK3Ij99wM@LTcz_P@SmyTj+uH{p9(?)v<=_8*x8L3V_4gN$ z(Xp=`XoAFS3AUMRz(7!+r?&t8{?ETYKmGXh>dUJ?|NgxC`fA*|IH0TeXYsSnWCf}* zn6F=dpnmGPsT*!?XxP_~wIy@)wbk=4FK9d37O)}!Xcy-!PR5yx>@(ScPR-nsx$yGB z`IqO+Y_dabZT` z_CoO)VnFMdfwEx#vd>~?p2Ey9nL&Myn(=%?pccl-j6i3Dw1XA!&f*oACBQg?5oj-z zJrfjV5Cn8Q`%E^Vb#9rLmI0F!TS<^#FayKCcY=)ldpk6NB8*Ai?k=H|S#}r$Ih+L^ zk;OpT1B~5HX4?T3@O!#AhG?8mPH1K<RC$%-SIunBztXZ^b*}8=*m#$sBdU<|>YvaO+8#`Cd+}XNx>ek-1 zvii%Is@dJu)5XKh%lZBF^X21xSnK{VHaZ?uT$uP!aAM#^!x>yjj~@vOO`hZ&9CZ1T zvC+neiBsoJmYy{|J|H3_CMc@S)v?kwHMBItH#Z};);U>NEZ$`MmTgWfBE*+ z|G=VzM@voyFY}vim;7wa&EjY04li;@`q$LjEv6s2E9Ym|)YV5euzr1Intgrk{SAee zpXo+#&po~@!Fu+MzPY>0-rwAv|DW;AM$Vq|&Fy^h6L0j%-DQ}zB{<=>L)~3q7^#-H zMwFx^mZVxG7o`Fz1|tJQBV7YaT_f`l0|P5lLn{MQZ3AN~1B2S_DxxSFa`RI%(<*Um z;CVF%m>C%)K{f>ErbP0l+XkK DcWIgG diff --git a/deepsoftlog/experiments/countries/data/raw/flags/MP-32.png b/deepsoftlog/experiments/countries/data/raw/flags/MP-32.png deleted file mode 100644 index 5a8353400aae71a464a489ab4d87427fd9d1c778..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1113 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!2~3KB)#GTQfx`y?k)`fL2$v|<&%LToCO|{ z#X#BvjNMLV+c7XO7kRokhFF~LopLujI#uR){dvptp66a#s;gU`^`2}Jd+DlK^mely zo^!*NSX^m5b$~m(VBdqOJ`*?(?FqZl`rxVyTbxEl{uZ7X*Obe#Q+8VATsv2qyKPDD z)U?RSX6pIsCo3!E{xeLT@ciG;x(DC?esV1MXH`LC8TG?8oce0PV1wX&L{P^Hq*$Cr^iL9HM z8MfL^lx_@Dm-n+c-y*8_x%K@M>G12nr-!|B4lcHi43?WSk3(K`v)Sxmp|367Ga`QJL&x2oFJ{dqL&$4imV=cfEGIrR6;$3o9ZNz7la zwj58LI{o`x0(5SKRUA7YnlUMtcmK~x`cjr&9GonF zo}c^i-(%VJQ#qFy*6RfJPBmn6vSj(N-*W4F290B0J5{!-lnQL9&6Q4io}aqyGtXg# z7O}iL)!z=?+IQ6PbckEu-57OgeyIz`Uo6?qC&j>^kvr*r*z;t^#9N0`1ou>U@KsEG zb1f|LwtO$E!YiNG*IEzjIqPqkA+)?GA^6g|XJ)bj3|$%<=U!&MlX1h;ZpFE?_I3YR zTg{7#@Bg20%Y&CCWNpIT^V0M8KAS$XDn8-IXz$S z|9HOo^?Dgg15=}qubtY0Ht1T3O?*GcN=M52r>)WcGc~gfLs;KW{Qe`|s{(;fi)&$-WS$+TOK7|MX7Ao||FE`hH@c(JQsxN{m;J#&}(3H&yL> zy=t!Nw#m*Zn-A#xU#jNa*SqZLv>8ozeV4D;y^hhr>4MS9%!R^x)B=PBe$B4pQVWy4 z;u5g*ZvEkU?H$cNY+O5Sf!R>C#5JNMC9x#cD!C{XNHG{07#issSn3*?hZq=GnHpLd zm}(msTNxPCZdVaS(U6;;l9^VCTLaIlIV*u0BtbR==ckpFCl;kLIHu$$r7C#lCZ?wb Yr6#6S7M@JC0V-nfboFyt=akR{0Cmpry#N3J diff --git a/deepsoftlog/experiments/countries/data/raw/flags/MQ-32.png b/deepsoftlog/experiments/countries/data/raw/flags/MQ-32.png deleted file mode 100644 index 289b805efc6766828931062db509ce61b934eb20..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 332 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!VDx^^%AmxltF+`i0gkKgMk4^LJ$K(8Y5$x zm{OSPyYY^|L@vL>2>S4={E+nQaGT$a=ashDcma=HTUBJ!5P3)s@x%@4b|?;Nmjs z$zfzzkXEztY@e_`P@!sxYeY#(Vo9o1a#1RfVlXl=G}1M&)HN~>F)*+)HMBA?)iyA; zGBBv!t|E$}AvZrIGp!Q02A)@QRsuChf@}!RPb(=;EJ|f?Ovz75Rq)JBOiv9;O-!jQ TJeg_(RK(!v>gTe~DWM4fosMHz diff --git a/deepsoftlog/experiments/countries/data/raw/flags/MR-32.png b/deepsoftlog/experiments/countries/data/raw/flags/MR-32.png deleted file mode 100644 index 4396b9a3af3ee7a01c2bb1070eb32491b9610fd0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1076 zcmZ`%2~1O26g{+v*j7X%3SviM)R1Y=FO@+XqoPGy!BS~eG#Fdy2c;k`6*Vpy8HWHv zSyYh!zrkf3bzF!GT9<07xPZ9JHf}M-tw`doXqaK%D{6)@CilJjbKg1V-gn;5)$1m8 zm-LeW=&seM<4F!7%imW__Hp;^RzRfE#~P!-kpk%cO^7&n|EDPCAmiZIxky-EUjm!Z zpF=1Ql!9=-9(5>pz)0PPhzQ6!385Mi0sVx}$o~!C#X~Bfhes{-FrK|ZYa0rxs5qHH z!o%A`BrIQoDS>_u=Io~*MBldz)eq3*M#3&yA%n&20DBPF2tS?%HX!XF$}a+i2;iaI z3iVbfc})1jGkGzxkE7@;P=r8%3K9jT91U(5wgc-iKtM2u5FSAs`j%0Vn~#xMNsoFF zaSn1an;j?W@#GaoZUOQkEk+j-1+?|mhq&zqifQW(qq=xJBv-rBjJAK^Y=ZqXa-68R zj+gK8x)n2a(u+_xJjVL)5N|?A8C~V6Bc0fHmo^@?30Ki zo)p2qv=fXVyKx8>ATFhY(I`O>5C1P62|&stkX+gGDC9NIFIT(BpW|bT*BOBJzoW#f z>#oX4rQ1Ty%q1jiJZoZ&bqwIuRjZCNhF(iD{oI zc|Mz-WKDVT^ETIwn!nE1U%6LxtM<;t#%p881k9+r6Q=c~nGrdRr6yc~mdSsa`bLoe-@889_ zWV>@W42k1Z>7Vl5%9JbRN=Hw_8Rti7pP{py7WbjYis==z>|whb_sw>!sk$&laHQQk zDqoq{Vv1}!Zv9YxDzD|(K&kgSvn)~4bRZN^w#J?+l*@+^ZwA|<6KocuxnIuroqN7}#K5~-+({2VBztX>?R&b! zN87#z^1SuNTGqu+DMn&^F|$p){OUmwYObR-r1N}}@LM09?pt@yV)e#-vgde$vVcLs z^7*f!T|V2iN&D%zY^k)ws^trK)pYx+w^hYv=)aQyKvY3Y5B8fY`Kor{|dg*&tz2wa;Bm zlkjHDWhg$1zx7SXq!BN@f_~;SjStQvb9*C)x_deOV;@3!?A_nT;Gm6^0;L3C1EYWs zC_n(RL{|wIrMqJ2PbYgpDO?18yo~-MhtY!jFsrLbf7=b|H08Cmc!o*;&_$dp!_3hI z57b1+ST0|U+6*EH8iK54bN`Zh>YAtFDh;XYxJn_Ehba{UXU=i**fn&+z;#M5=0}GS znuZ^Z;b!y5sZ;UODV#(Mav3NTP>B(o>q)#!9;3Ml@>$fC48A82UI@_9gA%M14Kr3! zzwmLad=58pk@B)IcDN2BU|_pDIeF|nMz99g@rnZ48(PU099r6@vvTolD&j+2?LJO^ z=3L4q?!u1_W4!h@ch*!QPMzTDV3Z?Cong;MWpa#^_dwFYMFRwm<594|Nhhcp{+yYS zIDKLRNg8n-7XUTJtFq@>iq;i#Xqyry)4rcW@9gH84JSCz-HWM7f{_THw0E-lh4(or zB2-VG#!~q^4Trlp+J1_GA(wy*vZ+xK`u*! z3IT;Ng*^p2inN^~Nq zpduvMv9*gGTfbrU>U%L`DXx}UDtQVad~6A!&0|7J9TQdD2b z5DFQ@awSm0A&mxTfC~uHDMcg_A!rJI>9_zw2VsEg6GTyuPQ$&Cd@&zD_;j0_3rJISOF-DO1xxW-jDbW4m*%ji(0!btkLO`G_2p(9a*0VVu zkbHJD&D#0>OuOv}Wy<2i*c#?dFeoHa?CoeqqLUlLqj~=P*S&Fuo)gqE;NG+xK{PbV`lm?vNgN}u6RL$3et3;Z9#&_P#P0000bbVXQnWMOn=I%9HWVRU5xGB7bREigGPGB;E( zFgi6cIxsaWFf%$ZFnzZq6#xJLC3HntbYx+4WjbwdWNBu305UK!GA%GUEiyM$Ffckb zF*-0cD=;%UFfa`2oT&f+02y>eSaefwW^{L9a%BKPWN%_+AW3auXJt}lVPtu6$z?nM O0000Pxi^X9-s-km<(F|m90>>1aVFaQ7jJ482> z1RCPufoaIkmoI0{oO*rbN|1GETHyMDdLhn(iy$+Ax?pa5ckSAh_3Qq9{faCPVnb}_ z;n_BO=EV)`H_n>z_Wb$(fB!<1{r&Rg?YVOZ|Nj1st{uV$x*r@Axrb*j1csMWNswPK z1H-Ssf56}`i2nUXknzv|fA0kUpcnxW0Et1x|Nj5_9SFYt{QrMC`wAYQX^ctU?k-Ge z+%+jc4rhT!WHFHT0Ash4*>*t2T2B|p5RLQ62}x;*smbZd$&VjAdGzezQ)cEmbw)=v zMK^&2fikhe!qVdJAHID0@~!YwDHC&`x?$lACQf@#%}mKi%g9PrSJhO}P=kQtpz95q z7rtEQ;^5)pJDAB7y`pSJdPR%6AFI{GU4a)3=WX2K+i|(u|HGFfxlFU$>y!fQKh%}fkTc$dj&tSGsfb6VInvxJ1~^!bk-bO3`#=4e#0M>3x! z(BY~jt`Q|Ei6yC4$wjF^iowXh&`8(7QrE~l#K6GH)X>VnRNKJV%D|v@yNW1^hTQy= z%(P0}8hBpKSqao239=zLKdq!Zu_%?nF(p4KRlzeiF+DXXH8G{K@MNkDP!WTttDnm{ Hr-UW|(h03G diff --git a/deepsoftlog/experiments/countries/data/raw/flags/MU-32.png b/deepsoftlog/experiments/countries/data/raw/flags/MU-32.png deleted file mode 100644 index 47d078836eb4b60c0af995a2e1f6c3316556bc16..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3393 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 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/MV-32.png b/deepsoftlog/experiments/countries/data/raw/flags/MV-32.png deleted file mode 100644 index eb830ba8a0f8ec03a6e9fb0a56fb97267c10ec1f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 835 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3HGD8EPYe6kC$Fy9>jA5L~c#`DCC7XMsm# zF_88EW4Dvpb_@(mF`h1tAs)xqPWAT)2^2Y2|9r1?zS`1@S%)09IIKD1E5YWf(5l;_ z(OKr?(!C&cZPPd1ZZX9ztHlI`+;$WQ3OfZ|4AXYfjCPs$biPd5v%Rmab?+I=N|zq9 zS^fKg_4}IV*57Nw+cLvkZ#)WcV42Gp)gbA*q+K(X*F-g5ZpG*Nsj4i0PJL8miHR2! ziDiBh(44^WGgeHsK}jcU;R?n8{vP>Hud>=s_PC$Y+Vx8Q*vB6eXD8VGaJ&4CPsa0z z*YTsGTy7aZUlxD4=D$YWgVoE0%c6-P-bjvLYSNYH)Uav0R~=NHF8{FVxUb*a_emK_ zr{A7DzT~Xlvq+W&eu?KerZ*&OSWI0h(68|7NCfL@lZe!Go)v{Q$BH7^cClGrubkGt zxPQmzkDP1Y@f|uask4wXfzO~jyMM!CvlTXkEXwGHnj) zw`Sjxu(5S<@Zj=TIpGS&><-n{)57+!2F@~Na{Iwoe_eogh41_)w{}bK`T2F;y=L1v zH?N<)yE6UCEE7v7g(&BqguAb{baJ#@oSHT7+fIg@&0aeWu}@(-W_jdL#kAk~zi$TL zK9(BXJ}G{hk=dfXm+iU)KHoA(d7Au0D6;TpK#PhKmuml`V80JHy3D^zMEaW*7;x(x zN#AaxvP6knPjN%Yrddb4oFo4y{bSrKc3ZOi@z$rn1gBc!8c~vxSdwa$T$Bo=7>o=I zjdTqxb&bqJ3=FJH4Xq4JwGE7|3=C?wtB9g#$jwj5OsmALf#=nnl|T)WARB`7(@M${ ni&7aJQ}UBi6+Ckj(^G>|6H_V+Po~-c6)||a`njxgN@xNAw@O#* diff --git a/deepsoftlog/experiments/countries/data/raw/flags/MW-32.png b/deepsoftlog/experiments/countries/data/raw/flags/MW-32.png deleted file mode 100644 index 21f1d7d061049521233e513c07f75194729ebd33..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1114 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfd65_=LCuxe^SF(>W!t3Td1b zR68r7c8NiCTd0=kLNoKZrpEI?2&e`QfQsP=s0)sO+TjRf4jf5<%!DAI$#4X;0*-)o z!4c3>ID*)YNkSY0^a(oygDxXWFbj7y3$Gm$8w*$jC<~MlXJjhj5bofXtl$zWd(!Y96^00;+rY zmGNt(a!JnOlA6IOxqw@G4wuwCE@>c|10=!R z>0FYtxuk%~AW;Je+bcrqV5D(bNF5Eqq|_lQ5#bMy2s{jIkzU}T84C<4o01^EU~rg0 ziT{5cnMuK`O}f&6S~&|mB8!2v2N=7Z%(i0yrX)`n#}JM4$r~6Mqou8@rPI96*y`8}7_>JOZvXh<%cpN2zkc4%xqwrY_f3oDg{24 zN4Y{mlP3iSUA|;&w0TqUBNmp&EfTGQYEN!Gc`7a$%vh?( z^^ED@o}b)edQp2)US3K)9lj=JYt_9N$(uWibUq2NW^Z6*J!hErLK{Ah=GBXsiBpD zskVW!m4QL+b`?<+4Y~O#nQ4`{HSoNevl6I55@bVgep*R+Vo@rCV@iHfs)A>3VtQ&& XYGO)d;mK4RpdtoOS3j3^P6T$kS>_vWH1=g z+!?$X&M+{5?FCw`1#}xw1YsT63ZQ}uipJ+fp}v5qK@$XO0ea^j9Q^$YbQ=~me}Ul7 zw=W+c3V~`Eyg=3gMc=)Cv~R=A+GvF}i)Q}${qqx8J20Sr|NMUE+JOaa5h>Qo#-@knQ z_W9rMUqBB+LSQ%8cfe={#Tz(SfWZz7Lul*+MZr>#*hCIzQ0#zJ0?o$^OvW^KCNKg; z2RIBNCZL7+rsItBfQ~mU3GxdD(jWkG1qc8Wpd&LFgWLcHFaad`(();xKuwHE-tI1( zA8#&w1LSZPctjQhX%8@VJDF_P*uKA}%*wZy!B!?C5RPilop9Gg79{ znKWzKyu|4sQhnG&6Ft@-lO?-@kbC z>fOtu%NDG^pLghp=j7!+bIoem!nD)QZJKSH{%+4t?l)pd-;XXjTIM}XFM40n(z~m! z-l*MpEbpzA_3p3IZ_F0W+Q7+V#{4+x^tIgE;*xL(|@ny05kofoe@mZR3g zkl3^&zwQ10MZkbnEpd$~Nl7e8wMs5Z1yT$~28Kqu29~-;<{<_KR;Gql2Bz8u##ROf zwcAxhQ8eV{r(~v8;?}_PYR*ca21$?&!TD(=<%vb942~)JNvR5+xryniL8*x;m4zo$ RZGegxJYD@<);T3K0RY#QeO~|o diff --git a/deepsoftlog/experiments/countries/data/raw/flags/MY-32.png b/deepsoftlog/experiments/countries/data/raw/flags/MY-32.png deleted file mode 100644 index bf85ba16d588e68ce5da6b52678397e681b846f4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1341 zcmZ{j4NOy46vs~~ln<+|>wwXPtT@KZSoIa>fCh<-7F%&mhxmc`0Z1_p2t%4cfexsE zV<^)p>KJa>!i*Dj6LEmElvV`VJ`gPeGmKW{J2FQ!@#(a8_rXM$Y%jli&&$dApL5?m z=T#^bYZiL(y#QdLTqcRbR)81RgNgUm!w1p2zrCUNkyNBN8Es!T^wSa5z>L>pIi5H!||7P-widyjn7(uUd$PJ;m%46d#ui-rA`smajl z>Qgw$D~r2DqLzk+Y=i*Q*_kAXZouc9(^Ac?sP!_stVepi3xo9a#fR^;+Y>HcJOt1m z6l4(!jmM84oSYQR%=n)?SsE6qXVBVinZQha`Wf0=j7oI$#p-knz;gQ76&3X}Gl3Zy zmjL>>+-p+FuLT9)mX#evvUBj+=x6VcE7?nE`7-qAR~^AlM@4z{w{6=P111YoR{OQPbJUfap_<{dkDL{+?mub@Ol1 z{_5%jCzyUjb4x*9zUD9L$zyj{mfOD4^0GCOCCu_u6UPUesnYhkkt2PL5BHO2?$vHh zZ98~uhjMfL*0?Pjw||tdVcYt|P4?cw!9iDdcDL|s=CuEbZNIP5YoGCg6g3g5sm9&5 zU1TYvJmJDPc_OsPXp&YQdw1I}g;y;b>Icrmu-LWf1840&XWPbviA|aI^Em^5tSWdk zZ7*^-0$xiBD;$|PfA?+0H)8GBy_N^Q%eG%C9G$wDK9Dt3%3z&K9BR5hq|Zgh>3y6x zBJ-b)OkNmYzWs8Zr#n01r@S3kj9)k1A1ErtVSREOA=d^=90te@} z13AGtVAHjkfg;(pN1w-~?LgpEwtp9e2T9_I1gwsWTj~7e(A;_r<2&>B&E|GGCx?sQ zi7Y1C1^|Ar9mpBzc>H)f@cv`KjjTWc=oUnrB>byZo5HQ#+d{xu2&e+*e|37Y1Um^o z6Nst^XOj!x(XY*kF43l9c~%op16)Vrm;vm!^08&j#zJ<5SA1Qz_OeRlpaK(ugkaM; zA%(jYSPuhXuDyA1`iJq`V-pU3FiZ1duzcn+se^tXmOU_g(8zGb0h+k$YB*6GTW?Y? zH&952zlx9-f5u&q>m~r9z{|npd=!*jICrVjJoA2n%|8GIKJ}QQj!+a(R4~o&%4h|c zY&>|oqhugI*owIlvPS@-0kED+n;0hZSW8CkquL8i*Sfwnx0@Li>{?)pxM1^kw}IFe z4Ctb_ZMFhg&N8}SX-*?HlOY3;8PEuzF0gg3DnIF0esE0uPUZ~%9RXY;U zFqRVNfPWPHhB-2xuWk-DU}n+{smW;!Lk_cymfmGsk=4F1`zIPJLQ6&*yz~zH|KW9` zMfEtPb75k}n|MuRW_hVmn3AmXa zjo$l7o?-oOFIUTTi^r<3Xa}n|7etGG8H`Yd9hOKll`Vxge>@zt?Nn%XgMKt$BF)I{ zd1LKPW$ReZ)FR(ELN_f_g}f5-+|>--OhcGz{P(E07anW@&e$fdF7iIfyT2~dFIxZC z#6yquJ1C-SB)Mi_=#c!LetzmsVhEgA8%68q_L- zMxLwJ;00vTjj~W_WT-46T`HA_ZxsH59A#8i-LBqwohnb0s!^#+in=u~;2=nfOIFmyDog(csCzLT diff --git a/deepsoftlog/experiments/countries/data/raw/flags/NA-32.png b/deepsoftlog/experiments/countries/data/raw/flags/NA-32.png deleted file mode 100644 index 9e610c5d18104f313eab5227e8772d05d3a0b445..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1185 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 Yl$w}QS$Hzl2B?U^)78&qol`;+0Gv||dH?_b diff --git a/deepsoftlog/experiments/countries/data/raw/flags/NF-32.png b/deepsoftlog/experiments/countries/data/raw/flags/NF-32.png deleted file mode 100644 index aab7d7847b1109f911dccbf312ab4a3a9046c6bf..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1131 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfeHZ_=LDhRaWFWf)sPg--A8)^WfM@|a0H{o{ z)()Z`$bi`U=ilGyhnB}JtA73EJ^3;;=lj?>DW9i zX>nD=qOy5M*8Kea^Y7okK$C&8Pv5^xTwGbRX+rSK9K)WFofi-O`TGYbzVrM6;a1m- zWpx%4q8KW*o7VP!`}G~-q_wBE`OV0Tn_uEJHPy5uFl|ZAlXoxR0rlhe&)LV;WG!#7 z>IhC+R2eip3 z`s3To-Ai2h<0NV=ocg29yTcd?RorG}@|W_Qu@meviE5~t-S zO)p%!f6dWbXLnpV^#037VB`YB6KEjNwLtRrle;r^ECl)&6dHg3LV|IRP*OWE=~$Em z`2_=G=@%SePc=Z3zyPQp2LAt_H_5vPXa-}Fx4R2d8h1?!ki%Kv5m^kRJ;2!QWVRhp zfuN_0V~EE2K(bNR4s>&@bY+EcJpK#IJPoKECy1Tr+3TFhQg~tU(hQ%wES1+3zTroE?Gc>)O$2XOMA*Qcq3SYRJ2{4pYOI#yLQW8s2t&)pUffR$0 zfuWJEfu*jId5D35m8qeXfvL8Ev6X>A?RFJW6b-rgDVb@NxHa&+nzIt9K@wy`aDG}z od16s2gJVj5QmTSyZen_BP-pJdYeY#(Vo9o1a#1RfVlXl=G}1M&)HN~>F)*+) zHMBA?)iyA;GBBv!t|E$}AvZrIGp!Q02A)@QRsuChf@}!RPb(=;EJ|f?Ovz75Rq)JB bOiv9;O-!jQJeg_(RK(!v>gTe~DWM4f?F~xr diff --git a/deepsoftlog/experiments/countries/data/raw/flags/NI-32.png b/deepsoftlog/experiments/countries/data/raw/flags/NI-32.png deleted file mode 100644 index 0511024da07291ff156de529d7a14697da3df06b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 983 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfbks@Ck8cNIL@*VN5$CmT`t5 z{N#ftpa1{=|L@;_kT?thW#I^@3>g8nz!6X{8Uh-H27o4`A)qY~+hN9@1v5^IW}FrS zA*gk5TaXy17^2TJM4V@cInNLVbq0z9o_@Li-{lcGb zw_n~p_5atE|3B`6rTzg)up@!Q|3BYf{{MRJ!j1dEx$_>qc>Dj$$-jSoKxO~^`wLR> zy?F)&OLvz*0fJd?qACQu~;0oB71P$Mz|8UjZ^)6fvebX4%~AJ95v z1hyQ70J;PX0UZWMKo=q-pljg>=xjIwIUeFoxKEKh3-K?+%V;J;Oaq#ea#vLw7+8KK zL4LtN8VUS+C&&oG|6vTEhk)EaVDc{#2@ywC3RI}2?`8rtjxovG-GwbNZAUGT!&%@F zSq!8-z}W3%wjGeM+SA1`MB{w#*-*ab01<}3SMNYzok-LQ?cevEFW));eNxdrb;+de z#dlwQX>t7E{D;>=Mmf`nTUQ{WT;!D7O<5&%7L&g2vg#vo95vPd83ip^oF^Hu2&$b@ zNb<2!^mUq$bXiB~a9Z&u8p%{**LnUHht>3Usz=iEBhjN@7W> zRdP`(kYX@0Ff`INu+%j&4>2&XGBva^Fx56NwlXlN-L4{vq9HdwB{QuOw+5b9b5;U1 wNP=t#&QB{TPb^Aha7@WhN>%X8O-xS>N=;0uEIgTN160J|>FVdQ&MBb@0Ee_>rT_o{ diff --git a/deepsoftlog/experiments/countries/data/raw/flags/NO-32.png b/deepsoftlog/experiments/countries/data/raw/flags/NO-32.png deleted file mode 100644 index 57662f2002eb7dc9068ed803bbce5da3abc5d7bd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 600 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7E^sf__XA+GPWb%D(HdIs-!g+E0{ zfB*Q=KClWXh(LMz9h&m7)XP_ zzjuO+*zn)_WgyRS7I;J!18EO1b~~AE2V~6lba4#PIKTCxJKtdi0f)fl-|uM~B-|<3 zUbyrBK_$VB$AYG8|0iVJ+$wO0MI%{+!|fD{Z~C=8-&6m}CG_OJ+cEFC)tzIfnDoQ{ zZsp@pyu3uFrN4;IPo~pnW`nO5hW>! zC8<`)MX5lF!N|bSNY}tp*T_7?z`)AX(8|D6+rZe$z@T=!iYSVP-29Zxv`X9>cwWs} y3Dh77vLQG>t)x7$D3!r6B|j-u!8128JvAsbF{QHbWU38N5re0zpUXO@geCxuPx#24YJ`L;(K){{a7>y{D4^000SaNLh0L01FcU01FcV0GgZ_00007bV*G`2iyt) z6B#3XBg}IE00J*bL_t(Y$HkOONR(j|hM({Ize#7NiIBz{pp<4rh!j%PaTIIP8B!VYg7eROEs8cS+RRL6 zbrxsw@SO7=Fz)+mt+05Hb`07$(L!$q5mc>$Bh|`e?2FIV*SC-ZPao9vCgPdng zM8~IDl}ePagy|2wI93yUzeL5u^T{|;QD1ycSI-WzZf7x8Q69dYA+%EbT@7FmC#alU zahFZ}l(yse>P8X;pa6tT5gnaGjre($W%AU$rxKW4GaZd+bj+DZ0}24G5%zRsNj^7& zV>&%#b+lye-_GiM0B>z_Q=nrS`$3a};g@Xbd4%(Fjkq@d*{BMA93^dIehOl!ah*DX zT<<_@jq`+uXilbR3=J4(XS{wqPxA0IClNpjmfrTGwMGcR>d+Y0)OVJp5?8|mvTD}r zhl~O$k^`ZH6hzv(h%H1&+g-w9cOOWB09K?DjiCWUYerkM%wmqVPVxFo;$v7d_vQC3 z#^MM=t{F<#G2P(a8*9ln3t5@}itj?=40!EsO-8Bs7ig}vXt)=Hfv~dg0uuHIegXX5 V&co6;7Ek~H002ovPDHLkV1l^DF$(|y diff --git a/deepsoftlog/experiments/countries/data/raw/flags/NR-32.png b/deepsoftlog/experiments/countries/data/raw/flags/NR-32.png deleted file mode 100644 index 5c89d736c5d562977b370f054f0097cf34185240..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 795 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfb+s_=LEMnx{S7>xhYf;y}b; zoW^JjW-wz3t6*5VYumHK4+bo?yC)qB%=FWp>=P%#T@+@G`PvJC8XE8}*FiPbx zO`o=K!;=?pA3c55Gi@n@aXL_t87O6(#%c=EsOOxQoYxtX(X0s!1l<%ClXRdI1hJT= z^BSh`YbEk(B=H-kF#*-Xq<{=IpsX1Pfh+=x|FSv%1Q_UCB|(0{KzD+`zyJT|@vJNb ziZUj7ySq3ET(|uKvL>2>S4={E+nQaGTZ1r?;4AD5B{6L98;>Ci7*$fE}4)RM# zRQ&w$;|D8CYm2MP&z}a363mNt>}XjsWlPVRIeVHGSx6-arKcqXCWVFth6Z21aOKjq zi>}N$Rd0BHv9Yze9aCGD_DpPA7~6{jx7r#HU%Phh-oc9}Pu@Iw^{g0k0n^@>?;gH< z`u53_$FHCFpPhYR0|y5W7au1tcYntb!AXG^4L25kC#5QQ d<|d}62BjvZR2H60wE-$(@O1TaS?83{1ORs>EL#8o diff --git a/deepsoftlog/experiments/countries/data/raw/flags/NU-32.png b/deepsoftlog/experiments/countries/data/raw/flags/NU-32.png deleted file mode 100644 index 25e1abd2ce0ef3c7baaa5033562957827732f37a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1175 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfjQC_=LFL>*)A$_VkrYcZ!=9 zGB89iFgQ-`U-h6n|3Q2Hmod+*9 zw=9|1H|P6z{r~@2ff{cY7hNmJzn!0ZEheg?VfM~_=d!D3zd3yLciBm_;hs3mY)Ghw9tKie-{Eo(D-nzM)Gwbj5^}RlF`1s-T zHLcS=eF8b}-#;cG**ksXt^B-~+bXW*#okPa-A{GlDkd$f4@uo|Ic(gFZa#1*xM~7x6@L0N963-@7z{_^eg$%k|1KR$nTS6<2Xr0nO9Ui|p@>C>KFcjvF(uxLxy z#5I#A&;9;g`~QEIV}~!?>z}wez0p%MzrA7k#|;Hvb`-SLE(wllKXK&Z>*FWyPn^8U zw=6rX?DH2Hpf6r7=qpI5k$1^sVDOwZZQ-N7tj80wW=&hfz+l5E5LDeh=gP&)U(X+S zJiGGucR`?getl7S^N!);2i^}KM817f{ryoKh=7a_AEZ8gl6(D%;q`0&fB(b(|FHlD zEYLmR7!>&bpAF0anji!d2L&J)G5`C=2tgqA|CqpRpez?89)W5Wb01~_rZDT0Aiv;0 z|FD2R|Nj5~2gGRL-+v_d@4sH%Hy5BWoCO|{#X#BvjNMLV+c7XODtNj$hG?8mPDn^e zN=r;le*WOeqh}AFJ{A`c5o%#h6bxiD%r2CUwytJ(S5FrYH!tV+*Uy)?nDAj@%7jl- zr%jwXIXoaFC@e5E`1*w@7bZ0@=gKFt$=b*MZ#b~v!GsGNK6IQ|@j_yLM2awr~y>OgNIzZr|ZOSt2ufq zboKQ$vF)o4B<(%I#*x4H{Iavr+wyMjV-9V6>bE*}_xCqEFKsn vK{f>ErbP0l+XkK&;f9n diff --git a/deepsoftlog/experiments/countries/data/raw/flags/NZ-32.png b/deepsoftlog/experiments/countries/data/raw/flags/NZ-32.png deleted file mode 100644 index 30b2f018d7382b0f784375e971186041cfc71fab..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1288 zcmV+j1^4=iP)gLW)ofgeZJx5)=g?R#1Vx>6M{DVIrb0L^G9S zS^k@~KZx3BI-T2|wP$<&-aox~oNhLW!0)Sj59glqz29@rz0&pNPBWuvxoXRY?ELm8 zzW(GeFvQN!H_?3g1RxxFWEq>^-c9+uI$o$t@_K#5lI8W}>ldN2^~J1q6HD`Z~!h5*u@tdU!X`{lD& zX3A^N&Xu~=Ps_!qO1AGhE{FDBVNxPSCgaCP_Ktic8CUzS^y3gQ9&dI3a(FOdlLPF+l{;AmLY!0KfSDZkN0cgs2Kq9=*#5TD5sz4I=$ zRY`P5D?Q!)oEm_?vU%KahQ9b2AWzYOODJk)O(xYkh|(c{v<;I80EDg0wal%Ec=NzD zqTU=vDVzh<**8K{b0bYN15)3A$AK^Q@zRE$IdJSOF|8@9NV4yTqdd2M2dDFKk`K>e zMU^V*!yh!Ke0#mi%5Vkef@YRwE8lI@eSwlRg2}2Ede9@u31?zFhr~m{Xy|EJ8 zdV!NISNNtQ$HDFlS$~uDPBCNv9G-yVhkj+np>{TGS;fYepJC;K2I>x3K| zE$uO7iqy!chaWS$ch^lpzRfDi99RD>rXFyKqRp)Q>+TJ8&pWRpjg-U>g4 zoz|dl@2!9x6GQ}JWdas*1wYOXx8sPA6azro2jhc}eFq92n1G?R6PoWN$YuS6c7Q+& z#u^qhRs!(L*%W~eF!tYP0v<2|4aORHdeSaefwW^{L9a%BKPWN%_+AW3auXJt}lVPtu6$z?nM00007T|e^QEJRu03I0)}b% z3{&%g7BQS-U^u49U@?<{VLk);O zkH}&m?E%JaC$sHAjv*T7lLdsQPna?(Z9-y7Qrba=H92p1HWhv1>he0JwJPgX zmPCVd?_@{kVDD)6aR2$;v)jd)KS+KsmXMO1J!96)=!jL3k;x2<*^X?|(bm=M?&|5{ zIbj8>ISqI0+F4yuRr&kJub=D*3=bUy+ZH^SaACuTjuR_h%!u$25I;X*!i*_%Ce4~Q zZ{p0Uy_`iZl0~0`f`UGAb9Hxldu?QF6A{qRUcX|^s&xn16u7cpzmk@kJ!>OlN7J-x z+rIUk)5~F4v|#u0?d$6gxd537L9d@^1~2zL&ZZI0z~E!Bv-`9`b34$NswJ)wB`Jv| zsaDBFsX&Us$iUD@*T7QO$UMZrz{=Fn%D`0Hz}U*bpmw{8D2j&M{FKbJO57TFUd>qv x)F276Aviy+q&%@GmBBG3KPgqgGdD3kH7GSPrLyp3str&PgQu&X%Q~loCIBpei(LQ! diff --git a/deepsoftlog/experiments/countries/data/raw/flags/PA-32.png b/deepsoftlog/experiments/countries/data/raw/flags/PA-32.png deleted file mode 100644 index 68a4d397319a3a54b2713e52b275893b7f53d714..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1214 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 N49Ui%W1I8${tMaD%#{ED diff --git a/deepsoftlog/experiments/countries/data/raw/flags/PH-32.png b/deepsoftlog/experiments/countries/data/raw/flags/PH-32.png deleted file mode 100644 index 245180855eb7fb26221b1a9ab63607ac3c49c551..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1213 zcmZ`&4NOy46uzaDj22Lfr3K1>F*gihzVaiKIT!>cL{p)3FcO)qZ6S-2`cuMBWVL1L zG=s>dU@0uYY|EUC%?Wm?nF}U^)P<6gQY=F@h5{3Wk}O)nxM%l0(9I>g@7#0Gx#v6Y zeD~b<&KAmc2XiC12%+GD{9HL%W60e60-NYJCz}o-du#<5ffwd1@V}Q`%!#B5XZHtPsa5!d!He_YR zo|V;wP_s~I7Ktp+_Azc1Bh#O436@E{Mez z9&ZCfqJ%ZZa{vp(a5!em%da5RBoMTbSFza})d9#sx-ss-_!oeCJ|9@EE~&JWG(i+@ z775z9$Q;Bn2N8|T05t#&0F8j_@S116D~pT14$Ck?pZNQ?u-Sw^A@Gj?%mRD>fEYOq z&;xjuNhJGU|2ngD!eGlpEqnNF`Ka~Z0zjCbVzSNvd`Gg#aWTwe=!FLpe>E7MAmrQf znh$M%D)9`xlK^J`*TULerab_UmY}r@BR2L&!1gD%KnqNeQ^Oh|GYRk;JXwY7-$D{a zheRR}gaKj!i-7&Fcf5AB|T!)uU-tO43eAYVzP$Cx=Y;M(&IcxE+)I&OnP_NTp0znpU%E-ws{$ zfh@yb&i;}KmNC0Owo5g&rKQLzx%OpDvvKfTT4t;u~?v39r8@48Q*%*(>l0 z!vt*?S}&F=O5PrGxkuxSrw3jMxK&|n{oQ@zakHam@zcp$I54!O|1*1#sU)ZP3z;QT zJ=5(uKI5?bsEmzJZoa`U>#enqXn!v4-rrY0G+sULM2&L+*P1Llbsk&QYIEn!u*G*j zRGEA)p8cU@^>K81?VR^^98bb(ykB%hJ-Dx9S9QeIltSa5;pXeS;m!l!dvE6~a5X#b zl-o{dr$$euBlLNKr;LA2j!E0L>GR&vYgBq|hWeP6EGUVRBqdVP#H2I@MP;N)GN{x9 zDmjCq8muo1o=d3GY2K@-`~QTXhaKc6MB#LWVqJy4Ms-Y!vNgJc+L(eWRi#$0RcY#u S+O@j~2o>bXa(i-=roRDK4|m`I diff --git a/deepsoftlog/experiments/countries/data/raw/flags/PK-32.png b/deepsoftlog/experiments/countries/data/raw/flags/PK-32.png deleted file mode 100644 index 102a2fa4b027e6924de0f41077a35d7192941c72..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1266 zcmZ`%YfRHu6hAGUZ7Gj}lsT9}WXo8PtaM?fj5uDkEiDCsfglC?`v3cYb=6LW2vg?V zMEtM}M>1Wu$tx4$$UcmKm{1Kbrzp6oW0g6DZgh+p#g#{qoqxME@?kgU-h1xv{LbT^ zdynNP#DV@1{s0gtm1N}N9*vXB^20S{>Vye^{&|i(UjzgKu(p1<7F|#dl<7ZNZ(mzn zT13QWMTJJtSR@Nq)So7MnNK6AyOyZ<(rRe{8Q|k1Q&KJQ_kn+QF48_v3g0w+Q6_ci+_+A>%$b)QX?riSA z(hp@2tPe(}=pB*tU8%q#03G-deu!)`Y=ROf{h;*W-w!JrDxnZI8#luqXzguXSX!t# zRf9;lAw0$u1DRmEYMXyFkI}HCKr#?i(A3prpSD|0TA&oTdM+Z7hDda|KYRbd!UN2L z#V|=G-X)%hPc|ll5}0}>f)uR?re>zhjb_*lTTEN_T?9F&t@B{Yt9-$BU20ZjZ_8Wbh_H76{G4rgKf=S~1=cn}&{% z4~;F2u4UJXdu7HsbMN^#zxN0fb|eRmyq9e+56Zw#9nO_1Yh zAOZMBUM5}vV^Yr~2dp0o0K~v3W^6QUM3YajCsD>Io}Pz-3MN96@1f}g9p%xSS%tsz zWoxb?4`6xK?RKxOJ(&-oxji4s{p8=_Il5Oor#0L4U&GLerk05_=mh7W77y&VB}Myi zmw4vRQPU122&5UQ`LWkD!@T|ez}WR_c|`5%JAIS@Sm~7xu3XT|FNAaa(KGnX~P6GQY4pJ%8CR zRQ>jvv4Req<%4lq$?1dG#uu%k-Bzv2s!P)B)!_yLeu5yLFN_y#&*$@#5)+d6iE;c_ zllc7Fo)>uQ94gIP15y3|4gt>7U!%iwRE9h=VXac_)j_J(tky+KD^;W}SEtfeTSj%s ONCK%yk#R1qy#61^lk|50 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/PL-32.png b/deepsoftlog/experiments/countries/data/raw/flags/PL-32.png deleted file mode 100644 index aabde21cc438f44a969213ccfddd226e750e52cc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 472 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7E^sr&$+5ZC|z{{xvo^8b$?|2;f_ zoc}yLATCw_R0Bsq#c%}F1xG;ba0D>~$>bT`EpveO$(IEA1p{di__L1*D=x4y3j<0s zCV9KNFm$lWdH^|`1s;*bKpMpMU~oH`Z3kooc)B=-Xq-QL#*~l2P=Mv&-Q+a2$N%qF z6xlU8hu_H(iqPZI(oS0@z|?tlQ|GO7uNQ2Hc0E! zOSPyYY^|L@vL>2>S4={E+nQaGT$a=ashDcma=HTUBJ!5P3)s@x%@4b|?;Nmjs z$zfzzkXEztY@e_`P@!sxYeY#(Vo9o1a#1RfVlXl=G}1M&)HN~>F)*+)HMBA?)iyA; zGBBv!t|E$}AvZrIGp!Q02A)@QRsuChf@}!RPb(=;EJ|f?Ovz75Rq)JBOiv9;O-!jQ TJeg_(RK(!v>gTe~DWM4fosMHz diff --git a/deepsoftlog/experiments/countries/data/raw/flags/PN-32.png b/deepsoftlog/experiments/countries/data/raw/flags/PN-32.png deleted file mode 100644 index 510ed86534abc1efb3d234640367f77c0bfa1408..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1518 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 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/PT-32.png b/deepsoftlog/experiments/countries/data/raw/flags/PT-32.png deleted file mode 100644 index d318c662ac6deda9392ffb0ba241851967ab1870..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 951 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfcv{@CkAK59Bj207*DvNMle; zWnjo+*y9Bf{L9V&7uoI22;l-nn9>;3(-{~t7Xw{5$Q z?LYS6z~0Apf|sX=zK;bN_>Y%CB!ht=hM}ULar17eeT57s_MTpQ_|f45=TAf_-fZW8 z(8T;t2&59EESjNy5@YjxnJd-|H@6>Ibn@Amou{Asuw9rg{;-x2sEiwEVJ;&3HVjYQ#ZGRO zzQ3H|9|I#OxR^j;1yl(POwI(xs$PcDd7^8U$~% zS>O>_45U54*zIJt9gy+F)5S4F<9u>LGea4lpI)AxM8cz_w8Vr|7Dl!X8-9Ix`{@jR ztW8dblolmD5}Fhf6d~$y`oyV|+8SD#t5+1QOblMIZsE$MYZtFxo}ZAB(&O9MxpL;t z)}>Ro_O6|~m)VT9&+nYxy1aLC^WyH=?YklJ<0m@{8*6(@TdVsI7q`Sf0a;;b@%a;G zOqnz3)#Nr`$11n9urj~AxH?D0a6vQeE^n{Xr?j4-MoAI{&5Pc`_3~Gt#;Vx=|9^p`I*kTo5ckzrW%``otxdSzUhOjIfF&M)%i8g zCEf!4t6Jh3QIe8al4_M)lnSI6j0_BobPX(Zjm$#~46IBItqe@H4UDY}3~INlh@xo7 z%}>cptHiB==hd8*Kn;>08-nxGO3D+9QW+dm@{>{(JaZG%Q-e|yQz{EjrrH1%F?hQA KxvXrs-#FvQArP zp0>(7ZJTx4BI7i&8l$u`KoR|vvkd;17y~abhMs5ey(krZ0jLG{I^>_J&-Xv}6^sy?_5%{Qob0`#~;4B-Bz9kZEVN zQcpd4o(T4c`M-Z=fB#tly)${~DxeAQFa(CMSj_qKmVK|^h5Y*``v1Sw|NqSY|1)mh zKb;};f+Z}dA>k|?ecnC)*v7rnZ#^h{^epq#rN*Win}FeL4t6}y{Xk_vEjr2P82m0V zg`H=N2FBe*kqD4Ez<`Cv8jt~rdaF!e6ob+L+#;Y9T;&S>IfsGCh_k>WvKUBvfU(=j zY&#(1zo(01h{pNkga&3ewKOrdn1-pnbDJl3&u*XIFTZ+E!-5GLI#$fs(XwQUiJ7R; zrlL<=U0$cOR%N}CniV0Ek@@nQ^VBObY#gBk-s4enznrDIkV=C zjE{EF=TBd`xw;p1d3&8crLAQs8WMW_%B$;F%}vZ+ns48-Em14u{fjrRuDyTx_Vs*& z!b>SS_vRRt-ufbGoPKtmarwPJtlS&fzAifIJxwoqU((Z6SF^7r_4bs$HqW`UrSkN( z+}j)7#U$R`*qLp_O-DtjJdphl9(;zN`}aQsU2^Z{F$RIF-sP2xz>{K^~Fn|2-Jf>#{d8C&YoIV>F(1u=VEopmnTm_ zl3?Ax{{H!}bN#z%bzjb&01JSOL=A_p_a1+{b^GJJC*L1F_yU&#hY2unFcC1gPC&#V zAqF8uM9v5afkF?$g~V^F;etoNbl_PM}aD=hK z_NT-TRtZT-4y_M|7+LnV%xH0K;BwhpyWqg}^Y#h?=Y+Y1(x**u*`{>ESmlbbj?7`M zl^icU3_7~{I(xhQJ$#x9QYWQGK6%o}B@!eOd_cie*H+nB+ge@xP^ed6T4*4vR>0}t z^URHZnx-6D^k~whDMkk7{>uK7eZ8euI4qCZF2kawwR%-{*6UZnQU~r7?RBdyV|Gr_ zo)t7JI_mZCFwO%#*f~Kn$4Ueo=IjdTqxb&bqJ3=FJH z4Xq4JwGE7|3=C?wtB9g#$jwj5OsmALf#=nnl|T)WARB`7(@M${i&7aJQ}UBi6+Ckj b(^G>|6H_V+Po~-c6)||a`njxgN@xNA_tGUR diff --git a/deepsoftlog/experiments/countries/data/raw/flags/QA-32.png b/deepsoftlog/experiments/countries/data/raw/flags/QA-32.png deleted file mode 100644 index 2363f00334f7b8c21950281a994b34842664198b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1281 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfc6+@CkAK4+H=H{rmdiW2m+NHJ4-L3(^5NHHD5~A_%zkgpo zetLTQ?wK8X78h05F(?3I5a?gHr4O%M-@ADE{Nkz(8_#+Ml}09zt01zcw(bNbfI0@b zCYVPcQot~OeErtpH5-=Iwe-3N!F9od9h#8-{X4m7dmV!!$RkM6ebUG!6qstIOM?7@ zfhzz11tA~-@(PHAisdglDhO1@nB?v5!Y-EB@fyhCEbxdd2GSm2>~=ES4yeG>)5S4F z<9u?$gtRHsrX@~FO-r1bJUKidBq%5>Ff{o31r{dVT-jK*GFv`d+gfH@XXRw!VB=zL zZ*6VuZ0Tr@4V%jo9+W&ODk&+s^!VAs(z3$R;_n|=nDjX|eEaq>^#SwD2hZ1w3rL8_ z2uX>_33f6BUNqb&z*<%Kk+akDq~^-Zmy$C%CQO~n96Dk4^6Bvb5g{=_QPV>E7(}Or z2C!Z=-CFvUx7YWq?%Lc4(HC1^mzI>3e*g0AtN(#j36GZiI2pXmZ?;|XGo3eKFV4<0 zF2DDOm0Mglt|`{>UC`dt)8T7kwpN{udc*bS+S>aY3NJs?jozMn{y^TLzPY>0-rwAv z|G%+W^aaUDgw>&4gC=120nyglws+Ex2pZ&OoO^>=v&hIe)+p2kEx2m^+$YKdz^NlIc#s#S7P zDv)9@GB7mKHL%n*G7m8@urf8YGBDLPFt#!|e3cpU%$ diff --git a/deepsoftlog/experiments/countries/data/raw/flags/RE-32.png b/deepsoftlog/experiments/countries/data/raw/flags/RE-32.png deleted file mode 100644 index 289b805efc6766828931062db509ce61b934eb20..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 332 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!VDx^^%AmxltF+`i0gkKgMk4^LJ$K(8Y5$x zm{OSPyYY^|L@vL>2>S4={E+nQaGT$a=ashDcma=HTUBJ!5P3)s@x%@4b|?;Nmjs z$zfzzkXEztY@e_`P@!sxYeY#(Vo9o1a#1RfVlXl=G}1M&)HN~>F)*+)HMBA?)iyA; zGBBv!t|E$}AvZrIGp!Q02A)@QRsuChf@}!RPb(=;EJ|f?Ovz75Rq)JBOiv9;O-!jQ TJeg_(RK(!v>gTe~DWM4fosMHz diff --git a/deepsoftlog/experiments/countries/data/raw/flags/RO-32.png b/deepsoftlog/experiments/countries/data/raw/flags/RO-32.png deleted file mode 100644 index 6725563ec0341f8a41c32480b4cc804d8b070185..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 339 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7E^DYF2d5ZC`e1_J|-gd+xqGdw(J z7#PlZcpUrj!{YychX4QBLF5mH{~lmvJPg@v`hGxdY$ZW{!3+%l-U%}H@9oe8if|Tq zL>2>S4={E+nQaGTXnDFghG?8mPGDv%F)*+)HMBA?)iyA; zGBBv!t|E$}AvZrIGp!Q02A)@QRsuChf@}!RPb(=;EJ|f?Ovz75Rq)JBOiv9;O-!jQ TJeg_(RK(!v>gTe~DWM4fm)c#G diff --git a/deepsoftlog/experiments/countries/data/raw/flags/RS-32.png b/deepsoftlog/experiments/countries/data/raw/flags/RS-32.png deleted file mode 100644 index aa2af703210e04c18c516cafaed21bff04493b63..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1439 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfiQ-@Ck7}W@ZBv0g^|}Y)_e4 zWZPvkI8;bFl*zkQGO%WJPg(K*|Nnpg{sBp#8mtJY5srW+z!A_WI0BjpM?k~j2xto& z0j+~0puKPev>Fb8E`bBMAdrFLFiSfi_k@YfF;nYfU^a@Zne{OhlVirVyFILrSlJy{ zGCpQ(b<7;qYe2pE$w!J(Hn*f5C`vk3k#)@0@tBDEFK}?>`(!wm4Cp^5pr;iwmaia%6aS=MFq7|NZ^@ z{KSz9v-)1We0^=xs(YJPLZpzR7-+)#n>W9`eDxoc7?A)taRRM?3W0S(xLcMx)dLf^ zQ%R6tFpx$9|K15Ql8TqCWYz;3!Ii$^zCD56N8<49V45gn?M3X(ceGJOwCQsPKOUEZ_w!I>FMd} z>+J3J_we!Z>uh0I=#eO>7TD2r<;s;UUwY20c{AtEoT0iFv1Zje%@&50PMMNoksVF9Zr$4TtL@mbXVb22`_^|Z%3#9kso@EsEgCOgy?XWT z<=fZu4GJ$k(F|T*+SnL0eG}JgEti8|US3W=Gsm?0+?~qL;yN)~Dy$?{_=aCkxZa`> zu_@)`rPR~mYht!moxN51+FXZ`d9CU#E16vatkULrceYfXzLtBt{LP)M)#vZ^CM?(< zc)#JYz@miv`)Ysl%h;6sIB_xgxc?lRt^7Pa-y~-j%ybf&V^{m@%*)Ns&&BVkc=_q2 z_HxAoZ?^1Y-LC3#@apRD^|AJ~kDsl*UG8^(Z@DPbnsrgPKiqHkxA*(zr)A<=Rf>(f{Wq$=?9k{ zgr*z=#*J!;YeY#(Vo9o1a#1RfVlXl=G}1M&)HN~>F)*+)HMBA?)iyA;GBBv!t|E$} zAvZrIGp!Q02A)@QRsuChf@}!RPb(=;EJ|f?Ovz75Rq)JBOiv9;O-!jQJedkAW*IzP L{an^LB{Ts5zvjd~ diff --git a/deepsoftlog/experiments/countries/data/raw/flags/RU-32.png b/deepsoftlog/experiments/countries/data/raw/flags/RU-32.png deleted file mode 100644 index e03a51ad2ee3a1376a9af236f1f63ba6b8432716..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 752 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfeil_=LFr|NkE-0wn+a``_IS zWdE0v`Y*-subbfkkn@j0>^}n|P?iz^G#L#+OzY|b*@%pQw!;y~8OVs?AJA101auo5 zAvAzp3v@69ft(FTVEZ5*MEDWIoBFL&S%6{TQxfDC45Z=U*WW*X|GW`o{QLjkJ3+=j zz@P$BFb>dfKpqIg8887Dz3k#Qcc5X6N#5=*3>~bp9zYIffk$L9kOr|m7~D=~+W{H# zJzX3_G|u;)J<4~;LB!$W!Mm~DyLaz4*44fG|G$vay&|;>oA;e`&FjDJ{^7BMKr2tY zMvw9gfukEOyc{N^1ZO(6oi#cp!&15KfM8e5%A8dW0Y|sq@BX#=pzy4k)w%B+6fTss z#@#n+NcbV}_ioHr49F-u_3wd&(}GKLu6#aP+3K)( zXXf|z*DH%Z>i=Mni7!?*WtgH4bgF8JYeY#(Vo9o1a#1RfVlXl=G}1M&)HN~>F)*+) zHMBA?)iyA;GBBv!t|E$}AvZrIGp!Q02A)@QRsuChf@}!RPb(=;EJ|f?Ovz75Rq)JB bOiv9;O-!jQJeg_(RK(!v>gTe~DWM4fTb*J{ diff --git a/deepsoftlog/experiments/countries/data/raw/flags/RW-32.png b/deepsoftlog/experiments/countries/data/raw/flags/RW-32.png deleted file mode 100644 index 623a8dc95c7cd20edbbf2f08c4ef78ba8c7635cf..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1088 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 KU zMwFx^mZVxG7o`Fz1|tJQBV7YaT_f`l0|P5lLn{MQZ3AN~1B2S_DxxSFa`RI%(<*Um z;CVG?B~XJT$cEtjw370~qErUQl>DSr1<%~X^wgl##FWaylc_d9MGT&hz) diff --git a/deepsoftlog/experiments/countries/data/raw/flags/SC-32.png b/deepsoftlog/experiments/countries/data/raw/flags/SC-32.png deleted file mode 100644 index 83fc83d665c8dfd5cac758eb6640127d82f2db6f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1190 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3HGD8EPYe6kC$Fy9>jA5L~c#`DCC7XMsm# zF_88EW4Dvpb_@*6`#oJ8Lp+X8opRPcCRL<;e)0R(ZD$mija?EubbL$-7hZTDki5!s zscYEQmxqpAS(I^^^{cZ#HP<})!L@a3P!_Uu3N9fJiM1(_PxN@rw-KKdA?S8I28VRLwcgXx|{e`YbN ziyY$eXZ*gsd6qy{!>_6nPZegiq!bl1?|zk#c<;&5@K1B9Uhg`8CDi5AsoqVWPBT5X z&0x<__}Q^!;ROD(X^K;ueAr^d&&_L9b~iH*2(+(IbStj767GM`KaZiDMTrQz1dov1@1V#pJ{yIF7MpAbwQ_B zHLaWfcmgw^!rt;Kn-U2B_5f)|clOjuUKiJs6+?cgDTjBiI z^l%md7naET4yg}osw&&oG2dq@?GSsw&g{pr#pJ-}uLkp(tvRoy?Y(u2YueN1kb|EE z4F5bdJ!7iSuv+z#wq=fbZ>V@c{X>~Di`c;VUnb}u`Vh!)YqP=hCYNLWpZ--}s1)d? z&GM|C^zeN0{qx?$Andd?am~$}QEdD7xLI^S z?G~Qb^Fv|EA1^WM?MIUGChmM=bNOZFvCHK>>PZ&y-J|Q^|As?J!?kP83$8xB z$yZITWvg%AQ~aX(M}_&Fw~h1pf@w)CduRWhl&s7q&+0i3?+7eDU7sw% zYxDKb-h8HI7eb^JcP!>>2$I|q!*+Am)n!aOKYqRa%gI;Rc%gV?2EW19S&2%PCkq~l zx4n@_yLf2oBz{fxEF2OC7#SEE=^9w-8kvU}7+9GaS{ayX8yH&|7}Rc85k=9Eo1c=IR*72!&#O5r yff^)1HU#IVm6RtIr7}3C*rkf&W^Dzk{K`eqm^KJ8$ zfm%csSxTurBuo+m=>h2qpPQhG5ouuX|9|(tQz5AHfA^kq?>XnY=iK{WPf3oqw{^1x z0Q|iP->W_j-8USI3yl%={ufJHyP)S+G;Hz`zl= z@}LbGCOS8$O$Lj_iyHK3ae^C=(k1`8Y@{iQp=pGjTqo?6cgc;*Mv9_nEEX@vz~N!q z&WX-VOuLn30Ot;8Xn?xMb!L-!aei@Tc4lr{*cjXw)Bs1uk${BYvbVP-*u~!GegGTb z3;3dKfp!25jzUk$0|E$(pyI&+z#2am#@hp2^w#w2+cLN&fl08HLk@UyReo!lem- ze|Wc8<+LJP`_@SoeK7e>5m(+S-!J8TY!kN?0k_X}AtX0!a?E?y4k{~qc;CaTqfx)! zdf6GhMy=OMvx~JzK`%h6v{7i%F#qs!8IBo?T1wF<3TQ&u#tjYL6^C`*oe7^|xM0|}yD!vFvP diff --git a/deepsoftlog/experiments/countries/data/raw/flags/SE-32.png b/deepsoftlog/experiments/countries/data/raw/flags/SE-32.png deleted file mode 100644 index d1b1ca8a878db02b2c440d0222ec137049dc4944..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 792 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfdvN_=LDJq|F41Fs98EOP|3I zH|N35!2jnNK!Pv?l!7Cm8aM(fh9jUZI09;iBcLHX=`$IUXL%G(`F>pE|5=b!cUK!j z%v`CA89-xs!LpucvaxfeGe8!}WXxblndMV7y2Rj4c&I2)kQV?_w;cSrj zIi~+-7@<-?XP;pK3WAJ6B6sk1T?B@md`XaBFpvg;Kl_-l;sPtPFrYMNfk$L9koEv$ zx0Bg+K*mK+7sn8d^T`v~8ChLbQ$<5fOL;3L5~e>-c<>}CB_(A+Orsh{M&|1muU<+^ zNM#;k*sjJetS|4;Xvi^R#;lpq5mAx1B@Q#}-^j3efq+M&F2{|V))rQlyLarmd8lE- zT8{1&5+04#92FH+mA`-d`pLfIaKnz>EUTA@csMF>u&}nbw6(gsxUn8;C|STWdyPzt zV~I~rObt^RYXUR#pT9zrg*HYrmQ9+y+PlchsLZ{|HZ?hS>a1y9cV|CHFf=mpIPY;> zF5p4K)qrqjtpmd1Q#2SDnx=(q{{Q&XZlLE>OI#yLQW8s2t&)pUffR$0fuWJEfu*jI zd5D35m8qeXfvL8Ev6X>A?RFJW6b-rgDVb@NxHa&+nzIt9K@wy`aDG}zd16s2gJVj5 gQmTSyZen_BP-95G$&>$QW&P*p2g!zo{eS!R|DHV{jj^%+6&3#n1^u_T z2k8P@3Um_CC9`M$Pfh*L%?)w`Fie0(UBCYS?p;Lqzyk`%0D^!2l>Yw`1V(^PNswPK zI4XcT|2i^*F^Ks4A4L8ElMwdb|9}7d{oh&9_7SL_G0EHAh4n}N%i}-}XMsm#F_88E zW4Dvpc0k4rPZ!4!jq}MDE?&KO+5Cc`iILgGM&>d;SwA*CH-Q9$tA@tgH(c4c>DtDF z>kfn+KNolW;Kh?SkA@!Soy{a$&hIa)pD!ybA1`aahU*VAQ)yF^v(w>2rAiw#JFawg zUF+=Z?e@Rm>C?oRH%}!_&8~x~ZtjyQSGIiVIioZ8jf{kVz!||Lv9_p*t0zy7Ul1Iz zWO4Idaiyb+RF|ec6`dM-)pVUO_QmvAUQh^kM zk%6I+u7Rblk$H%Lft9JDm4T_Yfw7f=LG5-GQ4|fi`6-!cmAEzVyqdETs6i5BLvVgt pNqJ&XDuZK6ep0G}XKrG8YEWuoN@d~6R2!fo22WQ%mvv4FO#rs`uxjA5L~c#`DCC7XMsm# zF_88EW4Dvpb_@(GN}eu`As)xKPL0k92^DGEU#n+aoW>O#6{Vq|z&fQ{x9OMzbB1H` zsipdEMlSL`JZ%!99h~}7!t)I-vUF}wni6q@Td`viqv(|rx`M2lTb6WfxgfSoc8+9P zRob~Zmg)KOw;Wu34xISEY4hZ%_4V27_g)jTeZS{Gi)@0{=P+n{ zyvc+Id`(a)nJQ~M>_5G7H$sLXV?{6P0e!Hb?gl#*f4(|Hn<1WW{jskq zrlpr>*1r$=Qo+A++U1VjSrhiT>~z(-wnjNAW5?RHOZ1moL~gJszIp6y%1ho-X4e?s zB~r!W1!RiJ{ z!Tu}i^FLMJX5A*+Vf^(XOK*_Vk)+Sh-pzlQU#t74k9xZbon-spm#=tysrZdDtCKqq z>*n;_ZBBgEaLB;dZ0|?K_w|3cU&lwB>T0Wc_5O6x@$c>y#YSfz?&x3YXr;<9{r$Hv z;qy961lGD(%`K6g?~{LteV%&g3YI^s8BV{t_VVWogGm=R&atg(>`G)z(7FH4($QwR z>kBL0X}nj0q>L&H--em(-8TCtZ?Q(1s)e9_L*^q9(ZipGHUzMLPqxYzTz}uoB&cup zj)tq*%#J!sPw-WCJN3k@oifSgzmAX=?}QUxOYA3bzGzOg6JQVt4Yj&7{mZvhfhqyj z=5Q{l3kScl7N_qz@@m@#`wu#b*<5AU?RuWPee=u8-GG6$oWmg^erXE>`?@cN4WeRG zPB1>Mi=7~E^t43wkRb0BRqPjJpDU7#&zLb$jA8?O*rasp)cSEd84-^5;K8GuNw0i{2|qv x)F276Aviy+q&%@GmBBG3KPgqgGdD3kH7GSPrLyp3str&PgQu&X%Q~loCIHOtF7W^W diff --git a/deepsoftlog/experiments/countries/data/raw/flags/SI-32.png b/deepsoftlog/experiments/countries/data/raw/flags/SI-32.png deleted file mode 100644 index 2e7cb29cb9f64b85fac7daf7cab06967e2d62138..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 855 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfiH$_=LFr#{mES{X-K23jF&0 z_r;4(Km?Kc{{7dFAHO_276B0t&nzj18C?u*-3)F285n@*9|H#vLD<+yGzdcJ14_clYtivV(kmO`9XCDr&0g zDs@HgYn*Fhj!7+F`s?4vpI`q5ul*BrCsq8)tKPKLcYpqVza{!C+uAtheua|izXuB} zUVPuhbeQ?xM2$Z6%QthZB)fYiia(pAqrc>7*48OvM$WUE^WTO~Ia{{@XF Bk1qfK diff --git a/deepsoftlog/experiments/countries/data/raw/flags/SJ-32.png b/deepsoftlog/experiments/countries/data/raw/flags/SJ-32.png deleted file mode 100644 index 57662f2002eb7dc9068ed803bbce5da3abc5d7bd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 600 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7E^sf__XA+GPWb%D(HdIs-!g+E0{ zfB*Q=KClWXh(LMz9h&m7)XP_ zzjuO+*zn)_WgyRS7I;J!18EO1b~~AE2V~6lba4#PIKTCxJKtdi0f)fl-|uM~B-|<3 zUbyrBK_$VB$AYG8|0iVJ+$wO0MI%{+!|fD{Z~C=8-&6m}CG_OJ+cEFC)tzIfnDoQ{ zZsp@pyu3uFrN4;IPo~pnW`nO5hW>! zC8<`)MX5lF!N|bSNY}tp*T_7?z`)AX(8|D6+rZe$z@T=!iYSVP-29Zxv`X9>cwWs} y3Dh77vLQG>t)x7$D3!r6B|j-u!8128JvAsbF{QHbWU38N5re0zpUXO@geCxuuCD}dra zLx7&@oU(VyiqkJE8b9c0ep|iv*R|{4RB=@qmZOY0sKv{_2LH^a7&1E>7L2SB1 z!s_RFRi7gxzph;U^ZbRcD^`6D4SiNrZ=JY?L3BDNP>miaSd>GSFnBKTE#34Yqxf@k z%lAF|{@lFzZTH^Kb@k7(D?H0KGkPunssXA52A6{WB4L+#200s^)c5>gVECw{^=SEq zk21;I4_g6oy*|5tZ&A_nFR}~&AOZ1L6HKB3+~Ty zVxJfoKIi6boW9MzV(aGV+dgM!gG7Mh;DiT?DH)Bo%DV3u7{2&;y>03K;^hux14V%1 z(1?>(d8efPR#4_WP+UkB$bJVD0jF3HDX;!cRTo6csAiri+5k-JF(pBM!9W@b{P^?x z_pcZHjKBZ?dkrFi0K!0!|Nj4bE5P{gogm|X5P=UD)U8_%G@LQX+uensgH_f8$l)yT zh%5%uAhrjC+sSM@pn^J27sn8d^T`h$iwhiKa56lk#IvYJ;edjevYfQA`1}bo1m=qf zOEWVH8BPk~xg@}9baGQs(I+ki1$}nru9IG;e6$2uS7~Og%zP<1GxDb8&dQ&f0t@CX zT6l5|Yv2Oe#lZr>5g{=_QDJhyft(wi%-#IwA7of`V8f{uyOwQRw{PLbl{=SiT`SAe zv)ace@{9tPmDTQD)m6WLsr$?^sXTQh^YXz1doCZEbd_t-fvRI?A~!!jGuOQS;33!U z={m7&Y-YweZ*RO&Ki8LGW9~mZFK*5~0akJS zxLq|*Uu}JDo_B9o?ell893OVRczygSe_+A;dwYNL%h^@^dGd1ebNzSsn;ROc8y)W) z6kyeFd~o%(dH(&q|37@Z>aD?1DJgYKm@n`HCyQPE&tGqU_n)7ipztU-MI_&35>rXT z5(b9$peK{koP2HoqeQjDHKHUXu_VKd7c7#LWY8d@2cY8x0^ z85q=VR}n?gkei>9nO2Eg1JA2DD}fp$K{f>ErbP0l+XkK%?jWx diff --git a/deepsoftlog/experiments/countries/data/raw/flags/SL-32.png b/deepsoftlog/experiments/countries/data/raw/flags/SL-32.png deleted file mode 100644 index 3ec797891922d9f67128191ded5e4f949618dea7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 440 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7E^smuVM5Ld<7io37u2BQC9@b}+e z5CT&>cU}e}1%=rRGZ}!&fQX@w0gm9hFts2QG4uhogG^wU$<=)DFVIq+k|4j}|Ns8~ z1;c;;|Jzvns|JcQCV9KNFbnedd;)Sf3p^r=fwTu0yPeFo12Q~4T^vI+&M!TCRPcZS z!x4wpnU4*=$ER3X*zd_d+i{8Md&8<}8MoGje_*Q*;qb{2S)@5nbdqYU=x?RlpJE?c ztdCw;5!ZSCknIn~^l07i>c4vr0}WLzag8WRNi0dVN-jzTQVd20hDN#umbymfAqECk zriNAqrrHL^Rt5&O+f_tSH00)|WTsW(*1+>>&Pt#LNstY}`DrEPiAAXljw$&`sS2LC ciRr09sfj6-g(p*OfQlGAUHx3vIVCg!0HHFi5dZ)H diff --git a/deepsoftlog/experiments/countries/data/raw/flags/SM-32.png b/deepsoftlog/experiments/countries/data/raw/flags/SM-32.png deleted file mode 100644 index b826988122d899e5e182c9da0848cae4ae3be9a1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1296 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfg?S_=LFr|NkE-0wn+a0}}ry z?E23z@xRsV|Hd;xTsi=ty=Vy2QlP6Qf>Hl2s0)FP1S0F%AY?TQgn$l)APntbk0FWv z`}gnfzke?tT=@CpE0B#O^Z)OkKhJL;y|%6S*|n{|e|-mr3Pcv}LLm3|?_c+x-Fa|i z;nre?tE+3DJ-c)7;VonZKr`Ffm!q-9{8fOK! zukNc)jEFEU4>HUuZqjQ$sL=lrsDN?eKSZ$1{%<$?SLmcUCCkrs&)?Npz%Zkyq;lRd zv*Oj(Gk$`CZWbu?;NfOI>yP2|Z!ydNPup-YtzmlAl+CHD{;N;gU?2?vKmP#1 z&q9_z|Ns9f0+A5#8^|t#i$P@m6te*1rJeW#w2fd7lsa2Sq~tGv%n*= z7)XQI9t>_Lv+aNiyggkULp07OKX~%!nIr3-n!Gx3@Tp`qcV$!E!6awyxxvm~KVLrH+ zcCM-EwAipU*9utg+V0(3`&U@aZCutuuShetmR&&zN6`?!-llCyS_@B<=xto`g+@2>#+4@ac>Vj>{^uYeBIsZ zZ|`o`KX|b4uzOf?aKV=wABENZ=h_v2yYrJfLbTyZ%$|~;r>?)FK#IZ0z|ct7z*5)9JjB4j%GA)xz*O77*vi15cDsrw ziiX_$l+3hB+!}aZ%~=W5APKS|I6tkVJh3R1!7(L2DOJHUH!(dmC^a#qvhZZ84Nwt- Mr>mdKI;Vst07>-nt^fc4 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/SN-32.png b/deepsoftlog/experiments/countries/data/raw/flags/SN-32.png deleted file mode 100644 index 08f02a5cb9690ecacd956a72275e225f3d95a18d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 639 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7E^sc!*3A+G;{3Yf}6innl!#|+xKd4F&8;-z=KmTNS^@ZUdOu_HJ45#ih zEI9=>wu`}a5yP+F3?F|m^c`YwTg+fOkD+`!!`;^m|GGf7eE-St;v<9JGzNw?hST@J z7IlLx`u3CI$}@%)XBqb1VAy^QD*pW!!>1n%K=Xm70o?<1C&cAItAPmQs(&C6C>zLq zDH{XyHd{%MUog2>S4={E+nQaGTO!IVc4AD5h^x{*#LkBD${Q>>p%Fce4u$wbncyVGGfMW zv=!`{11y>}IFkxhCao-Ci`>On#8|ub_Hup-D7TsS=<9p^I;Q-zDU#Q3?p(DJ=t9*J z*NBpo#FA92CwWnfUdT}2c{LvDUbW?Cg~ z4Lq;rfNYQi*$|wcR#Ki=l*-_klAn~S;F+74o*I;zm{M7IGSvpCh{4m<&t;ucLK6UB CkP9aO diff --git a/deepsoftlog/experiments/countries/data/raw/flags/SO-32.png b/deepsoftlog/experiments/countries/data/raw/flags/SO-32.png deleted file mode 100644 index b0ba97a1bb0fc7c5f05557cd8bde2c76c4177803..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 842 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfjH6_=LC`&-@P*0g`x->CFE? z1W^EF=*;-9H60-W6gQvs-){DQsj2_VH~z2L@?UHUhzk^in`t`hzuc7nQj`8OwEW+5 z<^R!JAO?^tGv&VtOqtot|H{+;7q9z2WB>oU&HrD1{Qv&z|HiHVr|**b`{jQi`1=op9=!RVv*y3bwEsX^h`m6D`qcjnz5mbL|9|<(e})PFm8KwM zfog1K|7V!||KaQZ@4o(j{rUg%5C5g6{kH^b2Rfc}%Kzf^|Ia=A?=>GJc;>1uA#0%C)s!|z|XaV4hLdK1SnwK7(Q?H4px zR@yRxlBsHmYeY#(Vo9o1a#1RfVlXl=G}1M&)HN~>F)*+)HMBA?)iyA;GBBv!t|E$} zAvZrIGp!Q02A)@QRsuChf@}!RPb(=;EJ|f?Ovz75Rq)JBOiv9;O-!jQJeg_(RK(!v L>gTe~DWM4fFkYW$ diff --git a/deepsoftlog/experiments/countries/data/raw/flags/SR-32.png b/deepsoftlog/experiments/countries/data/raw/flags/SR-32.png deleted file mode 100644 index 6dadca742570725c2d88ab8e2b6e31896af826c0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1202 zcmZ`%dq`7Z6#u@tx%rrxkL#lci^{ZG-C2^F$!=`rz?M^sMiEYTwPnj@Gxd)^r4lX4 zDE~+cB6^UT74(40H0qDcq(6elj5T^}P$?`*jqIMj-O=sZ9*DbKiG z8JZZ15KZ|LQIfBL<;O zMhMUr`vqG}Td>8<;f=?SU*q^`%s|`@#F-Hn#_ugaGM0i_6fC0vQSgX@9txII5dUjZ zGF=dc2n-0rSqv@=6Bv9LUSc?cAqs@@Vq++=1w@O!se2Lxe&Ihqcq<^M1%wQMK$QFKSs8BcCl`k7$uaLGI)^{& z2FkM$!s!MbQ<(g;MA08SDVa==N)wnmCYe@5E96adQ!^7IZ9H&@(bnj!=_gX=Cf#3} zA~UJxER0qLYpywbA)3gWyROeZd{?5YFFumhau$gOZdUjJ$oWTQ&@-FMqX< zYI~TLd5y<3x_W~=-np-8;>-AW)x<{R%U%5>eMqeeO)|EJOA9U-JF-hW-NVnkxiW`( z(N>3fL>u#>bh!Rh+NyHblq@WcRc~(?%lUpjVo+Q3t+}mh^A+=*h$oJ1o`<8KBqsN5 zmpw?a>(%wz!RPjo>bi`vSy?q%y{gcChsItigYS%ga`nbN9(RpC`1nz7a`zq8T4y%z zMwiu{i;SoB^T{$7I`vzeR*RF(EU9FPLaDSSRZVB8Q&$zzbY_|+lTKSgugIk7{kImx zPAjliSZ$@X|1SvtaOx5%Nbq+ks3>(-TPj(^SSyNImBDT)WAj;ywbn7fW|1Uh&>M9< IYl|9w0%Rc?+5i9m diff --git a/deepsoftlog/experiments/countries/data/raw/flags/SS-32.png b/deepsoftlog/experiments/countries/data/raw/flags/SS-32.png deleted file mode 100644 index 7df5eabecf3aeb25337f74192fb7f1a1aeac7798..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 541 zcmV+&0^Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L01FcU01FcV0GgZ_00007bV*G`2iyt) z6A?K{n7;u400EszL_t(Y$HkPtOIvXi#XtAun->!$X(-emEs>(cA5a|HQmEBM&_Oym zi7tY39Rvp#!NI}*pty+OBDC3Rw}Ny~2M1Sa6e0>D4u-Zd@8x?PVuIR^dC7tAaPM*s z_nh-3_IgRheWE}^o@1U45Fgp3sdtt}z!4F!MIxQ!#7Dmnem+uP0rv+%h`stm%kXDH z@vgcEki=L% z(Fq540afVj$T9hDht=%~dfHAoIOzry1)}~9OUE00yxirl6S)gEEX;XV>ZblS4&n8^T7wl)DJOF521JA0i~m>h=T!sq8-% ztQ@aZEwHt;;C~@3Ususmn8m3y3j`d(2Q@?yKZ4(S$jc80B$^FY3BHD)U_%hS;^xg3 zHj(4#+CVG)(KOhJMhwN%z>Yp&G>>V>0ALME4_Os+!}X!EYpWn87pfDK&|Faar+ zF}cEEx~5Kd&rzv8`(!}~?095y?|xYzf;ttb3!+gPXp70G>GJ=t1HB3L4#ZP%^6z;D zAcAv28o_!mN}HTvFncjs>Hk$=_%H#(2NFs^^7k3W|5q6=u4g>A2E+hzA;AS#05{~4 zyvcc>A$`jKF9O3B5yF4ZGVGhn5betl?ai=j7Q>&jh>(Xw0mKcL6->@Cm_6@OLDv2c zsQ4no+rtbNh73kJ46hG@xIjS&0&0i4Uk2p<=l#n6uOPV}644hKpYCD2yq@vu2FAy` z82?`c#XiJ?5WTMDcjx@z4$N2K;*i>clF zWPu1CaUdEaloaXvX=Lc)|O zlcpWylt_8{L{wzzltS%ldzEI>uEpL$c)S7hay;9$%lc4F|5=Idtich~w;; zQHBw>Z``_RZDD1(d&jO_JF6?IDtGTbm=P`}AI27M|G(kDf(H{WZ1~V|V#SLYH+K9u z!J;91Q0&~f2`^?(nKNnDw0RR}PMte>_VoCGh>#ejh2EzvPFYF{32SSuUX`8o`jxcQ z>{-!Kw{KZn?N%r$=MUF6_i&8=-_ki*&3~p1uA~M zIa!?Y>mxVY#Odqf_E)a{`OY@%gX5HkkC&g1-&gm$&wA65x{m*UTBGCG7}o!~^GI>N zq6sj-RZCnWN>UO_QmvAUQh^kMk%6I+u7Rblk$H%Lft9JDm4T_Yfw7f=LG5-GQ4|fi z`6-!cmAEzVyqdETs6i5BLvVgtNqJ&XDuZK6ep0G}XKrG8YEWuoN@d~6R2!fo22WQ% Jmvv4FO#pYUYsCNn diff --git a/deepsoftlog/experiments/countries/data/raw/flags/SV-32.png b/deepsoftlog/experiments/countries/data/raw/flags/SV-32.png deleted file mode 100644 index 87c7a62cd954745f040930dcbdea6913b62fc770..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1076 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfhIk@Ck8cV)_phVP^i%!t!5S z9LWCv;K6?&`1kMs-@pI&?D?;x^dBe-6bB+8gOL%+0BQuXfg~#{NL)+|iX%J&zkmOI{`#zC z+KSa1*KF9jxqkAJkDng_1z~>q_xa1K=6QX2Z4D)D)0*c``26K1P!?zc5Z`{ZW%{cA z$*U&Zdb9~7^dI3_h~M|_`MqiLk1bn%?c4JQ7!D9YxECM{c$feg3JU*aW&g{{ff#Uc z=|Jzv!1#783GxdD(g^VHoggC+fvEp5Hkk1jg9OGFOqC$xT)*xGKvNi#yxm>c#S%MS z138=p9+AaB+5?Q;PG;Ky6|i}_IEHAPPcAshS`qv6ha`)Hr$JCG0^E34YJ*FGWnx6aPu zWi5VoZub6!hl`E|totj(?w+Uqr|{vK$4)LOf?atGX0fvcEO=@yfI*{L;u=wsl30>z zm0Xkxq!^4042^UREOm{{LktY8Obx9JOtlS+tqcrmx2uSvXvob^$xN%nt%2v&oRvTg wk{}y`^V3So6N^$A98>a>QWZRN6Vp?JQWH}u3s0un02MKKy85}Sb4q9e0H}N+v;Y7A diff --git a/deepsoftlog/experiments/countries/data/raw/flags/SX-32.png b/deepsoftlog/experiments/countries/data/raw/flags/SX-32.png deleted file mode 100644 index a1e725dd52642151edf9e2fa05ed93d6eb7028eb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1252 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 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/TC-32.png b/deepsoftlog/experiments/countries/data/raw/flags/TC-32.png deleted file mode 100644 index f185c182f926122e56f4b472f2f6b17437f3c89c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1277 zcmVP=`=lAvMu%8+1{Z=8#%ATnR1 znDdrvb93s*on6ju$DR9mp6B0-b99Q`jQqX&^W(?=`}tj^_v>$x_%#NL#+-I)-EUK(b4wcloZ@#`m1?uLrsw%*%wSN83!!=HNcAcz#d#`c)=n#IN zheT3yw`TN3YCkdBFPO8v33+NoJuj?#j8Hhi%*sNkjSq?V^Z3mylChuq*|xTVb&pq4 zwQ`wscuUn6dyc9D`+ArX@Dh*Ty*Pk;{#9ef^?1#yDLxvCG}9|eVBR9akr>e}AERbe z;(O&ajI*bhwxo{Kw3!?^(aEo;JHU0=yXQEa7vdPE!m$B?ilAVstiTN{$A!?)osj05 zfi`emY*&-=`MDJ8$M9L0fdKLS2auX-Ok7f~rl+S1XJmvqhGJ1s0r8YWQ!EV#mIenv zYeGXAz+e(V05|88+W}OtTtvW`h~i{ytc44ZbP5qcYN{cX0@K93K7kXBVU`AwR1zE~ zTSCcxs1)F6j3O^PKdNPFAdO=SN)(0xqZ7i$cdjC&5hb{84q(5(hGg1i-txJuTsEJ) z;Shsu=W!o+5GP}!lS%w2Q%d-{P4+EkFq;H@cT&C<)1 zMS7svV0g5HNN5P7ZXIS_0d{)=Q<*mbRNI+Lx?$lgmKQoi8o%SUP7$*k#pWhBht4(ae~txi;#h zZJ(DV)!W$GR*e#i_ZD|?s`p)%u8mV!lBRD|&^ZY6JmrvbDH)ugB;X?)bwNY4JIUpn z6KeyCiKtC!undm@M;kl9us|%ZH5y2xfH;Rw7BlO<=h$U66Et9hUPa6CJYa;Bw$OUA z1maa2Gy-W2`j#FUCRn++j4;__Km`1LLEDf>>)ZSV`I<;nv3vVW7A$T<5YC;hXXEDI zDVpLk9+S!AkX_0R|LuhRjg=I-j6@8!Zk~>I;e+iVN(wb25xFDwo&boD6&$y7Z;Rmw z=s!_1|8H@~3Js47!D0_uLwM}3bG#=2H!M8*&&5^u65!w1A2w~h^HL{5Q~&?~C3Hnt zbYx+4WjbSWWnpw>05UK!GA%GUEiyM$FfckbF*-0cD=;%UFfe_$BozPv03~!qSaf7z zbY(hiZ)9m^c>ppnF)}SMIW00bR4_0)H8DCcH7hVPIxsK{>YS+n000?uMObuGZ)S9N nVRB^vL1b@YWgtmyVP|DhWnpA_ami&o00000NkvXXu0mjfhYLcl diff --git a/deepsoftlog/experiments/countries/data/raw/flags/TD-32.png b/deepsoftlog/experiments/countries/data/raw/flags/TD-32.png deleted file mode 100644 index d4a1449d2e104a7e494440118203a7309b6f3a22..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 465 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7E^spk8OZTI14-?i-9!ACJzR;li7Aa zMv$kAV~EE2WC3%EWc$ifMrc&`f`gWq*r%9|2jaC9V-ADTyVi zR>?)FK#IZ0z|ct7z*5)9JjB4j%GA)xz*O77*vi15cDsrwiiX_$l+3hB+!}aZ%~=W5 vAPKS|I6tkVJh3R1!7(L2DOJHUH!(dmC^a#qvhZXo$ma~6u6{1-oD!M1@Ck8cG^zrMFesIM`~KrU z7~JXZJI}xX6o;elV5vJjeIUh#Rjj7f3}VG#jrl-Qz@kRfq6WxdH3n(nGp+Ur?>NK2 zaJ9NIAY&4PXbG=rHAt~i8BiQ<6i@-s7PuOSESextG0;-DQQ{Ug4C>`x5uIPZft-4~ zr~fp_5S}YFO#$hX7{p3=z!m}R0wP|eG6sf155JZlKYrft?!LglaG8POMrCb4#$e}0P9zT5e?BU~=XO^u$+%n-<$K<1PRyap? zF({S+eI#O8%cNYwz>vwnl*Pc1!yu5yZ&nRNK&uU08w}kV^_}b4cncU9@);QN7;Nhq zJX#q%S{Upa81*U`O{ztVfx({KF=_qrv$qZ&yRzrd#f>{pOX`&~NECv?N~Z#dm~<;e z&1--T6Su74)vx5xF6Y!P=h3fZH>qaOsxbF$ZSGs+5!qc(Gylb_cb9KGO30g@UOGFw zavsomOh#2e1X8J5<`mX7XX)PXgr0=-zN^>n9zJxIoh5yxy?Eev+g zvC}thKX`fV)}v!*Za#bUF)pQ-fgu~H02r_g(j{>@Q#Wouxq9P~8@C@XTDfoL!W|3@ z1wdPX3b=s^WJ)7bCp!hS9XfWoqJDm4##B+`YDRF9045J$AWUDlv$=OQ14FKZf7^;p z#|=E18MG^adO;2_spe8BW?(8?>Kw6?Ia z+^w;57h|J!7Zbm~e!i)xe7ybth64*8Ot`S&L&ph?Iu+K7h8qh%a&~&2)LfbQQgUYG zP0O8?KbcrLSX*6>sxD1^Dmpdvs_E9!ue`m!XLZ*$<#MpTm7N=V*LH91Utu-BSvIM! zw!Ab>J2y+$#9d-tf*#MA+4~b7E;{NxO)q+1($W)JfjgK~Eh6@&z1{Uy+AQzZp48Ph z%=~n?7HxZfV`ujETl4n*{?;vjV41_q2MZ6o_sLn;J$jEs|v%W{f%2M3Ka4K!&0@xHKHUX zu_VKd7c7#LWY8d@2cY8x0^85q=VR}n?gkei>9nO2Eg1JA2D zD}fp$K{f>ErbP0l+XkK8+`yf diff --git a/deepsoftlog/experiments/countries/data/raw/flags/TG-32.png b/deepsoftlog/experiments/countries/data/raw/flags/TG-32.png deleted file mode 100644 index 7bf6473388a409c43abaa902cbbad93c3c3c85f4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1304 zcmbu7eNYr-7{H&sq>}&K;%YJnnUjVI8UInD{5}z4w6d_?Iz|j zY&a%GIg2T{a||8PhQt`qvHT#Sy{3=31TnF&BD_}?{G-3x`Mvw@ zKJWW{Kf5gEA{D!k1pt-FXecJThOA_UChwJ3_P78PO_sH#g;bCTK)n~B1tKEgIlv+4 z`v~A&fL3VwASM}ri7*)70|!kghKX|2^qmKT zpeF1E>C|dPy*`>47cm16VGB^P^f4|D^Ybwy14AKfZpPePT$DOdNnQD3RzZmCq9Qzd z7N@50)-61I7=c5#0xtj#{#&b*6x_KJ@7%$$F-%QGhQu6?ZouK09!WJ!O2UQ)EGt8w z4+SAA<;C5!!|Bt|cVectI2R=5QJ8!mDkJpw^oV1*O`da)#$wJ~4q;@!Z>u zexIVCT`R=TS(R*WO!V*C)3n~muU&06t!q$hIG(-b;e)Pg) zZ-Nzpdaag8OMC3`N7K2qo+DjHcPMOUs=R7tqi>)1WA9%(z7jjG1-?J|s@76kwXx#q z`e(nLbLofgej2_!vO>7}e%NyG=u+GMb@U<4ORFOnHw{+~wB>9&H|o9JzOuyCzx0zt zL&*1LlRCrJ`|{-O)(@>cHcr|5n(L1|{-CvsEBj3NxnuCTlhv2|%O9DSvT!{6T6Vqm z(#Nim-}1LjjIXG*tLhPTWc_j{k$u-yXPT|F{7xtx5K(+6G{`E;^Q!&ckr{_VMc zD-|LOJ@w-e>+wM{I9LPc%1t3txmE*mM$|ZU6+@hm0POQ>2osmx|}7tC-gd9 z-Kj+n+@rAB?buY|{ci>SdRr$^SRi>QaaVY1g{@8~aJXM|YD}AjN@uZCaCoA+G`81 zckN1H&{Ak3~Pe|NP(81yqSZ5G^o`K)nzIGy#slhCvCSnQ#O&9FBmt zz!A_oI0D)WM?eR_5zr-Y1acA_0o_J~7y5el7z2IlR1)MD45X33zjuO+q~awjne~81 zFeZ7syRiPqe|a3p;VkfoEC$jZVC;4>+YZQ>`j|(3l2C?LzooSO}Foob0|L`h0wNvc(HQ7VvP zFfuSS(lxNuH8Kw|Ft9Q;v@$T&HZZm_FsR+GB8s9RH$NpatrE8eo>y~L0yRj2YzWRz qD=AMbN@Z|N$xljE@XSq2PYp^tJYDHM1Vd@s)>Q3%biK#_C81C-OMu_;+f>{KuAdEq= z$!ZuPW*G<}8I`G%JE>7de*}?Iz+BfiW?_MKOpGjZA~HP{0f;2XdPfMI|RZPh0T zB#99F5nu^G26zRqqP3Apz-yvnO!y4OFEN%d9>DlE#-m#JcC{tAX9}Pmzz5I<&;amQ z%Y&@Q8fIi=R#v8E<%O)g*YH|a-pR_mtdNq7M5JLI5<`&~fwbJ555ro|b@((aB^>$k;cN9|7ZU+nfW`98Cbvak~qsVTj;Sk9|U;AZoR zPMVL}%GqN_Dhf(B?7GA?Jru6=3tgjv=Y|l|s;_MyXc784grR1kx9x!tk?%=2Oil00 zG3Aat8Xh{IbN1Ym=BszUFUKgqmZHK8vHD2!z2vyav9YbmH+!6p`MHg;F+B!bn77l{ zdfn%1@A7$4o_kwR`E>43bQO|#&ACFZlh|&k6OE16Ot??!nB180?{HS;nJ+bk|4yuy-&Isu}3H_umcvclWu!X0&69>ZI&_j(hi+Y%FDkMC-eV2 zJlHw;ef{NoWlo*4=`sRFhKxs~cPql>Ada7+Qdis!aE#X-Y_$`b_7P+6~1qNm_K>iW6ufi8yieT&8u#j z1+jE9Dv15qXrh*q=3ySvn!f+<&!@}#)#hZY6?D`r$~arByfHY;=HgAm_9Qhn``( z%<=188RcKJ*LP=RieYPa;Bn@u+p_H|!}Fh?yWFbk$-*NcP_X)>O43BxIIrCLZ)d-8 z@7;Di<&w^84v~XOpThs>fB*mQ#oxbbS{zEVEm<5?B7}VzG^&GG1XN}#9FTarvsgJe zx?kq@HS>49XK(M@*|*@(p*IThHIK7?*Pd)mZP!Sfq{AX8$f>}hkj=~(;Nqm>!p7jp zV$c?Az2)tfosG+`?|QG1Z@MKfM)-j+la{vOJfWi(c+wP^3_DsReGhE zrLK{Ah=GBXsiBpDskVW!m4QL+b`?<+4Y~O#nQ4`{HSoNevl6I55@bVgep*R+Vo@rC jV@iHfs)A>3VtQ&&YGO)d;mK4RpdtoOS3j3^P6su$s5kmO}$U|^otBJ%5`+V733Ptp`_G0NX!g{lGS z1u6pqCI$v&Ss?}nv5a8xXS)^uU)1=zTIFe`;%#PxVpdjGdwY9JOG^d@ekCc+V{>Hw zU()z@S`Dc3S(f50287Bx${<(q^71AoCLTI;sG_1`*|MdaAbS{RSBd^OruP4$`u~$^ z-`0Sv0BPiwzoQD$0<@yFwe|b=@Bjb*pE7l-wyJcD7srDQivLfl11$n-`LRj$d7yWu$O^`bFwi=iLe7BKiFCP?q=oxmoQ}; zbwCqT~=ES4yZud)5S4F<9u?$gM=qf9zA>b z^zm^%2^N;t7FU;}M^p~ zJ1Zv(2OAf2du#gyORQnd$zgr-MpkC-oYf zj;S?1n|5v6x4v`h-pQG0vsAJE`o*f|GsmRz)RoN3>1XDcN}rur%<}Bq?EMK37ajGU zrWd_0>FKJg5{`S*-tPJ;ZI*XyPwHzkpUeeJ)84MJE_-)tZ~FUvexVXy!bG2 z@$n7b%%U4))9njCUCETW^yd%5DTB;%`$lz8{HT_=MwFx^mZVxG7o`Fz1|tJQBV7Ya zT_f`l0|P5lLn{MQZ3AN~1B2S_DxxSFa`RI%(<*Um;CVG?B~XJT$cEtjw370~qErUQ il>DSr1<%~X^wgl##FWaylc_d9MGT&B#G)1IY>XxZ zcsJYVv~jbBc`5M3ssg3pNH|ulQJcS6Pq59)Zfay`gs(C~oGL@2I%A|PL!260tO{Se zCXfMDpP8)7|Aq@NpT0kk8Sk($`@j4CZ24l%84vr8HappAR_{OBjx;Ta~ zhPbl0)jQWP_%cW)>Vb@kS5=5oO|g(I@>4DIP|b5y@pP4ENKjQyHg+%aWw2tHy?V~7 z9jh5!8Dx?SAXWp-uhJH))sw9^k!@5GkMNRXNYrGAlyE8Vn6`4pmIGUDGaMPBB)Q@> zfR0g!RV&pH$&!$W(~&J>6o~K!DpqHYRgp_Fu*!E643uPxRA7R5DqdA7S}j&tB*988 z$Im)SPQc4m0jQWWPK_~Eg&|5pEJ24G6k?!229k2Is%2WDIYMFyYBFU^!l58%sB_1v zF~_N~#;F5IpfZR`$yn7I4bduj(Go53CJv!Uuu7g-kl&RfRdZ~mqaw5;L$y=AmBL)1 zhJb@ntwviYUy>n1U$jP9A_}f6PE9;UxmsUwVq#QJhYCj|#xzGQ5)c~f!G=TF>R zhN2>()2B?E8XgiBdi~0^tL6z>897;bnYr2TU%Yws?&aIb$3iaHCq7zoGI*KaY`tEV z38H6aSZ05lv-9&a{R2xA9xgiSJxwoqUy`aG>*}!ek-PK$w)M^~(7drH_4T&5)@AQ* z^?DzixA*rqd5ek{9|U8#`sA$Z9z9ukIsM$D00xF1?5UngIy*vufumaD8c~vxSdwa$ zT$Bo=7>o=IjdTqxb&bqJ3=FJH4Xq4JwGE7|3=C?wtB9g#$jwj5OsmALf#=nnl|T)W vARB`7(@M${i&7aJQ}UBi6+Ckj(^G>|6H_V+Po~-c6)||a`njxgN@xNAg3xHC diff --git a/deepsoftlog/experiments/countries/data/raw/flags/TN-32.png b/deepsoftlog/experiments/countries/data/raw/flags/TN-32.png deleted file mode 100644 index f04ddefd555ea0ec62dc4881988e55105022ffb8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 809 zcmZ`#ZAg<*6njXhAE~7?pJ%=-nr%cXsu#DiVQ*{ zL{t)EMIVMC18MmqD9VXwt#k?faDIhfp|1S?BmUUwUg=Lkmviqq_uS_^=REgbX~{Vr zSHdL-f@d`7%8*Y-JNaM?It#zI)DQ%Dsq}n>9?+d2(D|>CB*e#KLjigf2tX_biUK|# zl9C`H0SpE(8iB{dSCn+SVP*!FmSA=k#>c^Khva0Oce!9^2fDk#YK8uOn3{r(4PaSF zNx{q_5zh4VfL06Z>#(o@o13t^iy5R+3_y*Fi(zF20s)wx2c;5PS^%xJHAqW?xH#Z) zp{NL!mx059fdM=KqH1r4XcS}6%m{;cP%t?OJ|AX?L@;b?3-x1fQ@cUtU8Z($oSRk4fDVmu0BXD#S%w{YQ$yci(KOYhku_3(@2_{5M_xo1r+GOZ| zW8GyX)5RYB3MRc7?l4;z~+;o0N}) zMh1h!ycZ3bbIjroi)B$nC|+gHG5o_-d?CXZ#P|ZGfsi~T&&ZPH9Qz`Vd(HWFz@z5q zWvt+$>YAG8l-n=+9Y0qht5UJVPkGH3%%5$xkd1M$wU(NXwpM*(jJLa^|Gv-ruIZ)7 znVHUEdk=o!=o1X|VtR diff --git a/deepsoftlog/experiments/countries/data/raw/flags/TO-32.png b/deepsoftlog/experiments/countries/data/raw/flags/TO-32.png deleted file mode 100644 index 532e69b24028a3e47cb8a445febb46f140824da4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 800 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfjTC_=LFrhl9U=LCkyi{;yp5 z|Mcnq5bnQ!Ai=J#|58#Q1{^$p{{QLI|0`DfXJGhWQ}h4vC^uk82q=j{ja0* z-_7lRS{leqAOOk&!HymOJ39XV{tZ{!2=NY=j_BPmo2Sq5qSU|3^pvcXx-1dwKm=R{qb#1aclP?|)`ypkFK% z_df-OuUbivU+|xQf8hY=TOdRLAP*z}bkDi7kLCk)FeZ7syD)UH%6b4foCO|{#XuUw z_F!;3nQaGTZ1!|<4AD5BoRE-`l$My9oc{2^lSj`2ABQ?K^VGchBlT)l)U8)myQ*IO z%3_n?V&P$JZE5ruwH6|ENG7U2}Gz~W19&kLXY0lC$Q@8fcT03_ya~bQW zJ}$p=dRgo8-pS2-6_<5Sf=lG;RFf;US8A^Q{jf{mhJ!qen~ICBelieQA!w8+puxb96%~?DXKA+_=zP@@ z*NBpo#FA92CwWnfUdT}2c{LvDUbW?Cg~ z4Lq;rtORP11lbUrpH@Goa1gXw@bo04g9BkuBe1&*+uP981QH1p7D7k}0bE_d z&W5j#7uvO-{cdvJ4u=x7)nh5dc#>jPh3 z5C}+>H4;qF7fX z$yE{WN{S~OyFPT~`m6c!YphAVe)03y1xICq&*sq9_LkMf+2W$f8Jh?{J{}$w{x`23!sZcDehJ71k= z&V3v`q_IA=>Wv0QYiy{kFEL7FIb%~xUshi&eOr99v>fd5+IRB0Nsw?uIG@laEC_2B z#zje6+5;v!%$2oUF0GY{smOuy)w?r^JEe~KrP&P`)j|1JS#1noG3O< zC^{vKlc+=@sW?_D5=V>Tr6SSg=b^m65~^x+<)w}PPjFl79l!)WsgPAu%3Rdc(Ue?Q eqooCkDvh32(i&Z3?G$|mAxe>)kz`6NZvF*GRddS# diff --git a/deepsoftlog/experiments/countries/data/raw/flags/TT-32.png b/deepsoftlog/experiments/countries/data/raw/flags/TT-32.png deleted file mode 100644 index 15d47d06c30a4c904f280f9df1027582b0e95850..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1355 zcmZ{ic`)2p9Ke6O8{!VNtZPpeMcPHQ(~V6~)>T_sBvp%SSR}?3JE((4^96aP5*x z!Ro3OdjCDhWVpj%Fep?i3Vbz8Opx+w#W3xmL%_-kP^kci)2y!}7Y#mB zYRV*%-_>f6mxsLY3OF1BC=_H0g__OHhPE~ujpo2)W)~JdRjEL2?JjiD=|D#Zkv2Av z)N(jrX{mR3*virpl9BQ88=IS;y&aM83WkRNREQJ{3t(WN-M=49OpMRWnAq9rV;GF` zI(l?=aS;p+p(smBU}m-#b>ILz1#R~C|Fp8=6A}VpQ+@qmxg5;SYN=FIDv5+(eSLTZ zL^d}o6pFYrXCP^3Yuhm}09IDCp`nPhvjYSIU@(wgUcRkT<(HO1j83Q5H8uUIP=M4_ z$8sPE3-X4`*QnI5~pD!vRkx1}Te{F0$RO(d1ALAtE^CFTDD?=2;j)AMeIuPG5>5)Ek`v}vRyL+L z=BDSSE)giPak@u7=5lp81%!9)6U^-+JhKf$(_B-HbnqA7`sy6lZ;0{2q=F}Z<9?gM zpnGYN<2_K;Ur=^_S3|%Ti;Jg-ij`iAkmpR|4TQPjWhsWcNMT;V16Cz_yEKk-o6u0>FzTPQq>bW;Ce5Xrxr?0uU zJ-%;W6mBxs+>s~o7PU-uE4iLYatS9eX5J>?LR-(%#oT8kH$h@|&XuWYk?cgPpvm=W zgU>uWIDbddqn@)(`!S{a^s`UDzPB*a8ctNGR4EzDo!Rs0jhy`Q7f+66{(3#9b6*QS z_Vcyj!0~I8!|CF+jk`0+@{lj8PF?37yLF>FN9(745L#Q_Ch)p{E_U;>Th&ePtN2*g zr5nBJ%hLP_g_h7*VsMRUT^$}asl)wY-Rb==IfcUK+clNjsTN65UR*Br&1Y4+J6j=# zVIP>{fDgopLa~UQa8?8b=D~9JILLbEpvT*hEEe0#oz3!cWqGn$tb$$#i~j_qWh9M_jT(q>-3pC^MJdE|{f@@$wVoAmHizmr&i4pDp+uF92pmk3{8kYIzx2i2*yj` zTJuz2_$N3=Zp~^UV5Qb*9{aM3yKPI=p}txk;>n z;Zqs9T!0#QyPm;G5P~XNED~Fb{n0F_o`Px>jDa8k5wu(;I&qT3`SVcUM{7Q$Joq2V zTOd;5#=Z6->llBqL~4!I1|zWlvHpft1{5Pj0+o8PHz1x2fnEA_`VX?)Do<723qrM+x|L3BS*OB zwqLL?U*N~@yp7p&knPO^2Y<4FRKhZKh7w~c;6)66wt{@RhuT!0jYC(`6a_3tgZQ*H zZH)WvbysLOG$ijHp5VEOm~CG)n0&Rwwd)d0+RW*BrqXPC^gXui80DV3`q{AN2CiM% z$AZDP7()3NNCFL@QK*w=a1=>VTqcN)Pe9BTw% z4H$z%31h=W$tkv6zLQUibGUcp66PhFRMjvpA%E+ApK6fek0Tdy*ZjjAtG4j)k-0d+ zkR(tB;yC_hjt(%>y~IE`T^A!ofShNE6?~MeD3w^~&6iod=utd-2aNO(gpNvN!3*eH z_%E7a3mf+@;SV1!1smcLA;J?w-@U?q05YOv5$Y&)U_-vdAwSPxBgrl8V`ROMU8Qyw zW~(GoUYcyDRg@-BR>A#0f6Q7+sB!kndJWK2DoX-5Qy@hL(6#OqXCE#bR+_j zF8tQIK4%5mL^;_=uwvFx)-S)4qmxgvX=D*w-+i19j?ae#+`I2G5CsuRW;*+4;ha5? z5@jlMtZgl`xG=%~iFV#Bw~>;NDG`i~X%kR|3g13dU*jtwU=mXQvz);I001R)MObuX zVRU6WV{&C-bY%cCFflSMFgYzUH&ie%IyEsmFf}VMGdeIZeYYeP0000bbVXQnWMOn= zI&E)cX=Zr@~8FWQhbW?9;ba!EL lWdK2BZ(?O2No`?gWm08fWO;GPWjp`?002ovPDHLkV1hE5tpET3 diff --git a/deepsoftlog/experiments/countries/data/raw/flags/TW-32.png b/deepsoftlog/experiments/countries/data/raw/flags/TW-32.png deleted file mode 100644 index 25e29a5aef4e3a8f4accd43b6774cb68d4b25bd9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 824 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfi5z_=LFr1M(RdfFv9-FieFY z4vuMje3SY3CV|PxTwK$D;$jR_7#L>UXYl*a!0?xW3#@%AP$dJyL}%x@2?;Bcl2*C9 z&j)fj*{6XOPi18V8aPEyZ+1(|zHQrX?%H*`r{|EZ?E(gd$x`eAT@OZP*8>kMNM4X>YY1p|NHm<7#XIrvjJ63wz8bp z)phXDq5H>=Kb$!6sJGWb28Kz}oFGGh&IUROh@`oI+zGzk3$ilT=47o62?9E1f(+L* zMUd~N1C;^226osC2KJc@eA5{Cr!w#Z$!QGSGZ`6Xh%roOV3>WMA>c0qH&8JMaRl7w z4Y0@yL5g{=_ zR%W%dKryy3H-Ur%Vd3c$rc9bPaq8sb>l_>dJtJL1ePf-2y`@(($;R5&GCM0L3kMq) zui?_sS-U1Tr}xbpS(&*TvYc)I$ztaD0e0sumG5WxTd diff --git a/deepsoftlog/experiments/countries/data/raw/flags/TZ-32.png b/deepsoftlog/experiments/countries/data/raw/flags/TZ-32.png deleted file mode 100644 index d9614eeb03e14d12f5afc6dc1d939a2b4a452e14..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1005 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3HGD8EPYe6kC$Fy9>jA5L~c#`DCC7XMsm# zF_88EW4Dvpb_@*6Y@RNTAs)xqUODYQIa1>I$M==d-K$h8&BfA<4xb7S7OkjWSbP80 zwC_7K9x8Q&)c$MuY%~9P`8h$B2~Q%!4kS0OU{sd;ahrX1c+$78ihp+pc5ykH3%DM2 zx#PW3%Cu9$>e1cZFZZtbX%?@tKp;SQ!+NH3IgGOzWo0#N?`}B2`B8AmZQhSNS{oVJ z6&g(v&UDP&d~2=47iFIG1?SnnUj6XE?#DLfNDbXqAF(}g6~DK&%r8Il_(9|M7gm41 z??2Qz`SN+u;?9H^+2(6p7Qx)CY;)c=&EpP;<9lfmp<^&>>xaY(y7~8cy6?{tbMKNh z4dr_2p(HHKcYE?5r5VfaF_qdMJpB8?ZN`)ZYj}b*H{5m%^q zX~ylW2)@_bjyAFu_XBN_4gP&#TGP4Yf`^YpWM0fy(qH#qU4pYu3zQ^7q0(M{PUt_pZ)4%ucuVVOj;f&tr3th z^+mjN!ltTv)j8juZnC>*XZl+6)oa5))gew%`n?C)oII^h#|Zg4T@r~9J;Ag~B>vuk zHRd(b*6cpNx+3hy&MzNC=IXEdXr=NlsWZ#Z^h+1H3` zin=G(B`E7pE}N!1C*XPTwG1vJp?{wo->#ao>zla3-Xa&jyNXr!Px5T)t9$`lZlz$ts3>MLVi;ef|n^aVf~? zC7zYiU+>&Pt#LNstY}`DrEPiAAXljw$&`sS2LCiRr09sfj6-g(p*OfQlGA MUHx3vIVCg!0LUY^U;qFB diff --git a/deepsoftlog/experiments/countries/data/raw/flags/UA-32.png b/deepsoftlog/experiments/countries/data/raw/flags/UA-32.png deleted file mode 100644 index 439731419ab9484ffb3730fa7fcc76e1da6c708d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 593 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7E^sa*j+A+8KF{{xwfGyjXt`o}Qo z|ASZE|Nk@m`zHkwhasRW908RfBcK*I0_sIWK%>wQ&}1}(rU1wV+6!?H#7Rizcfp+p zG^Efs?<3IZh9yCM!9W@e{=E}q1mXWM#$Pb&5153o|Nj5`=kI^<_iw_0IyehFB8!2v z2N=7Z%(eqEDm`5sLp07O8ysP?;IZ5(u|v|aA<;m?;1F9yPsPs}KNPuGdVCEU7j#ZA z*v#S5xN_!BRyKjH0>bGN8#E?tnX>5+!=*5zO>2q-SU+9kx+dXpG0JnMFY6+Qt8Qn- zm{;7+%Gi|cD3THV`hj`l0;X6et}hq*)nSk1r?_bMRbbmWqSKu4&SxJHzuB$lLF zB^RXvDF!10LnB=SOI;)L5Ca1%Q$s5QQ*8rdD+7bt?JA-u8glbfGSez?Yv6e`XC+XB vB*=!~{Irtt#G+IN$CUh}R0Yr6#Prml)Wnp^!jq{sKt&9mu6{1-oD!M03_t{A{QJ)V5r??v zUk}UwR)&AQRzJ6u{n%Faugma%JHx+j7Dx#EXXpIGqxApYvm<-3Gxeu#U6O>_45U54 z*zIJt9Z&&>r;B5V#`)w82iYoeDt=1*kaTP~C?+kiK~yA3q)lVPVK$dHE=Ok^QRI5F z@W8=)7f;?idQbGs#0}G@Bu#76C}?IV=l9pomyfsq&miD`%r~shRc?`j08>+wv(w>2 z%1VnDIoh;3xT=Pwb~H(Fbo6$1`+N9!`FXN_3`q*PdgF>B*QEmrw#vrZ*6QZ^`xgit zx$1HGO49W<4UMLTN0Tn?+4QOF)T%52|K%Rx{m$~LGFdsI&VACw-tn8OOrQpSUgThNsG=rD>mLCx0%QH?pH_JBt-JYL$FCK1SkT!@+ z$U2tVC&agc!BR#niCK(WckPa~2e}xwt>{y@$5*Qi3>?)G*NBpo#FA92CwWnfUdT}2c{LvDUbW?Cg~4Lq;rtORP11lbUrpH@KB zv;xWSur_D!<`WB+z1hF->CT-%_iJh8Cnfd9#&$(VbpSO2wE)Sm&^Dkg!NDyl$^8sU z`Fjhi?zXjDZ)yU1Gc>e0A)z}ux-%YVOC*w(uy&vppd%e!YOkF<_vhW)ug{+Yy>DSr z0x=)x9-soCMu_tucBLfusaaR9X3#y!#&Cpz6&PrqUbV@|y+GOc_--Hx)B6?^ZKXvZUTd4WY4!ME;wf;WU{ysInURA!{HD2yj-k#MSu9Y5c)n2YOO2&D6 zODgX7bl+$PMZv5Eo2SlR2Sn56uAc%TH%y+j7DUcmJALlPNi$YYTe$UP*Mz$rZ9v7} zpFa8V>?uC<^vU-ZAa4TE5eA?aup_j@08|{LYncg3gC#+J!9W@e{{MBriXJU}{spLj zv%n*=7)X17vD?XPI|c?uc~2L|5RLQ60RbUFVS%B+*DqYTbnW8R%kE4vbAH9}@UXSH z9aCGD_DpPA*fq0lW#2p+W*?t7ed57`7f;?idiCtx!`*{JL`Y0f zR9IYKWN2(~ba+3@5!F|!k&;qUvu8y|-M(dQwR=}})$d;u8>W=(=aD|#(m7epf2LLL zub!Ek)6UPd&bJeqFm<;6`Ewf*9xgiSJxwoqU((Z6SF^9JI~=m1?(i|++1qpOZmT_h zE_V0#H%GT5-T(KOolnl9?)FK#IZ0z|ct7z*5)9JjB4j%GA)x zz*O77*vi15cDsrwiiX_$l+3hB+!}aZ%~=W5APKS|I6tkVJh3R1!7(L2DOJHUH!(dm YC^a#qvhZZ84Nwt-r>mdKI;Vst02%Tp&j0`b diff --git a/deepsoftlog/experiments/countries/data/raw/flags/US-32.png b/deepsoftlog/experiments/countries/data/raw/flags/US-32.png deleted file mode 100644 index 1ace6a1d744ab62213e304862567b0e6b4eb03ca..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1171 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfgSD_=LC~XJGjD^5wH#yKXc$ ze|z!bD3JT&#m$Zmpg05pWg!Tt27-VpAqc1vf`Gap2rdFN0fHjJ+kAYgy}YUe0_xq} zD+2=?TwKZn0~?(j%YuWN9PEnyqPkZzD4yYBIL5#Vv{6s5Ffp+=CZ;PYsxvmWJ0hY3 zNQQ^E$Hn!8hPI`pPGn%nxPJP=pLg%R0&Rc!GCaI3F0MN&sspGcBBDJyx+^TK4M>KB zv;xWSur_D!<`WB+z1hF->CT-%_iJh8Cnfd9#&$(VbpSO2wE)Sm&^Dkg!NDyl$^8sU z`Fjhi?zXjDZ)yU1Gc>e0A)z}ux-%YVOC*w(uy&vppd%e!YOkF<_vhW)ug{+Yy>DSr z0x=)x9-soCMu_tucBLfusaaR9X3#y!#&Cpz6&PrqUbV@|y+GOc_--Hx)B6?^ZKXvZUTd4WY4!ME;wf;WU{ysInURA!{HD2yj-k#MSu9Y5c)n2YOO2&D6 zODgX7bl+$PMZv5Eo2SlR2Sn56uAc%TH%y+j7DUcmJALlPNi$YYTe$UP*Mz$rZ9v7} zpFa8V>?uC<^vU-ZAa4TE5eA?aup_j@08|{LYncg3gC#+J!9W@e{{MBriXJU}{spLj zv%n*=7)X17vD?XPI|c?uc~2L|5RLQ60RbUFVS%B+*DqYTbnW8R%kE4vbAH9}@UXSH z9aCGD_DpPA*fq0lW#2p+W*?t7ed57`7f;?idiCtx!`*{JL`Y0f zR9IYKWN2(~ba+3@5!F|!k&;qUvu8y|-M(dQwR=}})$d;u8>W=(=aD|#(m7epf2LLL zub!Ek)6UPd&bJeqFm<;6`Ewf*9xgiSJxwoqU((Z6SF^9JI~=m1?(i|++1qpOZmT_h zE_V0#H%GT5-T(KOolnl9?)FK#IZ0z|ct7z*5)9JjB4j%GA)x zz*O77*vi15cDsrwiiX_$l+3hB+!}aZ%~=W5APKS|I6tkVJh3R1!7(L2DOJHUH!(dm YC^a#qvhZZ84Nwt-r>mdKI;Vst02%Tp&j0`b diff --git a/deepsoftlog/experiments/countries/data/raw/flags/UY-32.png b/deepsoftlog/experiments/countries/data/raw/flags/UY-32.png deleted file mode 100644 index bdabf1026758e9b1c13caaec637093cff3a1e90e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1248 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFffG%_=LFr|NkE-^61$Y2AgBu z3vc%o|0%@a);X2M;d(|M&CZqt6WNhr}F@G1?phT8)g(p6dg;1da|K%tf~1%$ateBjE@r z1vC)oW;gpOfn`^=foQQAQ0=XaEg)`SSkb$2Z=+d;a6c*N>ln?LGbi z=toGf0G;~l_urqt{z6C)_t#&Dy}(eiElY=;>bpkW0G zqR4wqslZf~RTAVE45Z=U*WW*Xq2SMNM`oaXe;t|sz=IOV0P@iYh$1)%lLe(jkYXT) zu>Ss+_F8xbXcc3Ux4R2N2dk_Hki%Kv5m^kRL2M5Ox0Bg+Kn3caE{-7@=aU~ieEL{i zKtxDPP*k{;xv*2mlTFi2AYsC}Nhi;pJbU_-zJ`ug8)M|oq)Ii`4yL0*s;Q!(rlq{T zy1B9v7p`hwO*d=M5YRQ&S-)b7Y zm7QPKu8Hx{qkfeFRVNV@Szo(0#-O17rG?9#MN(2yAC)pQ_})4)YodArH!$o}OI#yL zQW8s2t&)pUffR$0fuWJEfu*jId5D35m8qeXfvL8Ev6X>A?RFJW6b-rgDVb@NxHa&+ znzIt9K@wy`aDG}zd16s2gJVj5QmTSyZen_BP- diff --git a/deepsoftlog/experiments/countries/data/raw/flags/UZ-32.png b/deepsoftlog/experiments/countries/data/raw/flags/UZ-32.png deleted file mode 100644 index c7edb9753e583e98a4008ec1eb386486fb4a0fbc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 724 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfiH$_=LE6bnN>vaVik~|M!n! z<{9Q$XBeiQ3SM=^X60pu8E3eF+!?1mmR+)0bis4kCHo~84HldSiZIVS160flRvfqH zO3VIx471K~&pN{i6rXn5XT@cQ#TWcmTy|Y{$zKl2RF%rk;>&ofLvTe#y+-GK)TGtSzsxMIBY zveoh{4lAx$F1u{M@~Y*ED;kS0G0Z;41XMZayl2Nght@q6i%&*RJCZs3Skkm3DKm~_ z&ODk7rHuGrY#6vD^dx6RzUjEuM>HCB!-+Cv1>qAH1`=>y{1QaYl@b4c8{r&q7 z$lkH1dnp6MWqYa9#tdhSUwQF|0|S($B*-rqq%v2-trEy*O!9VjNjSQ_MgYj+Ebxdd z2GSm2>~=ES4#=3{>EaloalZAG^EBr`0fq}*xwp4n-I)9N_}>4#DgTO!UiIl4MCR~K zKQ7MUn$#Jh7CymYWl;7OtGx#^jH1_={Vp%Ch|TN2{+yr1`Jso2n7X6VOt17!J8K@U zkI)KVWh&&b_hQag>$`FF1~R?s!9o|(zWhwu8I`|n_uq#VR+AqzF|fG?hQBi3q4=P$ zft_g{M}^{p-iCS>DZ9sdOO`mko&)qFgKCLuL`h0wNvc(HQ7VvPFfuSS(lxNuH8Kw| zFt9Q;v@$T&HZZm_FsR+GB8s9RH$NpatrE8eo>y~L0yRj2YzWRzD=AMbN@Z|N$xljE e@XSq2PYp^-JAVDhJo~c zfAi+mx#J5i9B+Y%`~W)e@Be2HF3vu=ZUw~rmoJw-KEC1U;lm&g{`>#=*|WEI?;u(I z|3B1Hkk^pG`SUN|fP%gx$S;_I;pZO&_~pn9^zUCV3D@!05hwyhQ2H;3`{(bUKmQ%; zMdW~HF(!GtyD)UH%6b4foCO|{#XuUw_F!;3nQaGTT<~;p4AD5BoRE~3n3|gW{K1n) z&mKN}TKphgAi;%=r>W1Wug|aVoF3mgKE6Xre2aLJR&X7WRaH@4x+FE_=@U_rsZ(S_ zE{JZh@@n!eDE|K8OHgQW!10v_4&FZQ$lNVzz`C!F?;qo#S?{7OL|E7?S=w8&Ubnn_ z6d)k?P(V_2t-8?SerLy=m>Q>~NsSAe1^HM{YVxhje0fZbZ`lr+nG;`5n5vu8c3IqV zXXQ`U)@NdT({>zQxMIf>&Pt#LNstY}`DrEPiAAXljw$&`sS2LCiRr09sfj6-g(p*OfQlGAUHx3v IIVCg!00pKKn*aa+ diff --git a/deepsoftlog/experiments/countries/data/raw/flags/VC-32.png b/deepsoftlog/experiments/countries/data/raw/flags/VC-32.png deleted file mode 100644 index 42734fe381464164d3df3a45b9de57b43ae8aa91..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1029 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfcI&_=LDJ%u4`@h!!8cw?Fs) zRfgXekZE2@lYd?me{fR!&qa~{mxLaj()@B>=I=$( zf0u;6o>#bc0OYm*mn0sX)N@-L{rSA?|0~QH%Og%4wE2I95oi=h4cPntE{RXs(95UXtio7X(zZd6&z{LzX}_Ny{U@U6A~LNf4+8 zWYJ}@8^?@87DsR2>#${yQ{Ia3y?Y&j;y}j(J@WH{Sc2S6DH{|C5Z$q3 z*UsvSs>XY zncr-?WVLk#Gfb<`-KqR6t`pOuy+U>AlGK!^PecpYzCKd*o~|3eu}E~=i6)orizaRA zS|#OH!pu+>5S_4}<>PLk-&IRoBT7;dOH!?pi&B9UgOP!uk*T%OPD?SI?q=BhA1KSf|DS>J|9@7X?C0OMU%op784xa*0c3+s_y=S# zZ=GWR5d@hD65(4AJ)v*H%*E#z{{Q3t_YY_e3If^-7Gw*m>iPGNABcd?`1cp&l8a~U z;pPJwU7edJPukSoy%~srj)b@q=u`*-IT#r+fZPv3KwrQS&^vGh^cNg~JP1es8E!vk zSh>^W&O4y{Ss-q>d>_bWym3b*qG-aNW2*oEvH$)h1aUBo6#VxOh(KO|qu)PO&!4vb z@m2Z%e1At4t`jL-1!oMLA? zWnyy1*Y|uw!*!sPygV!n8BWWvoEBg>?O=H>EbyY1!WkxpQwlt%fryRaw2I{E5dRC# zHs=Jv%J}$!)}7BSzvB^b706)YhT6``31nPw@Vrt`a~CKMR(25>5nbTuXk*ye$+oGR z3CaaU5aVW`2v8iN1{zJ=4F6eSQO3gXp9jQ7jeBHce<=w(Aji3Lpa*ON6Z7R9>NmM(0ZQSOvyT5p)&3EOL zls+zK*SNvLG<$o_-EFnU&&BTk{^suX{|A=&%FVXfYq3|6>sjN0gU;>!GPY%Zj+_i$ zetwQ^x!ln%ZiRx6m!4{euaDhd_xRb`+vV@#c04FPc)kC${GtbP9C!AAfADax`}cRY z`@TPUxi|g$JJvhgJdgO=G%ENQ_2ZmgOxJfvIq~^|!MuWwrtljMM^>NExR;@#eSvY4 zXp0B~!ztz$MoOpSRszFYwZt`|BqgyV)hf9t6-Y4{85kPr8d&NYnTHq{SeY7H8JKDt z7+V<_)NWT1MbVI(pOTqYiCY8Dt2rPWBtbR==ckpFCl;kLIHu$$r7C#lCZ?wbr6#6S U7M@JC0V-nfboFyt=akR{0H&{PF8}}l diff --git a/deepsoftlog/experiments/countries/data/raw/flags/VG-32.png b/deepsoftlog/experiments/countries/data/raw/flags/VG-32.png deleted file mode 100644 index ee99213fcd43c26e5e37ee2c7302871b1f0b41fe..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1435 zcmV;M1!Ve(P)~!wg?IWLJ*1KLPA2sCqtqnBrXp|Bccz!NWcIu7!8IP6XHe)B#IFP zx3UNpN-2v#fi84`=`wR??%Z>Z4>QOTUP$mt}%1Gsnuj7UHc3FS!=@;S3 z0Io9Jtyvv<`bYN3Q*wM@Sj?YU$MdgDr7Jl^RYg$LWv&XczBo}(CWbpxteY3(N-95m8p#T??8Psr!p5QS^cz6g12nMs7BGHBLj!{?hHcw4xVC&AM6v%Q~GqWKe zG3G`O?6%$vuP$lek(fnl=PsI#ce82lHRdcgyktpCw198E`;C2v+j)28JjPW9dHh%l z^6!g$^{?jiHJ^|p@C_iq*M^`S!p%VA#0F|7)-!4kbm}nj4r3_Sy*5kLcAe$$wmq!g z*}>wy!|XiJ3kKY*!SyskO15upp>g`>tlrT|&*TQ?uUN>3PmiEhYSJb*UjUAPE54>c zfn`fNyF0i%1da@$OrG-QEm$yrqt#sy!YwXg;Lso=YHZTuOW5$`QGUoOFaa+AeuU`6 z3W{vW#t)jFqGNAU3s#mM+9x)iiuJjJ>5Z6uUU?WmP(n(dHL5HvR$Vfm#`uJP}n zPzLbxekXy=YI1`IL~R)CFg&*?z^Z5eqB4>Ov6Su2`}pL?Pnll1ka?riG*llTV`^yn zSy5UJt_H!__wQc7Z!;-C`%qg7rLhnz7W7k7egR+D6or$Z1jjE_via94yn!@FJ2jRA z%G@IW$Pc#sr4lBUcrbtf001R) zMObuXVRU6WV{&C-bY%cCFflSMFgYzUH&ie%IyEsmFf}VMGdeIZeYYeP0000bbVXQn zWMOn=I&E)cX=Zr@~8FWQhbW?9; pba!ELWdK2BZ(?O2No`?gWm08fWO;GPWjp`?002ovPDHLkV1i~zbG85g diff --git a/deepsoftlog/experiments/countries/data/raw/flags/VI-32.png b/deepsoftlog/experiments/countries/data/raw/flags/VI-32.png deleted file mode 100644 index 1565d03a93578e95589dc67e6878c9e49d0d8833..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1261 zcmV}B?v zCfj5;x3(rVw#Hg&iVD?~N2*y{mz{4oTEg<0t`S90R^?& zDkk_Ejk+cxKmes?fF58TP)aGeU1|V&?E-bn#^U)PD}dBW%?dDYReepVFiY<82^@QIDbm}(6pmw4n*W={xe5Q1SE&nNERj2vB6H`r z5{})48`@8xaSvugH(DS`&`coWF?I1<5(_V41x{kL4**cD*ioGBtvq@pQwKo#5k?akoV!P`{(1(_dY?l6W8%$m3Z)sG%rLPH`)JD~h&IBF z#SuIipt^X4!o}x_h0bFYZeW*_g!Jp^&7aWJ^|-%7uxX7y0F*78fT0slZ>MYz5ttoB zN++@11WoH;bbN#h=i{W^A*QeHCfRTbZ=#QCae_UYrwAB1>}r~bIgKOcrbvDM}c;BwjCya=?g0PqnP0)=1MyI_Z}jXN;92nrKQDVdgeV24BpGY zwq49jj^gV3$R?j+`<90|HafT=fWFpdz8cFC&~*mVQI4G&X0j-} zvg;s|*+*&8didesUP7ksSD5GGN;X|{_?1r1O61>mh+1<)Rk zGV2Osw!@w4Qv{3{ADw-h@nVRL{qqDmU#2-|v7x1z_S8B$QcZNGOoGW)68DVqN8(A| z$rt!BJH=wzCTtjMRo^mz2%r?bks#YlKW{s>^uc=g=BJ~~RZNmm4brD6+X6~awKdB6 z1ZMOC;ba$i+vBAWytcKAXe2_xD&tnGwNkAQphUz0jAGeB5aOmu$tv;Y;n(?W^aw+{ z_OZL;IKj?gvVWEcXDbxs25pbrPcZ)}74G0z@nK$g;6WOrey$hFWid2OMM9xm)$_Uy zP5aMIc(bR*%rJ4&L=Yn32!qcaVC2;^w69xFuy-8YNTEtklaGFmW4?hs{WVi9A8`Dt z$zzQRG)5zMwZ@b%O(LO?f5^1@ZTn`jmV27tYTH^ew6$a?ZoZGRzn`PGHAN!P&&K3Q ziVNUIcW^qJ<1N|ErH-DO@A6uT|7jxP$SUS}o_L-sA|j6COXja<<;rjG%C*bii-^dt zmnY=IGe1kow*Tc`dtMWfq=+CQt1{g@19c&9iOBQMA!_NZ$Z7*>$t4GLv&J-Zxpm^K zM!EdE(3X@+u~b2;gyxT9f9<;V52-NWv72w^05UK! zGA%GUEiyM$FfckbF*-0cD=;%UFfe_$BozPv03~!qSaf7zbY(hiZ)9m^c>ppnF)}SM zIW00bR4_0)H8DCcH7hVPIxsK{>YS+n000?uMObuGZ)S9NVRB^vL1b@YWgtmyVP|Dh XWnpA_ami&o00000NkvXXu0mjfPS-rU diff --git a/deepsoftlog/experiments/countries/data/raw/flags/VN-32.png b/deepsoftlog/experiments/countries/data/raw/flags/VN-32.png deleted file mode 100644 index ebffd075395c5f5e11a9159cb9bffad6a502d1cb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 821 zcmZ`#T}YE*6h3omw#_tc>eOWPLtDE1w469avbNfoE>R(csLk!$C}-B3$}SSoq#{k5 zNFsI}>#$T&gUuF(KsuWdDT}kPrhH3n&3h2Rz6E>ZCLkun#cE z0%GK>ssmgGdqBv~qv4)KG49{}G1z6aa}M8H*+5;??_scjD+ ziO;esHSA&@FppJ}0lNTy?v#E3-T@?%X6bopfIcQp`h-?M72~r2=Kx0lhXEsilu|Rj zO#`?H7yxVmTmt0SC!7E*0nA`12F%@AAqh~)Kmjd9+mQ%aDHL1IuF~hm`m1c!0Nda8 zOZwj2)e^J!hPkepyqTSI3k{_dtXqs_HJTNty-U)n-)B=xV#~ctIf~~!>e-H`9rrWF zqq6juOZDv|vgqh;@wQ1c#>7MfZK6H-QNL>-=pJ}DDD`m%go%Z0O<1daHX0rqYk=u5 zvQtyyWQ%`mGhWf#Qz4cwb0N+%Axwr}y_}i|x7nK`>*lg!dQa-b!nOqcgGBI}IL=UzXW$C5xswKtyY>2r@~?r$Cf8MW;Qs@PuOnkLp!#z|b(7oQ k=J4@Q=4z_v)s{wwhp*xtuE5O&zJ!{Hg$5JyW3aSRwxjtXRs9T5bV zfLwx%YeL7Mxfz-5tRJOrZpPW3N{VnSap%;epwJ2{x zM-OlXyk*RV!oq=>y}{GLgiz9r;T99?3E7l*Xj)P(72;EvT-BOoqxztgJwxfGPuh zUC`^%(1GSIyZAI3f`d_01FaShA7W+(vGM5Z!H^EG*AX4ToU%`ch(mZ1h9nqHXsXAA z0VRz(1J>Sl^bwz+zW`{j)&-_Dba*_h&oOd zZym6Gty$LIrdr4%=0D-^KekvFwsa6~*z%V2)qG;58#{6#^B~dTSX8(qVdqlXcl&-E z&<_ue3>Xg6CJReh>s3`%EQ+ao+d0|d?*42M+hx3@_>^Yt@sq!jC*+BNe(pTBpQjHe zz=QAo>jx2%)T3`6Pc02o#N|c5@!F}#=U8WymBNa5*h&>+<=)DDE}P@saK64SY36kC z`_!QwQi&=xvEb#bl+?1rY4Q0nnZ7KkA!_LAX||FvQlu^{ctoX}On<)8C^{)*UzOFT z)iGXZ^b{3*^9MgDgGOI$4JtCO)3&yU%G;l5_LR!u-6{IzuAyY<1TXeZ?_#@?X=Unf2E{EvTzc=PfghfiwTfMx zFLWD31_@KWNNs(o$o%kqkZw;lk;ZnNp#I&R~awibJ*Vw3g&+JFUepVfEOs$lwRpPWf6)_MB_6TVu|QBZy2JZl30XPHlj)lOPhdT0(UJtd^@aGHbajzDPX&oG fN1+Og%93ZO;#6{_CU-$~fCM2bLKfa1mRkM~tx3^g diff --git a/deepsoftlog/experiments/countries/data/raw/flags/WF-32.png b/deepsoftlog/experiments/countries/data/raw/flags/WF-32.png deleted file mode 100644 index 289b805efc6766828931062db509ce61b934eb20..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 332 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!VDx^^%AmxltF+`i0gkKgMk4^LJ$K(8Y5$x zm{OSPyYY^|L@vL>2>S4={E+nQaGT$a=ashDcma=HTUBJ!5P3)s@x%@4b|?;Nmjs z$zfzzkXEztY@e_`P@!sxYeY#(Vo9o1a#1RfVlXl=G}1M&)HN~>F)*+)HMBA?)iyA; zGBBv!t|E$}AvZrIGp!Q02A)@QRsuChf@}!RPb(=;EJ|f?Ovz75Rq)JBOiv9;O-!jQ TJeg_(RK(!v>gTe~DWM4fosMHz diff --git a/deepsoftlog/experiments/countries/data/raw/flags/WS-32.png b/deepsoftlog/experiments/countries/data/raw/flags/WS-32.png deleted file mode 100644 index 732973b927f6e6c63f36c3595104327d0af8225a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 869 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfeWo@Ck8cU`T@?M#eM=iA)BD zgyiJjw6uO8Lq;Zxg(V#*%L7uA?!l1!gF*a11H*p?CYY{NF|lX{2LJirP&-g%R&DKEQ`2Hb#v~S&Br~(pHERyr*pxFcBnh&C3}<5l+Ldfz zP;~6r_2}p}28MVRmSi2B+=&y{0R@3l{47wX0u5wkP2%JPs*jF|>1b?R!oc7pC5zt)wAsFN-WGuM7Yy|)&bRsf<5I0^%T%YK+~XzkttnF92gYgJ9eMl zcijc?PRtcka5w|#W6(Vd~!lULP}CvVrug92TvY7d-(LRxPXWQ8xIeU z(;=lrNsojk1zj@QRP>2!2A9axDWM@(ub7%_-BS9bWTVD~%jO0qMrMYl#@jbMIlAn? zsawacox6AN;>nvwMZ1~I%lZBF^X231|2G_1@L<9PgT{goR>6sZ7Y#QSe&p=*JgK=d z^Q9!y%oSXlHWe3r{>07I-R137eEO8O7VD}2(U9v`u3fu!)!f9)^!k-;TefZGE?J<( zFnKOh>|F;Y>4Xz44fEmzZeF)v$Q;|qz-S;L!oZ+w=vF*2=(`TkbE+k-5hW>!C8<`) zMX5lF!N|bSNY}tp*T_7?z`)AX(8|D6+rZe$z@T=!iYSVP-29Zxv`X9>cwWs}3Dh77 uvLQG>t)x7$D3!r6B|j-u!8128JvAsbF{QHbWU38N5re0zpUXO@geCygc?kgk diff --git a/deepsoftlog/experiments/countries/data/raw/flags/YE-32.png b/deepsoftlog/experiments/countries/data/raw/flags/YE-32.png deleted file mode 100644 index f3d8f7a5a3237cb052c4b0f34d9730880a344130..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 634 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7E^sbc{?A+G;{3R>mZ6cNf+l`7e(H zIh+L^k;OpT1B~5HX4?T7&7LlfAsXj<&mQM%3J`I<=q|XiG0B}Z=f+X5_5c3|AG`C? zvm$%XcptHiB==hd8*Kn;>08-nxGO3D+9QW+dm@{>{(JaZG%Q-e|yQz{EjrrH1% OF?hQAxvXw(W=!&S zcVX$zxEToKa29w(76WMyFm^kcZ3kqedAc};Xq-cptHiB==hd8*Kn;>08-nxG qO3D+9QW+dm@{>{(JaZG%Q-e|yQz{EjrrH1%F?hQAxvXjA5L~c#`DCC7XMsm# zF_88EW4Dvpb_@*6lRRA81B~|8l{Q2+I_kZua^Q>(4-OA^>H+JQ^^|fRO zXG;cpPS~=@{@2r0snNOyQ<~2FNe6;di!qQegFC#%cSkow%q&h@biZQpZDB9|NHZ^gWHz})l}yRT21)w_r`Sc%#~~Y z6x=c@jnxt0WOJS4C%EIDQF`@W1|}=Z1%Ic7^~_Xr{GAn5y)DDHJ^qsNLs2j3o`a{O zCuWFrbuHX70mz8Z_*e7#*)*Oenc0~b( z>DivFE9N;zh?-kpIp}RStG-aE$f_W#tGF{xPP@8qF8>>aIYmmcb3cShpL);Uo_y?1 zeOqfsTk2ijISeJDy|Z?jctmp>)p1E$yqsEX$HD#fYS7m5wH3Gj9_x*q+Rg&`=4L#n`XVMY1s4{r_|WK>qxE$9f= zoIBz2(f2F0Rg4Yo_PsVpy*K;B49O`$+y>1|-VUdup3UX*WBOJ5bZeR)BZK*l1q%FZ zkGp1hy||?p5^inrVRipCZNERe=IR_O*u=kSv%2_ch765$sSVd>s2})tJ;};?vC4V9 zFK!}>A3wNgEF$&nO|F<(YQsaexBLOG?z0pI-eBnZd@!>;BIe_%#~W%l8@!D?C%iY# zZuSMvoiRR3gnRsAQ;xqfkJ!0p%9_kYV&xC>GnSR!o5wXpVWXfx|DzjuiFetbELgVNBUP=l=i9}=>z>JPgOAjiRV*oNP<9V~@-$OrvbRCgyYH^AuDx1i z{VqLtf4kD%1*dWg%J#JHI#m60)x+RZpR+Bt=(}B>rr0%2ddid=f)ii=6M6hmhUt)L z>$TStllI!?1-#of`J7*oSz+V3U4ByUD`s*3wc@w^DSW)oUzo#U#vGA#eH^p4sYo6P z`~A2#iicxY={f(oiLw9w*6e&)e2V+phm-BjdoCEYT+e>+`DW+QCsHd@|Ek}!WXy~W z2{7(h_Pb(hlK5@2JswKWmOY$V*H^Zjqg6)bSW86>=e*g>^-RZ~&DFP+nVSR5rm7{b z5hW>!C8<`)MX5lF!N|bSNY}tp*T_7?z`)AX(8|D6+rZe$z@T=!iYSVP-29Zxv`X9> zcwWs}3Dh77vLQG>t)x7$D3!r6B|j-u!8128JvAsbF{QHbWU38N5re0zpUXO@geCx; CGXb&y diff --git a/deepsoftlog/experiments/countries/data/raw/flags/ZM-32.png b/deepsoftlog/experiments/countries/data/raw/flags/ZM-32.png deleted file mode 100644 index c6331a6de9c6f615f416285336e832e503331b29..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 830 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3-oF?)7FfFfcX*_=LDx%`gIrFw8S&m~ZX? zWY0EvSSJ2IiQ!*5A{1XN=@)40A}ZBd03P?^~bqnjBF2a9-sY?GPBS^YY) zvrU|47+KCVW|(KjI?DuT2oN316?;}L4m1sj9)vRdPh|ia3q<#$82@K70?h}a2ayc_ zGZ}yu0TIv&2m+cZIm?7)jw#!0Q|VbIK(_KM6QGp&Ok=6pCWUS4TZ#oc+f+LHG#56@ zM@`agYES}d0V3V$Ml+ifPvtP*%4B#^&Uhu0F|AhzZYEGW?`%`+X-1hn+G}(9RuqY- zgN+3$Fq~=3KF5R+=4@ zq!+YZQB z?CIhdqH#X?f-~DMwl=q8YRl4M?mV;M+0&zNpg|`;F*7wcIXnIRf#dHr4ybgjbU1(V z=FzKX?;Z~JxZ&LrDH7bcy?_1udWVF74Kpe_Sh`h~HC@>7q2t7g7c(L>Us_0pMf$LQ zhErLK{A zh=GBXsiBpDskVW!m4QL+b`?<+4Y~O#nQ4`{HSoNevl6I55@bVgep*R+Vo@rCV@iHf fs)A>3VtQ&&YGO)d;mK4RpdtoOS3j3^P6ZB3f4ag6lEWVAp~vjyn>o6+3tS#-n+Z^?!EWB zlNsrof&-QW06?%PHCaq_Bv~OG7LlL2zRv}qP)3?0rPJO4rNH}XDaJTQr$7kJJewxA zZy>}B_7L6E@w3N0>Mp0f(^Kv>fG}#ldAfuzTz& z!lv_84*>A|#h41k!~n`C>+0{CVZ;P3%>i6>(c@_EXtK1ej&%VrOW$I`fdE$+`^=%v zy5OE)xm^kH!rJP7{5U&jKcSS%<<`-VBl+k`Db!vpp7G$J;bEy<9ug8#eGD#_tTd{? zYOc3kYiJJ(aB+a)`9JEv_4l8n<9#;<95)(H8y=Dx7Vr>oeZ}|&8XR(4^wP=i0GCI4 z$~beq5Gs%tcUdhx=l$?4Htvt`@i0pTZ8%jz6ZUwGrUi5CF@r8Bfp?7W0?m2Fb2%*1 z!<+9IWn0dY>Lb3w&MEkt(-?d*Ac|ELo$8{Tot=3qIrSkhiAyKCt z+*2f!iQ|?@nJwJZ&o+14o!2|N95-A1f^-^T;f()@6ir)n(uMvo&iKjFvd<+?wr%Tk z%1lDZmg<_O%GxUP1yk^)sJjDgYbOPkhOad*p4Vz(Z8e_6SeHA;vb##xuo1F zgZZCB{-(*Iv;KjLV)p9d>l7nrI#=y(l10~yv0+y{{Y^yP)f&=wv^r&nT9Ktz3giV! zq9BeR8yCY*iiukz;qwIvu>yX=3VytR&(~i4VBx<4@>Gib*@gcf5cI@QMFJN4GGwZ< n)km`ml(1f*k|`rad0G3EVr7=1FyEp4m^gtbB|W)DDAm0L&5-w* diff --git a/deepsoftlog/experiments/countries/visualise.py b/deepsoftlog/experiments/countries/visualise.py new file mode 100644 index 0000000..b460831 --- /dev/null +++ b/deepsoftlog/experiments/countries/visualise.py @@ -0,0 +1,104 @@ +from functools import reduce +from pathlib import Path + +import numpy as np +from matplotlib import pyplot as plt + +COUNTRIES = ['rwanda', 'djibouti', 'kenya', 'seychelles', 'uganda', 'tanzania', 'mayotte', 'réunion', 'zambia', 'madagascar', 'eritrea', 'somalia', 'ethiopia', 'burundi', 'zimbabwe', 'mauritius', 'malawi', 'british_indian_ocean_territory', 'comoros', 'mozambique', 'são_tomé_and_príncipe', 'angola', 'equatorial_guinea', 'dr_congo', 'chad', 'cameroon', 'central_african_republic', 'gabon', 'republic_of_the_congo', 'south_sudan', 'egypt', 'western_sahara', 'morocco', 'libya', 'tunisia', 'algeria', 'sudan', 'swaziland', 'south_africa', 'namibia', 'botswana', 'lesotho', 'gambia', 'sierra_leone', 'benin', 'mauritania', 'liberia', 'togo', 'cape_verde', 'burkina_faso', 'senegal', 'ivory_coast', 'guinea', 'ghana', 'guinea-bissau', 'mali', 'nigeria', 'niger', 'turks_and_caicos_islands', 'jamaica', 'sint_maarten', 'martinique', 'united_states_virgin_islands', 'cuba', 'curaçao', 'bahamas', 'dominican_republic', 'aruba', 'montserrat', 'dominica', 'haiti', 'trinidad_and_tobago', 'anguilla', 'saint_kitts_and_nevis', 'saint_lucia', 'barbados', 'puerto_rico', 'guadeloupe', 'cayman_islands', 'saint_barthélemy', 'grenada', 'saint_vincent_and_the_grenadines', 'antigua_and_barbuda', 'saint_martin', 'british_virgin_islands', 'panama', 'nicaragua', 'honduras', 'costa_rica', 'el_salvador', 'guatemala', 'belize', 'canada', 'united_states', 'saint_pierre_and_miquelon', 'mexico', 'bermuda', 'united_states_minor_outlying_islands', 'greenland', 'peru', 'bolivia', 'chile', 'french_guiana', 'suriname', 'falkland_islands', 'guyana', 'ecuador', 'brazil', 'uruguay', 'south_georgia', 'colombia', 'argentina', 'paraguay', 'venezuela', 'kazakhstan', 'turkmenistan', 'uzbekistan', 'kyrgyzstan', 'tajikistan', 'macau', 'hong_kong', 'taiwan', 'north_korea', 'japan', 'mongolia', 'south_korea', 'china', 'philippines', 'myanmar', 'indonesia', 'laos', 'brunei', 'thailand', 'timor-leste', 'cambodia', 'singapore', 'vietnam', 'malaysia', 'bangladesh', 'afghanistan', 'maldives', 'sri_lanka', 'nepal', 'india', 'pakistan', 'iran', 'bhutan', 'qatar', 'iraq', 'azerbaijan', 'oman', 'yemen', 'bahrain', 'kuwait', 'israel', 'lebanon', 'turkey', 'syria', 'saudi_arabia', 'jordan', 'armenia', 'united_arab_emirates', 'georgia', 'palestine', 'slovakia', 'czechia', 'poland', 'romania', 'russia', 'hungary', 'cyprus', 'kosovo', 'bulgaria', 'ukraine', 'belarus', 'moldova', 'denmark', 'norway', 'ireland', 'finland', 'isle_of_man', 'åland_islands', 'svalbard_and_jan_mayen', 'united_kingdom', 'faroe_islands', 'estonia', 'jersey', 'iceland', 'guernsey', 'latvia', 'sweden', 'lithuania', 'serbia', 'vatican_city', 'montenegro', 'albania', 'andorra', 'italy', 'greece', 'spain', 'san_marino', 'gibraltar', 'bosnia_and_herzegovina', 'macedonia', 'malta', 'slovenia', 'portugal', 'croatia', 'switzerland', 'liechtenstein', 'monaco', 'germany', 'netherlands', 'luxembourg', 'belgium', 'austria', 'france', 'australia', 'norfolk_island', 'new_zealand', 'christmas_island', 'cocos_keeling_islands', 'new_caledonia', 'vanuatu', 'solomon_islands', 'fiji', 'papua_new_guinea', 'marshall_islands', 'kiribati', 'palau', 'micronesia', 'northern_mariana_islands', 'guam', 'nauru', 'samoa', 'niue', 'tonga', 'pitcairn_islands', 'french_polynesia', 'wallis_and_futuna', 'american_samoa', 'cook_islands', 'tokelau', 'tuvalu'] +SUBREGIONS = ['eastern_africa', 'middle_africa', 'northern_africa','southern_africa', 'western_africa' , 'caribbean', 'central_america', 'northern_america', 'south_america', 'central_asia', 'eastern_asia', 'south-eastern_asia', 'southern_asia', 'western_asia','central_europe', 'eastern_europe', 'northern_europe', 'southern_europe', 'western_europe', 'australia_and_new_zealand', 'melanesia', 'micronesia', 'polynesia'] +REGIONS = ['africa', 'americas', 'asia', 'europe', 'oceania'] + +def visualise_matrix(matrix, names): + idxs = [COUNTRIES.index(name) for name in filter(lambda x: x in COUNTRIES, names)] + matrix = matrix[idxs][:, idxs] + fig, ax = plt.subplots(figsize=(8, 6)) + cax = ax.matshow(matrix, cmap='viridis') + fig.colorbar(cax) + return fig + +def get_located_in(kg): + subregion_dict = {} + region_dict = {} + + for subregion in SUBREGIONS: + subregion_dict[subregion] = {y[0] for y in filter(lambda x: x[2] == subregion, kg)} + + for region in REGIONS: + region_dict[region] = {y[0] for y in filter(lambda x: x[2] == region, kg)} + + return region_dict, subregion_dict + +def get_full_kg(): + base_path = Path(__file__).parent / 'data' + with open(base_path / 'raw' / 'countries_S0.tsv', 'r') as f: + full_kg = [tuple(line.strip().split('\t')) for line in f.readlines()] + + with open(base_path / 'raw' / 'val.tsv', 'r') as f: + full_kg += [tuple(line.strip().split('\t')) for line in f.readlines()] + + with open(base_path / 'raw' / 'test.tsv', 'r') as f: + full_kg += [tuple(line.strip().split('\t')) for line in f.readlines()] + + return get_located_in(full_kg) + +def get_task_kg(task_name): + base_path = Path(__file__).parent / 'data' + with open(base_path / 'raw' / f'countries_{task_name}.tsv', 'r') as f: + task_kg = [tuple(line.strip().split('\t')) for line in f.readlines()] + + return get_located_in(task_kg) + +def make_region_matrices(): + region_matrix = np.zeros((len(COUNTRIES), len(COUNTRIES))) + subregion_matrix = np.zeros((len(COUNTRIES), len(COUNTRIES))) + + all_regions, all_subregions = get_full_kg() + + all_regions_closed = all_regions.copy() + for region in all_regions: + for subregion in SUBREGIONS: + if subregion in all_regions[region]: + all_regions_closed[region].update(all_subregions[subregion]) + + offset = 0 + for region in all_regions: + all_regions_filtered = list(filter(lambda x: x in COUNTRIES, all_regions_closed[region])) + length = len(all_regions_filtered) + region_matrix[offset:offset + length, offset:offset + length] = 1 + offset += length + + offset = 0 + for subregion in all_subregions: + length = len(all_subregions[subregion]) + subregion_matrix[offset:offset + length, offset:offset + length] = 1 + offset += length + + return region_matrix, subregion_matrix + +def get_located_in_matrix(task_name): + region_dict, subregion_dict = get_task_kg(task_name) + + region_matrix, subregion_matrix = make_region_matrices() + + for country in COUNTRIES: + if not any(country in region_dict[region] for region in region_dict): + region_matrix[COUNTRIES.index(country),:] = 0 + region_matrix[:,COUNTRIES.index(country)] = 0 + if not any(country in subregion_dict[subregion] for subregion in subregion_dict): + subregion_matrix[COUNTRIES.index(country),:] = 0 + subregion_matrix[:,COUNTRIES.index(country)] = 0 + + return region_matrix, subregion_matrix + +if __name__ == "__main__": + TASK = "S3" + + region_matrix, subregion_matrix = get_located_in_matrix(TASK) + + fig1 = visualise_matrix(region_matrix, COUNTRIES) + fig2 = visualise_matrix(subregion_matrix, COUNTRIES) + fig1.suptitle(f"Region Matrix {TASK}") + fig2.suptitle(f"Subregion Matrix {TASK}") + + plt.show() + diff --git a/deepsoftlog/experiments/mnist_addition/config.yaml b/deepsoftlog/experiments/mnist_addition/config.yaml index c681dbe..9e5d349 100644 --- a/deepsoftlog/experiments/mnist_addition/config.yaml +++ b/deepsoftlog/experiments/mnist_addition/config.yaml @@ -1,4 +1,4 @@ -project: mnist_addition +project: dsl_mnist_addition name: 1 digit program: "deepsoftlog/experiments/mnist_addition/programs/addition_embeddings.pl" semantics: sdd2 @@ -18,7 +18,7 @@ optimizer: AdamW functor_learning_rate: 0.0003 embedding_learning_rate: 0 batch_size: 4 -nb_epochs: 3 +nb_epochs: 1 weight_decay: 1.0e-05 grad_clip: null diff --git a/deepsoftlog/experiments/wiki_countries/config.yaml b/deepsoftlog/experiments/wiki_countries/config.yaml new file mode 100644 index 0000000..4910f58 --- /dev/null +++ b/deepsoftlog/experiments/wiki_countries/config.yaml @@ -0,0 +1,26 @@ +project: wiki_countries +name: S0 +program: deepsoftlog/experiments/wiki_countries/data/tmp/countries_S0.pl +seed: 1337 +verbose: true +data_subset: null +device: cuda +device_nb: 1 +semantics: sdd2 + +# optimization +optimizer: AdamW +embedding_learning_rate: 0.001 +functor_learning_rate: 0.0001 +weight_decay: 0 +nb_epochs: 5 +batch_size: 1 +grad_clip: null +max_proofs: null +max_depth: 2 +max_branching: 4 + +# embeddings +embedding_dimensions: 1024 +embedding_initialization: sphere +embedding_metric: angle \ No newline at end of file diff --git a/deepsoftlog/experiments/wiki_countries/data/raw/countries_S0.tsv b/deepsoftlog/experiments/wiki_countries/data/raw/countries_S0.tsv new file mode 100644 index 0000000..febf1b9 --- /dev/null +++ b/deepsoftlog/experiments/wiki_countries/data/raw/countries_S0.tsv @@ -0,0 +1,463 @@ +palau locatedIn micronesia +palau locatedIn oceania +maldives locatedIn southern_asia +maldives locatedIn asia +brunei locatedIn south-eastern_asia +brunei locatedIn asia +japan locatedIn eastern_asia +japan locatedIn asia +netherlands locatedIn western_europe +turkey locatedIn western_asia +angola locatedIn middle_africa +angola locatedIn africa +armenia locatedIn western_asia +armenia locatedIn asia +antigua_and_barbuda locatedIn caribbean +antigua_and_barbuda locatedIn americas +swaziland locatedIn southern_africa +swaziland locatedIn africa +wallis_and_futuna locatedIn polynesia +wallis_and_futuna locatedIn oceania +uruguay locatedIn south_america +uruguay locatedIn americas +zambia locatedIn eastern_africa +zambia locatedIn africa +cyprus locatedIn eastern_europe +cyprus locatedIn europe +ireland locatedIn northern_europe +ireland locatedIn europe +burundi locatedIn eastern_africa +burundi locatedIn africa +central_african_republic locatedIn middle_africa +central_african_republic locatedIn africa +tonga locatedIn polynesia +tonga locatedIn oceania +ivory_coast locatedIn western_africa +ivory_coast locatedIn africa +sierra_leone locatedIn western_africa +mayotte locatedIn eastern_africa +mayotte locatedIn africa +poland locatedIn eastern_europe +kazakhstan locatedIn central_asia +kazakhstan locatedIn asia +uzbekistan locatedIn central_asia +uzbekistan locatedIn asia +turks_and_caicos_islands locatedIn caribbean +turks_and_caicos_islands locatedIn americas +new_caledonia locatedIn melanesia +new_caledonia locatedIn oceania +pakistan locatedIn southern_asia +argentina locatedIn south_america +argentina locatedIn americas +cuba locatedIn caribbean +cuba locatedIn americas +serbia locatedIn southern_europe +czechia locatedIn eastern_europe +czechia locatedIn europe +nicaragua locatedIn central_america +vietnam locatedIn south-eastern_asia +vietnam locatedIn asia +niue locatedIn polynesia +niue locatedIn oceania +canada locatedIn northern_america +canada locatedIn americas +slovakia locatedIn central_europe +mozambique locatedIn eastern_africa +aruba locatedIn caribbean +aruba locatedIn americas +bolivia locatedIn south_america +bolivia locatedIn americas +colombia locatedIn south_america +colombia locatedIn americas +fiji locatedIn melanesia +fiji locatedIn oceania +republic_of_the_congo locatedIn middle_africa +saudi_arabia locatedIn western_asia +el_salvador locatedIn central_america +el_salvador locatedIn americas +madagascar locatedIn eastern_africa +madagascar locatedIn africa +australia locatedIn australia_and_new_zealand +australia locatedIn oceania +namibia locatedIn southern_africa +namibia locatedIn africa +tuvalu locatedIn polynesia +tuvalu locatedIn oceania +svalbard_and_jan_mayen locatedIn northern_europe +svalbard_and_jan_mayen locatedIn europe +isle_of_man locatedIn northern_europe +isle_of_man locatedIn europe +guyana locatedIn south_america +vatican_city locatedIn southern_europe +vatican_city locatedIn europe +british_indian_ocean_territory locatedIn eastern_africa +british_indian_ocean_territory locatedIn africa +nigeria locatedIn western_africa +nigeria locatedIn africa +germany locatedIn western_europe +burkina_faso locatedIn western_africa +tanzania locatedIn eastern_africa +northern_mariana_islands locatedIn micronesia +northern_mariana_islands locatedIn oceania +belize locatedIn central_america +belize locatedIn americas +norway locatedIn northern_europe +cocos_keeling_islands locatedIn australia_and_new_zealand +cocos_keeling_islands locatedIn oceania +laos locatedIn south-eastern_asia +laos locatedIn asia +western_sahara locatedIn northern_africa +western_sahara locatedIn africa +suriname locatedIn south_america +suriname locatedIn americas +christmas_island locatedIn australia_and_new_zealand +christmas_island locatedIn oceania +são_tomé_and_príncipe locatedIn middle_africa +são_tomé_and_príncipe locatedIn africa +egypt locatedIn northern_africa +bulgaria locatedIn eastern_europe +guinea locatedIn western_africa +guinea locatedIn africa +spain locatedIn southern_europe +costa_rica locatedIn central_america +costa_rica locatedIn americas +malta locatedIn southern_europe +malta locatedIn europe +portugal locatedIn southern_europe +portugal locatedIn europe +romania locatedIn eastern_europe +romania locatedIn europe +san_marino locatedIn southern_europe +san_marino locatedIn europe +mauritania locatedIn western_africa +mauritania locatedIn africa +trinidad_and_tobago locatedIn caribbean +trinidad_and_tobago locatedIn americas +bahrain locatedIn western_asia +bahrain locatedIn asia +myanmar locatedIn south-eastern_asia +iraq locatedIn western_asia +south_georgia locatedIn south_america +south_georgia locatedIn americas +iceland locatedIn northern_europe +iceland locatedIn europe +dr_congo locatedIn middle_africa +dr_congo locatedIn africa +seychelles locatedIn eastern_africa +seychelles locatedIn africa +kyrgyzstan locatedIn central_asia +botswana locatedIn southern_africa +botswana locatedIn africa +faroe_islands locatedIn northern_europe +faroe_islands locatedIn europe +jamaica locatedIn caribbean +jamaica locatedIn americas +american_samoa locatedIn polynesia +american_samoa locatedIn oceania +lesotho locatedIn southern_africa +lesotho locatedIn africa +sri_lanka locatedIn southern_asia +belgium locatedIn western_europe +belgium locatedIn europe +qatar locatedIn western_asia +qatar locatedIn asia +solomon_islands locatedIn melanesia +solomon_islands locatedIn oceania +syria locatedIn western_asia +syria locatedIn asia +india locatedIn southern_asia +india locatedIn asia +morocco locatedIn northern_africa +kenya locatedIn eastern_africa +kenya locatedIn africa +south_sudan locatedIn middle_africa +south_sudan locatedIn africa +ghana locatedIn western_africa +tajikistan locatedIn central_asia +tajikistan locatedIn asia +marshall_islands locatedIn micronesia +marshall_islands locatedIn oceania +cameroon locatedIn middle_africa +cameroon locatedIn africa +nauru locatedIn micronesia +nauru locatedIn oceania +thailand locatedIn south-eastern_asia +sudan locatedIn northern_africa +chad locatedIn middle_africa +chad locatedIn africa +vanuatu locatedIn melanesia +vanuatu locatedIn oceania +cape_verde locatedIn western_africa +cape_verde locatedIn africa +falkland_islands locatedIn south_america +falkland_islands locatedIn americas +liberia locatedIn western_africa +liberia locatedIn africa +cambodia locatedIn south-eastern_asia +cambodia locatedIn asia +zimbabwe locatedIn eastern_africa +comoros locatedIn eastern_africa +comoros locatedIn africa +guam locatedIn micronesia +guam locatedIn oceania +bahamas locatedIn caribbean +bahamas locatedIn americas +lebanon locatedIn western_asia +lebanon locatedIn asia +sint_maarten locatedIn caribbean +sint_maarten locatedIn americas +ethiopia locatedIn eastern_africa +ethiopia locatedIn africa +united_states_virgin_islands locatedIn caribbean +united_states_virgin_islands locatedIn americas +guinea-bissau locatedIn western_africa +guinea-bissau locatedIn africa +libya locatedIn northern_africa +libya locatedIn africa +bhutan locatedIn southern_asia +bhutan locatedIn asia +macau locatedIn eastern_asia +macau locatedIn asia +french_polynesia locatedIn polynesia +french_polynesia locatedIn oceania +somalia locatedIn eastern_africa +somalia locatedIn africa +saint_barthélemy locatedIn caribbean +saint_barthélemy locatedIn americas +russia locatedIn eastern_europe +russia locatedIn europe +new_zealand locatedIn australia_and_new_zealand +new_zealand locatedIn oceania +panama locatedIn central_america +panama locatedIn americas +papua_new_guinea locatedIn melanesia +papua_new_guinea locatedIn oceania +north_korea locatedIn eastern_asia +latvia locatedIn northern_europe +latvia locatedIn europe +oman locatedIn western_asia +oman locatedIn asia +saint_pierre_and_miquelon locatedIn northern_america +saint_pierre_and_miquelon locatedIn americas +martinique locatedIn caribbean +martinique locatedIn americas +united_kingdom locatedIn northern_europe +united_kingdom locatedIn europe +israel locatedIn western_asia +israel locatedIn asia +jersey locatedIn northern_europe +jersey locatedIn europe +pitcairn_islands locatedIn polynesia +pitcairn_islands locatedIn oceania +togo locatedIn western_africa +togo locatedIn africa +kiribati locatedIn micronesia +kiribati locatedIn oceania +iran locatedIn southern_asia +iran locatedIn asia +saint_martin locatedIn caribbean +saint_martin locatedIn americas +dominican_republic locatedIn caribbean +dominican_republic locatedIn americas +denmark locatedIn northern_europe +bermuda locatedIn northern_america +bermuda locatedIn americas +chile locatedIn south_america +kosovo locatedIn eastern_europe +kosovo locatedIn europe +saint_kitts_and_nevis locatedIn caribbean +saint_kitts_and_nevis locatedIn americas +eritrea locatedIn eastern_africa +equatorial_guinea locatedIn middle_africa +equatorial_guinea locatedIn africa +niger locatedIn western_africa +niger locatedIn africa +anguilla locatedIn caribbean +anguilla locatedIn americas +rwanda locatedIn eastern_africa +rwanda locatedIn africa +united_arab_emirates locatedIn western_asia +united_arab_emirates locatedIn asia +estonia locatedIn northern_europe +estonia locatedIn europe +greece locatedIn southern_europe +greece locatedIn europe +senegal locatedIn western_africa +senegal locatedIn africa +guadeloupe locatedIn caribbean +guadeloupe locatedIn americas +monaco locatedIn western_europe +djibouti locatedIn eastern_africa +indonesia locatedIn south-eastern_asia +british_virgin_islands locatedIn caribbean +british_virgin_islands locatedIn americas +cook_islands locatedIn polynesia +cook_islands locatedIn oceania +uganda locatedIn eastern_africa +uganda locatedIn africa +macedonia locatedIn southern_europe +macedonia locatedIn europe +tunisia locatedIn northern_africa +tunisia locatedIn africa +ecuador locatedIn south_america +brazil locatedIn south_america +brazil locatedIn americas +paraguay locatedIn south_america +paraguay locatedIn americas +finland locatedIn northern_europe +finland locatedIn europe +jordan locatedIn western_asia +timor-leste locatedIn south-eastern_asia +montenegro locatedIn southern_europe +montenegro locatedIn europe +peru locatedIn south_america +peru locatedIn americas +montserrat locatedIn caribbean +montserrat locatedIn americas +ukraine locatedIn eastern_europe +ukraine locatedIn europe +dominica locatedIn caribbean +dominica locatedIn americas +turkmenistan locatedIn central_asia +guernsey locatedIn northern_europe +guernsey locatedIn europe +gibraltar locatedIn southern_europe +gibraltar locatedIn europe +switzerland locatedIn western_europe +switzerland locatedIn europe +austria locatedIn western_europe +austria locatedIn europe +hungary locatedIn eastern_europe +malawi locatedIn eastern_africa +malawi locatedIn africa +hong_kong locatedIn eastern_asia +liechtenstein locatedIn western_europe +liechtenstein locatedIn europe +barbados locatedIn caribbean +barbados locatedIn americas +georgia locatedIn western_asia +georgia locatedIn asia +albania locatedIn southern_europe +albania locatedIn europe +kuwait locatedIn western_asia +kuwait locatedIn asia +south_africa locatedIn southern_africa +south_africa locatedIn africa +haiti locatedIn caribbean +haiti locatedIn americas +afghanistan locatedIn southern_asia +afghanistan locatedIn asia +singapore locatedIn south-eastern_asia +singapore locatedIn asia +benin locatedIn western_africa +benin locatedIn africa +åland_islands locatedIn northern_europe +åland_islands locatedIn europe +croatia locatedIn southern_europe +croatia locatedIn europe +sweden locatedIn northern_europe +sweden locatedIn europe +mexico locatedIn northern_america +greenland locatedIn northern_america +greenland locatedIn americas +norfolk_island locatedIn australia_and_new_zealand +norfolk_island locatedIn oceania +nepal locatedIn southern_asia +nepal locatedIn asia +guatemala locatedIn central_america +south_korea locatedIn eastern_asia +south_korea locatedIn asia +moldova locatedIn eastern_europe +moldova locatedIn europe +mauritius locatedIn eastern_africa +mauritius locatedIn africa +belarus locatedIn eastern_europe +bangladesh locatedIn southern_asia +malaysia locatedIn south-eastern_asia +malaysia locatedIn asia +bosnia_and_herzegovina locatedIn southern_europe +bosnia_and_herzegovina locatedIn europe +luxembourg locatedIn western_europe +luxembourg locatedIn europe +italy locatedIn southern_europe +italy locatedIn europe +azerbaijan locatedIn western_asia +azerbaijan locatedIn asia +honduras locatedIn central_america +honduras locatedIn americas +mali locatedIn western_africa +mali locatedIn africa +taiwan locatedIn eastern_asia +taiwan locatedIn asia +algeria locatedIn northern_africa +algeria locatedIn africa +french_guiana locatedIn south_america +yemen locatedIn western_asia +yemen locatedIn asia +puerto_rico locatedIn caribbean +puerto_rico locatedIn americas +saint_vincent_and_the_grenadines locatedIn caribbean +saint_vincent_and_the_grenadines locatedIn americas +venezuela locatedIn south_america +grenada locatedIn caribbean +grenada locatedIn americas +united_states locatedIn northern_america +tokelau locatedIn polynesia +tokelau locatedIn oceania +slovenia locatedIn southern_europe +slovenia locatedIn europe +philippines locatedIn south-eastern_asia +philippines locatedIn asia +micronesia locatedIn micronesia +micronesia locatedIn oceania +china locatedIn eastern_asia +china locatedIn asia +gabon locatedIn middle_africa +gabon locatedIn africa +united_states_minor_outlying_islands locatedIn northern_america +united_states_minor_outlying_islands locatedIn americas +andorra locatedIn southern_europe +andorra locatedIn europe +samoa locatedIn polynesia +samoa locatedIn oceania +gambia locatedIn western_africa +gambia locatedIn africa +palestine locatedIn western_asia +palestine locatedIn asia +réunion locatedIn eastern_africa +réunion locatedIn africa +france locatedIn western_europe +france locatedIn europe +mongolia locatedIn eastern_asia +mongolia locatedIn asia +lithuania locatedIn northern_europe +lithuania locatedIn europe +cayman_islands locatedIn caribbean +cayman_islands locatedIn americas +saint_lucia locatedIn caribbean +saint_lucia locatedIn americas +curaçao locatedIn caribbean +curaçao locatedIn americas +caribbean locatedIn americas +southern_asia locatedIn asia +middle_africa locatedIn africa +northern_europe locatedIn europe +southern_europe locatedIn europe +western_asia locatedIn asia +south_america locatedIn americas +polynesia locatedIn oceania +australia_and_new_zealand locatedIn oceania +western_europe locatedIn europe +eastern_africa locatedIn africa +western_africa locatedIn africa +eastern_europe locatedIn europe +central_america locatedIn americas +northern_america locatedIn americas +south-eastern_asia locatedIn asia +southern_africa locatedIn africa +eastern_asia locatedIn asia +northern_africa locatedIn africa +melanesia locatedIn oceania +micronesia locatedIn oceania +central_asia locatedIn asia +central_europe locatedIn europe \ No newline at end of file diff --git a/deepsoftlog/experiments/wiki_countries/data/raw/countries_S1.tsv b/deepsoftlog/experiments/wiki_countries/data/raw/countries_S1.tsv new file mode 100644 index 0000000..3c9f1ca --- /dev/null +++ b/deepsoftlog/experiments/wiki_countries/data/raw/countries_S1.tsv @@ -0,0 +1,1111 @@ +palau locatedIn micronesia +palau locatedIn oceania +maldives locatedIn southern_asia +maldives locatedIn asia +brunei locatedIn south-eastern_asia +brunei locatedIn asia +brunei neighborOf malaysia +japan locatedIn eastern_asia +japan locatedIn asia +netherlands locatedIn western_europe +netherlands neighborOf germany +netherlands neighborOf belgium +turkey locatedIn western_asia +turkey neighborOf armenia +turkey neighborOf azerbaijan +turkey neighborOf iran +turkey neighborOf greece +turkey neighborOf georgia +turkey neighborOf bulgaria +turkey neighborOf iraq +turkey neighborOf syria +angola locatedIn middle_africa +angola locatedIn africa +angola neighborOf dr_congo +angola neighborOf namibia +angola neighborOf zambia +angola neighborOf republic_of_the_congo +armenia locatedIn western_asia +armenia locatedIn asia +armenia neighborOf georgia +armenia neighborOf azerbaijan +armenia neighborOf iran +armenia neighborOf turkey +antigua_and_barbuda locatedIn caribbean +antigua_and_barbuda locatedIn americas +swaziland locatedIn southern_africa +swaziland locatedIn africa +swaziland neighborOf south_africa +swaziland neighborOf mozambique +wallis_and_futuna locatedIn polynesia +wallis_and_futuna locatedIn oceania +uruguay locatedIn south_america +uruguay locatedIn americas +uruguay neighborOf argentina +uruguay neighborOf brazil +zambia locatedIn eastern_africa +zambia locatedIn africa +zambia neighborOf tanzania +zambia neighborOf mozambique +zambia neighborOf dr_congo +zambia neighborOf angola +zambia neighborOf botswana +zambia neighborOf zimbabwe +zambia neighborOf namibia +zambia neighborOf malawi +cyprus locatedIn eastern_europe +cyprus locatedIn europe +cyprus neighborOf united_kingdom +ireland locatedIn northern_europe +ireland locatedIn europe +ireland neighborOf united_kingdom +burundi locatedIn eastern_africa +burundi locatedIn africa +burundi neighborOf dr_congo +burundi neighborOf rwanda +burundi neighborOf tanzania +central_african_republic locatedIn middle_africa +central_african_republic locatedIn africa +central_african_republic neighborOf chad +central_african_republic neighborOf republic_of_the_congo +central_african_republic neighborOf dr_congo +central_african_republic neighborOf south_sudan +central_african_republic neighborOf cameroon +central_african_republic neighborOf sudan +tonga locatedIn polynesia +tonga locatedIn oceania +ivory_coast locatedIn western_africa +ivory_coast locatedIn africa +ivory_coast neighborOf burkina_faso +ivory_coast neighborOf ghana +ivory_coast neighborOf liberia +ivory_coast neighborOf mali +ivory_coast neighborOf guinea +sierra_leone locatedIn western_africa +sierra_leone neighborOf liberia +sierra_leone neighborOf guinea +mayotte locatedIn eastern_africa +mayotte locatedIn africa +poland locatedIn eastern_europe +poland neighborOf germany +poland neighborOf ukraine +poland neighborOf slovakia +poland neighborOf belarus +poland neighborOf russia +poland neighborOf lithuania +poland neighborOf czechia +kazakhstan locatedIn central_asia +kazakhstan locatedIn asia +kazakhstan neighborOf turkmenistan +kazakhstan neighborOf china +kazakhstan neighborOf kyrgyzstan +kazakhstan neighborOf uzbekistan +kazakhstan neighborOf russia +uzbekistan locatedIn central_asia +uzbekistan locatedIn asia +uzbekistan neighborOf afghanistan +uzbekistan neighborOf turkmenistan +uzbekistan neighborOf kazakhstan +uzbekistan neighborOf kyrgyzstan +uzbekistan neighborOf tajikistan +turks_and_caicos_islands locatedIn caribbean +turks_and_caicos_islands locatedIn americas +new_caledonia locatedIn melanesia +new_caledonia locatedIn oceania +pakistan locatedIn southern_asia +pakistan neighborOf china +pakistan neighborOf afghanistan +pakistan neighborOf iran +pakistan neighborOf india +argentina locatedIn south_america +argentina locatedIn americas +argentina neighborOf bolivia +argentina neighborOf chile +argentina neighborOf brazil +argentina neighborOf paraguay +argentina neighborOf uruguay +cuba locatedIn caribbean +cuba locatedIn americas +serbia locatedIn southern_europe +serbia neighborOf macedonia +serbia neighborOf montenegro +serbia neighborOf kosovo +serbia neighborOf bosnia_and_herzegovina +serbia neighborOf croatia +serbia neighborOf hungary +serbia neighborOf bulgaria +serbia neighborOf romania +czechia locatedIn eastern_europe +czechia locatedIn europe +czechia neighborOf germany +czechia neighborOf austria +czechia neighborOf poland +czechia neighborOf slovakia +nicaragua locatedIn central_america +nicaragua neighborOf honduras +nicaragua neighborOf costa_rica +vietnam locatedIn south-eastern_asia +vietnam locatedIn asia +vietnam neighborOf cambodia +vietnam neighborOf laos +vietnam neighborOf china +niue locatedIn polynesia +niue locatedIn oceania +canada locatedIn northern_america +canada locatedIn americas +canada neighborOf united_states +slovakia locatedIn central_europe +slovakia neighborOf ukraine +slovakia neighborOf poland +slovakia neighborOf austria +slovakia neighborOf hungary +slovakia neighborOf czechia +mozambique locatedIn eastern_africa +mozambique neighborOf tanzania +mozambique neighborOf swaziland +mozambique neighborOf zimbabwe +mozambique neighborOf zambia +mozambique neighborOf malawi +mozambique neighborOf south_africa +aruba locatedIn caribbean +aruba locatedIn americas +bolivia locatedIn south_america +bolivia locatedIn americas +bolivia neighborOf chile +bolivia neighborOf brazil +bolivia neighborOf paraguay +bolivia neighborOf argentina +bolivia neighborOf peru +colombia locatedIn south_america +colombia locatedIn americas +colombia neighborOf ecuador +colombia neighborOf brazil +colombia neighborOf panama +colombia neighborOf venezuela +colombia neighborOf peru +fiji locatedIn melanesia +fiji locatedIn oceania +republic_of_the_congo locatedIn middle_africa +republic_of_the_congo neighborOf gabon +republic_of_the_congo neighborOf dr_congo +republic_of_the_congo neighborOf angola +republic_of_the_congo neighborOf cameroon +republic_of_the_congo neighborOf central_african_republic +saudi_arabia locatedIn western_asia +saudi_arabia neighborOf qatar +saudi_arabia neighborOf united_arab_emirates +saudi_arabia neighborOf jordan +saudi_arabia neighborOf yemen +saudi_arabia neighborOf oman +saudi_arabia neighborOf kuwait +saudi_arabia neighborOf iraq +el_salvador locatedIn central_america +el_salvador locatedIn americas +el_salvador neighborOf guatemala +el_salvador neighborOf honduras +madagascar locatedIn eastern_africa +madagascar locatedIn africa +australia locatedIn australia_and_new_zealand +australia locatedIn oceania +namibia locatedIn southern_africa +namibia locatedIn africa +namibia neighborOf zambia +namibia neighborOf angola +namibia neighborOf south_africa +namibia neighborOf botswana +tuvalu locatedIn polynesia +tuvalu locatedIn oceania +svalbard_and_jan_mayen locatedIn northern_europe +svalbard_and_jan_mayen locatedIn europe +isle_of_man locatedIn northern_europe +isle_of_man locatedIn europe +guyana locatedIn south_america +guyana neighborOf brazil +guyana neighborOf suriname +guyana neighborOf venezuela +vatican_city locatedIn southern_europe +vatican_city locatedIn europe +vatican_city neighborOf italy +british_indian_ocean_territory locatedIn eastern_africa +british_indian_ocean_territory locatedIn africa +nigeria locatedIn western_africa +nigeria locatedIn africa +nigeria neighborOf chad +nigeria neighborOf niger +nigeria neighborOf cameroon +nigeria neighborOf benin +germany locatedIn western_europe +germany neighborOf denmark +germany neighborOf netherlands +germany neighborOf poland +germany neighborOf luxembourg +germany neighborOf belgium +germany neighborOf switzerland +germany neighborOf austria +germany neighborOf france +germany neighborOf czechia +burkina_faso locatedIn western_africa +burkina_faso neighborOf togo +burkina_faso neighborOf benin +burkina_faso neighborOf niger +burkina_faso neighborOf ghana +burkina_faso neighborOf mali +burkina_faso neighborOf ivory_coast +tanzania locatedIn eastern_africa +tanzania neighborOf uganda +tanzania neighborOf mozambique +tanzania neighborOf dr_congo +tanzania neighborOf kenya +tanzania neighborOf rwanda +tanzania neighborOf zambia +tanzania neighborOf malawi +tanzania neighborOf burundi +northern_mariana_islands locatedIn micronesia +northern_mariana_islands locatedIn oceania +belize locatedIn central_america +belize locatedIn americas +belize neighborOf guatemala +belize neighborOf mexico +norway locatedIn northern_europe +norway neighborOf sweden +norway neighborOf finland +norway neighborOf russia +cocos_keeling_islands locatedIn australia_and_new_zealand +cocos_keeling_islands locatedIn oceania +laos locatedIn south-eastern_asia +laos locatedIn asia +laos neighborOf china +laos neighborOf cambodia +laos neighborOf myanmar +laos neighborOf vietnam +laos neighborOf thailand +western_sahara locatedIn northern_africa +western_sahara locatedIn africa +western_sahara neighborOf algeria +western_sahara neighborOf mauritania +western_sahara neighborOf morocco +suriname locatedIn south_america +suriname locatedIn americas +suriname neighborOf brazil +suriname neighborOf french_guiana +suriname neighborOf guyana +christmas_island locatedIn australia_and_new_zealand +christmas_island locatedIn oceania +são_tomé_and_príncipe locatedIn middle_africa +são_tomé_and_príncipe locatedIn africa +egypt locatedIn northern_africa +egypt neighborOf libya +egypt neighborOf israel +egypt neighborOf sudan +bulgaria locatedIn eastern_europe +bulgaria neighborOf macedonia +bulgaria neighborOf turkey +bulgaria neighborOf greece +bulgaria neighborOf serbia +bulgaria neighborOf romania +guinea locatedIn western_africa +guinea locatedIn africa +guinea neighborOf guinea-bissau +guinea neighborOf sierra_leone +guinea neighborOf mali +guinea neighborOf liberia +guinea neighborOf senegal +guinea neighborOf ivory_coast +spain locatedIn southern_europe +spain neighborOf morocco +spain neighborOf gibraltar +spain neighborOf andorra +spain neighborOf france +spain neighborOf portugal +costa_rica locatedIn central_america +costa_rica locatedIn americas +costa_rica neighborOf panama +costa_rica neighborOf nicaragua +malta locatedIn southern_europe +malta locatedIn europe +portugal locatedIn southern_europe +portugal locatedIn europe +portugal neighborOf spain +romania locatedIn eastern_europe +romania locatedIn europe +romania neighborOf ukraine +romania neighborOf hungary +romania neighborOf moldova +romania neighborOf bulgaria +romania neighborOf serbia +san_marino locatedIn southern_europe +san_marino locatedIn europe +san_marino neighborOf italy +mauritania locatedIn western_africa +mauritania locatedIn africa +mauritania neighborOf algeria +mauritania neighborOf mali +mauritania neighborOf western_sahara +mauritania neighborOf senegal +trinidad_and_tobago locatedIn caribbean +trinidad_and_tobago locatedIn americas +bahrain locatedIn western_asia +bahrain locatedIn asia +myanmar locatedIn south-eastern_asia +myanmar neighborOf india +myanmar neighborOf bangladesh +myanmar neighborOf china +myanmar neighborOf laos +myanmar neighborOf thailand +iraq locatedIn western_asia +iraq neighborOf turkey +iraq neighborOf saudi_arabia +iraq neighborOf iran +iraq neighborOf jordan +iraq neighborOf kuwait +iraq neighborOf syria +south_georgia locatedIn south_america +south_georgia locatedIn americas +iceland locatedIn northern_europe +iceland locatedIn europe +dr_congo locatedIn middle_africa +dr_congo locatedIn africa +dr_congo neighborOf uganda +dr_congo neighborOf tanzania +dr_congo neighborOf republic_of_the_congo +dr_congo neighborOf central_african_republic +dr_congo neighborOf angola +dr_congo neighborOf rwanda +dr_congo neighborOf south_sudan +dr_congo neighborOf zambia +dr_congo neighborOf burundi +seychelles locatedIn eastern_africa +seychelles locatedIn africa +kyrgyzstan locatedIn central_asia +kyrgyzstan neighborOf china +kyrgyzstan neighborOf kazakhstan +kyrgyzstan neighborOf tajikistan +kyrgyzstan neighborOf uzbekistan +botswana locatedIn southern_africa +botswana locatedIn africa +botswana neighborOf zimbabwe +botswana neighborOf namibia +botswana neighborOf zambia +botswana neighborOf south_africa +faroe_islands locatedIn northern_europe +faroe_islands locatedIn europe +jamaica locatedIn caribbean +jamaica locatedIn americas +american_samoa locatedIn polynesia +american_samoa locatedIn oceania +lesotho locatedIn southern_africa +lesotho locatedIn africa +lesotho neighborOf south_africa +sri_lanka locatedIn southern_asia +sri_lanka neighborOf india +belgium locatedIn western_europe +belgium locatedIn europe +belgium neighborOf germany +belgium neighborOf luxembourg +belgium neighborOf france +belgium neighborOf netherlands +qatar locatedIn western_asia +qatar locatedIn asia +qatar neighborOf saudi_arabia +solomon_islands locatedIn melanesia +solomon_islands locatedIn oceania +syria locatedIn western_asia +syria locatedIn asia +syria neighborOf israel +syria neighborOf turkey +syria neighborOf jordan +syria neighborOf lebanon +syria neighborOf iraq +india locatedIn southern_asia +india locatedIn asia +india neighborOf afghanistan +india neighborOf bhutan +india neighborOf bangladesh +india neighborOf china +india neighborOf nepal +india neighborOf myanmar +india neighborOf pakistan +india neighborOf sri_lanka +morocco locatedIn northern_africa +morocco neighborOf algeria +morocco neighborOf spain +morocco neighborOf western_sahara +kenya locatedIn eastern_africa +kenya locatedIn africa +kenya neighborOf uganda +kenya neighborOf tanzania +kenya neighborOf somalia +kenya neighborOf south_sudan +kenya neighborOf ethiopia +south_sudan locatedIn middle_africa +south_sudan locatedIn africa +south_sudan neighborOf uganda +south_sudan neighborOf dr_congo +south_sudan neighborOf kenya +south_sudan neighborOf central_african_republic +south_sudan neighborOf sudan +south_sudan neighborOf ethiopia +ghana locatedIn western_africa +ghana neighborOf burkina_faso +ghana neighborOf ivory_coast +ghana neighborOf togo +tajikistan locatedIn central_asia +tajikistan locatedIn asia +tajikistan neighborOf china +tajikistan neighborOf kyrgyzstan +tajikistan neighborOf afghanistan +tajikistan neighborOf uzbekistan +marshall_islands locatedIn micronesia +marshall_islands locatedIn oceania +cameroon locatedIn middle_africa +cameroon locatedIn africa +cameroon neighborOf chad +cameroon neighborOf republic_of_the_congo +cameroon neighborOf gabon +cameroon neighborOf equatorial_guinea +cameroon neighborOf central_african_republic +cameroon neighborOf nigeria +nauru locatedIn micronesia +nauru locatedIn oceania +thailand locatedIn south-eastern_asia +thailand neighborOf cambodia +thailand neighborOf myanmar +thailand neighborOf laos +thailand neighborOf malaysia +sudan locatedIn northern_africa +sudan neighborOf chad +sudan neighborOf libya +sudan neighborOf south_sudan +sudan neighborOf eritrea +sudan neighborOf central_african_republic +sudan neighborOf egypt +sudan neighborOf ethiopia +chad locatedIn middle_africa +chad locatedIn africa +chad neighborOf libya +chad neighborOf niger +chad neighborOf south_sudan +chad neighborOf cameroon +chad neighborOf central_african_republic +chad neighborOf nigeria +vanuatu locatedIn melanesia +vanuatu locatedIn oceania +cape_verde locatedIn western_africa +cape_verde locatedIn africa +falkland_islands locatedIn south_america +falkland_islands locatedIn americas +liberia locatedIn western_africa +liberia locatedIn africa +liberia neighborOf ivory_coast +liberia neighborOf sierra_leone +liberia neighborOf guinea +cambodia locatedIn south-eastern_asia +cambodia locatedIn asia +cambodia neighborOf vietnam +cambodia neighborOf thailand +cambodia neighborOf laos +zimbabwe locatedIn eastern_africa +zimbabwe neighborOf zambia +zimbabwe neighborOf south_africa +zimbabwe neighborOf botswana +zimbabwe neighborOf mozambique +comoros locatedIn eastern_africa +comoros locatedIn africa +guam locatedIn micronesia +guam locatedIn oceania +bahamas locatedIn caribbean +bahamas locatedIn americas +lebanon locatedIn western_asia +lebanon locatedIn asia +lebanon neighborOf israel +lebanon neighborOf syria +sint_maarten locatedIn caribbean +sint_maarten locatedIn americas +sint_maarten neighborOf saint_martin +ethiopia locatedIn eastern_africa +ethiopia locatedIn africa +ethiopia neighborOf somalia +ethiopia neighborOf kenya +ethiopia neighborOf eritrea +ethiopia neighborOf south_sudan +ethiopia neighborOf djibouti +ethiopia neighborOf sudan +united_states_virgin_islands locatedIn caribbean +united_states_virgin_islands locatedIn americas +guinea-bissau locatedIn western_africa +guinea-bissau locatedIn africa +guinea-bissau neighborOf guinea +guinea-bissau neighborOf senegal +libya locatedIn northern_africa +libya locatedIn africa +libya neighborOf chad +libya neighborOf tunisia +libya neighborOf niger +libya neighborOf algeria +libya neighborOf egypt +libya neighborOf sudan +bhutan locatedIn southern_asia +bhutan locatedIn asia +bhutan neighborOf china +bhutan neighborOf india +macau locatedIn eastern_asia +macau locatedIn asia +macau neighborOf china +french_polynesia locatedIn polynesia +french_polynesia locatedIn oceania +somalia locatedIn eastern_africa +somalia locatedIn africa +somalia neighborOf djibouti +somalia neighborOf kenya +somalia neighborOf ethiopia +saint_barthélemy locatedIn caribbean +saint_barthélemy locatedIn americas +russia locatedIn eastern_europe +russia locatedIn europe +russia neighborOf ukraine +russia neighborOf belarus +russia neighborOf china +russia neighborOf kazakhstan +russia neighborOf norway +russia neighborOf poland +russia neighborOf azerbaijan +russia neighborOf lithuania +russia neighborOf estonia +russia neighborOf north_korea +russia neighborOf finland +russia neighborOf mongolia +russia neighborOf latvia +russia neighborOf georgia +new_zealand locatedIn australia_and_new_zealand +new_zealand locatedIn oceania +panama locatedIn central_america +panama locatedIn americas +panama neighborOf costa_rica +panama neighborOf colombia +papua_new_guinea locatedIn melanesia +papua_new_guinea locatedIn oceania +papua_new_guinea neighborOf indonesia +north_korea locatedIn eastern_asia +north_korea neighborOf china +north_korea neighborOf south_korea +north_korea neighborOf russia +latvia locatedIn northern_europe +latvia locatedIn europe +latvia neighborOf lithuania +latvia neighborOf belarus +latvia neighborOf russia +latvia neighborOf estonia +oman locatedIn western_asia +oman locatedIn asia +oman neighborOf saudi_arabia +oman neighborOf yemen +oman neighborOf united_arab_emirates +saint_pierre_and_miquelon locatedIn northern_america +saint_pierre_and_miquelon locatedIn americas +martinique locatedIn caribbean +martinique locatedIn americas +united_kingdom locatedIn northern_europe +united_kingdom locatedIn europe +united_kingdom neighborOf ireland +israel locatedIn western_asia +israel locatedIn asia +israel neighborOf lebanon +israel neighborOf egypt +israel neighborOf jordan +israel neighborOf syria +jersey locatedIn northern_europe +jersey locatedIn europe +pitcairn_islands locatedIn polynesia +pitcairn_islands locatedIn oceania +togo locatedIn western_africa +togo locatedIn africa +togo neighborOf burkina_faso +togo neighborOf ghana +togo neighborOf benin +kiribati locatedIn micronesia +kiribati locatedIn oceania +iran locatedIn southern_asia +iran locatedIn asia +iran neighborOf afghanistan +iran neighborOf turkmenistan +iran neighborOf turkey +iran neighborOf armenia +iran neighborOf azerbaijan +iran neighborOf pakistan +iran neighborOf iraq +saint_martin locatedIn caribbean +saint_martin locatedIn americas +saint_martin neighborOf sint_maarten +dominican_republic locatedIn caribbean +dominican_republic locatedIn americas +dominican_republic neighborOf haiti +denmark locatedIn northern_europe +denmark neighborOf germany +bermuda locatedIn northern_america +bermuda locatedIn americas +chile locatedIn south_america +chile neighborOf argentina +chile neighborOf bolivia +chile neighborOf peru +kosovo locatedIn eastern_europe +kosovo locatedIn europe +kosovo neighborOf serbia +kosovo neighborOf albania +kosovo neighborOf macedonia +kosovo neighborOf montenegro +saint_kitts_and_nevis locatedIn caribbean +saint_kitts_and_nevis locatedIn americas +eritrea locatedIn eastern_africa +eritrea neighborOf djibouti +eritrea neighborOf sudan +eritrea neighborOf ethiopia +equatorial_guinea locatedIn middle_africa +equatorial_guinea locatedIn africa +equatorial_guinea neighborOf gabon +equatorial_guinea neighborOf cameroon +niger locatedIn western_africa +niger locatedIn africa +niger neighborOf chad +niger neighborOf libya +niger neighborOf burkina_faso +niger neighborOf benin +niger neighborOf mali +niger neighborOf algeria +niger neighborOf nigeria +anguilla locatedIn caribbean +anguilla locatedIn americas +rwanda locatedIn eastern_africa +rwanda locatedIn africa +rwanda neighborOf burundi +rwanda neighborOf tanzania +rwanda neighborOf uganda +rwanda neighborOf dr_congo +united_arab_emirates locatedIn western_asia +united_arab_emirates locatedIn asia +united_arab_emirates neighborOf oman +united_arab_emirates neighborOf saudi_arabia +estonia locatedIn northern_europe +estonia locatedIn europe +estonia neighborOf latvia +estonia neighborOf russia +greece locatedIn southern_europe +greece locatedIn europe +greece neighborOf bulgaria +greece neighborOf albania +greece neighborOf macedonia +greece neighborOf turkey +senegal locatedIn western_africa +senegal locatedIn africa +senegal neighborOf guinea-bissau +senegal neighborOf mauritania +senegal neighborOf mali +senegal neighborOf gambia +senegal neighborOf guinea +guadeloupe locatedIn caribbean +guadeloupe locatedIn americas +monaco locatedIn western_europe +monaco neighborOf france +djibouti locatedIn eastern_africa +djibouti neighborOf eritrea +djibouti neighborOf somalia +djibouti neighborOf ethiopia +indonesia locatedIn south-eastern_asia +indonesia neighborOf papua_new_guinea +indonesia neighborOf timor-leste +indonesia neighborOf malaysia +british_virgin_islands locatedIn caribbean +british_virgin_islands locatedIn americas +cook_islands locatedIn polynesia +cook_islands locatedIn oceania +uganda locatedIn eastern_africa +uganda locatedIn africa +uganda neighborOf tanzania +uganda neighborOf dr_congo +uganda neighborOf kenya +uganda neighborOf south_sudan +uganda neighborOf rwanda +macedonia locatedIn southern_europe +macedonia locatedIn europe +macedonia neighborOf kosovo +macedonia neighborOf greece +macedonia neighborOf albania +macedonia neighborOf serbia +macedonia neighborOf bulgaria +tunisia locatedIn northern_africa +tunisia locatedIn africa +tunisia neighborOf libya +tunisia neighborOf algeria +ecuador locatedIn south_america +ecuador neighborOf peru +ecuador neighborOf colombia +brazil locatedIn south_america +brazil locatedIn americas +brazil neighborOf bolivia +brazil neighborOf colombia +brazil neighborOf paraguay +brazil neighborOf uruguay +brazil neighborOf french_guiana +brazil neighborOf suriname +brazil neighborOf venezuela +brazil neighborOf argentina +brazil neighborOf guyana +brazil neighborOf peru +paraguay locatedIn south_america +paraguay locatedIn americas +paraguay neighborOf argentina +paraguay neighborOf brazil +paraguay neighborOf bolivia +finland locatedIn northern_europe +finland locatedIn europe +finland neighborOf norway +finland neighborOf sweden +finland neighborOf russia +jordan locatedIn western_asia +jordan neighborOf saudi_arabia +jordan neighborOf israel +jordan neighborOf iraq +jordan neighborOf syria +timor-leste locatedIn south-eastern_asia +timor-leste neighborOf indonesia +montenegro locatedIn southern_europe +montenegro locatedIn europe +montenegro neighborOf kosovo +montenegro neighborOf bosnia_and_herzegovina +montenegro neighborOf croatia +montenegro neighborOf serbia +montenegro neighborOf albania +peru locatedIn south_america +peru locatedIn americas +peru neighborOf ecuador +peru neighborOf bolivia +peru neighborOf chile +peru neighborOf brazil +peru neighborOf colombia +montserrat locatedIn caribbean +montserrat locatedIn americas +ukraine locatedIn eastern_europe +ukraine locatedIn europe +ukraine neighborOf slovakia +ukraine neighborOf belarus +ukraine neighborOf poland +ukraine neighborOf russia +ukraine neighborOf hungary +ukraine neighborOf moldova +ukraine neighborOf romania +dominica locatedIn caribbean +dominica locatedIn americas +turkmenistan locatedIn central_asia +turkmenistan neighborOf kazakhstan +turkmenistan neighborOf afghanistan +turkmenistan neighborOf uzbekistan +turkmenistan neighborOf iran +guernsey locatedIn northern_europe +guernsey locatedIn europe +gibraltar locatedIn southern_europe +gibraltar locatedIn europe +gibraltar neighborOf spain +switzerland locatedIn western_europe +switzerland locatedIn europe +switzerland neighborOf germany +switzerland neighborOf italy +switzerland neighborOf austria +switzerland neighborOf france +switzerland neighborOf liechtenstein +austria locatedIn western_europe +austria locatedIn europe +austria neighborOf germany +austria neighborOf slovakia +austria neighborOf slovenia +austria neighborOf italy +austria neighborOf switzerland +austria neighborOf hungary +austria neighborOf liechtenstein +austria neighborOf czechia +hungary locatedIn eastern_europe +hungary neighborOf ukraine +hungary neighborOf slovakia +hungary neighborOf slovenia +hungary neighborOf croatia +hungary neighborOf austria +hungary neighborOf serbia +hungary neighborOf romania +malawi locatedIn eastern_africa +malawi locatedIn africa +malawi neighborOf zambia +malawi neighborOf tanzania +malawi neighborOf mozambique +hong_kong locatedIn eastern_asia +hong_kong neighborOf china +liechtenstein locatedIn western_europe +liechtenstein locatedIn europe +liechtenstein neighborOf switzerland +liechtenstein neighborOf austria +barbados locatedIn caribbean +barbados locatedIn americas +georgia locatedIn western_asia +georgia locatedIn asia +georgia neighborOf armenia +georgia neighborOf azerbaijan +georgia neighborOf russia +georgia neighborOf turkey +albania locatedIn southern_europe +albania locatedIn europe +albania neighborOf montenegro +albania neighborOf macedonia +albania neighborOf kosovo +albania neighborOf greece +kuwait locatedIn western_asia +kuwait locatedIn asia +kuwait neighborOf saudi_arabia +kuwait neighborOf iraq +south_africa locatedIn southern_africa +south_africa locatedIn africa +south_africa neighborOf mozambique +south_africa neighborOf botswana +south_africa neighborOf swaziland +south_africa neighborOf zimbabwe +south_africa neighborOf namibia +south_africa neighborOf lesotho +haiti locatedIn caribbean +haiti locatedIn americas +haiti neighborOf dominican_republic +afghanistan locatedIn southern_asia +afghanistan locatedIn asia +afghanistan neighborOf turkmenistan +afghanistan neighborOf china +afghanistan neighborOf tajikistan +afghanistan neighborOf uzbekistan +afghanistan neighborOf iran +afghanistan neighborOf pakistan +singapore locatedIn south-eastern_asia +singapore locatedIn asia +benin locatedIn western_africa +benin locatedIn africa +benin neighborOf niger +benin neighborOf burkina_faso +benin neighborOf togo +benin neighborOf nigeria +åland_islands locatedIn northern_europe +åland_islands locatedIn europe +croatia locatedIn southern_europe +croatia locatedIn europe +croatia neighborOf slovenia +croatia neighborOf bosnia_and_herzegovina +croatia neighborOf hungary +croatia neighborOf serbia +croatia neighborOf montenegro +sweden locatedIn northern_europe +sweden locatedIn europe +sweden neighborOf norway +sweden neighborOf finland +mexico locatedIn northern_america +mexico neighborOf belize +mexico neighborOf united_states +mexico neighborOf guatemala +greenland locatedIn northern_america +greenland locatedIn americas +norfolk_island locatedIn australia_and_new_zealand +norfolk_island locatedIn oceania +nepal locatedIn southern_asia +nepal locatedIn asia +nepal neighborOf china +nepal neighborOf india +guatemala locatedIn central_america +guatemala neighborOf belize +guatemala neighborOf el_salvador +guatemala neighborOf mexico +guatemala neighborOf honduras +south_korea locatedIn eastern_asia +south_korea locatedIn asia +south_korea neighborOf north_korea +moldova locatedIn eastern_europe +moldova locatedIn europe +moldova neighborOf ukraine +moldova neighborOf romania +mauritius locatedIn eastern_africa +mauritius locatedIn africa +belarus locatedIn eastern_europe +belarus neighborOf ukraine +belarus neighborOf poland +belarus neighborOf lithuania +belarus neighborOf russia +belarus neighborOf latvia +bangladesh locatedIn southern_asia +bangladesh neighborOf myanmar +bangladesh neighborOf india +malaysia locatedIn south-eastern_asia +malaysia locatedIn asia +malaysia neighborOf thailand +malaysia neighborOf indonesia +malaysia neighborOf brunei +bosnia_and_herzegovina locatedIn southern_europe +bosnia_and_herzegovina locatedIn europe +bosnia_and_herzegovina neighborOf serbia +bosnia_and_herzegovina neighborOf croatia +bosnia_and_herzegovina neighborOf montenegro +luxembourg locatedIn western_europe +luxembourg locatedIn europe +luxembourg neighborOf germany +luxembourg neighborOf belgium +luxembourg neighborOf france +italy locatedIn southern_europe +italy locatedIn europe +italy neighborOf slovenia +italy neighborOf switzerland +italy neighborOf austria +italy neighborOf france +italy neighborOf vatican_city +italy neighborOf san_marino +azerbaijan locatedIn western_asia +azerbaijan locatedIn asia +azerbaijan neighborOf turkey +azerbaijan neighborOf armenia +azerbaijan neighborOf russia +azerbaijan neighborOf iran +azerbaijan neighborOf georgia +honduras locatedIn central_america +honduras locatedIn americas +honduras neighborOf guatemala +honduras neighborOf nicaragua +honduras neighborOf el_salvador +mali locatedIn western_africa +mali locatedIn africa +mali neighborOf burkina_faso +mali neighborOf guinea +mali neighborOf mauritania +mali neighborOf niger +mali neighborOf senegal +mali neighborOf algeria +mali neighborOf ivory_coast +taiwan locatedIn eastern_asia +taiwan locatedIn asia +algeria locatedIn northern_africa +algeria locatedIn africa +algeria neighborOf libya +algeria neighborOf tunisia +algeria neighborOf mauritania +algeria neighborOf morocco +algeria neighborOf niger +algeria neighborOf mali +algeria neighborOf western_sahara +french_guiana locatedIn south_america +french_guiana neighborOf brazil +french_guiana neighborOf suriname +yemen locatedIn western_asia +yemen locatedIn asia +yemen neighborOf oman +yemen neighborOf saudi_arabia +puerto_rico locatedIn caribbean +puerto_rico locatedIn americas +saint_vincent_and_the_grenadines locatedIn caribbean +saint_vincent_and_the_grenadines locatedIn americas +venezuela locatedIn south_america +venezuela neighborOf brazil +venezuela neighborOf guyana +venezuela neighborOf colombia +grenada locatedIn caribbean +grenada locatedIn americas +united_states locatedIn northern_america +united_states neighborOf canada +united_states neighborOf mexico +tokelau locatedIn polynesia +tokelau locatedIn oceania +slovenia locatedIn southern_europe +slovenia locatedIn europe +slovenia neighborOf austria +slovenia neighborOf croatia +slovenia neighborOf italy +slovenia neighborOf hungary +philippines locatedIn south-eastern_asia +philippines locatedIn asia +micronesia locatedIn micronesia +micronesia locatedIn oceania +china locatedIn eastern_asia +china locatedIn asia +china neighborOf afghanistan +china neighborOf bhutan +china neighborOf macau +china neighborOf india +china neighborOf kazakhstan +china neighborOf kyrgyzstan +china neighborOf tajikistan +china neighborOf laos +china neighborOf russia +china neighborOf north_korea +china neighborOf myanmar +china neighborOf pakistan +china neighborOf mongolia +china neighborOf hong_kong +china neighborOf vietnam +gabon locatedIn middle_africa +gabon locatedIn africa +gabon neighborOf equatorial_guinea +gabon neighborOf republic_of_the_congo +gabon neighborOf cameroon +united_states_minor_outlying_islands locatedIn northern_america +united_states_minor_outlying_islands locatedIn americas +andorra locatedIn southern_europe +andorra locatedIn europe +andorra neighborOf spain +andorra neighborOf france +samoa locatedIn polynesia +samoa locatedIn oceania +gambia locatedIn western_africa +gambia locatedIn africa +gambia neighborOf senegal +palestine locatedIn western_asia +palestine locatedIn asia +palestine neighborOf jordan +palestine neighborOf egypt +palestine neighborOf israel +réunion locatedIn eastern_africa +réunion locatedIn africa +france locatedIn western_europe +france locatedIn europe +france neighborOf germany +france neighborOf luxembourg +france neighborOf italy +france neighborOf andorra +france neighborOf switzerland +france neighborOf monaco +france neighborOf belgium +france neighborOf spain +mongolia locatedIn eastern_asia +mongolia locatedIn asia +mongolia neighborOf china +mongolia neighborOf russia +lithuania locatedIn northern_europe +lithuania locatedIn europe +lithuania neighborOf poland +lithuania neighborOf latvia +lithuania neighborOf belarus +lithuania neighborOf russia +cayman_islands locatedIn caribbean +cayman_islands locatedIn americas +saint_lucia locatedIn caribbean +saint_lucia locatedIn americas +curaçao locatedIn caribbean +curaçao locatedIn americas +caribbean locatedIn americas +southern_asia locatedIn asia +middle_africa locatedIn africa +northern_europe locatedIn europe +southern_europe locatedIn europe +western_asia locatedIn asia +south_america locatedIn americas +polynesia locatedIn oceania +australia_and_new_zealand locatedIn oceania +western_europe locatedIn europe +eastern_africa locatedIn africa +western_africa locatedIn africa +eastern_europe locatedIn europe +central_america locatedIn americas +northern_america locatedIn americas +south-eastern_asia locatedIn asia +southern_africa locatedIn africa +eastern_asia locatedIn asia +northern_africa locatedIn africa +melanesia locatedIn oceania +micronesia locatedIn oceania +central_asia locatedIn asia +central_europe locatedIn europe \ No newline at end of file diff --git a/deepsoftlog/experiments/wiki_countries/data/raw/countries_S2.tsv b/deepsoftlog/experiments/wiki_countries/data/raw/countries_S2.tsv new file mode 100644 index 0000000..1b3641f --- /dev/null +++ b/deepsoftlog/experiments/wiki_countries/data/raw/countries_S2.tsv @@ -0,0 +1,1063 @@ +palau locatedIn micronesia +palau locatedIn oceania +maldives locatedIn southern_asia +maldives locatedIn asia +brunei locatedIn south-eastern_asia +brunei locatedIn asia +brunei neighborOf malaysia +japan locatedIn eastern_asia +japan locatedIn asia +netherlands neighborOf germany +netherlands neighborOf belgium +turkey neighborOf armenia +turkey neighborOf azerbaijan +turkey neighborOf iran +turkey neighborOf greece +turkey neighborOf georgia +turkey neighborOf bulgaria +turkey neighborOf iraq +turkey neighborOf syria +angola locatedIn middle_africa +angola locatedIn africa +angola neighborOf dr_congo +angola neighborOf namibia +angola neighborOf zambia +angola neighborOf republic_of_the_congo +armenia locatedIn western_asia +armenia locatedIn asia +armenia neighborOf georgia +armenia neighborOf azerbaijan +armenia neighborOf iran +armenia neighborOf turkey +antigua_and_barbuda locatedIn caribbean +antigua_and_barbuda locatedIn americas +swaziland locatedIn southern_africa +swaziland locatedIn africa +swaziland neighborOf south_africa +swaziland neighborOf mozambique +wallis_and_futuna locatedIn polynesia +wallis_and_futuna locatedIn oceania +uruguay locatedIn south_america +uruguay locatedIn americas +uruguay neighborOf argentina +uruguay neighborOf brazil +zambia locatedIn eastern_africa +zambia locatedIn africa +zambia neighborOf tanzania +zambia neighborOf mozambique +zambia neighborOf dr_congo +zambia neighborOf angola +zambia neighborOf botswana +zambia neighborOf zimbabwe +zambia neighborOf namibia +zambia neighborOf malawi +cyprus locatedIn eastern_europe +cyprus locatedIn europe +cyprus neighborOf united_kingdom +ireland locatedIn northern_europe +ireland locatedIn europe +ireland neighborOf united_kingdom +burundi locatedIn eastern_africa +burundi locatedIn africa +burundi neighborOf dr_congo +burundi neighborOf rwanda +burundi neighborOf tanzania +central_african_republic locatedIn middle_africa +central_african_republic locatedIn africa +central_african_republic neighborOf chad +central_african_republic neighborOf republic_of_the_congo +central_african_republic neighborOf dr_congo +central_african_republic neighborOf south_sudan +central_african_republic neighborOf cameroon +central_african_republic neighborOf sudan +tonga locatedIn polynesia +tonga locatedIn oceania +ivory_coast locatedIn western_africa +ivory_coast locatedIn africa +ivory_coast neighborOf burkina_faso +ivory_coast neighborOf ghana +ivory_coast neighborOf liberia +ivory_coast neighborOf mali +ivory_coast neighborOf guinea +sierra_leone neighborOf liberia +sierra_leone neighborOf guinea +mayotte locatedIn eastern_africa +mayotte locatedIn africa +poland neighborOf germany +poland neighborOf ukraine +poland neighborOf slovakia +poland neighborOf belarus +poland neighborOf russia +poland neighborOf lithuania +poland neighborOf czechia +kazakhstan locatedIn central_asia +kazakhstan locatedIn asia +kazakhstan neighborOf turkmenistan +kazakhstan neighborOf china +kazakhstan neighborOf kyrgyzstan +kazakhstan neighborOf uzbekistan +kazakhstan neighborOf russia +uzbekistan locatedIn central_asia +uzbekistan locatedIn asia +uzbekistan neighborOf afghanistan +uzbekistan neighborOf turkmenistan +uzbekistan neighborOf kazakhstan +uzbekistan neighborOf kyrgyzstan +uzbekistan neighborOf tajikistan +turks_and_caicos_islands locatedIn caribbean +turks_and_caicos_islands locatedIn americas +new_caledonia locatedIn melanesia +new_caledonia locatedIn oceania +pakistan neighborOf china +pakistan neighborOf afghanistan +pakistan neighborOf iran +pakistan neighborOf india +argentina locatedIn south_america +argentina locatedIn americas +argentina neighborOf bolivia +argentina neighborOf chile +argentina neighborOf brazil +argentina neighborOf paraguay +argentina neighborOf uruguay +cuba locatedIn caribbean +cuba locatedIn americas +serbia neighborOf macedonia +serbia neighborOf montenegro +serbia neighborOf kosovo +serbia neighborOf bosnia_and_herzegovina +serbia neighborOf croatia +serbia neighborOf hungary +serbia neighborOf bulgaria +serbia neighborOf romania +czechia locatedIn eastern_europe +czechia locatedIn europe +czechia neighborOf germany +czechia neighborOf austria +czechia neighborOf poland +czechia neighborOf slovakia +nicaragua neighborOf honduras +nicaragua neighborOf costa_rica +vietnam locatedIn south-eastern_asia +vietnam locatedIn asia +vietnam neighborOf cambodia +vietnam neighborOf laos +vietnam neighborOf china +niue locatedIn polynesia +niue locatedIn oceania +canada locatedIn northern_america +canada locatedIn americas +canada neighborOf united_states +slovakia neighborOf ukraine +slovakia neighborOf poland +slovakia neighborOf austria +slovakia neighborOf hungary +slovakia neighborOf czechia +mozambique neighborOf tanzania +mozambique neighborOf swaziland +mozambique neighborOf zimbabwe +mozambique neighborOf zambia +mozambique neighborOf malawi +mozambique neighborOf south_africa +aruba locatedIn caribbean +aruba locatedIn americas +bolivia locatedIn south_america +bolivia locatedIn americas +bolivia neighborOf chile +bolivia neighborOf brazil +bolivia neighborOf paraguay +bolivia neighborOf argentina +bolivia neighborOf peru +colombia locatedIn south_america +colombia locatedIn americas +colombia neighborOf ecuador +colombia neighborOf brazil +colombia neighborOf panama +colombia neighborOf venezuela +colombia neighborOf peru +fiji locatedIn melanesia +fiji locatedIn oceania +republic_of_the_congo neighborOf gabon +republic_of_the_congo neighborOf dr_congo +republic_of_the_congo neighborOf angola +republic_of_the_congo neighborOf cameroon +republic_of_the_congo neighborOf central_african_republic +saudi_arabia neighborOf qatar +saudi_arabia neighborOf united_arab_emirates +saudi_arabia neighborOf jordan +saudi_arabia neighborOf yemen +saudi_arabia neighborOf oman +saudi_arabia neighborOf kuwait +saudi_arabia neighborOf iraq +el_salvador locatedIn central_america +el_salvador locatedIn americas +el_salvador neighborOf guatemala +el_salvador neighborOf honduras +madagascar locatedIn eastern_africa +madagascar locatedIn africa +australia locatedIn australia_and_new_zealand +australia locatedIn oceania +namibia locatedIn southern_africa +namibia locatedIn africa +namibia neighborOf zambia +namibia neighborOf angola +namibia neighborOf south_africa +namibia neighborOf botswana +tuvalu locatedIn polynesia +tuvalu locatedIn oceania +svalbard_and_jan_mayen locatedIn northern_europe +svalbard_and_jan_mayen locatedIn europe +isle_of_man locatedIn northern_europe +isle_of_man locatedIn europe +guyana neighborOf brazil +guyana neighborOf suriname +guyana neighborOf venezuela +vatican_city locatedIn southern_europe +vatican_city locatedIn europe +vatican_city neighborOf italy +british_indian_ocean_territory locatedIn eastern_africa +british_indian_ocean_territory locatedIn africa +nigeria locatedIn western_africa +nigeria locatedIn africa +nigeria neighborOf chad +nigeria neighborOf niger +nigeria neighborOf cameroon +nigeria neighborOf benin +germany neighborOf denmark +germany neighborOf netherlands +germany neighborOf poland +germany neighborOf luxembourg +germany neighborOf belgium +germany neighborOf switzerland +germany neighborOf austria +germany neighborOf france +germany neighborOf czechia +burkina_faso neighborOf togo +burkina_faso neighborOf benin +burkina_faso neighborOf niger +burkina_faso neighborOf ghana +burkina_faso neighborOf mali +burkina_faso neighborOf ivory_coast +tanzania neighborOf uganda +tanzania neighborOf mozambique +tanzania neighborOf dr_congo +tanzania neighborOf kenya +tanzania neighborOf rwanda +tanzania neighborOf zambia +tanzania neighborOf malawi +tanzania neighborOf burundi +northern_mariana_islands locatedIn micronesia +northern_mariana_islands locatedIn oceania +belize locatedIn central_america +belize locatedIn americas +belize neighborOf guatemala +belize neighborOf mexico +norway neighborOf sweden +norway neighborOf finland +norway neighborOf russia +cocos_keeling_islands locatedIn australia_and_new_zealand +cocos_keeling_islands locatedIn oceania +laos locatedIn south-eastern_asia +laos locatedIn asia +laos neighborOf china +laos neighborOf cambodia +laos neighborOf myanmar +laos neighborOf vietnam +laos neighborOf thailand +western_sahara locatedIn northern_africa +western_sahara locatedIn africa +western_sahara neighborOf algeria +western_sahara neighborOf mauritania +western_sahara neighborOf morocco +suriname locatedIn south_america +suriname locatedIn americas +suriname neighborOf brazil +suriname neighborOf french_guiana +suriname neighborOf guyana +christmas_island locatedIn australia_and_new_zealand +christmas_island locatedIn oceania +são_tomé_and_príncipe locatedIn middle_africa +são_tomé_and_príncipe locatedIn africa +egypt neighborOf libya +egypt neighborOf israel +egypt neighborOf sudan +bulgaria neighborOf macedonia +bulgaria neighborOf turkey +bulgaria neighborOf greece +bulgaria neighborOf serbia +bulgaria neighborOf romania +guinea locatedIn western_africa +guinea locatedIn africa +guinea neighborOf guinea-bissau +guinea neighborOf sierra_leone +guinea neighborOf mali +guinea neighborOf liberia +guinea neighborOf senegal +guinea neighborOf ivory_coast +spain neighborOf morocco +spain neighborOf gibraltar +spain neighborOf andorra +spain neighborOf france +spain neighborOf portugal +costa_rica locatedIn central_america +costa_rica locatedIn americas +costa_rica neighborOf panama +costa_rica neighborOf nicaragua +malta locatedIn southern_europe +malta locatedIn europe +portugal locatedIn southern_europe +portugal locatedIn europe +portugal neighborOf spain +romania locatedIn eastern_europe +romania locatedIn europe +romania neighborOf ukraine +romania neighborOf hungary +romania neighborOf moldova +romania neighborOf bulgaria +romania neighborOf serbia +san_marino locatedIn southern_europe +san_marino locatedIn europe +san_marino neighborOf italy +mauritania locatedIn western_africa +mauritania locatedIn africa +mauritania neighborOf algeria +mauritania neighborOf mali +mauritania neighborOf western_sahara +mauritania neighborOf senegal +trinidad_and_tobago locatedIn caribbean +trinidad_and_tobago locatedIn americas +bahrain locatedIn western_asia +bahrain locatedIn asia +myanmar neighborOf india +myanmar neighborOf bangladesh +myanmar neighborOf china +myanmar neighborOf laos +myanmar neighborOf thailand +iraq neighborOf turkey +iraq neighborOf saudi_arabia +iraq neighborOf iran +iraq neighborOf jordan +iraq neighborOf kuwait +iraq neighborOf syria +south_georgia locatedIn south_america +south_georgia locatedIn americas +iceland locatedIn northern_europe +iceland locatedIn europe +dr_congo locatedIn middle_africa +dr_congo locatedIn africa +dr_congo neighborOf uganda +dr_congo neighborOf tanzania +dr_congo neighborOf republic_of_the_congo +dr_congo neighborOf central_african_republic +dr_congo neighborOf angola +dr_congo neighborOf rwanda +dr_congo neighborOf south_sudan +dr_congo neighborOf zambia +dr_congo neighborOf burundi +seychelles locatedIn eastern_africa +seychelles locatedIn africa +kyrgyzstan neighborOf china +kyrgyzstan neighborOf kazakhstan +kyrgyzstan neighborOf tajikistan +kyrgyzstan neighborOf uzbekistan +botswana locatedIn southern_africa +botswana locatedIn africa +botswana neighborOf zimbabwe +botswana neighborOf namibia +botswana neighborOf zambia +botswana neighborOf south_africa +faroe_islands locatedIn northern_europe +faroe_islands locatedIn europe +jamaica locatedIn caribbean +jamaica locatedIn americas +american_samoa locatedIn polynesia +american_samoa locatedIn oceania +lesotho locatedIn southern_africa +lesotho locatedIn africa +lesotho neighborOf south_africa +sri_lanka neighborOf india +belgium locatedIn western_europe +belgium locatedIn europe +belgium neighborOf germany +belgium neighborOf luxembourg +belgium neighborOf france +belgium neighborOf netherlands +qatar locatedIn western_asia +qatar locatedIn asia +qatar neighborOf saudi_arabia +solomon_islands locatedIn melanesia +solomon_islands locatedIn oceania +syria locatedIn western_asia +syria locatedIn asia +syria neighborOf israel +syria neighborOf turkey +syria neighborOf jordan +syria neighborOf lebanon +syria neighborOf iraq +india locatedIn southern_asia +india locatedIn asia +india neighborOf afghanistan +india neighborOf bhutan +india neighborOf bangladesh +india neighborOf china +india neighborOf nepal +india neighborOf myanmar +india neighborOf pakistan +india neighborOf sri_lanka +morocco neighborOf algeria +morocco neighborOf spain +morocco neighborOf western_sahara +kenya locatedIn eastern_africa +kenya locatedIn africa +kenya neighborOf uganda +kenya neighborOf tanzania +kenya neighborOf somalia +kenya neighborOf south_sudan +kenya neighborOf ethiopia +south_sudan locatedIn middle_africa +south_sudan locatedIn africa +south_sudan neighborOf uganda +south_sudan neighborOf dr_congo +south_sudan neighborOf kenya +south_sudan neighborOf central_african_republic +south_sudan neighborOf sudan +south_sudan neighborOf ethiopia +ghana neighborOf burkina_faso +ghana neighborOf ivory_coast +ghana neighborOf togo +tajikistan locatedIn central_asia +tajikistan locatedIn asia +tajikistan neighborOf china +tajikistan neighborOf kyrgyzstan +tajikistan neighborOf afghanistan +tajikistan neighborOf uzbekistan +marshall_islands locatedIn micronesia +marshall_islands locatedIn oceania +cameroon locatedIn middle_africa +cameroon locatedIn africa +cameroon neighborOf chad +cameroon neighborOf republic_of_the_congo +cameroon neighborOf gabon +cameroon neighborOf equatorial_guinea +cameroon neighborOf central_african_republic +cameroon neighborOf nigeria +nauru locatedIn micronesia +nauru locatedIn oceania +thailand neighborOf cambodia +thailand neighborOf myanmar +thailand neighborOf laos +thailand neighborOf malaysia +sudan neighborOf chad +sudan neighborOf libya +sudan neighborOf south_sudan +sudan neighborOf eritrea +sudan neighborOf central_african_republic +sudan neighborOf egypt +sudan neighborOf ethiopia +chad locatedIn middle_africa +chad locatedIn africa +chad neighborOf libya +chad neighborOf niger +chad neighborOf south_sudan +chad neighborOf cameroon +chad neighborOf central_african_republic +chad neighborOf nigeria +vanuatu locatedIn melanesia +vanuatu locatedIn oceania +cape_verde locatedIn western_africa +cape_verde locatedIn africa +falkland_islands locatedIn south_america +falkland_islands locatedIn americas +liberia locatedIn western_africa +liberia locatedIn africa +liberia neighborOf ivory_coast +liberia neighborOf sierra_leone +liberia neighborOf guinea +cambodia locatedIn south-eastern_asia +cambodia locatedIn asia +cambodia neighborOf vietnam +cambodia neighborOf thailand +cambodia neighborOf laos +zimbabwe neighborOf zambia +zimbabwe neighborOf south_africa +zimbabwe neighborOf botswana +zimbabwe neighborOf mozambique +comoros locatedIn eastern_africa +comoros locatedIn africa +guam locatedIn micronesia +guam locatedIn oceania +bahamas locatedIn caribbean +bahamas locatedIn americas +lebanon locatedIn western_asia +lebanon locatedIn asia +lebanon neighborOf israel +lebanon neighborOf syria +sint_maarten locatedIn caribbean +sint_maarten locatedIn americas +sint_maarten neighborOf saint_martin +ethiopia locatedIn eastern_africa +ethiopia locatedIn africa +ethiopia neighborOf somalia +ethiopia neighborOf kenya +ethiopia neighborOf eritrea +ethiopia neighborOf south_sudan +ethiopia neighborOf djibouti +ethiopia neighborOf sudan +united_states_virgin_islands locatedIn caribbean +united_states_virgin_islands locatedIn americas +guinea-bissau locatedIn western_africa +guinea-bissau locatedIn africa +guinea-bissau neighborOf guinea +guinea-bissau neighborOf senegal +libya locatedIn northern_africa +libya locatedIn africa +libya neighborOf chad +libya neighborOf tunisia +libya neighborOf niger +libya neighborOf algeria +libya neighborOf egypt +libya neighborOf sudan +bhutan locatedIn southern_asia +bhutan locatedIn asia +bhutan neighborOf china +bhutan neighborOf india +macau locatedIn eastern_asia +macau locatedIn asia +macau neighborOf china +french_polynesia locatedIn polynesia +french_polynesia locatedIn oceania +somalia locatedIn eastern_africa +somalia locatedIn africa +somalia neighborOf djibouti +somalia neighborOf kenya +somalia neighborOf ethiopia +saint_barthélemy locatedIn caribbean +saint_barthélemy locatedIn americas +russia locatedIn eastern_europe +russia locatedIn europe +russia neighborOf ukraine +russia neighborOf belarus +russia neighborOf china +russia neighborOf kazakhstan +russia neighborOf norway +russia neighborOf poland +russia neighborOf azerbaijan +russia neighborOf lithuania +russia neighborOf estonia +russia neighborOf north_korea +russia neighborOf finland +russia neighborOf mongolia +russia neighborOf latvia +russia neighborOf georgia +new_zealand locatedIn australia_and_new_zealand +new_zealand locatedIn oceania +panama locatedIn central_america +panama locatedIn americas +panama neighborOf costa_rica +panama neighborOf colombia +papua_new_guinea locatedIn melanesia +papua_new_guinea locatedIn oceania +papua_new_guinea neighborOf indonesia +north_korea neighborOf china +north_korea neighborOf south_korea +north_korea neighborOf russia +latvia locatedIn northern_europe +latvia locatedIn europe +latvia neighborOf lithuania +latvia neighborOf belarus +latvia neighborOf russia +latvia neighborOf estonia +oman locatedIn western_asia +oman locatedIn asia +oman neighborOf saudi_arabia +oman neighborOf yemen +oman neighborOf united_arab_emirates +saint_pierre_and_miquelon locatedIn northern_america +saint_pierre_and_miquelon locatedIn americas +martinique locatedIn caribbean +martinique locatedIn americas +united_kingdom locatedIn northern_europe +united_kingdom locatedIn europe +united_kingdom neighborOf ireland +israel locatedIn western_asia +israel locatedIn asia +israel neighborOf lebanon +israel neighborOf egypt +israel neighborOf jordan +israel neighborOf syria +jersey locatedIn northern_europe +jersey locatedIn europe +pitcairn_islands locatedIn polynesia +pitcairn_islands locatedIn oceania +togo locatedIn western_africa +togo locatedIn africa +togo neighborOf burkina_faso +togo neighborOf ghana +togo neighborOf benin +kiribati locatedIn micronesia +kiribati locatedIn oceania +iran locatedIn southern_asia +iran locatedIn asia +iran neighborOf afghanistan +iran neighborOf turkmenistan +iran neighborOf turkey +iran neighborOf armenia +iran neighborOf azerbaijan +iran neighborOf pakistan +iran neighborOf iraq +saint_martin locatedIn caribbean +saint_martin locatedIn americas +saint_martin neighborOf sint_maarten +dominican_republic locatedIn caribbean +dominican_republic locatedIn americas +dominican_republic neighborOf haiti +denmark neighborOf germany +bermuda locatedIn northern_america +bermuda locatedIn americas +chile neighborOf argentina +chile neighborOf bolivia +chile neighborOf peru +kosovo locatedIn eastern_europe +kosovo locatedIn europe +kosovo neighborOf serbia +kosovo neighborOf albania +kosovo neighborOf macedonia +kosovo neighborOf montenegro +saint_kitts_and_nevis locatedIn caribbean +saint_kitts_and_nevis locatedIn americas +eritrea neighborOf djibouti +eritrea neighborOf sudan +eritrea neighborOf ethiopia +equatorial_guinea locatedIn middle_africa +equatorial_guinea locatedIn africa +equatorial_guinea neighborOf gabon +equatorial_guinea neighborOf cameroon +niger locatedIn western_africa +niger locatedIn africa +niger neighborOf chad +niger neighborOf libya +niger neighborOf burkina_faso +niger neighborOf benin +niger neighborOf mali +niger neighborOf algeria +niger neighborOf nigeria +anguilla locatedIn caribbean +anguilla locatedIn americas +rwanda locatedIn eastern_africa +rwanda locatedIn africa +rwanda neighborOf burundi +rwanda neighborOf tanzania +rwanda neighborOf uganda +rwanda neighborOf dr_congo +united_arab_emirates locatedIn western_asia +united_arab_emirates locatedIn asia +united_arab_emirates neighborOf oman +united_arab_emirates neighborOf saudi_arabia +estonia locatedIn northern_europe +estonia locatedIn europe +estonia neighborOf latvia +estonia neighborOf russia +greece locatedIn southern_europe +greece locatedIn europe +greece neighborOf bulgaria +greece neighborOf albania +greece neighborOf macedonia +greece neighborOf turkey +senegal locatedIn western_africa +senegal locatedIn africa +senegal neighborOf guinea-bissau +senegal neighborOf mauritania +senegal neighborOf mali +senegal neighborOf gambia +senegal neighborOf guinea +guadeloupe locatedIn caribbean +guadeloupe locatedIn americas +monaco neighborOf france +djibouti neighborOf eritrea +djibouti neighborOf somalia +djibouti neighborOf ethiopia +indonesia neighborOf papua_new_guinea +indonesia neighborOf timor-leste +indonesia neighborOf malaysia +british_virgin_islands locatedIn caribbean +british_virgin_islands locatedIn americas +cook_islands locatedIn polynesia +cook_islands locatedIn oceania +uganda locatedIn eastern_africa +uganda locatedIn africa +uganda neighborOf tanzania +uganda neighborOf dr_congo +uganda neighborOf kenya +uganda neighborOf south_sudan +uganda neighborOf rwanda +macedonia locatedIn southern_europe +macedonia locatedIn europe +macedonia neighborOf kosovo +macedonia neighborOf greece +macedonia neighborOf albania +macedonia neighborOf serbia +macedonia neighborOf bulgaria +tunisia locatedIn northern_africa +tunisia locatedIn africa +tunisia neighborOf libya +tunisia neighborOf algeria +ecuador neighborOf peru +ecuador neighborOf colombia +brazil locatedIn south_america +brazil locatedIn americas +brazil neighborOf bolivia +brazil neighborOf colombia +brazil neighborOf paraguay +brazil neighborOf uruguay +brazil neighborOf french_guiana +brazil neighborOf suriname +brazil neighborOf venezuela +brazil neighborOf argentina +brazil neighborOf guyana +brazil neighborOf peru +paraguay locatedIn south_america +paraguay locatedIn americas +paraguay neighborOf argentina +paraguay neighborOf brazil +paraguay neighborOf bolivia +finland locatedIn northern_europe +finland locatedIn europe +finland neighborOf norway +finland neighborOf sweden +finland neighborOf russia +jordan neighborOf saudi_arabia +jordan neighborOf israel +jordan neighborOf iraq +jordan neighborOf syria +timor-leste neighborOf indonesia +montenegro locatedIn southern_europe +montenegro locatedIn europe +montenegro neighborOf kosovo +montenegro neighborOf bosnia_and_herzegovina +montenegro neighborOf croatia +montenegro neighborOf serbia +montenegro neighborOf albania +peru locatedIn south_america +peru locatedIn americas +peru neighborOf ecuador +peru neighborOf bolivia +peru neighborOf chile +peru neighborOf brazil +peru neighborOf colombia +montserrat locatedIn caribbean +montserrat locatedIn americas +ukraine locatedIn eastern_europe +ukraine locatedIn europe +ukraine neighborOf slovakia +ukraine neighborOf belarus +ukraine neighborOf poland +ukraine neighborOf russia +ukraine neighborOf hungary +ukraine neighborOf moldova +ukraine neighborOf romania +dominica locatedIn caribbean +dominica locatedIn americas +turkmenistan neighborOf kazakhstan +turkmenistan neighborOf afghanistan +turkmenistan neighborOf uzbekistan +turkmenistan neighborOf iran +guernsey locatedIn northern_europe +guernsey locatedIn europe +gibraltar locatedIn southern_europe +gibraltar locatedIn europe +gibraltar neighborOf spain +switzerland locatedIn western_europe +switzerland locatedIn europe +switzerland neighborOf germany +switzerland neighborOf italy +switzerland neighborOf austria +switzerland neighborOf france +switzerland neighborOf liechtenstein +austria locatedIn western_europe +austria locatedIn europe +austria neighborOf germany +austria neighborOf slovakia +austria neighborOf slovenia +austria neighborOf italy +austria neighborOf switzerland +austria neighborOf hungary +austria neighborOf liechtenstein +austria neighborOf czechia +hungary neighborOf ukraine +hungary neighborOf slovakia +hungary neighborOf slovenia +hungary neighborOf croatia +hungary neighborOf austria +hungary neighborOf serbia +hungary neighborOf romania +malawi locatedIn eastern_africa +malawi locatedIn africa +malawi neighborOf zambia +malawi neighborOf tanzania +malawi neighborOf mozambique +hong_kong neighborOf china +liechtenstein locatedIn western_europe +liechtenstein locatedIn europe +liechtenstein neighborOf switzerland +liechtenstein neighborOf austria +barbados locatedIn caribbean +barbados locatedIn americas +georgia locatedIn western_asia +georgia locatedIn asia +georgia neighborOf armenia +georgia neighborOf azerbaijan +georgia neighborOf russia +georgia neighborOf turkey +albania locatedIn southern_europe +albania locatedIn europe +albania neighborOf montenegro +albania neighborOf macedonia +albania neighborOf kosovo +albania neighborOf greece +kuwait locatedIn western_asia +kuwait locatedIn asia +kuwait neighborOf saudi_arabia +kuwait neighborOf iraq +south_africa locatedIn southern_africa +south_africa locatedIn africa +south_africa neighborOf mozambique +south_africa neighborOf botswana +south_africa neighborOf swaziland +south_africa neighborOf zimbabwe +south_africa neighborOf namibia +south_africa neighborOf lesotho +haiti locatedIn caribbean +haiti locatedIn americas +haiti neighborOf dominican_republic +afghanistan locatedIn southern_asia +afghanistan locatedIn asia +afghanistan neighborOf turkmenistan +afghanistan neighborOf china +afghanistan neighborOf tajikistan +afghanistan neighborOf uzbekistan +afghanistan neighborOf iran +afghanistan neighborOf pakistan +singapore locatedIn south-eastern_asia +singapore locatedIn asia +benin locatedIn western_africa +benin locatedIn africa +benin neighborOf niger +benin neighborOf burkina_faso +benin neighborOf togo +benin neighborOf nigeria +åland_islands locatedIn northern_europe +åland_islands locatedIn europe +croatia locatedIn southern_europe +croatia locatedIn europe +croatia neighborOf slovenia +croatia neighborOf bosnia_and_herzegovina +croatia neighborOf hungary +croatia neighborOf serbia +croatia neighborOf montenegro +sweden locatedIn northern_europe +sweden locatedIn europe +sweden neighborOf norway +sweden neighborOf finland +mexico neighborOf belize +mexico neighborOf united_states +mexico neighborOf guatemala +greenland locatedIn northern_america +greenland locatedIn americas +norfolk_island locatedIn australia_and_new_zealand +norfolk_island locatedIn oceania +nepal locatedIn southern_asia +nepal locatedIn asia +nepal neighborOf china +nepal neighborOf india +guatemala neighborOf belize +guatemala neighborOf el_salvador +guatemala neighborOf mexico +guatemala neighborOf honduras +south_korea locatedIn eastern_asia +south_korea locatedIn asia +south_korea neighborOf north_korea +moldova locatedIn eastern_europe +moldova locatedIn europe +moldova neighborOf ukraine +moldova neighborOf romania +mauritius locatedIn eastern_africa +mauritius locatedIn africa +belarus neighborOf ukraine +belarus neighborOf poland +belarus neighborOf lithuania +belarus neighborOf russia +belarus neighborOf latvia +bangladesh neighborOf myanmar +bangladesh neighborOf india +malaysia locatedIn south-eastern_asia +malaysia locatedIn asia +malaysia neighborOf thailand +malaysia neighborOf indonesia +malaysia neighborOf brunei +bosnia_and_herzegovina locatedIn southern_europe +bosnia_and_herzegovina locatedIn europe +bosnia_and_herzegovina neighborOf serbia +bosnia_and_herzegovina neighborOf croatia +bosnia_and_herzegovina neighborOf montenegro +luxembourg locatedIn western_europe +luxembourg locatedIn europe +luxembourg neighborOf germany +luxembourg neighborOf belgium +luxembourg neighborOf france +italy locatedIn southern_europe +italy locatedIn europe +italy neighborOf slovenia +italy neighborOf switzerland +italy neighborOf austria +italy neighborOf france +italy neighborOf vatican_city +italy neighborOf san_marino +azerbaijan locatedIn western_asia +azerbaijan locatedIn asia +azerbaijan neighborOf turkey +azerbaijan neighborOf armenia +azerbaijan neighborOf russia +azerbaijan neighborOf iran +azerbaijan neighborOf georgia +honduras locatedIn central_america +honduras locatedIn americas +honduras neighborOf guatemala +honduras neighborOf nicaragua +honduras neighborOf el_salvador +mali locatedIn western_africa +mali locatedIn africa +mali neighborOf burkina_faso +mali neighborOf guinea +mali neighborOf mauritania +mali neighborOf niger +mali neighborOf senegal +mali neighborOf algeria +mali neighborOf ivory_coast +taiwan locatedIn eastern_asia +taiwan locatedIn asia +algeria locatedIn northern_africa +algeria locatedIn africa +algeria neighborOf libya +algeria neighborOf tunisia +algeria neighborOf mauritania +algeria neighborOf morocco +algeria neighborOf niger +algeria neighborOf mali +algeria neighborOf western_sahara +french_guiana neighborOf brazil +french_guiana neighborOf suriname +yemen locatedIn western_asia +yemen locatedIn asia +yemen neighborOf oman +yemen neighborOf saudi_arabia +puerto_rico locatedIn caribbean +puerto_rico locatedIn americas +saint_vincent_and_the_grenadines locatedIn caribbean +saint_vincent_and_the_grenadines locatedIn americas +venezuela neighborOf brazil +venezuela neighborOf guyana +venezuela neighborOf colombia +grenada locatedIn caribbean +grenada locatedIn americas +united_states neighborOf canada +united_states neighborOf mexico +tokelau locatedIn polynesia +tokelau locatedIn oceania +slovenia locatedIn southern_europe +slovenia locatedIn europe +slovenia neighborOf austria +slovenia neighborOf croatia +slovenia neighborOf italy +slovenia neighborOf hungary +philippines locatedIn south-eastern_asia +philippines locatedIn asia +micronesia locatedIn micronesia +micronesia locatedIn oceania +china locatedIn eastern_asia +china locatedIn asia +china neighborOf afghanistan +china neighborOf bhutan +china neighborOf macau +china neighborOf india +china neighborOf kazakhstan +china neighborOf kyrgyzstan +china neighborOf tajikistan +china neighborOf laos +china neighborOf russia +china neighborOf north_korea +china neighborOf myanmar +china neighborOf pakistan +china neighborOf mongolia +china neighborOf hong_kong +china neighborOf vietnam +gabon locatedIn middle_africa +gabon locatedIn africa +gabon neighborOf equatorial_guinea +gabon neighborOf republic_of_the_congo +gabon neighborOf cameroon +united_states_minor_outlying_islands locatedIn northern_america +united_states_minor_outlying_islands locatedIn americas +andorra locatedIn southern_europe +andorra locatedIn europe +andorra neighborOf spain +andorra neighborOf france +samoa locatedIn polynesia +samoa locatedIn oceania +gambia locatedIn western_africa +gambia locatedIn africa +gambia neighborOf senegal +palestine locatedIn western_asia +palestine locatedIn asia +palestine neighborOf jordan +palestine neighborOf egypt +palestine neighborOf israel +réunion locatedIn eastern_africa +réunion locatedIn africa +france locatedIn western_europe +france locatedIn europe +france neighborOf germany +france neighborOf luxembourg +france neighborOf italy +france neighborOf andorra +france neighborOf switzerland +france neighborOf monaco +france neighborOf belgium +france neighborOf spain +mongolia locatedIn eastern_asia +mongolia locatedIn asia +mongolia neighborOf china +mongolia neighborOf russia +lithuania locatedIn northern_europe +lithuania locatedIn europe +lithuania neighborOf poland +lithuania neighborOf latvia +lithuania neighborOf belarus +lithuania neighborOf russia +cayman_islands locatedIn caribbean +cayman_islands locatedIn americas +saint_lucia locatedIn caribbean +saint_lucia locatedIn americas +curaçao locatedIn caribbean +curaçao locatedIn americas +caribbean locatedIn americas +southern_asia locatedIn asia +middle_africa locatedIn africa +northern_europe locatedIn europe +southern_europe locatedIn europe +western_asia locatedIn asia +south_america locatedIn americas +polynesia locatedIn oceania +australia_and_new_zealand locatedIn oceania +western_europe locatedIn europe +eastern_africa locatedIn africa +western_africa locatedIn africa +eastern_europe locatedIn europe +central_america locatedIn americas +northern_america locatedIn americas +south-eastern_asia locatedIn asia +southern_africa locatedIn africa +eastern_asia locatedIn asia +northern_africa locatedIn africa +melanesia locatedIn oceania +micronesia locatedIn oceania +central_asia locatedIn asia +central_europe locatedIn europe \ No newline at end of file diff --git a/deepsoftlog/experiments/wiki_countries/data/raw/countries_S3.tsv b/deepsoftlog/experiments/wiki_countries/data/raw/countries_S3.tsv new file mode 100644 index 0000000..7920dbd --- /dev/null +++ b/deepsoftlog/experiments/wiki_countries/data/raw/countries_S3.tsv @@ -0,0 +1,979 @@ +palau locatedIn micronesia +palau locatedIn oceania +maldives locatedIn southern_asia +maldives locatedIn asia +brunei locatedIn south-eastern_asia +brunei locatedIn asia +brunei neighborOf malaysia +japan locatedIn eastern_asia +japan locatedIn asia +netherlands neighborOf germany +netherlands neighborOf belgium +turkey neighborOf armenia +turkey neighborOf azerbaijan +turkey neighborOf iran +turkey neighborOf greece +turkey neighborOf georgia +turkey neighborOf bulgaria +turkey neighborOf iraq +turkey neighborOf syria +angola locatedIn middle_africa +angola neighborOf dr_congo +angola neighborOf namibia +angola neighborOf zambia +angola neighborOf republic_of_the_congo +armenia locatedIn western_asia +armenia neighborOf georgia +armenia neighborOf azerbaijan +armenia neighborOf iran +armenia neighborOf turkey +antigua_and_barbuda locatedIn caribbean +antigua_and_barbuda locatedIn americas +swaziland locatedIn southern_africa +swaziland neighborOf south_africa +swaziland neighborOf mozambique +wallis_and_futuna locatedIn polynesia +wallis_and_futuna locatedIn oceania +uruguay locatedIn south_america +uruguay locatedIn americas +uruguay neighborOf argentina +uruguay neighborOf brazil +zambia locatedIn eastern_africa +zambia neighborOf tanzania +zambia neighborOf mozambique +zambia neighborOf dr_congo +zambia neighborOf angola +zambia neighborOf botswana +zambia neighborOf zimbabwe +zambia neighborOf namibia +zambia neighborOf malawi +cyprus locatedIn eastern_europe +cyprus locatedIn europe +cyprus neighborOf united_kingdom +ireland locatedIn northern_europe +ireland locatedIn europe +ireland neighborOf united_kingdom +burundi locatedIn eastern_africa +burundi neighborOf dr_congo +burundi neighborOf rwanda +burundi neighborOf tanzania +central_african_republic locatedIn middle_africa +central_african_republic neighborOf chad +central_african_republic neighborOf republic_of_the_congo +central_african_republic neighborOf dr_congo +central_african_republic neighborOf south_sudan +central_african_republic neighborOf cameroon +central_african_republic neighborOf sudan +tonga locatedIn polynesia +tonga locatedIn oceania +ivory_coast locatedIn western_africa +ivory_coast neighborOf burkina_faso +ivory_coast neighborOf ghana +ivory_coast neighborOf liberia +ivory_coast neighborOf mali +ivory_coast neighborOf guinea +sierra_leone neighborOf liberia +sierra_leone neighborOf guinea +mayotte locatedIn eastern_africa +mayotte locatedIn africa +poland neighborOf germany +poland neighborOf ukraine +poland neighborOf slovakia +poland neighborOf belarus +poland neighborOf russia +poland neighborOf lithuania +poland neighborOf czechia +kazakhstan locatedIn central_asia +kazakhstan neighborOf turkmenistan +kazakhstan neighborOf china +kazakhstan neighborOf kyrgyzstan +kazakhstan neighborOf uzbekistan +kazakhstan neighborOf russia +uzbekistan locatedIn central_asia +uzbekistan neighborOf afghanistan +uzbekistan neighborOf turkmenistan +uzbekistan neighborOf kazakhstan +uzbekistan neighborOf kyrgyzstan +uzbekistan neighborOf tajikistan +turks_and_caicos_islands locatedIn caribbean +turks_and_caicos_islands locatedIn americas +new_caledonia locatedIn melanesia +new_caledonia locatedIn oceania +pakistan neighborOf china +pakistan neighborOf afghanistan +pakistan neighborOf iran +pakistan neighborOf india +argentina locatedIn south_america +argentina neighborOf bolivia +argentina neighborOf chile +argentina neighborOf brazil +argentina neighborOf paraguay +argentina neighborOf uruguay +cuba locatedIn caribbean +cuba locatedIn americas +serbia neighborOf macedonia +serbia neighborOf montenegro +serbia neighborOf kosovo +serbia neighborOf bosnia_and_herzegovina +serbia neighborOf croatia +serbia neighborOf hungary +serbia neighborOf bulgaria +serbia neighborOf romania +czechia locatedIn eastern_europe +czechia neighborOf germany +czechia neighborOf austria +czechia neighborOf poland +czechia neighborOf slovakia +nicaragua neighborOf honduras +nicaragua neighborOf costa_rica +vietnam locatedIn south-eastern_asia +vietnam locatedIn asia +vietnam neighborOf cambodia +vietnam neighborOf laos +vietnam neighborOf china +niue locatedIn polynesia +niue locatedIn oceania +canada locatedIn northern_america +canada neighborOf united_states +slovakia neighborOf ukraine +slovakia neighborOf poland +slovakia neighborOf austria +slovakia neighborOf hungary +slovakia neighborOf czechia +mozambique neighborOf tanzania +mozambique neighborOf swaziland +mozambique neighborOf zimbabwe +mozambique neighborOf zambia +mozambique neighborOf malawi +mozambique neighborOf south_africa +aruba locatedIn caribbean +aruba locatedIn americas +bolivia locatedIn south_america +bolivia neighborOf chile +bolivia neighborOf brazil +bolivia neighborOf paraguay +bolivia neighborOf argentina +bolivia neighborOf peru +colombia locatedIn south_america +colombia neighborOf ecuador +colombia neighborOf brazil +colombia neighborOf panama +colombia neighborOf venezuela +colombia neighborOf peru +fiji locatedIn melanesia +fiji locatedIn oceania +republic_of_the_congo neighborOf gabon +republic_of_the_congo neighborOf dr_congo +republic_of_the_congo neighborOf angola +republic_of_the_congo neighborOf cameroon +republic_of_the_congo neighborOf central_african_republic +saudi_arabia neighborOf qatar +saudi_arabia neighborOf united_arab_emirates +saudi_arabia neighborOf jordan +saudi_arabia neighborOf yemen +saudi_arabia neighborOf oman +saudi_arabia neighborOf kuwait +saudi_arabia neighborOf iraq +el_salvador locatedIn central_america +el_salvador neighborOf guatemala +el_salvador neighborOf honduras +madagascar locatedIn eastern_africa +madagascar locatedIn africa +australia locatedIn australia_and_new_zealand +australia locatedIn oceania +namibia locatedIn southern_africa +namibia locatedIn africa +namibia neighborOf zambia +namibia neighborOf angola +namibia neighborOf south_africa +namibia neighborOf botswana +tuvalu locatedIn polynesia +tuvalu locatedIn oceania +svalbard_and_jan_mayen locatedIn northern_europe +svalbard_and_jan_mayen locatedIn europe +isle_of_man locatedIn northern_europe +isle_of_man locatedIn europe +guyana neighborOf brazil +guyana neighborOf suriname +guyana neighborOf venezuela +vatican_city locatedIn southern_europe +vatican_city locatedIn europe +vatican_city neighborOf italy +british_indian_ocean_territory locatedIn eastern_africa +british_indian_ocean_territory locatedIn africa +nigeria locatedIn western_africa +nigeria locatedIn africa +nigeria neighborOf chad +nigeria neighborOf niger +nigeria neighborOf cameroon +nigeria neighborOf benin +germany neighborOf denmark +germany neighborOf netherlands +germany neighborOf poland +germany neighborOf luxembourg +germany neighborOf belgium +germany neighborOf switzerland +germany neighborOf austria +germany neighborOf france +germany neighborOf czechia +burkina_faso neighborOf togo +burkina_faso neighborOf benin +burkina_faso neighborOf niger +burkina_faso neighborOf ghana +burkina_faso neighborOf mali +burkina_faso neighborOf ivory_coast +tanzania neighborOf uganda +tanzania neighborOf mozambique +tanzania neighborOf dr_congo +tanzania neighborOf kenya +tanzania neighborOf rwanda +tanzania neighborOf zambia +tanzania neighborOf malawi +tanzania neighborOf burundi +northern_mariana_islands locatedIn micronesia +northern_mariana_islands locatedIn oceania +belize locatedIn central_america +belize neighborOf guatemala +belize neighborOf mexico +norway neighborOf sweden +norway neighborOf finland +norway neighborOf russia +cocos_keeling_islands locatedIn australia_and_new_zealand +cocos_keeling_islands locatedIn oceania +laos locatedIn south-eastern_asia +laos neighborOf china +laos neighborOf cambodia +laos neighborOf myanmar +laos neighborOf vietnam +laos neighborOf thailand +western_sahara locatedIn northern_africa +western_sahara neighborOf algeria +western_sahara neighborOf mauritania +western_sahara neighborOf morocco +suriname locatedIn south_america +suriname neighborOf brazil +suriname neighborOf french_guiana +suriname neighborOf guyana +christmas_island locatedIn australia_and_new_zealand +christmas_island locatedIn oceania +são_tomé_and_príncipe locatedIn middle_africa +são_tomé_and_príncipe locatedIn africa +egypt neighborOf libya +egypt neighborOf israel +egypt neighborOf sudan +bulgaria neighborOf macedonia +bulgaria neighborOf turkey +bulgaria neighborOf greece +bulgaria neighborOf serbia +bulgaria neighborOf romania +guinea locatedIn western_africa +guinea neighborOf guinea-bissau +guinea neighborOf sierra_leone +guinea neighborOf mali +guinea neighborOf liberia +guinea neighborOf senegal +guinea neighborOf ivory_coast +spain neighborOf morocco +spain neighborOf gibraltar +spain neighborOf andorra +spain neighborOf france +spain neighborOf portugal +costa_rica locatedIn central_america +costa_rica neighborOf panama +costa_rica neighborOf nicaragua +malta locatedIn southern_europe +malta locatedIn europe +portugal locatedIn southern_europe +portugal neighborOf spain +romania locatedIn eastern_europe +romania neighborOf ukraine +romania neighborOf hungary +romania neighborOf moldova +romania neighborOf bulgaria +romania neighborOf serbia +san_marino locatedIn southern_europe +san_marino locatedIn europe +san_marino neighborOf italy +mauritania locatedIn western_africa +mauritania locatedIn africa +mauritania neighborOf algeria +mauritania neighborOf mali +mauritania neighborOf western_sahara +mauritania neighborOf senegal +trinidad_and_tobago locatedIn caribbean +trinidad_and_tobago locatedIn americas +bahrain locatedIn western_asia +bahrain locatedIn asia +myanmar neighborOf india +myanmar neighborOf bangladesh +myanmar neighborOf china +myanmar neighborOf laos +myanmar neighborOf thailand +iraq neighborOf turkey +iraq neighborOf saudi_arabia +iraq neighborOf iran +iraq neighborOf jordan +iraq neighborOf kuwait +iraq neighborOf syria +south_georgia locatedIn south_america +south_georgia locatedIn americas +iceland locatedIn northern_europe +iceland locatedIn europe +dr_congo locatedIn middle_africa +dr_congo neighborOf uganda +dr_congo neighborOf tanzania +dr_congo neighborOf republic_of_the_congo +dr_congo neighborOf central_african_republic +dr_congo neighborOf angola +dr_congo neighborOf rwanda +dr_congo neighborOf south_sudan +dr_congo neighborOf zambia +dr_congo neighborOf burundi +seychelles locatedIn eastern_africa +seychelles locatedIn africa +kyrgyzstan neighborOf china +kyrgyzstan neighborOf kazakhstan +kyrgyzstan neighborOf tajikistan +kyrgyzstan neighborOf uzbekistan +botswana locatedIn southern_africa +botswana neighborOf zimbabwe +botswana neighborOf namibia +botswana neighborOf zambia +botswana neighborOf south_africa +faroe_islands locatedIn northern_europe +faroe_islands locatedIn europe +jamaica locatedIn caribbean +jamaica locatedIn americas +american_samoa locatedIn polynesia +american_samoa locatedIn oceania +lesotho locatedIn southern_africa +lesotho locatedIn africa +lesotho neighborOf south_africa +sri_lanka neighborOf india +belgium locatedIn western_europe +belgium neighborOf germany +belgium neighborOf luxembourg +belgium neighborOf france +belgium neighborOf netherlands +qatar locatedIn western_asia +qatar neighborOf saudi_arabia +solomon_islands locatedIn melanesia +solomon_islands locatedIn oceania +syria locatedIn western_asia +syria neighborOf israel +syria neighborOf turkey +syria neighborOf jordan +syria neighborOf lebanon +syria neighborOf iraq +india locatedIn southern_asia +india neighborOf afghanistan +india neighborOf bhutan +india neighborOf bangladesh +india neighborOf china +india neighborOf nepal +india neighborOf myanmar +india neighborOf pakistan +india neighborOf sri_lanka +morocco neighborOf algeria +morocco neighborOf spain +morocco neighborOf western_sahara +kenya locatedIn eastern_africa +kenya neighborOf uganda +kenya neighborOf tanzania +kenya neighborOf somalia +kenya neighborOf south_sudan +kenya neighborOf ethiopia +south_sudan locatedIn middle_africa +south_sudan neighborOf uganda +south_sudan neighborOf dr_congo +south_sudan neighborOf kenya +south_sudan neighborOf central_african_republic +south_sudan neighborOf sudan +south_sudan neighborOf ethiopia +ghana neighborOf burkina_faso +ghana neighborOf ivory_coast +ghana neighborOf togo +tajikistan locatedIn central_asia +tajikistan neighborOf china +tajikistan neighborOf kyrgyzstan +tajikistan neighborOf afghanistan +tajikistan neighborOf uzbekistan +marshall_islands locatedIn micronesia +marshall_islands locatedIn oceania +cameroon locatedIn middle_africa +cameroon neighborOf chad +cameroon neighborOf republic_of_the_congo +cameroon neighborOf gabon +cameroon neighborOf equatorial_guinea +cameroon neighborOf central_african_republic +cameroon neighborOf nigeria +nauru locatedIn micronesia +nauru locatedIn oceania +thailand neighborOf cambodia +thailand neighborOf myanmar +thailand neighborOf laos +thailand neighborOf malaysia +sudan neighborOf chad +sudan neighborOf libya +sudan neighborOf south_sudan +sudan neighborOf eritrea +sudan neighborOf central_african_republic +sudan neighborOf egypt +sudan neighborOf ethiopia +chad locatedIn middle_africa +chad neighborOf libya +chad neighborOf niger +chad neighborOf south_sudan +chad neighborOf cameroon +chad neighborOf central_african_republic +chad neighborOf nigeria +vanuatu locatedIn melanesia +vanuatu locatedIn oceania +cape_verde locatedIn western_africa +cape_verde locatedIn africa +falkland_islands locatedIn south_america +falkland_islands locatedIn americas +liberia locatedIn western_africa +liberia neighborOf ivory_coast +liberia neighborOf sierra_leone +liberia neighborOf guinea +cambodia locatedIn south-eastern_asia +cambodia neighborOf vietnam +cambodia neighborOf thailand +cambodia neighborOf laos +zimbabwe neighborOf zambia +zimbabwe neighborOf south_africa +zimbabwe neighborOf botswana +zimbabwe neighborOf mozambique +comoros locatedIn eastern_africa +comoros locatedIn africa +guam locatedIn micronesia +guam locatedIn oceania +bahamas locatedIn caribbean +bahamas locatedIn americas +lebanon locatedIn western_asia +lebanon locatedIn asia +lebanon neighborOf israel +lebanon neighborOf syria +sint_maarten locatedIn caribbean +sint_maarten locatedIn americas +sint_maarten neighborOf saint_martin +ethiopia locatedIn eastern_africa +ethiopia neighborOf somalia +ethiopia neighborOf kenya +ethiopia neighborOf eritrea +ethiopia neighborOf south_sudan +ethiopia neighborOf djibouti +ethiopia neighborOf sudan +united_states_virgin_islands locatedIn caribbean +united_states_virgin_islands locatedIn americas +guinea-bissau locatedIn western_africa +guinea-bissau locatedIn africa +guinea-bissau neighborOf guinea +guinea-bissau neighborOf senegal +libya locatedIn northern_africa +libya neighborOf chad +libya neighborOf tunisia +libya neighborOf niger +libya neighborOf algeria +libya neighborOf egypt +libya neighborOf sudan +bhutan locatedIn southern_asia +bhutan locatedIn asia +bhutan neighborOf china +bhutan neighborOf india +macau locatedIn eastern_asia +macau locatedIn asia +macau neighborOf china +french_polynesia locatedIn polynesia +french_polynesia locatedIn oceania +somalia locatedIn eastern_africa +somalia neighborOf djibouti +somalia neighborOf kenya +somalia neighborOf ethiopia +saint_barthélemy locatedIn caribbean +saint_barthélemy locatedIn americas +russia locatedIn eastern_europe +russia neighborOf ukraine +russia neighborOf belarus +russia neighborOf china +russia neighborOf kazakhstan +russia neighborOf norway +russia neighborOf poland +russia neighborOf azerbaijan +russia neighborOf lithuania +russia neighborOf estonia +russia neighborOf north_korea +russia neighborOf finland +russia neighborOf mongolia +russia neighborOf latvia +russia neighborOf georgia +new_zealand locatedIn australia_and_new_zealand +new_zealand locatedIn oceania +panama locatedIn central_america +panama locatedIn americas +panama neighborOf costa_rica +panama neighborOf colombia +papua_new_guinea locatedIn melanesia +papua_new_guinea neighborOf indonesia +north_korea neighborOf china +north_korea neighborOf south_korea +north_korea neighborOf russia +latvia locatedIn northern_europe +latvia neighborOf lithuania +latvia neighborOf belarus +latvia neighborOf russia +latvia neighborOf estonia +oman locatedIn western_asia +oman neighborOf saudi_arabia +oman neighborOf yemen +oman neighborOf united_arab_emirates +saint_pierre_and_miquelon locatedIn northern_america +saint_pierre_and_miquelon locatedIn americas +martinique locatedIn caribbean +martinique locatedIn americas +united_kingdom locatedIn northern_europe +united_kingdom locatedIn europe +united_kingdom neighborOf ireland +israel locatedIn western_asia +israel neighborOf lebanon +israel neighborOf egypt +israel neighborOf jordan +israel neighborOf syria +jersey locatedIn northern_europe +jersey locatedIn europe +pitcairn_islands locatedIn polynesia +pitcairn_islands locatedIn oceania +togo locatedIn western_africa +togo neighborOf burkina_faso +togo neighborOf ghana +togo neighborOf benin +kiribati locatedIn micronesia +kiribati locatedIn oceania +iran locatedIn southern_asia +iran neighborOf afghanistan +iran neighborOf turkmenistan +iran neighborOf turkey +iran neighborOf armenia +iran neighborOf azerbaijan +iran neighborOf pakistan +iran neighborOf iraq +saint_martin locatedIn caribbean +saint_martin locatedIn americas +saint_martin neighborOf sint_maarten +dominican_republic locatedIn caribbean +dominican_republic locatedIn americas +dominican_republic neighborOf haiti +denmark neighborOf germany +bermuda locatedIn northern_america +bermuda locatedIn americas +chile neighborOf argentina +chile neighborOf bolivia +chile neighborOf peru +kosovo locatedIn eastern_europe +kosovo neighborOf serbia +kosovo neighborOf albania +kosovo neighborOf macedonia +kosovo neighborOf montenegro +saint_kitts_and_nevis locatedIn caribbean +saint_kitts_and_nevis locatedIn americas +eritrea neighborOf djibouti +eritrea neighborOf sudan +eritrea neighborOf ethiopia +equatorial_guinea locatedIn middle_africa +equatorial_guinea locatedIn africa +equatorial_guinea neighborOf gabon +equatorial_guinea neighborOf cameroon +niger locatedIn western_africa +niger neighborOf chad +niger neighborOf libya +niger neighborOf burkina_faso +niger neighborOf benin +niger neighborOf mali +niger neighborOf algeria +niger neighborOf nigeria +anguilla locatedIn caribbean +anguilla locatedIn americas +rwanda locatedIn eastern_africa +rwanda neighborOf burundi +rwanda neighborOf tanzania +rwanda neighborOf uganda +rwanda neighborOf dr_congo +united_arab_emirates locatedIn western_asia +united_arab_emirates neighborOf oman +united_arab_emirates neighborOf saudi_arabia +estonia locatedIn northern_europe +estonia locatedIn europe +estonia neighborOf latvia +estonia neighborOf russia +greece locatedIn southern_europe +greece neighborOf bulgaria +greece neighborOf albania +greece neighborOf macedonia +greece neighborOf turkey +senegal locatedIn western_africa +senegal locatedIn africa +senegal neighborOf guinea-bissau +senegal neighborOf mauritania +senegal neighborOf mali +senegal neighborOf gambia +senegal neighborOf guinea +guadeloupe locatedIn caribbean +guadeloupe locatedIn americas +monaco neighborOf france +djibouti neighborOf eritrea +djibouti neighborOf somalia +djibouti neighborOf ethiopia +indonesia neighborOf papua_new_guinea +indonesia neighborOf timor-leste +indonesia neighborOf malaysia +british_virgin_islands locatedIn caribbean +british_virgin_islands locatedIn americas +cook_islands locatedIn polynesia +cook_islands locatedIn oceania +uganda locatedIn eastern_africa +uganda neighborOf tanzania +uganda neighborOf dr_congo +uganda neighborOf kenya +uganda neighborOf south_sudan +uganda neighborOf rwanda +macedonia locatedIn southern_europe +macedonia neighborOf kosovo +macedonia neighborOf greece +macedonia neighborOf albania +macedonia neighborOf serbia +macedonia neighborOf bulgaria +tunisia locatedIn northern_africa +tunisia locatedIn africa +tunisia neighborOf libya +tunisia neighborOf algeria +ecuador neighborOf peru +ecuador neighborOf colombia +brazil locatedIn south_america +brazil neighborOf bolivia +brazil neighborOf colombia +brazil neighborOf paraguay +brazil neighborOf uruguay +brazil neighborOf french_guiana +brazil neighborOf suriname +brazil neighborOf venezuela +brazil neighborOf argentina +brazil neighborOf guyana +brazil neighborOf peru +paraguay locatedIn south_america +paraguay locatedIn americas +paraguay neighborOf argentina +paraguay neighborOf brazil +paraguay neighborOf bolivia +finland locatedIn northern_europe +finland neighborOf norway +finland neighborOf sweden +finland neighborOf russia +jordan neighborOf saudi_arabia +jordan neighborOf israel +jordan neighborOf iraq +jordan neighborOf syria +timor-leste neighborOf indonesia +montenegro locatedIn southern_europe +montenegro neighborOf kosovo +montenegro neighborOf bosnia_and_herzegovina +montenegro neighborOf croatia +montenegro neighborOf serbia +montenegro neighborOf albania +peru locatedIn south_america +peru neighborOf ecuador +peru neighborOf bolivia +peru neighborOf chile +peru neighborOf brazil +peru neighborOf colombia +montserrat locatedIn caribbean +montserrat locatedIn americas +ukraine locatedIn eastern_europe +ukraine neighborOf slovakia +ukraine neighborOf belarus +ukraine neighborOf poland +ukraine neighborOf russia +ukraine neighborOf hungary +ukraine neighborOf moldova +ukraine neighborOf romania +dominica locatedIn caribbean +dominica locatedIn americas +turkmenistan neighborOf kazakhstan +turkmenistan neighborOf afghanistan +turkmenistan neighborOf uzbekistan +turkmenistan neighborOf iran +guernsey locatedIn northern_europe +guernsey locatedIn europe +gibraltar locatedIn southern_europe +gibraltar neighborOf spain +switzerland locatedIn western_europe +switzerland neighborOf germany +switzerland neighborOf italy +switzerland neighborOf austria +switzerland neighborOf france +switzerland neighborOf liechtenstein +austria locatedIn western_europe +austria neighborOf germany +austria neighborOf slovakia +austria neighborOf slovenia +austria neighborOf italy +austria neighborOf switzerland +austria neighborOf hungary +austria neighborOf liechtenstein +austria neighborOf czechia +hungary neighborOf ukraine +hungary neighborOf slovakia +hungary neighborOf slovenia +hungary neighborOf croatia +hungary neighborOf austria +hungary neighborOf serbia +hungary neighborOf romania +malawi locatedIn eastern_africa +malawi neighborOf zambia +malawi neighborOf tanzania +malawi neighborOf mozambique +hong_kong neighborOf china +liechtenstein locatedIn western_europe +liechtenstein locatedIn europe +liechtenstein neighborOf switzerland +liechtenstein neighborOf austria +barbados locatedIn caribbean +barbados locatedIn americas +georgia locatedIn western_asia +georgia neighborOf armenia +georgia neighborOf azerbaijan +georgia neighborOf russia +georgia neighborOf turkey +albania locatedIn southern_europe +albania locatedIn europe +albania neighborOf montenegro +albania neighborOf macedonia +albania neighborOf kosovo +albania neighborOf greece +kuwait locatedIn western_asia +kuwait neighborOf saudi_arabia +kuwait neighborOf iraq +south_africa locatedIn southern_africa +south_africa neighborOf mozambique +south_africa neighborOf botswana +south_africa neighborOf swaziland +south_africa neighborOf zimbabwe +south_africa neighborOf namibia +south_africa neighborOf lesotho +haiti locatedIn caribbean +haiti locatedIn americas +haiti neighborOf dominican_republic +afghanistan locatedIn southern_asia +afghanistan neighborOf turkmenistan +afghanistan neighborOf china +afghanistan neighborOf tajikistan +afghanistan neighborOf uzbekistan +afghanistan neighborOf iran +afghanistan neighborOf pakistan +singapore locatedIn south-eastern_asia +singapore locatedIn asia +benin locatedIn western_africa +benin neighborOf niger +benin neighborOf burkina_faso +benin neighborOf togo +benin neighborOf nigeria +åland_islands locatedIn northern_europe +åland_islands locatedIn europe +croatia locatedIn southern_europe +croatia neighborOf slovenia +croatia neighborOf bosnia_and_herzegovina +croatia neighborOf hungary +croatia neighborOf serbia +croatia neighborOf montenegro +sweden locatedIn northern_europe +sweden neighborOf norway +sweden neighborOf finland +mexico neighborOf belize +mexico neighborOf united_states +mexico neighborOf guatemala +greenland locatedIn northern_america +greenland locatedIn americas +norfolk_island locatedIn australia_and_new_zealand +norfolk_island locatedIn oceania +nepal locatedIn southern_asia +nepal locatedIn asia +nepal neighborOf china +nepal neighborOf india +guatemala neighborOf belize +guatemala neighborOf el_salvador +guatemala neighborOf mexico +guatemala neighborOf honduras +south_korea locatedIn eastern_asia +south_korea neighborOf north_korea +moldova locatedIn eastern_europe +moldova locatedIn europe +moldova neighborOf ukraine +moldova neighborOf romania +mauritius locatedIn eastern_africa +mauritius locatedIn africa +belarus neighborOf ukraine +belarus neighborOf poland +belarus neighborOf lithuania +belarus neighborOf russia +belarus neighborOf latvia +bangladesh neighborOf myanmar +bangladesh neighborOf india +malaysia locatedIn south-eastern_asia +malaysia neighborOf thailand +malaysia neighborOf indonesia +malaysia neighborOf brunei +bosnia_and_herzegovina locatedIn southern_europe +bosnia_and_herzegovina neighborOf serbia +bosnia_and_herzegovina neighborOf croatia +bosnia_and_herzegovina neighborOf montenegro +luxembourg locatedIn western_europe +luxembourg neighborOf germany +luxembourg neighborOf belgium +luxembourg neighborOf france +italy locatedIn southern_europe +italy locatedIn europe +italy neighborOf slovenia +italy neighborOf switzerland +italy neighborOf austria +italy neighborOf france +italy neighborOf vatican_city +italy neighborOf san_marino +azerbaijan locatedIn western_asia +azerbaijan neighborOf turkey +azerbaijan neighborOf armenia +azerbaijan neighborOf russia +azerbaijan neighborOf iran +azerbaijan neighborOf georgia +honduras locatedIn central_america +honduras neighborOf guatemala +honduras neighborOf nicaragua +honduras neighborOf el_salvador +mali locatedIn western_africa +mali neighborOf burkina_faso +mali neighborOf guinea +mali neighborOf mauritania +mali neighborOf niger +mali neighborOf senegal +mali neighborOf algeria +mali neighborOf ivory_coast +taiwan locatedIn eastern_asia +taiwan locatedIn asia +algeria locatedIn northern_africa +algeria neighborOf libya +algeria neighborOf tunisia +algeria neighborOf mauritania +algeria neighborOf morocco +algeria neighborOf niger +algeria neighborOf mali +algeria neighborOf western_sahara +french_guiana neighborOf brazil +french_guiana neighborOf suriname +yemen locatedIn western_asia +yemen neighborOf oman +yemen neighborOf saudi_arabia +puerto_rico locatedIn caribbean +puerto_rico locatedIn americas +saint_vincent_and_the_grenadines locatedIn caribbean +saint_vincent_and_the_grenadines locatedIn americas +venezuela neighborOf brazil +venezuela neighborOf guyana +venezuela neighborOf colombia +grenada locatedIn caribbean +grenada locatedIn americas +united_states neighborOf canada +united_states neighborOf mexico +tokelau locatedIn polynesia +tokelau locatedIn oceania +slovenia locatedIn southern_europe +slovenia neighborOf austria +slovenia neighborOf croatia +slovenia neighborOf italy +slovenia neighborOf hungary +philippines locatedIn south-eastern_asia +philippines locatedIn asia +micronesia locatedIn micronesia +micronesia locatedIn oceania +china locatedIn eastern_asia +china neighborOf afghanistan +china neighborOf bhutan +china neighborOf macau +china neighborOf india +china neighborOf kazakhstan +china neighborOf kyrgyzstan +china neighborOf tajikistan +china neighborOf laos +china neighborOf russia +china neighborOf north_korea +china neighborOf myanmar +china neighborOf pakistan +china neighborOf mongolia +china neighborOf hong_kong +china neighborOf vietnam +gabon locatedIn middle_africa +gabon neighborOf equatorial_guinea +gabon neighborOf republic_of_the_congo +gabon neighborOf cameroon +united_states_minor_outlying_islands locatedIn northern_america +united_states_minor_outlying_islands locatedIn americas +andorra locatedIn southern_europe +andorra neighborOf spain +andorra neighborOf france +samoa locatedIn polynesia +samoa locatedIn oceania +gambia locatedIn western_africa +gambia locatedIn africa +gambia neighborOf senegal +palestine locatedIn western_asia +palestine locatedIn asia +palestine neighborOf jordan +palestine neighborOf egypt +palestine neighborOf israel +réunion locatedIn eastern_africa +réunion locatedIn africa +france locatedIn western_europe +france neighborOf germany +france neighborOf luxembourg +france neighborOf italy +france neighborOf andorra +france neighborOf switzerland +france neighborOf monaco +france neighborOf belgium +france neighborOf spain +mongolia locatedIn eastern_asia +mongolia locatedIn asia +mongolia neighborOf china +mongolia neighborOf russia +lithuania locatedIn northern_europe +lithuania neighborOf poland +lithuania neighborOf latvia +lithuania neighborOf belarus +lithuania neighborOf russia +cayman_islands locatedIn caribbean +cayman_islands locatedIn americas +saint_lucia locatedIn caribbean +saint_lucia locatedIn americas +curaçao locatedIn caribbean +curaçao locatedIn americas +caribbean locatedIn americas +southern_asia locatedIn asia +middle_africa locatedIn africa +northern_europe locatedIn europe +southern_europe locatedIn europe +western_asia locatedIn asia +south_america locatedIn americas +polynesia locatedIn oceania +australia_and_new_zealand locatedIn oceania +western_europe locatedIn europe +eastern_africa locatedIn africa +western_africa locatedIn africa +eastern_europe locatedIn europe +central_america locatedIn americas +northern_america locatedIn americas +south-eastern_asia locatedIn asia +southern_africa locatedIn africa +eastern_asia locatedIn asia +northern_africa locatedIn africa +melanesia locatedIn oceania +micronesia locatedIn oceania +central_asia locatedIn asia +central_europe locatedIn europe \ No newline at end of file diff --git a/deepsoftlog/experiments/wiki_countries/data/raw/test.tsv b/deepsoftlog/experiments/wiki_countries/data/raw/test.tsv new file mode 100644 index 0000000..85a430b --- /dev/null +++ b/deepsoftlog/experiments/wiki_countries/data/raw/test.tsv @@ -0,0 +1,24 @@ +thailand locatedIn asia +norway locatedIn europe +venezuela locatedIn americas +eritrea locatedIn africa +jordan locatedIn asia +guyana locatedIn americas +united_states locatedIn americas +bulgaria locatedIn europe +djibouti locatedIn africa +french_guiana locatedIn americas +ghana locatedIn africa +germany locatedIn europe +sudan locatedIn africa +spain locatedIn europe +saudi_arabia locatedIn asia +burkina_faso locatedIn africa +monaco locatedIn europe +ecuador locatedIn americas +egypt locatedIn africa +iraq locatedIn asia +indonesia locatedIn asia +zimbabwe locatedIn africa +timor-leste locatedIn asia +tanzania locatedIn africa \ No newline at end of file diff --git a/deepsoftlog/experiments/wiki_countries/data/raw/tokens_tensor_list.pt b/deepsoftlog/experiments/wiki_countries/data/raw/tokens_tensor_list.pt new file mode 100644 index 0000000000000000000000000000000000000000..0559c234395719ed9ee2173456e741ac6a2bd2b3 GIT binary patch literal 537512 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 literal 0 HcmV?d00001 diff --git a/deepsoftlog/experiments/wiki_countries/data/raw/train.tsv b/deepsoftlog/experiments/wiki_countries/data/raw/train.tsv new file mode 100644 index 0000000..b6fb1d4 --- /dev/null +++ b/deepsoftlog/experiments/wiki_countries/data/raw/train.tsv @@ -0,0 +1,202 @@ +palau locatedIn oceania +qatar locatedIn asia +guinea locatedIn africa +san_marino locatedIn europe +saint_lucia locatedIn americas +senegal locatedIn africa +sri_lanka locatedIn asia +antigua_and_barbuda locatedIn americas +cuba locatedIn americas +bermuda locatedIn americas +tunisia locatedIn africa +austria locatedIn europe +angola locatedIn africa +united_kingdom locatedIn europe +faroe_islands locatedIn europe +madagascar locatedIn africa +somalia locatedIn africa +british_indian_ocean_territory locatedIn africa +south_korea locatedIn asia +guatemala locatedIn americas +el_salvador locatedIn americas +armenia locatedIn asia +anguilla locatedIn americas +lithuania locatedIn europe +mayotte locatedIn africa +latvia locatedIn europe +mexico locatedIn americas +andorra locatedIn europe +chad locatedIn africa +central_african_republic locatedIn africa +seychelles locatedIn africa +honduras locatedIn americas +haiti locatedIn americas +mali locatedIn africa +new_caledonia locatedIn oceania +cayman_islands locatedIn americas +malaysia locatedIn asia +israel locatedIn asia +iceland locatedIn europe +ivory_coast locatedIn africa +niue locatedIn oceania +gabon locatedIn africa +moldova locatedIn europe +turks_and_caicos_islands locatedIn americas +tonga locatedIn oceania +burundi locatedIn africa +gambia locatedIn africa +argentina locatedIn americas +comoros locatedIn africa +belize locatedIn americas +kenya locatedIn africa +brazil locatedIn americas +nigeria locatedIn africa +south_georgia locatedIn americas +jersey locatedIn europe +republic_of_the_congo locatedIn africa +pakistan locatedIn asia +puerto_rico locatedIn americas +georgia locatedIn asia +mozambique locatedIn africa +macedonia locatedIn europe +saint_barthélemy locatedIn americas +morocco locatedIn africa +british_virgin_islands locatedIn americas +estonia locatedIn europe +chile locatedIn americas +réunion locatedIn africa +togo locatedIn africa +uganda locatedIn africa +albania locatedIn europe +isle_of_man locatedIn europe +liberia locatedIn africa +azerbaijan locatedIn asia +french_polynesia locatedIn oceania +malawi locatedIn africa +christmas_island locatedIn oceania +belgium locatedIn europe +lesotho locatedIn africa +samoa locatedIn oceania +equatorial_guinea locatedIn africa +netherlands locatedIn europe +kiribati locatedIn oceania +cook_islands locatedIn oceania +yemen locatedIn asia +benin locatedIn africa +slovakia locatedIn europe +sweden locatedIn europe +northern_mariana_islands locatedIn oceania +bahamas locatedIn americas +united_arab_emirates locatedIn asia +kyrgyzstan locatedIn asia +laos locatedIn asia +dominica locatedIn americas +liechtenstein locatedIn europe +sierra_leone locatedIn africa +rwanda locatedIn africa +norfolk_island locatedIn oceania +bolivia locatedIn americas +bangladesh locatedIn asia +slovenia locatedIn europe +paraguay locatedIn americas +niger locatedIn africa +iran locatedIn asia +barbados locatedIn americas +poland locatedIn europe +philippines locatedIn asia +croatia locatedIn europe +jamaica locatedIn americas +guam locatedIn oceania +cocos_keeling_islands locatedIn oceania +finland locatedIn europe +saint_kitts_and_nevis locatedIn americas +cambodia locatedIn asia +guernsey locatedIn europe +uzbekistan locatedIn asia +peru locatedIn americas +france locatedIn europe +united_states_minor_outlying_islands locatedIn americas +namibia locatedIn africa +bahrain locatedIn asia +canada locatedIn americas +singapore locatedIn asia +united_states_virgin_islands locatedIn americas +solomon_islands locatedIn oceania +american_samoa locatedIn oceania +sint_maarten locatedIn americas +belarus locatedIn europe +montserrat locatedIn americas +saint_vincent_and_the_grenadines locatedIn americas +ukraine locatedIn europe +turkmenistan locatedIn asia +greece locatedIn europe +bosnia_and_herzegovina locatedIn europe +gibraltar locatedIn europe +cameroon locatedIn africa +lebanon locatedIn asia +new_zealand locatedIn oceania +maldives locatedIn asia +vanuatu locatedIn oceania +dr_congo locatedIn africa +vietnam locatedIn asia +fiji locatedIn oceania +marshall_islands locatedIn oceania +mauritius locatedIn africa +montenegro locatedIn europe +oman locatedIn asia +wallis_and_futuna locatedIn oceania +são_tomé_and_príncipe locatedIn africa +papua_new_guinea locatedIn oceania +western_sahara locatedIn africa +uruguay locatedIn americas +libya locatedIn africa +north_korea locatedIn asia +åland_islands locatedIn europe +tuvalu locatedIn oceania +tajikistan locatedIn asia +ethiopia locatedIn africa +brunei locatedIn asia +australia locatedIn oceania +greenland locatedIn americas +hong_kong locatedIn asia +guadeloupe locatedIn americas +switzerland locatedIn europe +luxembourg locatedIn europe +portugal locatedIn europe +colombia locatedIn americas +malta locatedIn europe +tokelau locatedIn oceania +costa_rica locatedIn americas +algeria locatedIn africa +south_africa locatedIn africa +pitcairn_islands locatedIn oceania +mauritania locatedIn africa +nepal locatedIn asia +china locatedIn asia +trinidad_and_tobago locatedIn americas +grenada locatedIn americas +palestine locatedIn asia +kuwait locatedIn asia +falkland_islands locatedIn americas +afghanistan locatedIn asia +india locatedIn asia +curaçao locatedIn americas +romania locatedIn europe +svalbard_and_jan_mayen locatedIn europe +cyprus locatedIn europe +japan locatedIn asia +swaziland locatedIn africa +dominican_republic locatedIn americas +cape_verde locatedIn africa +italy locatedIn europe +turkey locatedIn asia +vatican_city locatedIn europe +martinique locatedIn americas +taiwan locatedIn asia +saint_pierre_and_miquelon locatedIn americas +aruba locatedIn americas +russia locatedIn europe +nauru locatedIn oceania +south_sudan locatedIn africa +serbia locatedIn europe +ireland locatedIn europe \ No newline at end of file diff --git a/deepsoftlog/experiments/wiki_countries/data/raw/val.tsv b/deepsoftlog/experiments/wiki_countries/data/raw/val.tsv new file mode 100644 index 0000000..a54d063 --- /dev/null +++ b/deepsoftlog/experiments/wiki_countries/data/raw/val.tsv @@ -0,0 +1,24 @@ +bhutan locatedIn asia +macau locatedIn asia +thailand locatedIn asia +norway locatedIn europe +kazakhstan locatedIn asia +denmark locatedIn europe +djibouti locatedIn africa +french_guiana locatedIn americas +czechia locatedIn europe +sudan locatedIn africa +spain locatedIn europe +guinea-bissau locatedIn africa +botswana locatedIn africa +panama locatedIn americas +hungary locatedIn europe +saint_martin locatedIn americas +kosovo locatedIn europe +nicaragua locatedIn americas +myanmar locatedIn asia +suriname locatedIn americas +iraq locatedIn asia +zambia locatedIn africa +syria locatedIn asia +mongolia locatedIn asia \ No newline at end of file diff --git a/deepsoftlog/experiments/wiki_countries/data/raw/wikicountries_test.tsv b/deepsoftlog/experiments/wiki_countries/data/raw/wikicountries_test.tsv new file mode 100644 index 0000000..4cbea99 --- /dev/null +++ b/deepsoftlog/experiments/wiki_countries/data/raw/wikicountries_test.tsv @@ -0,0 +1,24 @@ +202 locatedIn asia +203 locatedIn asia +204 locatedIn asia +205 locatedIn europe +206 locatedIn asia +207 locatedIn europe +208 locatedIn africa +209 locatedIn americas +210 locatedIn europe +211 locatedIn africa +212 locatedIn europe +213 locatedIn africa +214 locatedIn africa +215 locatedIn americas +216 locatedIn europe +217 locatedIn americas +218 locatedIn europe +219 locatedIn americas +220 locatedIn asia +221 locatedIn americas +222 locatedIn asia +223 locatedIn africa +224 locatedIn asia +225 locatedIn asia diff --git a/deepsoftlog/experiments/wiki_countries/data/raw/wikicountries_train.tsv b/deepsoftlog/experiments/wiki_countries/data/raw/wikicountries_train.tsv new file mode 100644 index 0000000..9eb5b77 --- /dev/null +++ b/deepsoftlog/experiments/wiki_countries/data/raw/wikicountries_train.tsv @@ -0,0 +1,202 @@ +0 locatedIn oceania +1 locatedIn asia +2 locatedIn africa +3 locatedIn europe +4 locatedIn americas +5 locatedIn africa +6 locatedIn asia +7 locatedIn americas +8 locatedIn americas +9 locatedIn americas +10 locatedIn africa +11 locatedIn europe +12 locatedIn africa +13 locatedIn europe +14 locatedIn europe +15 locatedIn africa +16 locatedIn africa +17 locatedIn africa +18 locatedIn asia +19 locatedIn americas +20 locatedIn americas +21 locatedIn asia +22 locatedIn americas +23 locatedIn europe +24 locatedIn africa +25 locatedIn europe +26 locatedIn americas +27 locatedIn europe +28 locatedIn africa +29 locatedIn africa +30 locatedIn africa +31 locatedIn americas +32 locatedIn americas +33 locatedIn africa +34 locatedIn oceania +35 locatedIn americas +36 locatedIn asia +37 locatedIn asia +38 locatedIn europe +39 locatedIn africa +40 locatedIn oceania +41 locatedIn africa +42 locatedIn europe +43 locatedIn americas +44 locatedIn oceania +45 locatedIn africa +46 locatedIn africa +47 locatedIn americas +48 locatedIn africa +49 locatedIn americas +50 locatedIn africa +51 locatedIn americas +52 locatedIn africa +53 locatedIn americas +54 locatedIn europe +55 locatedIn africa +56 locatedIn asia +57 locatedIn americas +58 locatedIn asia +59 locatedIn africa +60 locatedIn europe +61 locatedIn americas +62 locatedIn africa +63 locatedIn americas +64 locatedIn europe +65 locatedIn americas +66 locatedIn africa +67 locatedIn africa +68 locatedIn africa +69 locatedIn europe +70 locatedIn europe +71 locatedIn africa +72 locatedIn asia +73 locatedIn oceania +74 locatedIn africa +75 locatedIn oceania +76 locatedIn europe +77 locatedIn africa +78 locatedIn oceania +79 locatedIn africa +80 locatedIn europe +81 locatedIn oceania +82 locatedIn oceania +83 locatedIn asia +84 locatedIn africa +85 locatedIn europe +86 locatedIn europe +87 locatedIn oceania +88 locatedIn americas +89 locatedIn asia +90 locatedIn asia +91 locatedIn asia +92 locatedIn americas +93 locatedIn europe +94 locatedIn africa +95 locatedIn africa +96 locatedIn oceania +97 locatedIn americas +98 locatedIn asia +99 locatedIn europe +100 locatedIn americas +101 locatedIn africa +102 locatedIn asia +103 locatedIn americas +104 locatedIn europe +105 locatedIn asia +106 locatedIn europe +107 locatedIn americas +108 locatedIn oceania +109 locatedIn oceania +110 locatedIn europe +111 locatedIn americas +112 locatedIn asia +113 locatedIn europe +114 locatedIn asia +115 locatedIn americas +116 locatedIn europe +117 locatedIn americas +118 locatedIn africa +119 locatedIn asia +120 locatedIn americas +121 locatedIn asia +122 locatedIn americas +123 locatedIn oceania +124 locatedIn oceania +125 locatedIn americas +126 locatedIn europe +127 locatedIn americas +128 locatedIn americas +129 locatedIn europe +130 locatedIn asia +131 locatedIn europe +132 locatedIn europe +133 locatedIn europe +134 locatedIn africa +135 locatedIn asia +136 locatedIn oceania +137 locatedIn asia +138 locatedIn oceania +139 locatedIn africa +140 locatedIn asia +141 locatedIn oceania +142 locatedIn oceania +143 locatedIn africa +144 locatedIn europe +145 locatedIn asia +146 locatedIn oceania +147 locatedIn africa +148 locatedIn oceania +149 locatedIn africa +150 locatedIn americas +151 locatedIn africa +152 locatedIn asia +153 locatedIn europe +154 locatedIn oceania +155 locatedIn asia +156 locatedIn africa +157 locatedIn asia +158 locatedIn oceania +159 locatedIn americas +160 locatedIn asia +161 locatedIn americas +162 locatedIn europe +163 locatedIn europe +164 locatedIn europe +165 locatedIn americas +166 locatedIn europe +167 locatedIn oceania +168 locatedIn americas +169 locatedIn africa +170 locatedIn africa +171 locatedIn oceania +172 locatedIn africa +173 locatedIn asia +174 locatedIn asia +175 locatedIn americas +176 locatedIn americas +177 locatedIn asia +178 locatedIn asia +179 locatedIn americas +180 locatedIn asia +181 locatedIn asia +182 locatedIn americas +183 locatedIn europe +184 locatedIn europe +185 locatedIn europe +186 locatedIn asia +187 locatedIn africa +188 locatedIn americas +189 locatedIn africa +190 locatedIn europe +191 locatedIn asia +192 locatedIn europe +193 locatedIn americas +194 locatedIn asia +195 locatedIn americas +196 locatedIn americas +197 locatedIn europe +198 locatedIn oceania +199 locatedIn africa +200 locatedIn europe +201 locatedIn europe diff --git a/deepsoftlog/experiments/wiki_countries/data/raw/wikicountries_val.tsv b/deepsoftlog/experiments/wiki_countries/data/raw/wikicountries_val.tsv new file mode 100644 index 0000000..3039741 --- /dev/null +++ b/deepsoftlog/experiments/wiki_countries/data/raw/wikicountries_val.tsv @@ -0,0 +1,24 @@ +226 locatedIn asia +227 locatedIn europe +228 locatedIn americas +229 locatedIn africa +230 locatedIn asia +231 locatedIn americas +232 locatedIn americas +233 locatedIn europe +234 locatedIn africa +235 locatedIn americas +236 locatedIn africa +237 locatedIn europe +238 locatedIn africa +239 locatedIn europe +240 locatedIn asia +241 locatedIn africa +242 locatedIn europe +243 locatedIn americas +244 locatedIn africa +245 locatedIn asia +246 locatedIn asia +247 locatedIn africa +248 locatedIn asia +249 locatedIn africa diff --git a/deepsoftlog/experiments/wiki_countries/data/templates/countries_S0_templates.pl b/deepsoftlog/experiments/wiki_countries/data/templates/countries_S0_templates.pl new file mode 100644 index 0000000..ffac9a1 --- /dev/null +++ b/deepsoftlog/experiments/wiki_countries/data/templates/countries_S0_templates.pl @@ -0,0 +1 @@ +countries(~rr1, X, Y) :- countries(~rr1, X, Z), countries(~rr1, Z, Y). \ No newline at end of file diff --git a/deepsoftlog/experiments/wiki_countries/data/templates/countries_S1_templates.pl b/deepsoftlog/experiments/wiki_countries/data/templates/countries_S1_templates.pl new file mode 100644 index 0000000..440c279 --- /dev/null +++ b/deepsoftlog/experiments/wiki_countries/data/templates/countries_S1_templates.pl @@ -0,0 +1 @@ +countries(~rr2, X, Y) :- countries(~rr3, X, Z), countries(~rr3, Z, Y). \ No newline at end of file diff --git a/deepsoftlog/experiments/wiki_countries/data/templates/countries_S2_templates.pl b/deepsoftlog/experiments/wiki_countries/data/templates/countries_S2_templates.pl new file mode 100644 index 0000000..94dd647 --- /dev/null +++ b/deepsoftlog/experiments/wiki_countries/data/templates/countries_S2_templates.pl @@ -0,0 +1,3 @@ +countries(~rr1, X, Y) :- countries(rr1, Y, Z). +countries(~rr2, X, Y) :- countries(~rr3, X, Z), countries(~rr3, Z, Y). +countries(~rr4, X, Y) :- countries(~rr5, X, Z), countries(~rr6, Z, Y). \ No newline at end of file diff --git a/deepsoftlog/experiments/wiki_countries/data/templates/countries_S3_templates.pl b/deepsoftlog/experiments/wiki_countries/data/templates/countries_S3_templates.pl new file mode 100644 index 0000000..e0fffa9 --- /dev/null +++ b/deepsoftlog/experiments/wiki_countries/data/templates/countries_S3_templates.pl @@ -0,0 +1,4 @@ +countries(~rr1, X, Y) :- countries(rr1, Y, Z). +countries(~rr2, X, Y) :- countries(~rr3, X, Z), countries(~rr3, Z, Y). +countries(~rr4, X, Y) :- countries(~rr5, X, Z), countries(~rr6, Z, Y). +countries(~rr7, X, Y) :- countries(~rr8, X, A), countries(~rr9, B, Y), countries(~rr10, A, B). \ No newline at end of file diff --git a/deepsoftlog/experiments/wiki_countries/dataset.py b/deepsoftlog/experiments/wiki_countries/dataset.py new file mode 100644 index 0000000..fb64426 --- /dev/null +++ b/deepsoftlog/experiments/wiki_countries/dataset.py @@ -0,0 +1,121 @@ +from pathlib import Path +import random + +import torch +from torch.utils.data import Dataset as TorchDataset + +from deepsoftlog.data import load_tsv_file, data_to_prolog, Query, to_prolog_text, load_txt_file, load_lines +from deepsoftlog.algebraic_prover.terms.expression import Constant, Expr +from deepsoftlog.data.dataloader import DataLoader +from deepsoftlog.data.dataset import StaticDataset, Dataset +from deepsoftlog.logic.soft_term import SoftTerm + +_DATA_ROOT = str(Path(__file__).parent / "tmp") + +class WikiDataset(TorchDataset): + def __init__(self): + base_path = Path(__file__).parent / 'data' / 'raw' + self.data = torch.load(base_path / f"tokens_tensor_list.pt") + + super().__init__() + + def __getitem__(self, idx): + return self.data[idx] + + def __len__(self): + return len(self.data) + +class CountriesDataset(StaticDataset): + def __init__(self, split_name: str = "val"): + base_path = Path(__file__).parent / 'data' / 'raw' + data = load_tsv_file(base_path / f"wikicountries_{split_name}.tsv") + super().__init__(tuple(data)) + +class CountriesOperator(Dataset, TorchDataset): + def __init__( + self, + split_name: str, + function_name: str, + seed=None, + ): + """Generic data for operator(img, img) style datasets. + :param split_name: Dataset to use (training, val, test) + :param function_name: Name of Problog function to query. + :param operator: Operator to generate correct examples + :param size: Size of numbers (number of digits) + :param arity: Number of arguments for the operator + :param seed: Seed for RNG + """ + super(CountriesOperator, self).__init__() + self.split_name = split_name + self.text_dataset = WikiDataset() + self.countries_dataset = CountriesDataset(split_name) + self.function_name = function_name + self.seed = seed + + indices = list(range(len(self.countries_dataset))) + if seed is not None: + rng = random.Random(seed) + rng.shuffle(indices) + + self.data_indices = indices + + def __getitem__(self, i: int) -> Query: + """Generate queries""" + country_fact = self.countries_dataset[self.data_indices[i]] + + relation = SoftTerm(Constant(country_fact[1])) + first_entity = to_prolog_text(self.text_dataset[int(country_fact[0])]) if country_fact[0].isdigit() else SoftTerm(Constant(country_fact[0])) + second_entity = to_prolog_text(self.text_dataset[int(country_fact[2])]) if country_fact[2].isdigit() else SoftTerm(Constant(country_fact[2])) + + return Query(Expr(self.function_name, relation, first_entity, second_entity)) + + def __len__(self): + return len(self.data_indices) + +def get_train_dataloader(cfg): + dataset = CountriesOperator( + split_name="train", + function_name="countries", + seed=cfg.seed + ) + return DataLoader(dataset, batch_size=cfg['batch_size'], shuffle=True) + +def get_val_dataloader(cfg): + dataset = CountriesOperator( + split_name="val", + function_name="countries", + seed=cfg.seed + ) + return DataLoader(dataset, batch_size=cfg['batch_size'], shuffle=True) + +def get_test_dataloader(cfg): + dataset = CountriesOperator( + split_name="test", + function_name="countries", + seed=cfg.seed + ) + return DataLoader(dataset, batch_size=cfg['batch_size'], shuffle=True) + +def generate_prolog_files(): + base_path = Path(__file__).parent / 'data' + (base_path / 'tmp').mkdir(exist_ok=True) + for problem in (f'S{i}' for i in range(4)): + data = load_tsv_file(base_path / f"raw/countries_{problem}.tsv") + data = data_to_prolog(data, name="countries") + file_str = [f"{query.query}." for query in data] + with open(base_path / f"tmp/countries_{problem}.pl", "w+") as f: + f.write("\n".join(file_str)) + + # add template stuff + with open(base_path / f"templates/countries_{problem}_templates.pl", "r") as f: + templates = f.read() + with open(base_path / f"tmp/countries_{problem}.pl", "a+") as f: + f.write("\n" + templates) + + + +if __name__ == "__main__": + d = CountriesOperator("train", "countries") + print(d) + #generate_prolog_files() diff --git a/deepsoftlog/experiments/wiki_countries/preprocess_wikidata5m.py b/deepsoftlog/experiments/wiki_countries/preprocess_wikidata5m.py new file mode 100644 index 0000000..cf262e2 --- /dev/null +++ b/deepsoftlog/experiments/wiki_countries/preprocess_wikidata5m.py @@ -0,0 +1,207 @@ +from pathlib import Path + +import torch +from transformers import AutoTokenizer + +from deepsoftlog.data import load_tsv_file + +KEYWORDS = ['history', 'city', 'capital', 'country', 'province', 'island'] +SUBCONTINENTS = ['southern_asia', 'south-eastern_asia', 'eastern_asia', 'central_asia', 'western_asia', 'northern_africa', 'middle_africa', 'western_africa', 'eastern_africa', 'southern_africa', 'northern_europe', 'western_europe', 'central_europe', 'eastern_europe', 'southern_europe', 'caribbean', 'northern_americas', 'central_america', 'south_america', 'polynesia', 'australia_and_new_zealand', 'melanesia', 'micronesia'] +CONTINENTS = ['africa', 'americas', 'asia', 'europe', 'oceania'] + +def get_regions(): + base_path = Path(__file__).parent / 'data' / 'raw' + data = load_tsv_file(base_path / f"countries_S0.tsv") + lst = [a[0] for a in data] + [a[2] for a in data] + return set([l.lower().replace("_", " ") for l in lst]) + +def convert_name(name): + return name.lower().replace("_", " ") + +def get_countries(): + regions = get_regions() + return {r for r in regions if r not in [c.lower().replace("_", " ") for c in SUBCONTINENTS] + + [c.lower().replace("_", " ") for c in CONTINENTS]} + +def get_entities(): + base_path = Path(__file__).parent / 'data' / 'raw' + data = load_tsv_file(base_path / f"wikidata5m_entity.tsv") + return {a[0]: [s.lower() for s in a[1:]] for a in data} + +def get_text(): + base_path = Path(__file__).parent / 'data' / 'raw' + data = load_tsv_file(base_path / f"wikidata5m_text.tsv") + return {a[0]: a[1] for a in data} + +def get_text2(): + base_path = Path(__file__).parent / 'data' / 'raw' + data = load_tsv_file(base_path / f"text_all_country_entities.tsv") + return {a[0]: a[1] for a in data} + + +def get_country_entities(): + base_path = Path(__file__).parent / 'data' / 'raw' + data = load_tsv_file(base_path / f"country_entities3.tsv") + return {a[0]: [s for s in a[1:]] for a in data} + +def get_full_kg(): + base_path = Path(__file__).parent / 'data' / 'raw' + data = load_tsv_file(base_path / f"wikidata5m_inductive_test.tsv") + load_tsv_file(base_path / f"wikidata5m_inductive_train.tsv") + load_tsv_file(base_path / f"wikidata5m_inductive_valid.tsv") + return data + +def get_all_country_entities(): + base_path = Path(__file__).parent / 'data' / 'raw' + data = load_tsv_file(base_path / f"all_country_entities.tsv") + return {a[0]: [s for s in a[1:]] for a in data} + +def get_new_id(entity_dict, old_id): + if old_id in entity_dict: + return min(entity_dict[convert_name(old_id)]) + return old_id + + +CONTEXT_SIZE = 128 +def generate_datasets_split_entities(entity_dict, text_dict): + base_path = Path(__file__).parent / 'data' / 'raw' + + train_relations = load_tsv_file(base_path / "train.tsv") + test_relations = load_tsv_file(base_path / "val.tsv") + val_relations = load_tsv_file(base_path / "test.tsv") + + countries_S0 = load_tsv_file(base_path / "countries_S0.tsv") + countries_S1 = load_tsv_file(base_path / "countries_S1.tsv") + countries_S2 = load_tsv_file(base_path / "countries_S2.tsv") + countries_S3 = load_tsv_file(base_path / "countries_S3.tsv") + + train_q_relations = [(min(entity_dict[convert_name(a[0])]), a[1], a[2]) for a in train_relations] + test_q_relations = [(min(entity_dict[convert_name(a[0])]), a[1], a[2]) for a in test_relations] + val_q_relations = [(min(entity_dict[convert_name(a[0])]), a[1], a[2]) for a in val_relations] + + countries_S0_relations = [(get_new_id(entity_dict, a[0]), a[1], a[2]) for a in countries_S0] + countries_S1_relations = [(get_new_id(entity_dict, a[0]), a[1], a[2]) for a in countries_S1] + countries_S2_relations = [(get_new_id(entity_dict, a[0]), a[1], a[2]) for a in countries_S2] + countries_S3_relations = [(get_new_id(entity_dict, a[0]), a[1], a[2]) for a in countries_S3] + + text_data = [] + for i,a in enumerate(train_q_relations): + text_data.append(text_dict[a[0]]) + train_q_relations[i] = (i, a[1], a[2]) + for i,c in enumerate(countries_S0_relations): + if c[0] == a[0]: + countries_S0_relations[i] = (i, c[1], c[2]) + for i,c in enumerate(countries_S1_relations): + if c[0] == a[0]: + countries_S1_relations[i] = (i, c[1], c[2]) + for i,c in enumerate(countries_S2_relations): + if c[0] == a[0]: + countries_S2_relations[i] = (i, c[1], c[2]) + for i,c in enumerate(countries_S3_relations): + if c[0] == a[0]: + countries_S3_relations[i] = (i, c[1], c[2]) + n = len(text_data) + for i,a in enumerate(test_q_relations): + text_data.append(text_dict[a[0]]) + test_q_relations[i] = (n+i, a[1], a[2]) + for i,c in enumerate(countries_S0_relations): + if c[0] == a[0]: + countries_S0_relations[i] = (i, c[1], c[2]) + for i,c in enumerate(countries_S1_relations): + if c[0] == a[0]: + countries_S1_relations[i] = (i, c[1], c[2]) + for i,c in enumerate(countries_S2_relations): + if c[0] == a[0]: + countries_S2_relations[i] = (i, c[1], c[2]) + for i,c in enumerate(countries_S3_relations): + if c[0] == a[0]: + countries_S3_relations[i] = (i, c[1], c[2]) + n = len(text_data) + for i,a in enumerate(val_q_relations): + text_data.append(text_dict[a[0]]) + val_q_relations[i] = (n+i, a[1], a[2]) + for i,c in enumerate(countries_S0_relations): + if c[0] == a[0]: + countries_S0_relations[i] = (i, c[1], c[2]) + for i,c in enumerate(countries_S1_relations): + if c[0] == a[0]: + countries_S1_relations[i] = (i, c[1], c[2]) + for i,c in enumerate(countries_S2_relations): + if c[0] == a[0]: + countries_S2_relations[i] = (i, c[1], c[2]) + for i,c in enumerate(countries_S3_relations): + if c[0] == a[0]: + countries_S3_relations[i] = (i, c[1], c[2]) + + with open("data/raw/wikicountries_train.tsv", "w+") as f: + for a in train_q_relations: + f.write(str(a[0]) + "\t" + a[1] + "\t" + a[2] + "\n") + with open("data/raw/wikicountries_test.tsv", "w+") as f: + for a in test_q_relations: + f.write(str(a[0]) + "\t" + a[1] + "\t" + a[2] + "\n") + with open("data/raw/wikicountries_val.tsv", "w+") as f: + for a in val_q_relations: + f.write(str(a[0]) + "\t" + a[1] + "\t" + a[2] + "\n") + with open("data/raw/wikicountries_S0.tsv", "w+") as f: + for a in countries_S0_relations: + f.write(str(a[0]) + "\t" + a[1] + "\t" + a[2] + "\n") + with open("data/raw/wikicountries_S1.tsv", "w+") as f: + for a in countries_S1_relations: + f.write(str(a[0]) + "\t" + a[1] + "\t" + a[2] + "\n") + with open("data/raw/wikicountries_S2.tsv", "w+") as f: + for a in countries_S2_relations: + f.write(str(a[0]) + "\t" + a[1] + "\t" + a[2] + "\n") + with open("data/raw/wikicountries_S3.tsv", "w+") as f: + for a in countries_S3_relations: + f.write(str(a[0]) + "\t" + a[1] + "\t" + a[2] + "\n") + + tokenizer = AutoTokenizer.from_pretrained('roberta-base') + + token_dict = tokenizer(text_data) + input_list = token_dict['input_ids'] + attention_mask_list = token_dict['attention_mask'] + + tokens_tensor_list = [torch.tensor(x) for x in zip(input_list, attention_mask_list)] + tokens_tensor_list = [torch.cat((x[:, 0:CONTEXT_SIZE],x[:, -1:]), dim=1) for x in tokens_tensor_list] # truncate to CONTEXT SIZE but keep eos token + + torch.save(tokens_tensor_list, 'data/raw/tokens_tensor_list.pt') + + +if __name__ == "__main__": + all_country_entities = get_all_country_entities() + text_dict = get_text() + text_dict.update(get_text2()) + + generate_datasets_split_entities(all_country_entities, text_dict) + + # country_entities = get_country_entities() + # + # kg = get_full_kg() + # + # captial_relations = [a for a in kg if a[1] == 'P1376'] + # history_relations = [a for a in kg if a[1] == 'P2184'] + # flag_relations = [a for a in kg if a[1] == 'P163'] + # + # result_dict = {c : [] for c in country_entities} + # for c in country_entities: + # result_dict[c] += [a[0] for a in captial_relations if a[2] in country_entities[c]] + [a[2] for a in captial_relations if a[0] in country_entities[c]] + # result_dict[c] += [a[0] for a in history_relations if a[2] in country_entities[c]] + [a[2] for a in history_relations if a[0] in country_entities[c]] + # result_dict[c] += [a[0] for a in flag_relations if a[2] in country_entities[c]] + [a[2] for a in flag_relations if a[0] in country_entities[c]] + # + # with open("data/raw/country_entities4.tsv", "w+") as f: + # for c in country_entities: + # f.write(c + "\t") + # for r in result_dict[c]: + # f.write(r + "\t") + # f.write("\n") + + # all_entities = sum(get_all_country_entities().values(), []) + # + # text = get_text() + # text_new = {} + # + # for e in all_entities: + # text_new[e] = text[e] + # + # with open("data/raw/text_all_country_entities.tsv", "w+") as f: + # for e in all_entities: + # f.write(e + "\t") + # f.write(text_new[e] + "\n") \ No newline at end of file diff --git a/deepsoftlog/experiments/wiki_countries/wiki_countries.py b/deepsoftlog/experiments/wiki_countries/wiki_countries.py new file mode 100644 index 0000000..2d23344 --- /dev/null +++ b/deepsoftlog/experiments/wiki_countries/wiki_countries.py @@ -0,0 +1,45 @@ +import os + +import torch + +from deepsoftlog.experiments.wiki_countries.dataset import generate_prolog_files, get_val_dataloader, \ + get_train_dataloader, get_test_dataloader +from deepsoftlog.training import load_program, load_config +from deepsoftlog.training.logger import WandbLogger +from deepsoftlog.training.loss import nll_loss, get_optimizer +from deepsoftlog.training.trainer import Trainer + +def train(cfg): + cfg = load_config(cfg) + os.environ["CUDA_VISIBLE_DEVICES"] = str(cfg.device_nb) + generate_prolog_files() + eval_dataloader = get_val_dataloader(cfg) + program = load_program(cfg, eval_dataloader) + optimizer = get_optimizer(program.get_store(), cfg) + logger = WandbLogger(cfg) + trainer = Trainer( + program, get_train_dataloader, nll_loss, optimizer, + logger=logger, + max_proofs=cfg['max_proofs'], + max_branching=cfg['max_branching'], + max_depth=cfg['max_depth'], + ) + trainer.val_dataloader = eval_dataloader + trainer.train(cfg) + trainer.eval(get_test_dataloader()) + + +def eval(folder: str): + cfg = load_config(f"results/{folder}/config.yaml") + eval_dataloader = get_test_dataloader(cfg) + program = load_program(cfg, eval_dataloader) + state_dict = torch.load(f"results/{folder}/store.pt") + program.store.load_state_dict(state_dict, strict=False) + trainer = Trainer(program, None, None, None) + trainer.max_branching = cfg['max_branching'] + trainer.max_depth = cfg['max_depth'] + trainer.eval(eval_dataloader) + + +if __name__ == "__main__": + train("deepsoftlog/experiments/wiki_countries/config.yaml") \ No newline at end of file diff --git a/deepsoftlog/logic/spl_module.py b/deepsoftlog/logic/spl_module.py index ec949b5..4996783 100644 --- a/deepsoftlog/logic/spl_module.py +++ b/deepsoftlog/logic/spl_module.py @@ -48,8 +48,9 @@ def get_store(self): return self.store.module return self.store - def get_similarity_matrix(self): - return self.store.get_similarity_matrix(self.embedding_metric) + def get_soft_unification_matrix(self): + names = self.store.constant_embeddings.keys() + return names, self.store.get_soft_unification_matrix(self.embedding_metric) def get_constant_embedding_matrix(self): names = self.store.constant_embeddings.keys() diff --git a/deepsoftlog/training/trainer.py b/deepsoftlog/training/trainer.py index b297f72..cf34416 100644 --- a/deepsoftlog/training/trainer.py +++ b/deepsoftlog/training/trainer.py @@ -13,7 +13,6 @@ import torch.multiprocessing as mp import torch.distributed as dist -from .visualise import visualise_embeddings, visualise_similarity_matrix from ..data.dataloader import DataLoader from ..data.query import Query from ..logic.spl_module import SoftProofModule @@ -118,16 +117,13 @@ def train_epoch(self, verbose: bool): def eval(self, dataloader: DataLoader, name='test'): self.program.store.eval() + torch.cuda.empty_cache() metrics = [] for queries in tqdm(dataloader, leave=False, smoothing=0): results = zip(queries, self._eval_queries(queries)) new_metrics = [get_metrics(query, result, dataloader.dataset) for query, result in results] metrics += new_metrics self.logger.log_eval(aggregate_metrics(metrics), name=name) - matrix = self.program.get_similarity_matrix() - self.logger.log_fig(visualise_similarity_matrix(matrix), name="similarity matrix") - names, matrix = self.program.get_constant_embedding_matrix() - self.logger.log_fig(visualise_embeddings(matrix, names), name="constant embeddings") def _query(self, queries: Iterable[Query]): for query in queries: @@ -159,6 +155,10 @@ def get_loss(self, queries: Iterable[Query]) -> tuple[float, float, float, float errors = [query.error_with(result) for result, query in zip(results, queries)] if loss.requires_grad: loss.backward() + try: + self.get_store().functor_embeddings["('roberta', 1)"].reset_cache() + except: + pass proof_steps, nb_proofs = float(np.mean(proof_steps)), float(np.mean(nb_proofs)) return float(loss), float(np.mean(errors)), proof_steps, nb_proofs diff --git a/deepsoftlog/training/visualise.py b/deepsoftlog/training/visualise.py deleted file mode 100644 index 7b49f05..0000000 --- a/deepsoftlog/training/visualise.py +++ /dev/null @@ -1,30 +0,0 @@ -import matplotlib.pyplot as plt -import numpy as np -from matplotlib.pyplot import viridis -from sklearn import manifold - -def visualise_embeddings(embeddings, names): - LLE = manifold.LocallyLinearEmbedding(n_neighbors=10, n_components=2, method='standard') - proj_emb = LLE.fit_transform(embeddings) - fig, ax = plt.subplots(figsize=(8, 6)) - scatter = ax.scatter(proj_emb[:, 0], proj_emb[:, 1], cmap=viridis()) - plt.legend(handles=scatter.legend_elements()[0], labels=names) - plt.title("LLE Projection of Embeddings") - plt.xlabel("Principal Component 1") - plt.ylabel("Principal Component 2") - return fig - -def visualise_similarity_matrix(matrix): - matrix = argsort_sim_matrix(matrix) - fig, ax = plt.subplots(figsize=(8, 6)) - cax = ax.matshow(matrix, cmap='viridis') - fig.colorbar(cax) - return fig - -def argsort_sim_matrix(sm): - idx = [np.argmin(np.sum(sm, axis=1))] # a - for i in range(1, len(sm)): - sm_i = sm[idx[-1]].copy() - sm_i[idx] = np.inf - idx.append(np.argmin(sm_i)) # b - return sm[idx][:, idx] \ No newline at end of file diff --git a/run_experiments.py b/run_experiments.py index d370b21..fdad161 100644 --- a/run_experiments.py +++ b/run_experiments.py @@ -2,14 +2,15 @@ from deepsoftlog.experiments.mnist_addition.addition import train as train_addition from deepsoftlog.experiments.countries.countries import train as train_countries +from deepsoftlog.experiments.wiki_countries.wiki_countries import train as train_wiki_countries from deepsoftlog.experiments.fsm.fsm import train as train_fsm def main(experiment_name, config_file): - train_functions = {'mnist_addition': train_addition, 'countries': train_countries, 'fsm': train_fsm} + train_functions = {'mnist_addition': train_addition, 'countries': train_countries, 'wiki_countries': train_wiki_countries, 'fsm': train_fsm} assert experiment_name in train_functions.keys(), f"Experiment name must be one of {tuple(train_functions.keys())}" return train_functions[experiment_name](config_file) if __name__ == "__main__": - main(*sys.argv[1:]) + main(*sys.argv[1:]) \ No newline at end of file From 386393cf61a43e93edb9fddeeb0fa1f54e19fd73 Mon Sep 17 00:00:00 2001 From: Rik Adriaensen Date: Mon, 7 Apr 2025 10:58:54 +0200 Subject: [PATCH 04/15] add mentions_countries --- .gitignore | 3 +- .vscode/settings.json | 14 + deepsoftlog/data/__init__.py | 19 +- deepsoftlog/embeddings/embedding_store.py | 21 +- deepsoftlog/embeddings/initialize_vector.py | 10 +- deepsoftlog/embeddings/nn_models.py | 317 ++--- deepsoftlog/experiments/countries/config.yaml | 4 +- .../experiments/countries/countries.py | 24 +- .../experiments/countries/visualise.py | 2 +- .../mentions_countries/config.yaml | 23 + .../data/raw/countries_S0.tsv | 0 .../data/raw/countries_S1.tsv | 0 .../data/raw/countries_S1_country2text.tsv | 1111 +++++++++++++++++ ...ountries_S1_country2text_relation2text.tsv | 1111 +++++++++++++++++ .../data/raw/countries_S1_relation2text.tsv | 1111 +++++++++++++++++ .../data/raw/countries_S2.tsv | 0 .../data/raw/countries_S2_country2text.tsv | 1063 ++++++++++++++++ ...ountries_S2_country2text_relation2text.tsv | 1063 ++++++++++++++++ .../data/raw/countries_S2_relation2text.tsv | 1063 ++++++++++++++++ .../data/raw/countries_S3.tsv | 0 .../data/raw/countries_S3_country2text.tsv | 979 +++++++++++++++ ...ountries_S3_country2text_relation2text.tsv | 979 +++++++++++++++ .../data/raw/countries_S3_relation2text.tsv | 979 +++++++++++++++ .../data/raw/country2text.csv | 272 ++++ .../data/raw/test.tsv | 0 .../data/raw/train.tsv | 0 .../data/raw/val.tsv | 0 .../data/templates/countries_S0_templates.pl | 0 .../data/templates/countries_S1_templates.pl | 0 .../data/templates/countries_S2_templates.pl | 0 .../data/templates/countries_S3_templates.pl | 0 .../experiments/mentions_countries/dataset.py | 100 ++ .../mentions_countries.py} | 34 +- .../experiments/mnist_addition/config.yaml | 4 +- .../experiments/wiki_countries/config.yaml | 26 - .../data/raw/tokens_tensor_list.pt | Bin 537512 -> 0 bytes .../data/raw/wikicountries_test.tsv | 24 - .../data/raw/wikicountries_train.tsv | 202 --- .../data/raw/wikicountries_val.tsv | 24 - .../experiments/wiki_countries/dataset.py | 121 -- .../wiki_countries/preprocess_wikidata5m.py | 207 --- deepsoftlog/logic/soft_term.py | 35 + deepsoftlog/logic/spl_module.py | 2 +- deepsoftlog/parser/problog_parser.py | 5 +- deepsoftlog/training/__init__.py | 10 +- deepsoftlog/training/logger.py | 5 +- deepsoftlog/training/trainer.py | 7 +- mentions_countries.sh | 3 + run_experiments.py | 11 +- wiki_countries.sh | 4 + 50 files changed, 10174 insertions(+), 818 deletions(-) create mode 100644 .vscode/settings.json create mode 100644 deepsoftlog/experiments/mentions_countries/config.yaml rename deepsoftlog/experiments/{wiki_countries => mentions_countries}/data/raw/countries_S0.tsv (100%) rename deepsoftlog/experiments/{wiki_countries => mentions_countries}/data/raw/countries_S1.tsv (100%) create mode 100644 deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_country2text.tsv create mode 100644 deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_country2text_relation2text.tsv create mode 100644 deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_relation2text.tsv rename deepsoftlog/experiments/{wiki_countries => mentions_countries}/data/raw/countries_S2.tsv (100%) create mode 100644 deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_country2text.tsv create mode 100644 deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_country2text_relation2text.tsv create mode 100644 deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_relation2text.tsv rename deepsoftlog/experiments/{wiki_countries => mentions_countries}/data/raw/countries_S3.tsv (100%) create mode 100644 deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_country2text.tsv create mode 100644 deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_country2text_relation2text.tsv create mode 100644 deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_relation2text.tsv create mode 100644 deepsoftlog/experiments/mentions_countries/data/raw/country2text.csv rename deepsoftlog/experiments/{wiki_countries => mentions_countries}/data/raw/test.tsv (100%) rename deepsoftlog/experiments/{wiki_countries => mentions_countries}/data/raw/train.tsv (100%) rename deepsoftlog/experiments/{wiki_countries => mentions_countries}/data/raw/val.tsv (100%) rename deepsoftlog/experiments/{wiki_countries => mentions_countries}/data/templates/countries_S0_templates.pl (100%) rename deepsoftlog/experiments/{wiki_countries => mentions_countries}/data/templates/countries_S1_templates.pl (100%) rename deepsoftlog/experiments/{wiki_countries => mentions_countries}/data/templates/countries_S2_templates.pl (100%) rename deepsoftlog/experiments/{wiki_countries => mentions_countries}/data/templates/countries_S3_templates.pl (100%) create mode 100644 deepsoftlog/experiments/mentions_countries/dataset.py rename deepsoftlog/experiments/{wiki_countries/wiki_countries.py => mentions_countries/mentions_countries.py} (52%) delete mode 100644 deepsoftlog/experiments/wiki_countries/config.yaml delete mode 100644 deepsoftlog/experiments/wiki_countries/data/raw/tokens_tensor_list.pt delete mode 100644 deepsoftlog/experiments/wiki_countries/data/raw/wikicountries_test.tsv delete mode 100644 deepsoftlog/experiments/wiki_countries/data/raw/wikicountries_train.tsv delete mode 100644 deepsoftlog/experiments/wiki_countries/data/raw/wikicountries_val.tsv delete mode 100644 deepsoftlog/experiments/wiki_countries/dataset.py delete mode 100644 deepsoftlog/experiments/wiki_countries/preprocess_wikidata5m.py create mode 100755 mentions_countries.sh create mode 100755 wiki_countries.sh diff --git a/.gitignore b/.gitignore index 82ca924..5cdb8e0 100644 --- a/.gitignore +++ b/.gitignore @@ -135,4 +135,5 @@ dmypy.json /.idea/ .DS_Store -wandb \ No newline at end of file +wandb +*.sh diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..ea0ddcf --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,14 @@ +{ + "python.testing.pytestArgs": [ + "tests" + ], + "python.testing.unittestEnabled": true, + "python.testing.pytestEnabled": false, + "python.testing.unittestArgs": [ + "-v", + "-s", + "./tests", + "-p", + "*test*.py" + ] +} \ No newline at end of file diff --git a/deepsoftlog/data/__init__.py b/deepsoftlog/data/__init__.py index c342e67..cc9a65e 100644 --- a/deepsoftlog/data/__init__.py +++ b/deepsoftlog/data/__init__.py @@ -3,27 +3,10 @@ from .query import Query from ..logic.soft_term import SoftTerm, TensorTerm - -def nl2tsv(src_path, dst_path): - with open(src_path, "r") as f_in: - with open(dst_path, "w") as f_out: - for line in f_in: - line = line.strip() - arr = line.replace("(", " ").replace(")", " ").replace(",", " ").replace(".","").split(" ") - arr[0], arr[1] = arr[1], arr[0] - f_out.write("\t".join(arr) + "\n") - def load_tsv_file(filename: str): with open(filename, "r") as f: return [line.strip().split("\t") for line in f.readlines()] -def load_txt_file(filename: str): - with open(filename, "r") as f: - return [line.strip().split("\t") for line in f.readlines()] - -def load_lines(filename: str): - with open(filename, "r") as f: - return [line for line in f.readlines()] def data_to_prolog(rows, name="r", **kwargs): for row in rows: @@ -32,8 +15,10 @@ def data_to_prolog(rows, name="r", **kwargs): args = [SoftTerm(a) for a in args] yield Query(Expr(name, *args), **kwargs) + def to_prolog_image(img): return SoftTerm(Expr("lenet5", TensorTerm(img))) + def to_prolog_text(text): return SoftTerm(Expr("roberta", TensorTerm(text))) diff --git a/deepsoftlog/embeddings/embedding_store.py b/deepsoftlog/embeddings/embedding_store.py index a95bf0b..d0adbe9 100644 --- a/deepsoftlog/embeddings/embedding_store.py +++ b/deepsoftlog/embeddings/embedding_store.py @@ -7,7 +7,7 @@ from ..parser.vocabulary import Vocabulary from .distance import embedding_similarity from .initialize_vector import Initializer -from ..logic.soft_term import TensorTerm +from ..logic.soft_term import TensorTerm, TextTerm from .nn_models import EmbeddingFunctor from deepsoftlog.algebraic_prover.terms.expression import Expr @@ -53,7 +53,7 @@ def forward(self, term: Expr): return e def _embed_constant(self, term: Expr): - if isinstance(term, TensorTerm): + if isinstance(term, TensorTerm) or isinstance(term, TextTerm): return term.get_tensor().to(self.device) name = term.functor @@ -70,25 +70,28 @@ def _embed_functor(self, functor: Expr): def clear_cache(self): self._cache = dict() + if "('roberta', 1)" in self.functor_embeddings.keys(): + self.functor_embeddings["('roberta', 1)"].clear_cache() + if "('text', 1)" in self.functor_embeddings.keys(): + self.functor_embeddings["('text', 1)"].clear_cache() def to(self, device): self.device = device return super().to(device) - def get_soft_unification_matrix(self, distance_metric: str): - constants = list(self.constant_embeddings.keys()) - n = len(constants) + def get_soft_unification_matrix(self, distance_metric: str, names): + n = len(names) matrix = torch.zeros(n, n) - for i, c1 in enumerate(constants): - for j, c2 in enumerate(constants): + for i, c1 in enumerate(names): + for j, c2 in enumerate(names): e1, e2 = self.constant_embeddings[c1], self.constant_embeddings[c2] - matrix[i, j] = math.exp(embedding_similarity(e1, e2, distance_metric)) + matrix[i, j] = embedding_similarity(e1, e2, distance_metric) # log probabilities return matrix.detach().numpy() def create_embedding_store(config, vocab_sources: Iterable) -> EmbeddingStore: ndim = config['embedding_dimensions'] vocabulary = create_vocabulary(vocab_sources) - initializer = Initializer(EmbeddingFunctor, config['embedding_initialization'], ndim) + initializer = Initializer(EmbeddingFunctor, config['embedding_initialization'], ndim, config.get("text_embedding_mode")) store = EmbeddingStore(ndim, initializer, vocabulary) return store diff --git a/deepsoftlog/embeddings/initialize_vector.py b/deepsoftlog/embeddings/initialize_vector.py index 4fe7d6b..01c3040 100644 --- a/deepsoftlog/embeddings/initialize_vector.py +++ b/deepsoftlog/embeddings/initialize_vector.py @@ -3,19 +3,19 @@ from torch import Tensor from torch import nn -from ..embeddings.nn_models import LeNet5, XLMRobertaLarge +from ..embeddings.nn_models import LeNet5, RobertaBase, BaselineTextEmbedder SPECIAL_MODELS = { ("lenet5", 1): LeNet5, - ("roberta", 1): XLMRobertaLarge + ("roberta", 1): RobertaBase, } - class Initializer: - def __init__(self, model: nn.Module, init_mode: str, ndim: int): + def __init__(self, model: nn.Module, init_mode: str, ndim: int, text_embedding_mode: str = None): self.ndim = ndim self.init_mode = init_mode self.model = model + self.text_embedding_mode = text_embedding_mode def __call__(self, x) -> Tensor | nn.Module: if isinstance(x, str): @@ -37,6 +37,8 @@ def _initialize_constant(self, name: str) -> Tensor: return embedding def _initialize_functor(self, name: str, arity: int) -> nn.Module: + if name == "text" and arity == 1: + return RobertaBase(self.ndim) if self.text_embedding_mode == "LM" else BaselineTextEmbedder(self.ndim) if (name, arity) in SPECIAL_MODELS: return SPECIAL_MODELS[(name, arity)](self.ndim) return self.model(arity, self.ndim) diff --git a/deepsoftlog/embeddings/nn_models.py b/deepsoftlog/embeddings/nn_models.py index 66929cd..9e9fc65 100644 --- a/deepsoftlog/embeddings/nn_models.py +++ b/deepsoftlog/embeddings/nn_models.py @@ -4,173 +4,204 @@ class AdditionFunctor(nn.Module): - def __init__(self, *args): - super().__init__() + def __init__(self, *args): + super().__init__() - def forward(self, x): - result = _add_probs(x[0], x[1]) - for t in x[2:]: - result = _add_probs(result, t) - return result + def forward(self, x): + result = _add_probs(x[0], x[1]) + for t in x[2:]: + result = _add_probs(result, t) + return result def _add_probs(x1, x2): - result = torch.zeros(10).to(x1.device) - for i in range(10): - result += x1[i] * torch.roll(x2, i, 0) - return result + result = torch.zeros(10).to(x1.device) + for i in range(10): + result += x1[i] * torch.roll(x2, i, 0) + return result class CarryFunctor(nn.Module): - def __init__(self, *args): - super().__init__() + def __init__(self, *args): + super().__init__() - def forward(self, x): - c1 = _carry_probs(x[0], x[1]) - if len(x) == 2: - return c1 - a1 = _add_probs(x[0], x[1]) - c2 = _carry_probs(a1, x[2]) - result = torch.zeros(10).to(c1.device) - result[0] = c1[0] * c2[0] - result[1] = 1 - result[0] - return result + def forward(self, x): + c1 = _carry_probs(x[0], x[1]) + if len(x) == 2: + return c1 + a1 = _add_probs(x[0], x[1]) + c2 = _carry_probs(a1, x[2]) + result = torch.zeros(10).to(c1.device) + result[0] = c1[0] * c2[0] + result[1] = 1 - result[0] + return result def _carry_probs(x1, x2): - result = torch.zeros(10).to(x1.device) - result[0] = (torch.cumsum(x2, 0).flip((0,)) * x1).sum() - result[1] = 1 - result[0] - return result + result = torch.zeros(10).to(x1.device) + result[0] = (torch.cumsum(x2, 0).flip((0,)) * x1).sum() + result[1] = 1 - result[0] + return result + class EmbeddingFunctor(nn.Module): - def __init__(self, arity=1, ndims=128): - super().__init__() - hidden_dims = max(128, ndims) - self.model = nn.Sequential( - nn.Linear(arity * ndims, hidden_dims), - nn.LayerNorm(hidden_dims), - nn.ReLU(True), - nn.Linear(hidden_dims, hidden_dims), - nn.ReLU(True), - nn.Linear(hidden_dims, ndims), - ) - self.activation = torch.nn.Softmax(dim=0) - - def forward(self, x): - x = self.model(x.flatten()) - return self.activation(x) + def __init__(self, arity=1, ndims=128): + super().__init__() + hidden_dims = max(128, ndims) + self.model = nn.Sequential( + nn.Linear(arity * ndims, hidden_dims), + nn.LayerNorm(hidden_dims), + nn.ReLU(True), + nn.Linear(hidden_dims, hidden_dims), + nn.ReLU(True), + nn.Linear(hidden_dims, ndims), + ) + self.activation = torch.nn.Softmax(dim=0) + + def forward(self, x): + x = self.model(x.flatten()) + return self.activation(x) class LeNet5(nn.Module): - """ - LeNet5. A small convolutional network. - """ - - def __init__(self, output_features=10): - super().__init__() - self.encoder = nn.Sequential( - nn.Conv2d(1, 6, 5), # 1 28 28 -> 6 24 24 - nn.MaxPool2d(2, 2), # 6 24 24 -> 6 12 12 - nn.ReLU(True), - nn.Conv2d(6, 16, 5), # 6 12 12 -> 16 8 8 - nn.MaxPool2d(2, 2), # 16 8 8 -> 16 4 4 - nn.ReLU(True), - ) - self.classifier = nn.Sequential( - nn.Linear(16 * 4 * 4, 120), - nn.ReLU(), - nn.Linear(120, 84), - nn.ReLU(), - nn.Linear(84, output_features), - ) - self.activation = torch.nn.Softmax(dim=0) - - def forward(self, x): - x = self.encoder(x) - x = x.view(-1, 16 * 4 * 4) - x = self.classifier(x)[0] - return self.activation(x) - #return - -class Llama31_8B(nn.Module): - """ - TODO - """ - - def __init__(self): - pass # TODO - - def forward(self, x): - pass # TODO - - def eval(self): - pass # TODO + """ + LeNet5. A small convolutional network. + """ + + def __init__(self, output_features=10): + super().__init__() + self.encoder = nn.Sequential( + nn.Conv2d(1, 6, 5), # 1 28 28 -> 6 24 24 + nn.MaxPool2d(2, 2), # 6 24 24 -> 6 12 12 + nn.ReLU(True), + nn.Conv2d(6, 16, 5), # 6 12 12 -> 16 8 8 + nn.MaxPool2d(2, 2), # 16 8 8 -> 16 4 4 + nn.ReLU(True), + ) + self.classifier = nn.Sequential( + nn.Linear(16 * 4 * 4, 120), + nn.ReLU(), + nn.Linear(120, 84), + nn.ReLU(), + nn.Linear(84, output_features), + ) + self.activation = torch.nn.Softmax(dim=0) + + def forward(self, x): + x = self.encoder(x) + x = x.view(-1, 16 * 4 * 4) + x = self.classifier(x)[0] + return self.activation(x) + #return MULTIPLIER = 6364136223846793005 INCREMENT = 1 MODULUS = 2**64 def hash_tensor(x: Tensor) -> Tensor: - assert x.dtype == torch.int64 - while x.ndim > 0: - x = _reduce_last_axis(x) - return x.item() + assert x.dtype == torch.int64 + while x.ndim > 0: + x = _reduce_last_axis(x) + return x.item() @torch.no_grad() def _reduce_last_axis(x: Tensor) -> Tensor: - assert x.dtype == torch.int64 - acc = torch.zeros_like(x[..., 0]) - for i in range(x.shape[-1]): - acc *= MULTIPLIER - acc += INCREMENT - acc += x[..., i] - # acc %= MODULUS # Not really necessary. - return acc - -class XLMRobertaLarge(nn.Module): - """ - https://huggingface.co/FacebookAI/xlm-roberta-large - """ - - def __init__(self, ndims=1024): - super().__init__() - - self._tokenizer = AutoTokenizer.from_pretrained("xlm-roberta-large") - self.model = AutoModel.from_pretrained("xlm-roberta-large") - for name,param in self.model.encoder.named_parameters(): - if int(name.split(".")[1]) < 22: # All but the last layer - param.requires_grad = False - self.embedding_cache = {} - self.cache_count = 10 - - def half_precision(self): - self.model.half() - - for layer in model.modules(): - if isinstance(layer, nn.BatchNorm2d): - layer.float() - - def forward(self, x): - if hash_tensor(x) not in self.embedding_cache: - self.embedding_cache[hash_tensor(x)] = self._forward(x) - - return self.embedding_cache[hash_tensor(x)] - - def _forward(self, x): - tokens = x[:, 0, :] - attention_mask = x[:, 1, :] - - embedding = self.model(tokens, attention_mask) - pooler_output = embedding.pooler_output - - return torch.softmax(pooler_output, dim=1) - - def reset_cache(self): - self.embedding_cache = {} - + assert x.dtype == torch.int64 + acc = torch.zeros_like(x[..., 0]) + for i in range(x.shape[-1]): + acc *= MULTIPLIER + acc += INCREMENT + acc += x[..., i] + # acc %= MODULUS # Not really necessary. + return acc + +class RobertaBase(nn.Module): + """ + https://huggingface.co/FacebookAI/roberta-base + """ + + def __init__(self, ndims=100): + super().__init__() + self._tokenizer = AutoTokenizer.from_pretrained("xlm-roberta-base") + self.model = AutoModel.from_pretrained("xlm-roberta-base") + for name,param in self.model.encoder.named_parameters(): + if int(name.split(".")[1]) < 11: # All but the last layer + param.requires_grad = False + self.output_layer = nn.Linear(768, ndims) + self.embedding_cache = {} + self.half_precision = True + self.counter = 0 + + def half_precision(self): + self.model.half() + + for layer in self.model.modules(): + if isinstance(layer, nn.BatchNorm2d): + layer.float() + if isinstance(layer, nn.LayerNorm): + layer.float() + + def forward(self, x): + if hash_tensor(x) not in self.embedding_cache: + self.embedding_cache[hash_tensor(x)] = self._forward(x) + + return self.embedding_cache[hash_tensor(x)] + + def _forward(self, x): + + tokens = x[:, 0, :] + attention_mask = x[:, 1, :] + + embedding = self.model(tokens[:, :512], attention_mask[:, :512]) # max context length is 512 + pooler_output = embedding.pooler_output + + return torch.softmax(self.output_layer(pooler_output), dim=1) + + def clear_cache(self): + self.embedding_cache = {} + +class BaselineTextEmbedder(nn.Module): + def __init__(self, ndim: int): + super().__init__() + self.tokenizer = AutoTokenizer.from_pretrained("xlm-roberta-large") + self.word_embedding_store = TokenEmbeddingStore(ndim, len(self.tokenizer.get_vocab())) + + def __call__(self, x): + tokens = x[:, 0, :] + attention_mask = x[:, 1, :] + return self.word_embedding_store.get_sentence_embedding(tokens, attention_mask) + + def clear_cache(self): + pass + + +class TokenEmbeddingStore(nn.Module): + """ + Stores the embeddings words. + """ + def __init__(self, ndim: int, nb_tokens: int): + super().__init__() + self.ndim = ndim + self.nb_tokens = nb_tokens + + self.embeddings = torch.randn((nb_tokens, ndim)) + self.device_set = False + + print(f"- Initializing {nb_tokens} word embeddings of size {ndim}") + + def get_embeddings(self, idxs): + return self.embeddings[idxs] + + def get_sentence_embedding(self, idxs, mask): + if not self.device_set: + self.embeddings = self.embeddings.to(idxs.device) + self.device_set = True + + return torch.mean(self.embeddings[torch.masked_select(idxs, (mask==1))], dim=0) if __name__ == "__main__": - model = XLMRobertaLarge() - embedding = model(["Hello, my dog is cute.", "Hello, my cat is cute."]) - print(embedding) + model = RobertaBase() + tokenizer = AutoTokenizer.from_pretrained("xlm-roberta-large") + ts = list([torch.tensor(x) for x in tokenizer(["Hello, my dog is cute.", "Hello, my cat is cute."]).values()]) + embedding = model(torch.stack(ts, dim=1)) + print(embedding) diff --git a/deepsoftlog/experiments/countries/config.yaml b/deepsoftlog/experiments/countries/config.yaml index 2b2cdbd..d0454c0 100644 --- a/deepsoftlog/experiments/countries/config.yaml +++ b/deepsoftlog/experiments/countries/config.yaml @@ -12,8 +12,8 @@ optimizer: AdamW embedding_learning_rate: 0.01 functor_learning_rate: 0 weight_decay: 0 -nb_epochs: 5 -batch_size: 8 +nb_epochs: 6 +batch_size: 4 grad_clip: null max_proofs: null max_depth: 2 diff --git a/deepsoftlog/experiments/countries/countries.py b/deepsoftlog/experiments/countries/countries.py index 6d55a91..a765e47 100644 --- a/deepsoftlog/experiments/countries/countries.py +++ b/deepsoftlog/experiments/countries/countries.py @@ -7,6 +7,17 @@ from deepsoftlog.training.loss import nll_loss, get_optimizer from deepsoftlog.training.trainer import Trainer +def visualise(trainer, logger, cfg): + # visualise task + region_matrix, subregion_matrix = get_located_in_matrix(cfg.name) + fig1 = visualise_matrix(region_matrix, COUNTRIES) + fig2 = visualise_matrix(subregion_matrix, COUNTRIES) + logger.log_fig(fig1, name="region matrix") + logger.log_fig(fig2, name="subregion matrix") + # visualise soft unification scores + names, matrix = trainer.program.get_soft_unification_matrix() + fig = visualise_matrix(matrix, names) + logger.log_fig(fig, name="similarity matrix") def train(cfg): cfg = load_config(cfg) @@ -25,16 +36,7 @@ def train(cfg): trainer.val_dataloader = eval_dataloader trainer.train(cfg) trainer.eval(get_test_dataloader()) - # visualise task - region_matrix, subregion_matrix = get_located_in_matrix(cfg.name) - fig1 = visualise_matrix(region_matrix, COUNTRIES) - fig2 = visualise_matrix(subregion_matrix, COUNTRIES) - logger.log_fig(fig1, name="region matrix") - logger.log_fig(fig2, name="subregion matrix") - # visualise soft unification scores - names, matrix = trainer.program.get_soft_unification_matrix() - fig = visualise_matrix(matrix, names) - logger.log_fig(fig, name="similarity matrix") + visualise(trainer, logger, cfg) def eval(folder: str): @@ -47,7 +49,7 @@ def eval(folder: str): trainer.max_branching = cfg['max_branching'] trainer.max_depth = cfg['max_depth'] trainer.eval(eval_dataloader) - + #visualise(trainer, logger, cfg) if __name__ == "__main__": diff --git a/deepsoftlog/experiments/countries/visualise.py b/deepsoftlog/experiments/countries/visualise.py index b460831..159be29 100644 --- a/deepsoftlog/experiments/countries/visualise.py +++ b/deepsoftlog/experiments/countries/visualise.py @@ -9,7 +9,7 @@ REGIONS = ['africa', 'americas', 'asia', 'europe', 'oceania'] def visualise_matrix(matrix, names): - idxs = [COUNTRIES.index(name) for name in filter(lambda x: x in COUNTRIES, names)] + idxs = [list(names).index(c) for c in filter(lambda x: x in names, COUNTRIES)] matrix = matrix[idxs][:, idxs] fig, ax = plt.subplots(figsize=(8, 6)) cax = ax.matshow(matrix, cmap='viridis') diff --git a/deepsoftlog/experiments/mentions_countries/config.yaml b/deepsoftlog/experiments/mentions_countries/config.yaml new file mode 100644 index 0000000..c8bf8e7 --- /dev/null +++ b/deepsoftlog/experiments/mentions_countries/config.yaml @@ -0,0 +1,23 @@ +project: mentions_countries +verbose: true +data_subset: null +device: cuda +device_nb: 2 +semantics: sdd2 + +# optimization +optimizer: AdamW +embedding_learning_rate: 0.01 +functor_learning_rate: 0.0001 +batch_size: 4 +nb_epochs: 6 +grad_clip: null +max_proofs: null +max_depth: 2 +max_branching: 4 + +# embeddings +embedding_dimensions: 100 +embedding_initialization: sphere +embedding_metric: angle +text_embedding_mode: baseline \ No newline at end of file diff --git a/deepsoftlog/experiments/wiki_countries/data/raw/countries_S0.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S0.tsv similarity index 100% rename from deepsoftlog/experiments/wiki_countries/data/raw/countries_S0.tsv rename to deepsoftlog/experiments/mentions_countries/data/raw/countries_S0.tsv diff --git a/deepsoftlog/experiments/wiki_countries/data/raw/countries_S1.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S1.tsv similarity index 100% rename from deepsoftlog/experiments/wiki_countries/data/raw/countries_S1.tsv rename to deepsoftlog/experiments/mentions_countries/data/raw/countries_S1.tsv diff --git a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_country2text.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_country2text.tsv new file mode 100644 index 0000000..61ad124 --- /dev/null +++ b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_country2text.tsv @@ -0,0 +1,1111 @@ +text(पलाउ) locatedIn text(Micronesië) +text(Palaos) locatedIn text(Oceania) +text(Maldives) locatedIn text(Asia:del:Sur) +text(Malediven) locatedIn text(Asia) +text(Brunei) locatedIn text(Sudeste:Asiático) +text(汶莱) locatedIn text(亞洲) +text(ब्रुनेई) neighborOf text(Malasia) +text(जापान) locatedIn text(Oost-Azië) +text(اليابان) locatedIn text(آسيا) +text(荷蘭) locatedIn text(西欧) +text(Netherlands) neighborOf text(Germany) +text(هولندا) neighborOf text(Belgium) +text(Turquía) locatedIn text(पश्चिमी:एशिया) +text(Turkey) neighborOf text(亞美尼亞) +text(तुर्की) neighborOf text(أذربيجان) +text(Turkije) neighborOf text(ईरान) +text(土耳其) neighborOf text(希腊) +text(تركيا) neighborOf text(格鲁吉亚) +text(Turquía) neighborOf text(Bulgarije) +text(Turkey) neighborOf text(Iraq) +text(तुर्की) neighborOf text(Syrië) +text(أنغولا) locatedIn text(Central:Africa) +text(Angola) locatedIn text(अफ्रीका) +text(अंगोला) neighborOf text(कांगो:लोकतान्त्रिक:गणराज्य) +text(Angola) neighborOf text(纳米比亚) +text(Angola) neighborOf text(贊比亞) +text(安哥拉) neighborOf text(剛果共和國) +text(Armenia) locatedIn text(Zuidwest-Azië) +text(أرمينيا) locatedIn text(एशिया) +text(Armenië) neighborOf text(Georgia) +text(Armenia) neighborOf text(Azerbeidzjan) +text(आर्मीनिया) neighborOf text(Irán) +text(亞美尼亞) neighborOf text(Turkije) +text(अण्टीगुआ:और:बारबूडा) locatedIn text(Caribe) +text(Antigua:y:Barbuda) locatedIn text(美洲) +text(Esuatini) locatedIn text(إفريقيا:الجنوبية) +text(Swaziland) locatedIn text(非洲) +text(एस्वातीनी) neighborOf text(Zuid-Afrika) +text(Eswatini) neighborOf text(Mozambique) +text(Wallis:and:Futuna) locatedIn text(पोलीनेशिया) +text(वालिस:और:फ़्यूचूना) locatedIn text(Oceanië) +text(उरुग्वे) locatedIn text(América:del:Sur) +text(Uruguay) locatedIn text(महाअमेरिका) +text(Uruguay) neighborOf text(阿根廷) +text(Uruguay) neighborOf text(ब्राज़ील) +text(Zambia) locatedIn text(东部非洲) +text(Zambia) locatedIn text(إفريقيا) +text(زامبيا) neighborOf text(تنزانيا) +text(ज़ाम्बिया) neighborOf text(موزمبيق) +text(Zambia) neighborOf text(República:Democrática:del:Congo) +text(贊比亞) neighborOf text(أنغولا) +text(Zambia) neighborOf text(بوتسوانا) +text(Zambia) neighborOf text(زيمبابوي) +text(زامبيا) neighborOf text(Namibia) +text(ज़ाम्बिया) neighborOf text(馬拉威) +text(塞浦路斯) locatedIn text(पूर्वी:यूरोप) +text(Chipre) locatedIn text(أوروبا) +text(Cyprus) neighborOf text(英国) +text(Reino:Unido) locatedIn text(Northern:Europe) +text(英国) locatedIn text(欧洲) +text(Verenigd:Koninkrijk) neighborOf text(Verenigd:Koninkrijk) +text(蒲隆地) locatedIn text(África:Oriental) +text(Burundi) locatedIn text(Africa) +text(बुरुण्डी) neighborOf text(Congo-Kinshasa) +text(Burundi) neighborOf text(卢旺达) +text(Burundi) neighborOf text(Tanzania) +text(República:Centroafricana) locatedIn text(मध्य:अफ्रीका) +text(मध्य:अफ़्रीकी:गणराज्य) locatedIn text(África) +text(中非共和國) neighborOf text(Tsjaad) +text(جمهورية:إفريقيا:الوسطى) neighborOf text(Congo-Brazzaville) +text(Central:African:Republic) neighborOf text(Democratic:Republic:of:the:Congo) +text(Centraal-Afrikaanse:Republiek) neighborOf text(दक्षिण:सूडान) +text(República:Centroafricana) neighborOf text(Kameroen) +text(मध्य:अफ़्रीकी:गणराज्य) neighborOf text(सूडान) +text(Tonga) locatedIn text(玻里尼西亞) +text(टोंगा) locatedIn text(大洋洲) +text(कोत:दिव्वार) locatedIn text(غرب:إفريقيا) +text(科特迪瓦) locatedIn text(Afrika) +text(Ivoorkust) neighborOf text(布吉納法索) +text(Costa:de:Marfil) neighborOf text(Ghana) +text(Ivory:Coast) neighborOf text(Liberia) +text(ساحل:العاج) neighborOf text(Mali) +text(कोत:दिव्वार) neighborOf text(गिनी) +text(سيراليون) locatedIn text(पश्चिमी:अफ्रीका) +text(Sierra:Leone) neighborOf text(Liberia) +text(Sierra:Leone) neighborOf text(Guinee) +text(مايوت) locatedIn text(पूर्वी:अफ्रीका) +text(Mayotte) locatedIn text(अफ्रीका) +text(波蘭) locatedIn text(Oost-Europa) +text(Poland) neighborOf text(ألمانيا) +text(पोलैंड) neighborOf text(Ucrania) +text(بولندا) neighborOf text(स्लोवाकिया) +text(Polonia) neighborOf text(Belarus) +text(Polen) neighborOf text(Russia) +text(波蘭) neighborOf text(立陶宛) +text(Poland) neighborOf text(चेक:गणराज्य) +text(कज़ाख़िस्तान) locatedIn text(Centraal-Azië) +text(Kazachstan) locatedIn text(Azië) +text(Kazajistán) neighborOf text(तुर्कमेनिस्तान) +text(哈萨克斯坦) neighborOf text(República:Popular:China) +text(Kazakhstan) neighborOf text(Kyrgyzstan) +text(كازاخستان) neighborOf text(उज़्बेकिस्तान) +text(कज़ाख़िस्तान) neighborOf text(रूस) +text(Uzbekistan) locatedIn text(中亚) +text(أوزبكستان) locatedIn text(Asia) +text(乌兹别克斯坦) neighborOf text(أفغانستان) +text(Uzbekistán) neighborOf text(Turkmenistán) +text(Oezbekistan) neighborOf text(Kazachstan) +text(उज़्बेकिस्तान) neighborOf text(किर्गिज़स्तान) +text(Uzbekistan) neighborOf text(塔吉克斯坦) +text(तुर्क:और:केकोस:द्वीपसमूह) locatedIn text(الكاريبي) +text(Turks-:en:Caicoseilanden) locatedIn text(Amerika) +text(Nueva:Caledonia) locatedIn text(Melanesia) +text(كاليدونيا:الجديدة) locatedIn text(أوقيانوسيا) +text(पाकिस्तान) locatedIn text(Zuid-Azië) +text(Pakistan) neighborOf text(चीनी:जनवादी:गणराज्य) +text(باكستان) neighborOf text(阿富汗) +text(巴基斯坦) neighborOf text(伊朗) +text(Pakistan) neighborOf text(भारत) +text(अर्जेण्टीना) locatedIn text(दक्षिण:अमेरिका) +text(Argentinië) locatedIn text(América) +text(الأرجنتين) neighborOf text(Bolivia) +text(Argentina) neighborOf text(Chile) +text(Argentina) neighborOf text(البرازيل) +text(阿根廷) neighborOf text(巴拉圭) +text(अर्जेण्टीना) neighborOf text(烏拉圭) +text(Cuba) locatedIn text(加勒比地区) +text(Cuba) locatedIn text(Americas) +text(Servië) locatedIn text(Europa:del:Sur) +text(सर्बिया) neighborOf text(Macedonia:del:Norte) +text(Serbia) neighborOf text(मॉन्टेनीग्रो) +text(صربيا) neighborOf text(Kosovo) +text(Serbia) neighborOf text(Bosnië:en:Herzegovina) +text(塞爾維亞) neighborOf text(क्रोएशिया) +text(Servië) neighborOf text(المجر) +text(सर्बिया) neighborOf text(बुल्गारिया) +text(Serbia) neighborOf text(Romania) +text(捷克) locatedIn text(Eastern:Europe) +text(Czech:Republic) locatedIn text(Europa) +text(Tsjechië) neighborOf text(德國) +text(جمهورية:التشيك) neighborOf text(ऑस्ट्रिया) +text(República:Checa) neighborOf text(पोलैंड) +text(चेक:गणराज्य) neighborOf text(سلوفاكيا) +text(निकारागुआ) locatedIn text(中美洲) +text(Nicaragua) neighborOf text(Honduras) +text(尼加拉瓜) neighborOf text(Costa:Rica) +text(فيتنام) locatedIn text(दक्षिण:पूर्व:एशिया) +text(वियतनाम) locatedIn text(Asia) +text(Vietnam) neighborOf text(Cambodja) +text(Vietnam) neighborOf text(Laos) +text(Vietnam) neighborOf text(Volksrepubliek:China) +text(紐埃) locatedIn text(Polynesië) +text(Niue) locatedIn text(Oceanía) +text(Canada) locatedIn text(North:America) +text(Canada) locatedIn text(أمريكتان) +text(कनाडा) neighborOf text(संयुक्त:राज्य:अमेरिका) +text(Slowakije) locatedIn text(मध्य:यूरोप) +text(Slovakia) neighborOf text(烏克蘭) +text(Eslovaquia) neighborOf text(بولندا) +text(斯洛伐克) neighborOf text(奧地利) +text(स्लोवाकिया) neighborOf text(Hungary) +text(سلوفاكيا) neighborOf text(捷克) +text(Mozambique) locatedIn text(East:Africa) +text(Mozambique) neighborOf text(Tanzania) +text(मोज़ाम्बीक) neighborOf text(斯威士兰) +text(莫桑比克) neighborOf text(津巴布韦) +text(Mozambique) neighborOf text(Zambia) +text(موزمبيق) neighborOf text(مالاوي) +text(Mozambique) neighborOf text(South:Africa) +text(Aruba) locatedIn text(कैरिबिया) +text(阿魯巴) locatedIn text(美洲) +text(Bolivia) locatedIn text(Zuid-Amerika) +text(Bolivia) locatedIn text(महाअमेरिका) +text(बोलिविया) neighborOf text(Chili) +text(بوليفيا) neighborOf text(Brasil) +text(玻利維亞) neighborOf text(पैराग्वे) +text(Bolivia) neighborOf text(Argentinië) +text(Bolivia) neighborOf text(Perú) +text(Colombia) locatedIn text(South:America) +text(哥伦比亚) locatedIn text(Amerika) +text(Colombia) neighborOf text(الإكوادور) +text(कोलम्बिया) neighborOf text(Brazil) +text(كولومبيا) neighborOf text(Panama) +text(Colombia) neighborOf text(Venezuela) +text(Colombia) neighborOf text(بيرو) +text(فيجي) locatedIn text(Melanesia) +text(Fiyi) locatedIn text(ओशिआनिया) +text(Republic:of:the:Congo) locatedIn text(中部非洲) +text(कांगो:गणराज्य) neighborOf text(Gabon) +text(República:del:Congo) neighborOf text(刚果民主共和国) +text(جمهورية:الكونغو) neighborOf text(Angola) +text(剛果共和國) neighborOf text(Cameroon) +text(Congo-Brazzaville) neighborOf text(中非共和國) +text(सउदी:अरब) locatedIn text(Asia:Occidental) +text(Saudi:Arabia) neighborOf text(卡塔尔) +text(Saoedi-Arabië) neighborOf text(संयुक्त:अरब:अमीरात) +text(Arabia:Saudí) neighborOf text(जॉर्डन) +text(沙特阿拉伯) neighborOf text(اليمن) +text(السعودية) neighborOf text(ओमान) +text(सउदी:अरब) neighborOf text(科威特) +text(Saudi:Arabia) neighborOf text(Irak) +text(El:Salvador) locatedIn text(केंद्रीय:अमेरिका) +text(अल:साल्वाडोर) locatedIn text(América) +text(السلفادور) neighborOf text(Guatemala) +text(薩爾瓦多) neighborOf text(हॉण्डुरस) +text(مدغشقر) locatedIn text(شرق:إفريقيا) +text(馬達加斯加) locatedIn text(非洲) +text(أستراليا) locatedIn text(nan) +text(ऑस्ट्रेलिया) locatedIn text(Oceania) +text(Namibia) locatedIn text(Zuidelijk:Afrika) +text(ناميبيا) locatedIn text(إفريقيا) +text(नामीबिया) neighborOf text(贊比亞) +text(Namibië) neighborOf text(अंगोला) +text(纳米比亚) neighborOf text(Sudáfrica) +text(Namibia) neighborOf text(Botswana) +text(توفالو) locatedIn text(Polinesia) +text(Tuvalu) locatedIn text(Oceanië) +text(nan) locatedIn text(उत्तरी:यूरोप) +text(Svalbard:y:Jan:Mayen) locatedIn text(यूरोप) +text(Isle:of:Man) locatedIn text(Noord-Europa) +text(Isla:de:Man) locatedIn text(Europe) +text(गयाना) locatedIn text(أمريكا:الجنوبية) +text(圭亚那) neighborOf text(巴西) +text(Guyana) neighborOf text(सूरीनाम) +text(غيانا) neighborOf text(فنزويلا) +text(Vaticaanstad) locatedIn text(南欧) +text(Ciudad:del:Vaticano) locatedIn text(Europa) +text(الفاتيكان) neighborOf text(Italy) +text(英屬印度洋領地) locatedIn text(Oost-Afrika) +text(Brits:Indische:Oceaanterritorium) locatedIn text(Africa) +text(نيجيريا) locatedIn text(West:Africa) +text(Nigeria) locatedIn text(África) +text(Nigeria) neighborOf text(Chad) +text(Nigeria) neighborOf text(Niger) +text(नाइजीरिया) neighborOf text(Camerún) +text(奈及利亞) neighborOf text(Benin) +text(जर्मनी) locatedIn text(पश्चिमी:यूरोप) +text(Duitsland) neighborOf text(डेनमार्क) +text(Alemania) neighborOf text(Nederland) +text(Germany) neighborOf text(Polonia) +text(ألمانيا) neighborOf text(लक्ज़मबर्ग) +text(德國) neighborOf text(比利時) +text(जर्मनी) neighborOf text(Suiza) +text(Duitsland) neighborOf text(Austria) +text(Alemania) neighborOf text(France) +text(Germany) neighborOf text(Czech:Republic) +text(Burkina:Faso) locatedIn text(西非) +text(Burkina:Faso) neighborOf text(टोगो) +text(بوركينا:فاسو) neighborOf text(Benín) +text(Burkina:Faso) neighborOf text(Niger) +text(बुर्किना:फासो) neighborOf text(घाना) +text(布吉納法索) neighborOf text(Mali) +text(Burkina:Faso) neighborOf text(科特迪瓦) +text(तंज़ानिया) locatedIn text(东部非洲) +text(坦桑尼亞) neighborOf text(Uganda) +text(Tanzania) neighborOf text(Mozambique) +text(تنزانيا) neighborOf text(جمهورية:الكونغو:الديمقراطية) +text(Tanzania) neighborOf text(Kenia) +text(Tanzania) neighborOf text(Rwanda) +text(तंज़ानिया) neighborOf text(Zambia) +text(坦桑尼亞) neighborOf text(Malawi) +text(Tanzania) neighborOf text(بوروندي) +text(Islas:Marianas:del:Norte) locatedIn text(密克羅尼西亞群島) +text(جزر:ماريانا:الشمالية) locatedIn text(大洋洲) +text(Belize) locatedIn text(Central:America) +text(बेलीज़) locatedIn text(Americas) +text(Belice) neighborOf text(危地马拉) +text(بليز) neighborOf text(المكسيك) +text(Noruega) locatedIn text(Europa:del:Norte) +text(नॉर्वे) neighborOf text(Zweden) +text(النرويج) neighborOf text(芬蘭) +text(Noorwegen) neighborOf text(俄罗斯) +text(Cocoseilanden) locatedIn text(nan) +text(Cocos:(Keeling):Islands) locatedIn text(أوقيانوسيا) +text(Laos) locatedIn text(Zuidoost-Azië) +text(लाओस) locatedIn text(亞洲) +text(Laos) neighborOf text(People's:Republic:of:China) +text(لاوس) neighborOf text(كمبوديا) +text(老撾) neighborOf text(Myanmar) +text(Laos) neighborOf text(越南) +text(Laos) neighborOf text(تايلاند) +text(सहरावी:अरब:जनतांत्रिक:गणराज्य) locatedIn text(North:Africa) +text(撒拉威阿拉伯民主共和國) locatedIn text(Afrika) +text(Sahrawi:Arabische:Democratische:Republiek) neighborOf text(Algeria) +text(الجمهورية:العربية:الصحراوية:الديمقراطية) neighborOf text(Mauritania) +text(Sahrawi:Arab:Democratic:Republic) neighborOf text(Marokko) +text(Suriname) locatedIn text(南美洲) +text(Surinam) locatedIn text(أمريكتان) +text(蘇利南) neighborOf text(Brazilië) +text(سورينام) neighborOf text(Frans-Guyana) +text(Suriname) neighborOf text(Guyana) +text(聖誕島) locatedIn text(Australië:en:Nieuw-Zeeland) +text(Christmaseiland) locatedIn text(Oceanía) +text(साओ:तोमे:और:प्रिन्सिपी) locatedIn text(Centraal-Afrika) +text(Santo:Tomé:y:Príncipe) locatedIn text(अफ्रीका) +text(مصر) locatedIn text(उत्तर:अफ़्रीका) +text(Egypt) neighborOf text(利比亞) +text(मिस्र) neighborOf text(以色列) +text(Egipto) neighborOf text(苏丹) +text(بلغاريا) locatedIn text(东欧) +text(保加利亚) neighborOf text(北马其顿) +text(Bulgaria) neighborOf text(土耳其) +text(Bulgaria) neighborOf text(اليونان) +text(Bulgarije) neighborOf text(صربيا) +text(बुल्गारिया) neighborOf text(羅馬尼亞) +text(几内亚) locatedIn text(África:Occidental) +text(Guinea) locatedIn text(非洲) +text(غينيا) neighborOf text(غينيا:بيساو) +text(Guinea) neighborOf text(Sierra:Leona) +text(गिनी) neighborOf text(مالي) +text(Guinee) neighborOf text(लाइबेरिया) +text(几内亚) neighborOf text(Senegal) +text(Guinea) neighborOf text(Ivoorkust) +text(स्पेन) locatedIn text(أوروبا:الجنوبية) +text(西班牙) neighborOf text(Marruecos) +text(Spain) neighborOf text(जिब्राल्टर) +text(Spanje) neighborOf text(Andorra) +text(إسبانيا) neighborOf text(Francia) +text(España) neighborOf text(البرتغال) +text(كوستاريكا) locatedIn text(أمريكا:الوسطى) +text(Costa:Rica) locatedIn text(美洲) +text(哥斯达黎加) neighborOf text(بنما) +text(Costa:Rica) neighborOf text(نيكاراغوا) +text(माल्टा) locatedIn text(दक्षिणी:यूरोप) +text(Malta) locatedIn text(أوروبا) +text(Portugal) locatedIn text(Southern:Europe) +text(Portugal) locatedIn text(欧洲) +text(Portugal) neighborOf text(स्पेन) +text(Roemenië) locatedIn text(أوروبا:الشرقية) +text(رومانيا) locatedIn text(Europa) +text(रोमानिया) neighborOf text(युक्रेन) +text(Rumania) neighborOf text(匈牙利) +text(Romania) neighborOf text(मोल्डोवा) +text(羅馬尼亞) neighborOf text(بلغاريا) +text(Roemenië) neighborOf text(Serbia) +text(سان:مارينو) locatedIn text(Zuid-Europa) +text(圣马力诺) locatedIn text(यूरोप) +text(San:Marino) neighborOf text(إيطاليا) +text(موريتانيا) locatedIn text(West-Afrika) +text(मॉरीतानिया) locatedIn text(إفريقيا) +text(Mauritanië) neighborOf text(阿爾及利亞) +text(毛里塔尼亞) neighborOf text(Mali) +text(Mauritania) neighborOf text(República:Árabe:Saharaui:Democrática) +text(Mauritania) neighborOf text(Senegal) +text(Trinidad:y:Tobago) locatedIn text(Caribbean) +text(Trinidad:en:Tobago) locatedIn text(महाअमेरिका) +text(Baréin) locatedIn text(西亚) +text(Bahrain) locatedIn text(آسيا) +text(म्यान्मार) locatedIn text(东南亚) +text(Myanmar) neighborOf text(印度) +text(ميانمار) neighborOf text(Bangladesh) +text(緬甸) neighborOf text(中华人民共和国) +text(Birmania) neighborOf text(लाओस) +text(Myanmar) neighborOf text(Thailand) +text(العراق) locatedIn text(West:Asia) +text(इराक) neighborOf text(تركيا) +text(Irak) neighborOf text(Saoedi-Arabië) +text(伊拉克) neighborOf text(Iran) +text(Iraq) neighborOf text(Jordan) +text(Irak) neighborOf text(Kuwait) +text(العراق) neighborOf text(Syria) +text(南乔治亚和南桑威奇群岛) locatedIn text(América:del:Sur) +text(Zuid-Georgia:en:de:Zuidelijke:Sandwicheilanden) locatedIn text(Amerika) +text(آيسلندا) locatedIn text(北歐) +text(Islandia) locatedIn text(Europe) +text(कांगो:लोकतान्त्रिक:गणराज्य) locatedIn text(África:Central) +text(República:Democrática:del:Congo) locatedIn text(Africa) +text(Congo-Kinshasa) neighborOf text(Uganda) +text(Democratic:Republic:of:the:Congo) neighborOf text(تنزانيا) +text(刚果民主共和国) neighborOf text(Republic:of:the:Congo) +text(جمهورية:الكونغو:الديمقراطية) neighborOf text(جمهورية:إفريقيا:الوسطى) +text(कांगो:लोकतान्त्रिक:गणराज्य) neighborOf text(Angola) +text(República:Democrática:del:Congo) neighborOf text(रवाण्डा) +text(Congo-Kinshasa) neighborOf text(Sudán:del:Sur) +text(Democratic:Republic:of:the:Congo) neighborOf text(Zambia) +text(刚果民主共和国) neighborOf text(蒲隆地) +text(Seychellen) locatedIn text(África:Oriental) +text(Seychelles) locatedIn text(África) +text(Kirgizië) locatedIn text(मध्य:एशिया) +text(Kirguistán) neighborOf text(الصين) +text(吉尔吉斯斯坦) neighborOf text(Kazajistán) +text(قرغيزستان) neighborOf text(Tajikistan) +text(Kyrgyzstan) neighborOf text(أوزبكستان) +text(波札那) locatedIn text(Southern:Africa) +text(Botsuana) locatedIn text(Afrika) +text(Botswana) neighborOf text(ज़िम्बाब्वे) +text(बोत्सवाना) neighborOf text(Namibia) +text(بوتسوانا) neighborOf text(زامبيا) +text(Botswana) neighborOf text(جنوب:إفريقيا) +text(جزر:فارو) locatedIn text(أوروبا:الشمالية) +text(Faeröer) locatedIn text(Europa) +text(Jamaica) locatedIn text(Caraïben) +text(Jamaica) locatedIn text(América) +text(ساموا:الأمريكية) locatedIn text(Polynesia) +text(Amerikaans-Samoa) locatedIn text(ओशिआनिया) +text(लेसोथो) locatedIn text(दक्षिणी:अफ्रीका) +text(Lesotho) locatedIn text(अफ्रीका) +text(ليسوتو) neighborOf text(南非) +text(سريلانكا) locatedIn text(جنوب:آسيا) +text(श्रीलंका) neighborOf text(India) +text(बेल्जियम) locatedIn text(West-Europa) +text(Bélgica) locatedIn text(أوروبا) +text(بلجيكا) neighborOf text(ألمانيا) +text(België) neighborOf text(卢森堡) +text(Belgium) neighborOf text(فرنسا) +text(比利時) neighborOf text(नीदरलैण्ड) +text(Qatar) locatedIn text(غرب:آسيا) +text(Catar) locatedIn text(एशिया) +text(क़तर) neighborOf text(Arabia:Saudí) +text(جزر:سليمان) locatedIn text(ميلانيزيا) +text(Solomon:Islands) locatedIn text(Oceania) +text(敘利亞) locatedIn text(पश्चिमी:एशिया) +text(سوريا) locatedIn text(Azië) +text(सीरिया) neighborOf text(Israel) +text(Siria) neighborOf text(Turquía) +text(Syrië) neighborOf text(Jordania) +text(Syria) neighborOf text(黎巴嫩) +text(敘利亞) neighborOf text(इराक) +text(India) locatedIn text(दक्षिण:एशिया) +text(الهند) locatedIn text(Asia) +text(India) neighborOf text(अफ़्ग़ानिस्तान) +text(भारत) neighborOf text(Bhutan) +text(印度) neighborOf text(बांग्लादेश) +text(India) neighborOf text(República:Popular:China) +text(India) neighborOf text(尼泊爾) +text(الهند) neighborOf text(म्यान्मार) +text(India) neighborOf text(Pakistán) +text(भारत) neighborOf text(Sri:Lanka) +text(Morocco) locatedIn text(Norte:de:África) +text(المغرب) neighborOf text(Argelia) +text(मोरक्को) neighborOf text(西班牙) +text(摩洛哥) neighborOf text(सहरावी:अरब:जनतांत्रिक:गणराज्य) +text(Kenia) locatedIn text(पूर्वी:अफ्रीका) +text(Kenya) locatedIn text(非洲) +text(कीनिया) neighborOf text(أوغندا) +text(肯尼亚) neighborOf text(Tanzania) +text(كينيا) neighborOf text(الصومال) +text(Kenia) neighborOf text(南蘇丹) +text(Kenia) neighborOf text(埃塞俄比亚) +text(Zuid-Soedan) locatedIn text(وسط:إفريقيا) +text(جنوب:السودان) locatedIn text(إفريقيا) +text(South:Sudan) neighborOf text(Oeganda) +text(दक्षिण:सूडान) neighborOf text(جمهورية:الكونغو:الديمقراطية) +text(Sudán:del:Sur) neighborOf text(Kenya) +text(南蘇丹) neighborOf text(Central:African:Republic) +text(Zuid-Soedan) neighborOf text(Soedan) +text(جنوب:السودان) neighborOf text(इथियोपिया) +text(Ghana) locatedIn text(غرب:إفريقيا) +text(Ghana) neighborOf text(Burkina:Faso) +text(迦納) neighborOf text(Costa:de:Marfil) +text(غانا) neighborOf text(توغو) +text(Tadzjikistan) locatedIn text(Asia:Central) +text(طاجيكستان) locatedIn text(Asia) +text(ताजीकिस्तान) neighborOf text(चीनी:जनवादी:गणराज्य) +text(Tayikistán) neighborOf text(किर्गिज़स्तान) +text(塔吉克斯坦) neighborOf text(Afghanistan) +text(Tajikistan) neighborOf text(乌兹别克斯坦) +text(جزر:مارشال) locatedIn text(Micronesia) +text(Marshalleilanden) locatedIn text(Oceanië) +text(कैमरुन) locatedIn text(Central:Africa) +text(喀麦隆) locatedIn text(Africa) +text(الكاميرون) neighborOf text(تشاد) +text(Kameroen) neighborOf text(कांगो:गणराज्य) +text(Cameroon) neighborOf text(Gabón) +text(Camerún) neighborOf text(赤道几内亚) +text(कैमरुन) neighborOf text(Centraal-Afrikaanse:Republiek) +text(喀麦隆) neighborOf text(نيجيريا) +text(ناورو) locatedIn text(Micronesia) +text(Nauru) locatedIn text(大洋洲) +text(थाईलैंड) locatedIn text(Southeast:Asia) +text(泰國) neighborOf text(柬埔寨) +text(Tailandia) neighborOf text(Myanmar) +text(Thailand) neighborOf text(Laos) +text(تايلاند) neighborOf text(मलेशिया) +text(السودان) locatedIn text(شمال:إفريقيا) +text(Sudan) neighborOf text(乍得) +text(Sudán) neighborOf text(Libya) +text(सूडान) neighborOf text(South:Sudan) +text(苏丹) neighborOf text(إرتريا) +text(Soedan) neighborOf text(República:Centroafricana) +text(السودان) neighborOf text(Egypte) +text(Sudan) neighborOf text(Ethiopië) +text(चाड) locatedIn text(मध्य:अफ्रीका) +text(Chad) locatedIn text(África) +text(Tsjaad) neighborOf text(Libia) +text(Chad) neighborOf text(尼日尔) +text(تشاد) neighborOf text(दक्षिण:सूडान) +text(乍得) neighborOf text(الكاميرون) +text(चाड) neighborOf text(मध्य:अफ़्रीकी:गणराज्य) +text(Chad) neighborOf text(Nigeria) +text(فانواتو) locatedIn text(मॅलानिशिया) +text(वानूआटू) locatedIn text(أوقيانوسيا) +text(Cape:Verde) locatedIn text(पश्चिमी:अफ्रीका) +text(Kaapverdië) locatedIn text(Afrika) +text(फ़ॉकलैंड:द्वीपसमूह) locatedIn text(दक्षिण:अमेरिका) +text(جزر:فوكلاند) locatedIn text(Americas) +text(利比里亞) locatedIn text(West:Africa) +text(ليبيريا) locatedIn text(अफ्रीका) +text(Liberia) neighborOf text(Ivory:Coast) +text(Liberia) neighborOf text(塞拉利昂) +text(Liberia) neighborOf text(غينيا) +text(Cambodia) locatedIn text(جنوب:شرق:آسيا) +text(Camboya) locatedIn text(亞洲) +text(कम्बोडिया) neighborOf text(فيتنام) +text(Cambodja) neighborOf text(Thailand) +text(كمبوديا) neighborOf text(لاوس) +text(Zimbabwe) locatedIn text(East:Africa) +text(Zimbabwe) neighborOf text(ज़ाम्बिया) +text(Zimbabue) neighborOf text(दक्षिण:अफ़्रीका) +text(زيمبابوي) neighborOf text(波札那) +text(津巴布韦) neighborOf text(मोज़ाम्बीक) +text(Comoras) locatedIn text(شرق:إفريقيا) +text(Comoros) locatedIn text(非洲) +text(غوام) locatedIn text(ميكرونيسيا) +text(गुआम) locatedIn text(Oceanía) +text(巴哈馬) locatedIn text(Caribe) +text(बहामास) locatedIn text(أمريكتان) +text(लेबनॉन) locatedIn text(Zuidwest-Azië) +text(Libanon) locatedIn text(آسيا) +text(Líbano) neighborOf text(Israel) +text(Lebanon) neighborOf text(سوريا) +text(Saint:Martin) locatedIn text(الكاريبي) +text(圣马丁岛) locatedIn text(美洲) +text(سانت:مارتن) neighborOf text(法屬聖馬丁) +text(Ethiopia) locatedIn text(Oost-Afrika) +text(Etiopía) locatedIn text(إفريقيا) +text(إثيوبيا) neighborOf text(सोमालिया) +text(埃塞俄比亚) neighborOf text(कीनिया) +text(इथियोपिया) neighborOf text(Eritrea) +text(Ethiopië) neighborOf text(Sudán:del:Sur) +text(Ethiopia) neighborOf text(جيبوتي) +text(Etiopía) neighborOf text(Sudán) +text(جزر:العذراء:التابعة:الولايات:المتحدة) locatedIn text(加勒比地区) +text(Islas:Vírgenes:de:los:Estados:Unidos) locatedIn text(महाअमेरिका) +text(Guinea-Bisáu) locatedIn text(西非) +text(Guinea-Bissau) locatedIn text(Africa) +text(畿內亞比紹) neighborOf text(Guinea) +text(Guinee-Bissau) neighborOf text(塞内加尔) +text(लीबिया) locatedIn text(北部非洲) +text(Libië) locatedIn text(África) +text(ليبيا) neighborOf text(Tsjaad) +text(利比亞) neighborOf text(تونس) +text(Libya) neighborOf text(नाइजर) +text(Libia) neighborOf text(الجزائر) +text(लीबिया) neighborOf text(埃及) +text(Libië) neighborOf text(सूडान) +text(Bhutan) locatedIn text(South:Asia) +text(भूटान) locatedIn text(एशिया) +text(不丹) neighborOf text(Volksrepubliek:China) +text(بوتان) neighborOf text(印度) +text(मकाउ) locatedIn text(पूर्वी:एशिया) +text(ماكاو) locatedIn text(Azië) +text(Macau) neighborOf text(People's:Republic:of:China) +text(法屬玻里尼西亞) locatedIn text(بولنيزيا) +text(फ़्रान्सीसी:पॉलिनेशिया) locatedIn text(ओशिआनिया) +text(Somalia) locatedIn text(东部非洲) +text(索馬里) locatedIn text(Afrika) +text(Somalië) neighborOf text(जिबूती) +text(Somalia) neighborOf text(肯尼亚) +text(الصومال) neighborOf text(إثيوبيا) +text(سان:بارتيلمي) locatedIn text(कैरिबिया) +text(Saint:Barthélemy) locatedIn text(Amerika) +text(روسيا) locatedIn text(Europa:Oriental) +text(Rusia) locatedIn text(欧洲) +text(Rusland) neighborOf text(أوكرانيا) +text(Russia) neighborOf text(Wit-Rusland) +text(रूस) neighborOf text(中华人民共和国) +text(俄罗斯) neighborOf text(哈萨克斯坦) +text(روسيا) neighborOf text(挪威) +text(Rusia) neighborOf text(Polen) +text(Rusland) neighborOf text(Azerbaiyán) +text(Russia) neighborOf text(Lithuania) +text(रूस) neighborOf text(إستونيا) +text(俄罗斯) neighborOf text(Noord-Korea) +text(روسيا) neighborOf text(فنلندا) +text(Rusia) neighborOf text(Mongolia) +text(Rusland) neighborOf text(لاتفيا) +text(Russia) neighborOf text(جورجيا) +text(Nieuw-Zeeland) locatedIn text(nan) +text(新西兰) locatedIn text(Oceania) +text(Panamá) locatedIn text(Centraal-Amerika) +text(Panama) locatedIn text(América) +text(巴拿馬) neighborOf text(कोस्टा:रीका) +text(पनामा) neighborOf text(哥伦比亚) +text(巴布亚新几内亚) locatedIn text(美拉尼西亞) +text(पापुआ:न्यू:गिनी) locatedIn text(Oceanië) +text(بابوا:غينيا:الجديدة) neighborOf text(Indonesia) +text(Corea:del:Norte) locatedIn text(Asia:Oriental) +text(उत्तर:कोरिया) neighborOf text(الصين) +text(كوريا:الشمالية) neighborOf text(Corea:del:Sur) +text(朝鮮民主主義人民共和國) neighborOf text(रूस) +text(Latvia) locatedIn text(Northern:Europe) +text(拉脫維亞) locatedIn text(Europa) +text(Letonia) neighborOf text(Lituania) +text(लातविया) neighborOf text(بيلاروس) +text(Letland) neighborOf text(俄罗斯) +text(لاتفيا) neighborOf text(Estonia) +text(阿曼) locatedIn text(Asia:Occidental) +text(Oman) locatedIn text(Asia) +text(Omán) neighborOf text(沙特阿拉伯) +text(Oman) neighborOf text(Yemen) +text(سلطنة:عمان) neighborOf text(阿拉伯联合酋长国) +text(سان:بيير:وميكلون) locatedIn text(Noord-Amerika) +text(圣皮埃尔和密克隆) locatedIn text(Americas) +text(Martinique) locatedIn text(Caribbean) +text(مارتينيك) locatedIn text(أمريكتان) +text(यूनाइटेड:किंगडम) locatedIn text(उत्तरी:यूरोप) +text(Reino:Unido) locatedIn text(यूरोप) +text(المملكة:المتحدة) neighborOf text(यूनाइटेड:किंगडम) +text(इज़राइल) locatedIn text(西亚) +text(Israël) locatedIn text(Asia) +text(إسرائيل) neighborOf text(لبنان) +text(以色列) neighborOf text(مصر) +text(Israel) neighborOf text(الأردن) +text(Israel) neighborOf text(सीरिया) +text(Jersey) locatedIn text(Noord-Europa) +text(澤西) locatedIn text(Europe) +text(Pitcairneilanden) locatedIn text(पोलीनेशिया) +text(पिटकेर्न:द्वीपसमूह) locatedIn text(大洋洲) +text(Togo) locatedIn text(África:Occidental) +text(Togo) locatedIn text(अफ्रीका) +text(Togo) neighborOf text(بوركينا:فاسو) +text(多哥) neighborOf text(Ghana) +text(टोगो) neighborOf text(बेनिन) +text(Kiribati) locatedIn text(माइक्रोनीशिया) +text(Kiribati) locatedIn text(أوقيانوسيا) +text(إيران) locatedIn text(南亚) +text(Iran) locatedIn text(亞洲) +text(ईरान) neighborOf text(Afghanistan) +text(Irán) neighborOf text(Turkmenistan) +text(伊朗) neighborOf text(Turkey) +text(Iran) neighborOf text(Armenia) +text(إيران) neighborOf text(Azerbaijan) +text(Iran) neighborOf text(पाकिस्तान) +text(ईरान) neighborOf text(Irak) +text(Saint-Martin) locatedIn text(Caraïben) +text(San:Martín) locatedIn text(美洲) +text(Sint-Maarten) neighborOf text(San:Martín) +text(多明尼加) locatedIn text(Caribe) +text(جمهورية:الدومينيكان) locatedIn text(महाअमेरिका) +text(Dominicaanse:Republiek) neighborOf text(Haití) +text(الدنمارك) locatedIn text(Europa:del:Norte) +text(Denemarken) neighborOf text(德國) +text(百慕大) locatedIn text(北美洲) +text(برمودا) locatedIn text(Amerika) +text(智利) locatedIn text(Zuid-Amerika) +text(تشيلي) neighborOf text(الأرجنتين) +text(चिली) neighborOf text(Bolivia) +text(Chile) neighborOf text(Peru) +text(كوسوفو) locatedIn text(पूर्वी:यूरोप) +text(科索沃) locatedIn text(Europa) +text(Kosovo) neighborOf text(塞爾維亞) +text(कोसोवो:गणराज्य) neighborOf text(阿爾巴尼亞) +text(Kosovo) neighborOf text(Noord-Macedonië) +text(Kosovo) neighborOf text(Montenegro) +text(聖克里斯多福及尼維斯) locatedIn text(الكاريبي) +text(San:Cristóbal:y:Nieves) locatedIn text(América) +text(Eritrea) locatedIn text(África:Oriental) +text(इरित्रिया) neighborOf text(吉布提) +text(厄立特里亞) neighborOf text(苏丹) +text(Eritrea) neighborOf text(埃塞俄比亚) +text(भूमध्यरेखीय:गिनी) locatedIn text(中部非洲) +text(Guinea:Ecuatorial) locatedIn text(非洲) +text(Equatorial:Guinea) neighborOf text(加蓬) +text(غينيا:الاستوائية) neighborOf text(Kameroen) +text(Níger) locatedIn text(West-Afrika) +text(النيجر) locatedIn text(إفريقيا) +text(Niger) neighborOf text(Chad) +text(Niger) neighborOf text(ليبيا) +text(尼日尔) neighborOf text(Burkina:Faso) +text(नाइजर) neighborOf text(Benin) +text(Níger) neighborOf text(马里) +text(النيجر) neighborOf text(अल्जीरिया) +text(Niger) neighborOf text(Nigeria) +text(अंगुइला) locatedIn text(加勒比地区) +text(أنغويلا) locatedIn text(Americas) +text(Ruanda) locatedIn text(पूर्वी:अफ्रीका) +text(Rwanda) locatedIn text(Africa) +text(رواندا) neighborOf text(Burundi) +text(卢旺达) neighborOf text(Tanzania) +text(Rwanda) neighborOf text(烏干達) +text(रवाण्डा) neighborOf text(कांगो:लोकतान्त्रिक:गणराज्य) +text(الإمارات:العربية:المتحدة) locatedIn text(West:Asia) +text(Verenigde:Arabische:Emiraten) locatedIn text(آسيا) +text(United:Arab:Emirates) neighborOf text(ओमान) +text(Emiratos:Árabes:Unidos) neighborOf text(السعودية) +text(Estland) locatedIn text(北歐) +text(एस्टोनिया) locatedIn text(أوروبا) +text(Estonia) neighborOf text(Latvia) +text(愛沙尼亞) neighborOf text(روسيا) +text(Greece) locatedIn text(Europa:del:Sur) +text(यूनान) locatedIn text(欧洲) +text(Griekenland) neighborOf text(保加利亚) +text(Grecia) neighborOf text(अल्बानिया) +text(希腊) neighborOf text(North:Macedonia) +text(اليونان) neighborOf text(तुर्की) +text(Senegal) locatedIn text(غرب:إفريقيا) +text(सेनेगल) locatedIn text(África) +text(السنغال) neighborOf text(गिनी-बिसाऊ) +text(Senegal) neighborOf text(موريتانيا) +text(Senegal) neighborOf text(माली) +text(塞内加尔) neighborOf text(गाम्बिया) +text(Senegal) neighborOf text(गिनी) +text(गुआदेलूप) locatedIn text(कैरिबिया) +text(Guadeloupe) locatedIn text(أمريكتان) +text(Mónaco) locatedIn text(Europa:Occidental) +text(Monaco) neighborOf text(फ़्रान्स) +text(Djibouti) locatedIn text(East:Africa) +text(Djibouti) neighborOf text(إرتريا) +text(Yibuti) neighborOf text(सोमालिया) +text(جيبوتي) neighborOf text(इथियोपिया) +text(Indonesië) locatedIn text(Sudeste:Asiático) +text(इंडोनेशिया) neighborOf text(Papoea-Nieuw-Guinea) +text(Indonesia) neighborOf text(تيمور:الشرقية) +text(印度尼西亚) neighborOf text(ماليزيا) +text(Britse:Maagdeneilanden) locatedIn text(Caribbean) +text(British:Virgin:Islands) locatedIn text(美洲) +text(Cook:Islands) locatedIn text(玻里尼西亞) +text(कुक:द्वीपसमूह) locatedIn text(Oceanía) +text(युगाण्डा) locatedIn text(شرق:إفريقيا) +text(Uganda) locatedIn text(Afrika) +text(Uganda) neighborOf text(तंज़ानिया) +text(أوغندا) neighborOf text(República:Democrática:del:Congo) +text(Oeganda) neighborOf text(كينيا) +text(烏干達) neighborOf text(南蘇丹) +text(युगाण्डा) neighborOf text(Ruanda) +text(مقدونيا:الشمالية) locatedIn text(南欧) +text(उत्तर:मैसिडोनिया) locatedIn text(Europa) +text(Macedonia:del:Norte) neighborOf text(كوسوفو) +text(北马其顿) neighborOf text(Greece) +text(Noord-Macedonië) neighborOf text(Albanië) +text(North:Macedonia) neighborOf text(Servië) +text(مقدونيا:الشمالية) neighborOf text(Bulgaria) +text(Túnez) locatedIn text(Noord-Afrika) +text(突尼西亞) locatedIn text(अफ्रीका) +text(Tunisia) neighborOf text(利比亞) +text(ट्यूनिशिया) neighborOf text(Algerije) +text(Ecuador) locatedIn text(South:America) +text(Ecuador) neighborOf text(पेरू) +text(厄瓜多尔) neighborOf text(Colombia) +text(ब्राज़ील) locatedIn text(أمريكا:الجنوبية) +text(البرازيل) locatedIn text(महाअमेरिका) +text(Brasil) neighborOf text(बोलिविया) +text(Brazil) neighborOf text(कोलम्बिया) +text(巴西) neighborOf text(Paraguay) +text(Brazilië) neighborOf text(الأوروغواي) +text(ब्राज़ील) neighborOf text(फ़्रान्सीसी:गुयाना) +text(البرازيل) neighborOf text(सूरीनाम) +text(Brasil) neighborOf text(委內瑞拉) +text(Brazil) neighborOf text(Argentina) +text(巴西) neighborOf text(Guyana) +text(Brazilië) neighborOf text(秘鲁) +text(باراغواي) locatedIn text(南美洲) +text(Paraguay) locatedIn text(Amerika) +text(Paraguay) neighborOf text(Argentina) +text(巴拉圭) neighborOf text(ब्राज़ील) +text(पैराग्वे) neighborOf text(بوليفيا) +text(Finland) locatedIn text(أوروبا:الشمالية) +text(फ़िनलैण्ड) locatedIn text(यूरोप) +text(Finlandia) neighborOf text(Norway) +text(Finland) neighborOf text(स्वीडन) +text(芬蘭) neighborOf text(Rusia) +text(約旦) locatedIn text(غرب:آسيا) +text(Jordanië) neighborOf text(सउदी:अरब) +text(जॉर्डन) neighborOf text(इज़राइल) +text(Jordan) neighborOf text(伊拉克) +text(Jordania) neighborOf text(Siria) +text(Timor:Oriental) locatedIn text(दक्षिण:पूर्व:एशिया) +text(東帝汶) neighborOf text(إندونيسيا) +text(الجبل:الأسود) locatedIn text(أوروبا:الجنوبية) +text(蒙特內哥羅) locatedIn text(Europe) +text(Montenegro) neighborOf text(科索沃) +text(Montenegro) neighborOf text(Bosnia:y:Herzegovina) +text(मॉन्टेनीग्रो) neighborOf text(Kroatië) +text(Montenegro) neighborOf text(सर्बिया) +text(الجبل:الأسود) neighborOf text(Albania) +text(Peru) locatedIn text(América:del:Sur) +text(Perú) locatedIn text(América) +text(بيرو) neighborOf text(Ecuador) +text(Peru) neighborOf text(玻利維亞) +text(पेरू) neighborOf text(Chile) +text(秘鲁) neighborOf text(البرازيل) +text(Peru) neighborOf text(كولومبيا) +text(मॉण्टसेराट) locatedIn text(Caraïben) +text(مونتسيرات) locatedIn text(Americas) +text(Oekraïne) locatedIn text(Oost-Europa) +text(Ukraine) locatedIn text(Europa) +text(Ucrania) neighborOf text(Slowakije) +text(烏克蘭) neighborOf text(白俄羅斯) +text(युक्रेन) neighborOf text(波蘭) +text(أوكرانيا) neighborOf text(Rusland) +text(Oekraïne) neighborOf text(Hongarije) +text(Ukraine) neighborOf text(Moldova) +text(Ucrania) neighborOf text(رومانيا) +text(دومينيكا) locatedIn text(Caribe) +text(Dominica) locatedIn text(أمريكتان) +text(تركمانستان) locatedIn text(آسيا:الوسطى) +text(土庫曼斯坦) neighborOf text(Kazakhstan) +text(Turkmenistan) neighborOf text(Afganistán) +text(तुर्कमेनिस्तान) neighborOf text(Uzbekistán) +text(Turkmenistán) neighborOf text(Irán) +text(根西) locatedIn text(Northern:Europe) +text(Guernsey) locatedIn text(أوروبا) +text(Gibraltar) locatedIn text(दक्षिणी:यूरोप) +text(Gibraltar) locatedIn text(欧洲) +text(直布羅陀) neighborOf text(Spain) +text(स्विट्ज़रलैण्ड) locatedIn text(أوروبا:الغربية) +text(瑞士) locatedIn text(Europa) +text(سويسرا) neighborOf text(जर्मनी) +text(Zwitserland) neighborOf text(意大利) +text(Switzerland) neighborOf text(Austria) +text(Suiza) neighborOf text(法國) +text(स्विट्ज़रलैण्ड) neighborOf text(लिक्टेन्स्टाइन) +text(Oostenrijk) locatedIn text(Western:Europe) +text(النمسا) locatedIn text(यूरोप) +text(ऑस्ट्रिया) neighborOf text(Duitsland) +text(奧地利) neighborOf text(Slovakia) +text(Austria) neighborOf text(Slovenia) +text(Austria) neighborOf text(Italië) +text(Oostenrijk) neighborOf text(瑞士) +text(النمسا) neighborOf text(हंगरी) +text(ऑस्ट्रिया) neighborOf text(Liechtenstein) +text(奧地利) neighborOf text(Tsjechië) +text(Hungría) locatedIn text(Eastern:Europe) +text(المجر) neighborOf text(烏克蘭) +text(Hungary) neighborOf text(Eslovaquia) +text(匈牙利) neighborOf text(स्लोवेनिया) +text(Hongarije) neighborOf text(Croatia) +text(हंगरी) neighborOf text(Austria) +text(Hungría) neighborOf text(Serbia) +text(المجر) neighborOf text(रोमानिया) +text(Malawi) locatedIn text(Oost-Afrika) +text(मलावी) locatedIn text(非洲) +text(Malaui) neighborOf text(Zambia) +text(馬拉威) neighborOf text(坦桑尼亞) +text(مالاوي) neighborOf text(莫桑比克) +text(香港) locatedIn text(東亞) +text(Hongkong) neighborOf text(República:Popular:China) +text(ليختنشتاين) locatedIn text(西欧) +text(Liechtenstein) locatedIn text(Europe) +text(列支敦斯登) neighborOf text(سويسرا) +text(Liechtenstein) neighborOf text(Austria) +text(Barbados) locatedIn text(الكاريبي) +text(बारबाडोस) locatedIn text(美洲) +text(Georgië) locatedIn text(पश्चिमी:एशिया) +text(Georgia) locatedIn text(एशिया) +text(जॉर्जिया) neighborOf text(أرمينيا) +text(格鲁吉亚) neighborOf text(阿塞拜疆) +text(Georgia) neighborOf text(Russia) +text(جورجيا) neighborOf text(Turkije) +text(Albania) locatedIn text(Southern:Europe) +text(ألبانيا) locatedIn text(Europa) +text(阿爾巴尼亞) neighborOf text(蒙特內哥羅) +text(अल्बानिया) neighborOf text(उत्तर:मैसिडोनिया) +text(Albanië) neighborOf text(Kosovo) +text(Albania) neighborOf text(यूनान) +text(Kuwait) locatedIn text(Zuidwest-Azië) +text(कुवैत) locatedIn text(Azië) +text(Koeweit) neighborOf text(Saudi:Arabia) +text(الكويت) neighborOf text(Iraq) +text(Zuid-Afrika) locatedIn text(南部非洲) +text(South:Africa) locatedIn text(إفريقيا) +text(Sudáfrica) neighborOf text(Mozambique) +text(جنوب:إفريقيا) neighborOf text(Botsuana) +text(南非) neighborOf text(إسواتيني) +text(दक्षिण:अफ़्रीका) neighborOf text(ज़िम्बाब्वे) +text(Zuid-Afrika) neighborOf text(ناميبيا) +text(South:Africa) neighborOf text(Lesotho) +text(Haïti) locatedIn text(加勒比地区) +text(Haiti) locatedIn text(महाअमेरिका) +text(हैती) neighborOf text(डोमिनिकन:गणराज्य) +text(أفغانستان) locatedIn text(Asia:del:Sur) +text(阿富汗) locatedIn text(Asia) +text(अफ़्ग़ानिस्तान) neighborOf text(Turkmenistan) +text(Afghanistan) neighborOf text(चीनी:जनवादी:गणराज्य) +text(Afghanistan) neighborOf text(Tadzjikistan) +text(Afganistán) neighborOf text(Oezbekistan) +text(أفغانستان) neighborOf text(伊朗) +text(阿富汗) neighborOf text(Pakistan) +text(سنغافورة) locatedIn text(Zuidoost-Azië) +text(Singapore) locatedIn text(Asia) +text(貝南) locatedIn text(पश्चिमी:अफ्रीका) +text(بنين) locatedIn text(Africa) +text(Benin) neighborOf text(Niger) +text(Benín) neighborOf text(बुर्किना:फासो) +text(बेनिन) neighborOf text(توغو) +text(Benin) neighborOf text(Nigeria) +text(Åland) locatedIn text(उत्तरी:यूरोप) +text(奥兰) locatedIn text(أوروبا) +text(Croacia) locatedIn text(Zuid-Europa) +text(克羅地亞) locatedIn text(欧洲) +text(كرواتيا) neighborOf text(斯洛文尼亞) +text(क्रोएशिया) neighborOf text(बोस्निया:और:हर्ज़ेगोविना) +text(Kroatië) neighborOf text(Hungary) +text(Croatia) neighborOf text(صربيا) +text(Croacia) neighborOf text(Montenegro) +text(Sweden) locatedIn text(Noord-Europa) +text(السويد) locatedIn text(Europa) +text(瑞典) neighborOf text(Noruega) +text(Suecia) neighborOf text(فنلندا) +text(墨西哥) locatedIn text(أمريكا:الشمالية) +text(México) neighborOf text(伯利兹) +text(Mexico) neighborOf text(Estados:Unidos) +text(Mexico) neighborOf text(ग्वाटेमाला) +text(格陵兰) locatedIn text(América:del:Norte) +text(Groenland) locatedIn text(Amerika) +text(Pitcairneilanden) locatedIn text(Australia:and:New:Zealand) +text(جزر:بيتكيرن) locatedIn text(ओशिआनिया) +text(Nepal) locatedIn text(Zuid-Azië) +text(Nepal) locatedIn text(亞洲) +text(Nepal) neighborOf text(Volksrepubliek:China) +text(نيبال) neighborOf text(India) +text(غواتيمالا) locatedIn text(América:Central) +text(Guatemala) neighborOf text(Belize) +text(Guatemala) neighborOf text(El:Salvador) +text(Guatemala) neighborOf text(मेक्सिको) +text(危地马拉) neighborOf text(هندوراس) +text(大韩民国) locatedIn text(شرق:آسيا) +text(South:Korea) locatedIn text(آسيا) +text(كوريا:الجنوبية) neighborOf text(North:Korea) +text(Moldavië) locatedIn text(东欧) +text(摩爾多瓦) locatedIn text(यूरोप) +text(مولدوفا) neighborOf text(युक्रेन) +text(Moldavia) neighborOf text(Rumania) +text(Mauritius) locatedIn text(东部非洲) +text(موريشيوس) locatedIn text(África) +text(बेलारूस) locatedIn text(أوروبا:الشرقية) +text(Bielorrusia) neighborOf text(أوكرانيا) +text(Belarus) neighborOf text(Poland) +text(Wit-Rusland) neighborOf text(Litouwen) +text(بيلاروس) neighborOf text(रूस) +text(白俄羅斯) neighborOf text(拉脫維亞) +text(بنغلاديش) locatedIn text(جنوب:آسيا) +text(Bangladés) neighborOf text(ميانمار) +text(孟加拉國) neighborOf text(India) +text(馬來西亞) locatedIn text(东南亚) +text(Maleisië) locatedIn text(एशिया) +text(Malaysia) neighborOf text(थाईलैंड) +text(Malasia) neighborOf text(Indonesia) +text(मलेशिया) neighborOf text(Brunéi) +text(البوسنة:والهرسك) locatedIn text(Europa:del:Sur) +text(波斯尼亚和黑塞哥维那) locatedIn text(Europe) +text(Bosnia:and:Herzegovina) neighborOf text(Serbia) +text(Bosnië:en:Herzegovina) neighborOf text(克羅地亞) +text(Bosnia:y:Herzegovina) neighborOf text(Montenegro) +text(لوكسمبورغ) locatedIn text(पश्चिमी:यूरोप) +text(Luxembourg) locatedIn text(Europa) +text(Luxemburgo) neighborOf text(Alemania) +text(Luxemburg) neighborOf text(बेल्जियम) +text(लक्ज़मबर्ग) neighborOf text(Frankrijk) +text(Italia) locatedIn text(南欧) +text(इटली) locatedIn text(أوروبا) +text(Italy) neighborOf text(Eslovenia) +text(إيطاليا) neighborOf text(Zwitserland) +text(意大利) neighborOf text(Oostenrijk) +text(Italië) neighborOf text(France) +text(Italia) neighborOf text(Vatican:City) +text(इटली) neighborOf text(San:Marino) +text(अज़रबैजान) locatedIn text(Asia:Occidental) +text(أذربيجان) locatedIn text(Azië) +text(Azerbeidzjan) neighborOf text(土耳其) +text(Azerbaiyán) neighborOf text(Armenië) +text(Azerbaijan) neighborOf text(俄罗斯) +text(阿塞拜疆) neighborOf text(Iran) +text(अज़रबैजान) neighborOf text(Georgië) +text(洪都拉斯) locatedIn text(中美洲) +text(Honduras) locatedIn text(América) +text(Honduras) neighborOf text(ग्वाटेमाला) +text(Honduras) neighborOf text(Nicaragua) +text(हॉण्डुरस) neighborOf text(El:Salvador) +text(Mali) locatedIn text(West:Africa) +text(Mali) locatedIn text(Afrika) +text(مالي) neighborOf text(布吉納法索) +text(Mali) neighborOf text(Guinee) +text(马里) neighborOf text(मॉरीतानिया) +text(माली) neighborOf text(尼日尔) +text(Mali) neighborOf text(सेनेगल) +text(Mali) neighborOf text(Algeria) +text(مالي) neighborOf text(ساحل:العاج) +text(中華民國) locatedIn text(East:Asia) +text(تايوان) locatedIn text(Asia) +text(阿爾及利亞) locatedIn text(North:Africa) +text(Argelia) locatedIn text(अफ्रीका) +text(الجزائر) neighborOf text(Libya) +text(अल्जीरिया) neighborOf text(Tunesië) +text(Algerije) neighborOf text(Mauritanië) +text(Algeria) neighborOf text(Marokko) +text(阿爾及利亞) neighborOf text(नाइजर) +text(Argelia) neighborOf text(Mali) +text(الجزائر) neighborOf text(撒拉威阿拉伯民主共和國) +text(French:Guiana) locatedIn text(दक्षिण:अमेरिका) +text(غويانا:الفرنسية) neighborOf text(Brasil) +text(法屬圭亞那) neighborOf text(Suriname) +text(Jemen) locatedIn text(西亚) +text(也门) locatedIn text(Asia) +text(Yemen) neighborOf text(阿曼) +text(यमन) neighborOf text(Saoedi-Arabië) +text(पोर्टो:रीको) locatedIn text(कैरिबिया) +text(بورتوريكو) locatedIn text(Americas) +text(San:Vicente:y:las:Granadinas) locatedIn text(Caribbean) +text(सन्त:विन्सेण्ट:और:ग्रेनाडाइन्स) locatedIn text(أمريكتان) +text(Venezuela) locatedIn text(Zuid-Amerika) +text(वेनेज़ुएला) neighborOf text(Brazil) +text(Venezuela) neighborOf text(गयाना) +text(Venezuela) neighborOf text(Colombia) +text(Granada) locatedIn text(Caraïben) +text(ग्रेनाडा) locatedIn text(美洲) +text(الولايات:المتحدة) locatedIn text(उत्तर:अमेरिका) +text(Verenigde:Staten) neighborOf text(كندا) +text(美國) neighborOf text(المكسيك) +text(托克劳) locatedIn text(Polynesië) +text(Tokelau) locatedIn text(Oceania) +text(Slovenië) locatedIn text(أوروبا:الجنوبية) +text(سلوفينيا) locatedIn text(欧洲) +text(Slovenia) neighborOf text(النمسا) +text(स्लोवेनिया) neighborOf text(كرواتيا) +text(斯洛文尼亞) neighborOf text(Italy) +text(Eslovenia) neighborOf text(匈牙利) +text(Filipijnen) locatedIn text(Southeast:Asia) +text(Philippines) locatedIn text(亞洲) +text(Micronesië) locatedIn text(密克羅尼西亞群島) +text(Micronesia) locatedIn text(Oceanië) +text(People's:Republic:of:China) locatedIn text(Oost-Azië) +text(中华人民共和国) locatedIn text(آسيا) +text(الصين) neighborOf text(अफ़्ग़ानिस्तान) +text(República:Popular:China) neighborOf text(Bután) +text(चीनी:जनवादी:गणराज्य) neighborOf text(Macao) +text(Volksrepubliek:China) neighborOf text(الهند) +text(People's:Republic:of:China) neighborOf text(كازاخستان) +text(中华人民共和国) neighborOf text(Kirgizië) +text(الصين) neighborOf text(طاجيكستان) +text(República:Popular:China) neighborOf text(老撾) +text(चीनी:जनवादी:गणराज्य) neighborOf text(روسيا) +text(Volksrepubliek:China) neighborOf text(Noord-Korea) +text(People's:Republic:of:China) neighborOf text(緬甸) +text(中华人民共和国) neighborOf text(باكستان) +text(الصين) neighborOf text(Mongolia) +text(República:Popular:China) neighborOf text(Hong:Kong) +text(चीनी:जनवादी:गणराज्य) neighborOf text(वियतनाम) +text(Gabon) locatedIn text(Centraal-Afrika) +text(الغابون) locatedIn text(非洲) +text(गबॉन) neighborOf text(Equatoriaal-Guinea) +text(Gabon) neighborOf text(República:del:Congo) +text(Gabón) neighborOf text(Cameroon) +text(جزر:الولايات:المتحدة:الصغيرة:النائية) locatedIn text(North:America) +text(संयुक्त:राज्य:अमेरिका:के:छोटे:दूरस्थ:द्वीपसमूह) locatedIn text(महाअमेरिका) +text(Andorra) locatedIn text(दक्षिणी:यूरोप) +text(安道尔) locatedIn text(Europa) +text(Andorra) neighborOf text(Spanje) +text(अण्डोरा) neighborOf text(Francia) +text(萨摩亚) locatedIn text(Polinesia) +text(Samoa) locatedIn text(大洋洲) +text(غامبيا) locatedIn text(西非) +text(Gambia) locatedIn text(إفريقيا) +text(Gambia) neighborOf text(السنغال) +text(Pedro:Miguel) locatedIn text(West:Asia) +text(Pedro:Miguel) locatedIn text(एशिया) +text(nan) neighborOf text(الأردن) +text(nan) neighborOf text(Egypt) +text(Pedro:Miguel) neighborOf text(Israël) +text(Réunion) locatedIn text(África:Oriental) +text(Reunión) locatedIn text(Africa) +text(فرنسا) locatedIn text(West-Europa) +text(फ़्रान्स) locatedIn text(यूरोप) +text(法國) neighborOf text(Germany) +text(Frankrijk) neighborOf text(卢森堡) +text(France) neighborOf text(إيطاليا) +text(Francia) neighborOf text(أندورا) +text(فرنسا) neighborOf text(Switzerland) +text(फ़्रान्स) neighborOf text(موناكو) +text(法國) neighborOf text(Bélgica) +text(Frankrijk) neighborOf text(إسبانيا) +text(منغوليا) locatedIn text(पूर्वी:एशिया) +text(蒙古國) locatedIn text(Azië) +text(Mongolië) neighborOf text(Volksrepubliek:China) +text(मंगोलिया) neighborOf text(Rusia) +text(लिथुआनिया) locatedIn text(Europa:del:Norte) +text(ليتوانيا) locatedIn text(Europe) +text(立陶宛) neighborOf text(पोलैंड) +text(Lithuania) neighborOf text(Letonia) +text(Lituania) neighborOf text(बेलारूस) +text(Litouwen) neighborOf text(Rusland) +text(جزر:كايمان) locatedIn text(Caribe) +text(Islas:Caimán) locatedIn text(Amerika) +text(Santa:Lucía) locatedIn text(الكاريبي) +text(सेंट:लूसिया) locatedIn text(América) +text(कुराकाओ) locatedIn text(加勒比地区) +text(库拉索) locatedIn text(Americas) +text(कैरिबिया) locatedIn text(أمريكتان) +text(दक्षिण:एशिया) locatedIn text(Asia) +text(África:Central) locatedIn text(África) +text(北歐) locatedIn text(Europa) +text(Southern:Europe) locatedIn text(أوروبا) +text(غرب:آسيا) locatedIn text(Asia) +text(South:America) locatedIn text(美洲) +text(Polynesia) locatedIn text(أوقيانوسيا) +text(nan) locatedIn text(Oceanía) +text(Europa:Occidental) locatedIn text(欧洲) +text(पूर्वी:अफ्रीका) locatedIn text(Afrika) +text(África:Occidental) locatedIn text(अफ्रीका) +text(Europa:Oriental) locatedIn text(Europa) +text(केंद्रीय:अमेरिका) locatedIn text(महाअमेरिका) +text(Noord-Amerika) locatedIn text(Amerika) +text(جنوب:شرق:آسيا) locatedIn text(亞洲) +text(África:austral) locatedIn text(非洲) +text(Asia:Oriental) locatedIn text(آسيا) +text(उत्तर:अफ़्रीका) locatedIn text(إفريقيا) +text(Melanesië) locatedIn text(ओशिआनिया) +text(Micronesia) locatedIn text(Oceania) +text(Central:Asia) locatedIn text(एशिया) +text(Europa:Central) locatedIn text(यूरोप) \ No newline at end of file diff --git a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_country2text_relation2text.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_country2text_relation2text.tsv new file mode 100644 index 0000000..1cf89a8 --- /dev/null +++ b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_country2text_relation2text.tsv @@ -0,0 +1,1111 @@ +text(Palau) text(is:positioned:in) text(密克羅尼西亞群島) +text(Palau) text(was:sited:in) text(ओशिआनिया) +text(मालदीव) text(is:sited:in) text(جنوب:آسيا) +text(Malediven) text(was:localized:in) text(Asia) +text(汶莱) text(is:localized:in) text(Sudeste:Asiático) +text(Brunei) text(was:present:in) text(亞洲) +text(بروناي) text(was:a:neighboring:country:of) text(ماليزيا) +text(日本) text(is:present:in) text(पूर्वी:एशिया) +text(اليابان) text(is:still:in) text(آسيا) +text(荷蘭) text(was:still:in) text(Europa:Occidental) +text(नीदरलैण्ड) text(neighbors:with) text(ألمانيا) +text(Países:Bajos) text(was:a:neighbor:of) text(بلجيكا) +text(تركيا) text(was:currently:in) text(पश्चिमी:एशिया) +text(तुर्की) text(is:a:neighbor:of) text(أرمينيا) +text(Turquía) text(is:a:neighboring:state:to) text(अज़रबैजान) +text(土耳其) text(was:a:neighboring:state:to) text(ईरान) +text(Turkije) text(borders:with) text(Greece) +text(Turkey) text(borders) text(جورجيا) +text(تركيا) text(is:butted:against) text(保加利亚) +text(तुर्की) text(was:butted:against) text(Irak) +text(Turquía) text(was:adjacent:to) text(Syria) +text(Angola) text(is:currently:in) text(中部非洲) +text(Angola) text(is:placed:in) text(África) +text(安哥拉) text(is:adjacent:to) text(刚果民主共和国) +text(أنغولا) text(neighbors) text(纳米比亚) +text(अंगोला) text(is:a:neighboring:country:of) text(Zambia) +text(Angola) text(was:a:neighboring:country:of) text(República:del:Congo) +text(Armenia) text(was:placed:in) text(西亚) +text(Armenië) text(can:be:found:in) text(एशिया) +text(आर्मीनिया) text(neighbors:with) text(जॉर्जिया) +text(Armenia) text(was:a:neighbor:of) text(阿塞拜疆) +text(亞美尼亞) text(is:a:neighbor:of) text(Iran) +text(أرمينيا) text(is:a:neighboring:state:to) text(土耳其) +text(Antigua:and:Barbuda) text(was:situated:in) text(加勒比地区) +text(Antigua:en:Barbuda) text(is:situated:in) text(महाअमेरिका) +text(एस्वातीनी) text(is:located:in) text(南部非洲) +text(斯威士兰) text(was:located:in) text(अफ्रीका) +text(Eswatini) text(was:a:neighboring:state:to) text(جنوب:إفريقيا) +text(Swaziland) text(borders:with) text(Mozambique) +text(Wallis:y:Futuna) text(can:be:found:in) text(Polynesia) +text(Wallis:en:Futuna) text(was:positioned:in) text(أوقيانوسيا) +text(उरुग्वे) text(is:positioned:in) text(América:del:Sur) +text(الأوروغواي) text(was:sited:in) text(Amerika) +text(烏拉圭) text(borders) text(Argentina) +text(Uruguay) text(is:butted:against) text(Brazil) +text(Zambia) text(is:sited:in) text(شرق:إفريقيا) +text(زامبيا) text(was:localized:in) text(إفريقيا) +text(Zambia) text(was:butted:against) text(Tanzania) +text(ज़ाम्बिया) text(was:adjacent:to) text(Mozambique) +text(贊比亞) text(is:adjacent:to) text(جمهورية:الكونغو:الديمقراطية) +text(Zambia) text(neighbors) text(Angola) +text(Zambia) text(is:a:neighboring:country:of) text(Botswana) +text(زامبيا) text(was:a:neighboring:country:of) text(Zimbabwe) +text(Zambia) text(neighbors:with) text(Namibië) +text(ज़ाम्बिया) text(was:a:neighbor:of) text(Malaui) +text(قبرص) text(is:localized:in) text(东欧) +text(Chipre) text(was:present:in) text(欧洲) +text(Cyprus) text(is:a:neighbor:of) text(Verenigd:Koninkrijk) +text(Reino:Unido) text(is:present:in) text(Europa:del:Norte) +text(United:Kingdom) text(is:still:in) text(Europa) +text(यूनाइटेड:किंगडम) text(is:a:neighboring:state:to) text(المملكة:المتحدة) +text(Burundi) text(was:still:in) text(Oost-Afrika) +text(蒲隆地) text(was:currently:in) text(非洲) +text(Burundi) text(was:a:neighboring:state:to) text(कांगो:लोकतान्त्रिक:गणराज्य) +text(बुरुण्डी) text(borders:with) text(卢旺达) +text(بوروندي) text(borders) text(Tanzania) +text(جمهورية:إفريقيا:الوسطى) text(is:currently:in) text(Central:Africa) +text(República:Centroafricana) text(is:placed:in) text(Africa) +text(Centraal-Afrikaanse:Republiek) text(is:butted:against) text(乍得) +text(मध्य:अफ़्रीकी:गणराज्य) text(was:butted:against) text(Congo-Brazzaville) +text(中非共和國) text(was:adjacent:to) text(Congo-Kinshasa) +text(Central:African:Republic) text(is:adjacent:to) text(South:Sudan) +text(جمهورية:إفريقيا:الوسطى) text(neighbors) text(الكاميرون) +text(República:Centroafricana) text(is:a:neighboring:country:of) text(Soedan) +text(Tonga) text(was:placed:in) text(Polynesië) +text(Tonga) text(can:be:found:in) text(Oceanía) +text(Ivoorkust) text(was:situated:in) text(África:Occidental) +text(ساحل:العاج) text(is:situated:in) text(Afrika) +text(Ivory:Coast) text(was:a:neighboring:country:of) text(Burkina:Faso) +text(Costa:de:Marfil) text(neighbors:with) text(غانا) +text(कोत:दिव्वार) text(was:a:neighbor:of) text(Liberia) +text(科特迪瓦) text(is:a:neighbor:of) text(Mali) +text(Ivoorkust) text(is:a:neighboring:state:to) text(Guinea) +text(Sierra:Leone) text(is:located:in) text(غرب:إفريقيا) +text(Sierra:Leone) text(was:a:neighboring:state:to) text(लाइबेरिया) +text(塞拉利昂) text(borders:with) text(غينيا) +text(Mayotte) text(was:located:in) text(पूर्वी:अफ्रीका) +text(मेयोट) text(can:be:found:in) text(África) +text(Polonia) text(was:positioned:in) text(Eastern:Europe) +text(पोलैंड) text(borders) text(जर्मनी) +text(Polen) text(is:butted:against) text(Ukraine) +text(波蘭) text(was:butted:against) text(स्लोवाकिया) +text(Poland) text(was:adjacent:to) text(Wit-Rusland) +text(بولندا) text(is:adjacent:to) text(रूस) +text(Polonia) text(neighbors) text(Lituania) +text(पोलैंड) text(is:a:neighboring:country:of) text(Tsjechië) +text(कज़ाख़िस्तान) text(is:positioned:in) text(آسيا:الوسطى) +text(Kazajistán) text(was:sited:in) text(Asia) +text(Kazachstan) text(was:a:neighboring:country:of) text(تركمانستان) +text(哈萨克斯坦) text(neighbors:with) text(الصين) +text(كازاخستان) text(was:a:neighbor:of) text(Kyrgyzstan) +text(Kazakhstan) text(is:a:neighbor:of) text(Uzbekistán) +text(कज़ाख़िस्तान) text(is:a:neighboring:state:to) text(روسيا) +text(उज़्बेकिस्तान) text(is:sited:in) text(Central:Asia) +text(乌兹别克斯坦) text(was:localized:in) text(Azië) +text(Uzbekistan) text(was:a:neighboring:state:to) text(أفغانستان) +text(أوزبكستان) text(borders:with) text(तुर्कमेनिस्तान) +text(Oezbekistan) text(borders) text(Kazajistán) +text(Uzbekistán) text(is:butted:against) text(قرغيزستان) +text(उज़्बेकिस्तान) text(was:butted:against) text(طاجيكستان) +text(Turks:and:Caicos:Islands) text(is:localized:in) text(Caraïben) +text(特克斯和凯科斯群岛) text(was:present:in) text(América) +text(नया:कैलेडोनिया) text(is:present:in) text(ميلانيزيا) +text(新喀里多尼亞) text(is:still:in) text(大洋洲) +text(巴基斯坦) text(was:still:in) text(南亚) +text(باكستان) text(was:adjacent:to) text(People's:Republic:of:China) +text(पाकिस्तान) text(is:adjacent:to) text(Afghanistan) +text(Pakistan) text(neighbors) text(伊朗) +text(Pakistan) text(is:a:neighboring:country:of) text(الهند) +text(Argentina) text(was:currently:in) text(South:America) +text(阿根廷) text(is:currently:in) text(أمريكتان) +text(Argentinië) text(was:a:neighboring:country:of) text(Bolivia) +text(अर्जेण्टीना) text(neighbors:with) text(चिली) +text(الأرجنتين) text(was:a:neighbor:of) text(ब्राज़ील) +text(Argentina) text(is:a:neighbor:of) text(पैराग्वे) +text(Argentina) text(is:a:neighboring:state:to) text(Uruguay) +text(Cuba) text(is:placed:in) text(कैरिबिया) +text(كوبا) text(was:placed:in) text(Americas) +text(सर्बिया) text(can:be:found:in) text(أوروبا:الجنوبية) +text(صربيا) text(was:a:neighboring:state:to) text(Macedonia:del:Norte) +text(Serbia) text(borders:with) text(蒙特內哥羅) +text(塞爾維亞) text(borders) text(Kosovo) +text(Servië) text(is:butted:against) text(Bosnië:en:Herzegovina) +text(Serbia) text(was:butted:against) text(كرواتيا) +text(सर्बिया) text(was:adjacent:to) text(المجر) +text(صربيا) text(is:adjacent:to) text(बुल्गारिया) +text(Serbia) text(neighbors) text(羅馬尼亞) +text(República:Checa) text(was:situated:in) text(पूर्वी:यूरोप) +text(捷克) text(is:situated:in) text(यूरोप) +text(Czech:Republic) text(is:a:neighboring:country:of) text(Germany) +text(चेक:गणराज्य) text(was:a:neighboring:country:of) text(Austria) +text(جمهورية:التشيك) text(neighbors:with) text(Polen) +text(Tsjechië) text(was:a:neighbor:of) text(Eslovaquia) +text(Nicaragua) text(is:located:in) text(Central:America) +text(Nicaragua) text(is:a:neighbor:of) text(Honduras) +text(尼加拉瓜) text(is:a:neighboring:state:to) text(Costa:Rica) +text(वियतनाम) text(was:located:in) text(جنوب:شرق:آسيا) +text(فيتنام) text(can:be:found:in) text(Asia) +text(Vietnam) text(was:a:neighboring:state:to) text(Camboya) +text(越南) text(borders:with) text(لاوس) +text(Vietnam) text(borders) text(Volksrepubliek:China) +text(Niue) text(was:positioned:in) text(Polinesia) +text(紐埃) text(is:positioned:in) text(Oceanië) +text(Canadá) text(was:sited:in) text(أمريكا:الشمالية) +text(加拿大) text(is:sited:in) text(美洲) +text(कनाडा) text(is:butted:against) text(Estados:Unidos) +text(Slovakia) text(was:localized:in) text(Europa:Central) +text(斯洛伐克) text(was:butted:against) text(युक्रेन) +text(سلوفاكيا) text(was:adjacent:to) text(波蘭) +text(Slowakije) text(is:adjacent:to) text(奧地利) +text(स्लोवाकिया) text(neighbors) text(Hungary) +text(Eslovaquia) text(is:a:neighboring:country:of) text(República:Checa) +text(موزمبيق) text(is:localized:in) text(东部非洲) +text(मोज़ाम्बीक) text(was:a:neighboring:country:of) text(坦桑尼亞) +text(莫桑比克) text(neighbors:with) text(Esuatini) +text(Mozambique) text(was:a:neighbor:of) text(ज़िम्बाब्वे) +text(Mozambique) text(is:a:neighbor:of) text(贊比亞) +text(Mozambique) text(is:a:neighboring:state:to) text(Malawi) +text(موزمبيق) text(was:a:neighboring:state:to) text(दक्षिण:अफ़्रीका) +text(阿魯巴) text(was:present:in) text(Caribe) +text(Aruba) text(is:present:in) text(महाअमेरिका) +text(Bolivia) text(is:still:in) text(أمريكا:الجنوبية) +text(Bolivia) text(was:still:in) text(Amerika) +text(玻利維亞) text(borders:with) text(智利) +text(बोलिविया) text(borders) text(البرازيل) +text(بوليفيا) text(is:butted:against) text(Paraguay) +text(Bolivia) text(was:butted:against) text(阿根廷) +text(Bolivia) text(was:adjacent:to) text(بيرو) +text(Colombia) text(was:currently:in) text(दक्षिण:अमेरिका) +text(كولومبيا) text(is:currently:in) text(América) +text(Colombia) text(is:adjacent:to) text(الإكوادور) +text(कोलम्बिया) text(neighbors) text(巴西) +text(哥伦比亚) text(is:a:neighboring:country:of) text(Panama) +text(Colombia) text(was:a:neighboring:country:of) text(فنزويلا) +text(Colombia) text(neighbors:with) text(Peru) +text(Fiji) text(is:placed:in) text(美拉尼西亞) +text(Fiji) text(was:placed:in) text(Oceania) +text(Republic:of:the:Congo) text(can:be:found:in) text(मध्य:अफ्रीका) +text(جمهورية:الكونغو) text(was:a:neighbor:of) text(गबॉन) +text(剛果共和國) text(is:a:neighbor:of) text(Democratic:Republic:of:the:Congo) +text(कांगो:गणराज्य) text(is:a:neighboring:state:to) text(Angola) +text(República:del:Congo) text(was:a:neighboring:state:to) text(喀麦隆) +text(Congo-Brazzaville) text(borders:with) text(Centraal-Afrikaanse:Republiek) +text(السعودية) text(was:situated:in) text(Zuidwest-Azië) +text(沙特阿拉伯) text(borders) text(क़तर) +text(Saudi:Arabia) text(is:butted:against) text(United:Arab:Emirates) +text(सउदी:अरब) text(was:butted:against) text(الأردن) +text(Arabia:Saudí) text(was:adjacent:to) text(也门) +text(Saoedi-Arabië) text(is:adjacent:to) text(阿曼) +text(السعودية) text(neighbors) text(कुवैत) +text(沙特阿拉伯) text(is:a:neighboring:country:of) text(Irak) +text(السلفادور) text(is:situated:in) text(केंद्रीय:अमेरिका) +text(अल:साल्वाडोर) text(is:located:in) text(أمريكتان) +text(El:Salvador) text(was:a:neighboring:country:of) text(Guatemala) +text(El:Salvador) text(neighbors:with) text(هندوراس) +text(मेडागास्कर) text(was:located:in) text(East:Africa) +text(馬達加斯加) text(can:be:found:in) text(अफ्रीका) +text(Australia) text(was:positioned:in) text(Australia:and:New:Zealand) +text(Australia) text(is:positioned:in) text(ओशिआनिया) +text(नामीबिया) text(was:sited:in) text(दक्षिणी:अफ्रीका) +text(Namibia) text(is:sited:in) text(إفريقيا) +text(ناميبيا) text(was:a:neighbor:of) text(Zambia) +text(Namibia) text(is:a:neighbor:of) text(安哥拉) +text(纳米比亚) text(is:a:neighboring:state:to) text(南非) +text(Namibië) text(was:a:neighboring:state:to) text(Botswana) +text(तुवालू) text(was:localized:in) text(玻里尼西亞) +text(Tuvalu) text(is:localized:in) text(أوقيانوسيا) +text(斯瓦巴和扬马延) text(was:present:in) text(Noord-Europa) +text(Spitsbergen:en:Jan:Mayen) text(is:present:in) text(أوروبا) +text(马恩岛) text(is:still:in) text(उत्तरी:यूरोप) +text(आइल:ऑफ़:मैन) text(was:still:in) text(Europe) +text(Guyana) text(was:currently:in) text(Zuid-Amerika) +text(Guyana) text(borders:with) text(Brasil) +text(Guyana) text(borders) text(Surinam) +text(圭亚那) text(is:butted:against) text(Venezuela) +text(Ciudad:del:Vaticano) text(is:currently:in) text(Zuid-Europa) +text(वैटिकन:नगर) text(is:placed:in) text(Europa) +text(Vaticaanstad) text(was:butted:against) text(意大利) +text(Territorio:Británico:del:Océano:Índico) text(was:placed:in) text(África:Oriental) +text(إقليم:المحيط:الهندي:البريطاني) text(can:be:found:in) text(非洲) +text(नाइजीरिया) text(was:situated:in) text(West-Afrika) +text(Nigeria) text(is:situated:in) text(Africa) +text(نيجيريا) text(was:adjacent:to) text(Chad) +text(Nigeria) text(is:adjacent:to) text(नाइजर) +text(Nigeria) text(neighbors) text(Kameroen) +text(奈及利亞) text(is:a:neighboring:country:of) text(Benin) +text(Duitsland) text(is:located:in) text(पश्चिमी:यूरोप) +text(Alemania) text(was:a:neighboring:country:of) text(Denmark) +text(德國) text(neighbors:with) text(هولندا) +text(ألمانيا) text(was:a:neighbor:of) text(Poland) +text(जर्मनी) text(is:a:neighbor:of) text(لوكسمبورغ) +text(Germany) text(is:a:neighboring:state:to) text(Belgium) +text(Duitsland) text(was:a:neighboring:state:to) text(Switzerland) +text(Alemania) text(borders:with) text(Austria) +text(德國) text(borders) text(Frankrijk) +text(ألمانيا) text(is:butted:against) text(捷克) +text(Burkina:Faso) text(was:located:in) text(पश्चिमी:अफ्रीका) +text(Burkina:Faso) text(was:butted:against) text(Togo) +text(布吉納法索) text(was:adjacent:to) text(बेनिन) +text(बुर्किना:फासो) text(is:adjacent:to) text(النيجر) +text(بوركينا:فاسو) text(neighbors) text(Ghana) +text(Burkina:Faso) text(is:a:neighboring:country:of) text(مالي) +text(Burkina:Faso) text(was:a:neighboring:country:of) text(ساحل:العاج) +text(तंज़ानिया) text(can:be:found:in) text(شرق:إفريقيا) +text(Tanzania) text(neighbors:with) text(Uganda) +text(تنزانيا) text(was:a:neighbor:of) text(मोज़ाम्बीक) +text(Tanzania) text(is:a:neighbor:of) text(República:Democrática:del:Congo) +text(Tanzania) text(is:a:neighboring:state:to) text(Kenia) +text(坦桑尼亞) text(was:a:neighboring:state:to) text(Rwanda) +text(तंज़ानिया) text(borders:with) text(Zambia) +text(Tanzania) text(borders) text(مالاوي) +text(تنزانيا) text(is:butted:against) text(Burundi) +text(Noordelijke:Marianen) text(was:positioned:in) text(माइक्रोनीशिया) +text(北马里亚纳群岛) text(is:positioned:in) text(Oceanía) +text(Belize) text(was:sited:in) text(أمريكا:الوسطى) +text(伯利兹) text(is:sited:in) text(Americas) +text(بليز) text(was:butted:against) text(危地马拉) +text(Belice) text(was:adjacent:to) text(Mexico) +text(नॉर्वे) text(was:localized:in) text(أوروبا:الشمالية) +text(Norway) text(is:adjacent:to) text(Suecia) +text(挪威) text(neighbors) text(Finland) +text(النرويج) text(is:a:neighboring:country:of) text(俄罗斯) +text(科科斯(基林)群島) text(is:localized:in) text(nan) +text(Cocoseilanden) text(was:present:in) text(大洋洲) +text(Laos) text(is:present:in) text(东南亚) +text(लाओस) text(is:still:in) text(亞洲) +text(老撾) text(was:a:neighboring:country:of) text(中华人民共和国) +text(Laos) text(neighbors:with) text(Cambodja) +text(Laos) text(was:a:neighbor:of) text(緬甸) +text(لاوس) text(is:a:neighbor:of) text(Vietnam) +text(Laos) text(is:a:neighboring:state:to) text(थाईलैंड) +text(撒拉威阿拉伯民主共和國) text(was:still:in) text(北部非洲) +text(सहरावी:अरब:जनतांत्रिक:गणराज्य) text(was:currently:in) text(Afrika) +text(República:Árabe:Saharaui:Democrática) text(was:a:neighboring:state:to) text(अल्जीरिया) +text(Sahrawi:Arab:Democratic:Republic) text(borders:with) text(मॉरीतानिया) +text(الجمهورية:العربية:الصحراوية:الديمقراطية) text(borders) text(Marokko) +text(蘇利南) text(is:currently:in) text(南美洲) +text(Suriname) text(is:placed:in) text(美洲) +text(سورينام) text(is:butted:against) text(Brazilië) +text(सूरीनाम) text(was:butted:against) text(غويانا:الفرنسية) +text(Suriname) text(was:adjacent:to) text(गयाना) +text(Isla:de:Navidad) text(was:placed:in) text(Australië:en:Nieuw-Zeeland) +text(Christmaseiland) text(can:be:found:in) text(Oceanië) +text(Santo:Tomé:y:Príncipe) text(was:situated:in) text(وسط:إفريقيا) +text(圣多美和普林西比) text(is:situated:in) text(África) +text(Egypt) text(is:located:in) text(شمال:إفريقيا) +text(मिस्र) text(is:adjacent:to) text(利比亞) +text(Egipto) text(neighbors) text(以色列) +text(埃及) text(is:a:neighboring:country:of) text(السودان) +text(Bulgaria) text(was:located:in) text(Europa:Oriental) +text(Bulgarije) text(was:a:neighboring:country:of) text(North:Macedonia) +text(بلغاريا) text(neighbors:with) text(Turkije) +text(Bulgaria) text(was:a:neighbor:of) text(希腊) +text(保加利亚) text(is:a:neighbor:of) text(塞爾維亞) +text(बुल्गारिया) text(is:a:neighboring:state:to) text(Rumania) +text(Guinea) text(can:be:found:in) text(西非) +text(गिनी) text(was:positioned:in) text(अफ्रीका) +text(Guinee) text(was:a:neighboring:state:to) text(Guinea-Bissau) +text(几内亚) text(borders:with) text(سيراليون) +text(Guinea) text(borders) text(माली) +text(غينيا) text(is:butted:against) text(ليبيريا) +text(Guinea) text(was:butted:against) text(Senegal) +text(गिनी) text(was:adjacent:to) text(Ivory:Coast) +text(Spanje) text(is:positioned:in) text(Europa:del:Sur) +text(西班牙) text(is:adjacent:to) text(Morocco) +text(Spain) text(neighbors) text(Gibraltar) +text(स्पेन) text(is:a:neighboring:country:of) text(أندورا) +text(España) text(was:a:neighboring:country:of) text(فرنسا) +text(إسبانيا) text(neighbors:with) text(पुर्तगाल) +text(कोस्टा:रीका) text(was:sited:in) text(América:Central) +text(哥斯达黎加) text(is:sited:in) text(महाअमेरिका) +text(Costa:Rica) text(was:a:neighbor:of) text(Panama) +text(Costa:Rica) text(is:a:neighbor:of) text(Nicaragua) +text(馬耳他) text(was:localized:in) text(दक्षिणी:यूरोप) +text(Malta) text(is:localized:in) text(欧洲) +text(Portugal) text(was:present:in) text(南欧) +text(Portugal) text(is:present:in) text(Europa) +text(البرتغال) text(is:a:neighboring:state:to) text(Spanje) +text(Romania) text(is:still:in) text(Oost-Europa) +text(रोमानिया) text(was:still:in) text(यूरोप) +text(Roemenië) text(was:a:neighboring:state:to) text(Oekraïne) +text(رومانيا) text(borders:with) text(匈牙利) +text(羅馬尼亞) text(borders) text(Moldova) +text(Rumania) text(is:butted:against) text(Bulgaria) +text(Romania) text(was:butted:against) text(Servië) +text(圣马力诺) text(was:currently:in) text(Southern:Europe) +text(San:Marino) text(is:currently:in) text(أوروبا) +text(سان:مارينو) text(was:adjacent:to) text(इटली) +text(毛里塔尼亞) text(is:placed:in) text(West:Africa) +text(Mauritania) text(was:placed:in) text(إفريقيا) +text(موريتانيا) text(is:adjacent:to) text(الجزائر) +text(Mauritanië) text(neighbors) text(Mali) +text(Mauritania) text(is:a:neighboring:country:of) text(Sahrawi:Arabische:Democratische:Republiek) +text(मॉरीतानिया) text(was:a:neighboring:country:of) text(塞内加尔) +text(ترينيداد:وتوباغو) text(can:be:found:in) text(Caribbean) +text(Trinidad:en:Tobago) text(was:situated:in) text(Amerika) +text(Bahrein) text(is:situated:in) text(Asia:Occidental) +text(Baréin) text(is:located:in) text(آسيا) +text(Birmania) text(was:located:in) text(दक्षिण:पूर्व:एशिया) +text(Myanmar) text(neighbors:with) text(India) +text(म्यान्मार) text(was:a:neighbor:of) text(Bangladesh) +text(Myanmar) text(is:a:neighbor:of) text(चीनी:जनवादी:गणराज्य) +text(ميانمار) text(is:a:neighboring:state:to) text(लाओस) +text(緬甸) text(was:a:neighboring:state:to) text(Thailand) +text(伊拉克) text(can:be:found:in) text(West:Asia) +text(العراق) text(borders:with) text(Turkey) +text(इराक) text(borders) text(Saudi:Arabia) +text(Iraq) text(is:butted:against) text(إيران) +text(Irak) text(was:butted:against) text(Jordan) +text(Irak) text(was:adjacent:to) text(Kuwait) +text(伊拉克) text(is:adjacent:to) text(Siria) +text(South:Georgia:and:the:South:Sandwich:Islands) text(was:positioned:in) text(América:del:Sur) +text(Islas:Georgias:del:Sur:y:Sandwich:del:Sur) text(is:positioned:in) text(América) +text(آيسلندا) text(was:sited:in) text(北歐) +text(IJsland) text(is:sited:in) text(Europe) +text(刚果民主共和国) text(was:localized:in) text(África:Central) +text(جمهورية:الكونغو:الديمقراطية) text(is:localized:in) text(非洲) +text(कांगो:लोकतान्त्रिक:गणराज्य) text(neighbors) text(Oeganda) +text(Congo-Kinshasa) text(is:a:neighboring:country:of) text(Tanzania) +text(Democratic:Republic:of:the:Congo) text(was:a:neighboring:country:of) text(Republic:of:the:Congo) +text(República:Democrática:del:Congo) text(neighbors:with) text(मध्य:अफ़्रीकी:गणराज्य) +text(刚果民主共和国) text(was:a:neighbor:of) text(أنغولا) +text(جمهورية:الكونغو:الديمقراطية) text(is:a:neighbor:of) text(Rwanda) +text(कांगो:लोकतान्त्रिक:गणराज्य) text(is:a:neighboring:state:to) text(Sudán:del:Sur) +text(Congo-Kinshasa) text(was:a:neighboring:state:to) text(زامبيا) +text(Democratic:Republic:of:the:Congo) text(borders:with) text(Burundi) +text(Seychelles) text(was:present:in) text(Oost-Afrika) +text(सेशेल्स) text(is:present:in) text(Africa) +text(किर्गिज़स्तान) text(is:still:in) text(Asia:Central) +text(Kirgizië) text(borders) text(República:Popular:China) +text(Kirguistán) text(is:butted:against) text(Kazachstan) +text(吉尔吉斯斯坦) text(was:butted:against) text(ताजीकिस्तान) +text(Kyrgyzstan) text(was:adjacent:to) text(乌兹别克斯坦) +text(波札那) text(was:still:in) text(Zuidelijk:Afrika) +text(बोत्सवाना) text(was:currently:in) text(Afrika) +text(Botsuana) text(is:adjacent:to) text(Zimbabue) +text(بوتسوانا) text(neighbors) text(नामीबिया) +text(Botswana) text(is:a:neighboring:country:of) text(Zambia) +text(Botswana) text(was:a:neighboring:country:of) text(South:Africa) +text(फ़रो:द्वीपसमूह) text(is:currently:in) text(Northern:Europe) +text(Faroe:Islands) text(is:placed:in) text(Europa) +text(Jamaica) text(was:placed:in) text(الكاريبي) +text(جامايكا) text(can:be:found:in) text(أمريكتان) +text(美屬薩摩亞) text(was:situated:in) text(بولنيزيا) +text(American:Samoa) text(is:situated:in) text(Oceania) +text(ليسوتو) text(is:located:in) text(África:austral) +text(Lesotho) text(was:located:in) text(África) +text(लेसोथो) text(neighbors:with) text(Sudáfrica) +text(سريلانكا) text(can:be:found:in) text(दक्षिण:एशिया) +text(Sri:Lanka) text(was:a:neighbor:of) text(भारत) +text(België) text(was:positioned:in) text(Western:Europe) +text(比利時) text(is:positioned:in) text(欧洲) +text(बेल्जियम) text(is:a:neighbor:of) text(जर्मनी) +text(Bélgica) text(is:a:neighboring:state:to) text(लक्ज़मबर्ग) +text(بلجيكا) text(was:a:neighboring:state:to) text(Francia) +text(Belgium) text(borders:with) text(Netherlands) +text(Catar) text(was:sited:in) text(غرب:آسيا) +text(卡塔尔) text(is:sited:in) text(एशिया) +text(Qatar) text(borders) text(सउदी:अरब) +text(Solomon:Islands) text(was:localized:in) text(Melanesië) +text(सोलोमन:द्वीपसमूह) text(is:localized:in) text(ओशिआनिया) +text(सीरिया) text(was:present:in) text(पश्चिमी:एशिया) +text(敘利亞) text(is:present:in) text(Asia) +text(Syrië) text(is:butted:against) text(Israël) +text(سوريا) text(was:butted:against) text(تركيا) +text(Syria) text(was:adjacent:to) text(Jordanië) +text(Siria) text(is:adjacent:to) text(लेबनॉन) +text(सीरिया) text(neighbors) text(العراق) +text(印度) text(is:still:in) text(Asia:del:Sur) +text(India) text(was:still:in) text(Azië) +text(India) text(is:a:neighboring:country:of) text(阿富汗) +text(الهند) text(was:a:neighboring:country:of) text(Bután) +text(India) text(neighbors:with) text(Bangladesh) +text(भारत) text(was:a:neighbor:of) text(الصين) +text(印度) text(is:a:neighbor:of) text(Nepal) +text(India) text(is:a:neighboring:state:to) text(Birmania) +text(India) text(was:a:neighboring:state:to) text(Pakistán) +text(الهند) text(borders:with) text(斯里蘭卡) +text(मोरक्को) text(was:currently:in) text(उत्तर:अफ़्रीका) +text(Marruecos) text(borders) text(阿爾及利亞) +text(المغرب) text(is:butted:against) text(西班牙) +text(摩洛哥) text(was:butted:against) text(撒拉威阿拉伯民主共和國) +text(Kenya) text(is:currently:in) text(पूर्वी:अफ्रीका) +text(肯尼亚) text(is:placed:in) text(अफ्रीका) +text(كينيا) text(was:adjacent:to) text(युगाण्डा) +text(Kenia) text(is:adjacent:to) text(Tanzania) +text(कीनिया) text(neighbors) text(Somalia) +text(Kenia) text(is:a:neighboring:country:of) text(جنوب:السودان) +text(Kenya) text(was:a:neighboring:country:of) text(إثيوبيا) +text(दक्षिण:सूडान) text(was:placed:in) text(Centraal-Afrika) +text(Zuid-Soedan) text(can:be:found:in) text(إفريقيا) +text(南蘇丹) text(neighbors:with) text(Uganda) +text(South:Sudan) text(was:a:neighbor:of) text(República:Democrática:del:Congo) +text(Sudán:del:Sur) text(is:a:neighbor:of) text(肯尼亚) +text(جنوب:السودان) text(is:a:neighboring:state:to) text(中非共和國) +text(दक्षिण:सूडान) text(was:a:neighboring:state:to) text(सूडान) +text(Zuid-Soedan) text(borders:with) text(Ethiopië) +text(Ghana) text(was:situated:in) text(África:Occidental) +text(घाना) text(borders) text(Burkina:Faso) +text(Ghana) text(is:butted:against) text(Costa:de:Marfil) +text(迦納) text(was:butted:against) text(टोगो) +text(塔吉克斯坦) text(is:situated:in) text(中亚) +text(Tadzjikistan) text(is:located:in) text(Asia) +text(Tajikistan) text(was:adjacent:to) text(People's:Republic:of:China) +text(Tayikistán) text(is:adjacent:to) text(قرغيزستان) +text(طاجيكستان) text(neighbors) text(Afganistán) +text(ताजीकिस्तान) text(is:a:neighboring:country:of) text(Uzbekistan) +text(馬紹爾群島) text(was:located:in) text(ميكرونيسيا) +text(Islas:Marshall) text(can:be:found:in) text(أوقيانوسيا) +text(कैमरुन) text(was:positioned:in) text(中部非洲) +text(Camerún) text(is:positioned:in) text(非洲) +text(Cameroon) text(was:a:neighboring:country:of) text(Chad) +text(الكاميرون) text(neighbors:with) text(جمهورية:الكونغو) +text(喀麦隆) text(was:a:neighbor:of) text(Gabón) +text(Kameroen) text(is:a:neighbor:of) text(भूमध्यरेखीय:गिनी) +text(कैमरुन) text(is:a:neighboring:state:to) text(Central:African:Republic) +text(Camerún) text(was:a:neighboring:state:to) text(नाइजीरिया) +text(ناورو) text(was:sited:in) text(Micronesia) +text(Nauru) text(is:sited:in) text(Oceanía) +text(تايلاند) text(was:localized:in) text(Southeast:Asia) +text(Thailand) text(borders:with) text(Cambodia) +text(Tailandia) text(borders) text(Myanmar) +text(泰國) text(is:butted:against) text(老撾) +text(थाईलैंड) text(was:butted:against) text(馬來西亞) +text(苏丹) text(is:localized:in) text(North:Africa) +text(Sudán) text(was:adjacent:to) text(Tsjaad) +text(Sudan) text(is:adjacent:to) text(Libia) +text(Soedan) text(neighbors) text(南蘇丹) +text(السودان) text(is:a:neighboring:country:of) text(厄立特里亞) +text(सूडान) text(was:a:neighboring:country:of) text(جمهورية:إفريقيا:الوسطى) +text(苏丹) text(neighbors:with) text(Egypte) +text(Sudán) text(was:a:neighbor:of) text(इथियोपिया) +text(تشاد) text(was:present:in) text(Central:Africa) +text(चाड) text(is:present:in) text(Africa) +text(乍得) text(is:a:neighbor:of) text(ليبيا) +text(Chad) text(is:a:neighboring:state:to) text(Níger) +text(Chad) text(was:a:neighboring:state:to) text(South:Sudan) +text(Tsjaad) text(borders:with) text(Cameroon) +text(تشاد) text(borders) text(República:Centroafricana) +text(चाड) text(is:butted:against) text(Nigeria) +text(Vanuatu) text(is:still:in) text(Melanesia) +text(فانواتو) text(was:still:in) text(大洋洲) +text(Cabo:Verde) text(was:currently:in) text(غرب:إفريقيا) +text(佛得角) text(is:currently:in) text(Afrika) +text(Falklandeilanden) text(is:placed:in) text(South:America) +text(फ़ॉकलैंड:द्वीपसमूह) text(was:placed:in) text(Americas) +text(Liberia) text(can:be:found:in) text(West-Afrika) +text(Liberia) text(was:situated:in) text(África) +text(利比里亞) text(was:butted:against) text(कोत:दिव्वार) +text(Liberia) text(was:adjacent:to) text(Sierra:Leona) +text(लाइबेरिया) text(is:adjacent:to) text(Guinee) +text(柬埔寨) text(is:situated:in) text(Zuidoost-Azië) +text(كمبوديا) text(is:located:in) text(亞洲) +text(कम्बोडिया) text(neighbors) text(वियतनाम) +text(Camboya) text(is:a:neighboring:country:of) text(Thailand) +text(Cambodja) text(was:a:neighboring:country:of) text(Laos) +text(Zimbabwe) text(was:located:in) text(东部非洲) +text(زيمبابوي) text(neighbors:with) text(ज़ाम्बिया) +text(津巴布韦) text(was:a:neighbor:of) text(Zuid-Afrika) +text(Zimbabwe) text(is:a:neighbor:of) text(波札那) +text(ज़िम्बाब्वे) text(is:a:neighboring:state:to) text(莫桑比克) +text(Comoren) text(can:be:found:in) text(East:Africa) +text(Comoros) text(was:positioned:in) text(अफ्रीका) +text(غوام) text(is:positioned:in) text(Micronesia) +text(गुआम) text(was:sited:in) text(Oceanië) +text(جزر:البهاما) text(is:sited:in) text(加勒比地区) +text(Bahama's) text(was:localized:in) text(美洲) +text(Lebanon) text(is:localized:in) text(西亚) +text(Líbano) text(was:present:in) text(آسيا) +text(لبنان) text(was:a:neighboring:state:to) text(इज़राइल) +text(Libanon) text(borders:with) text(敘利亞) +text(圣马丁岛) text(is:present:in) text(Caraïben) +text(San:Martín) text(is:still:in) text(महाअमेरिका) +text(سانت:مارتن) text(borders) text(Sint-Maarten) +text(埃塞俄比亚) text(was:still:in) text(África:Oriental) +text(Etiopía) text(was:currently:in) text(إفريقيا) +text(Ethiopia) text(is:butted:against) text(सोमालिया) +text(إثيوبيا) text(was:butted:against) text(كينيا) +text(Ethiopië) text(was:adjacent:to) text(Eritrea) +text(इथियोपिया) text(is:adjacent:to) text(Sudán:del:Sur) +text(埃塞俄比亚) text(neighbors) text(吉布提) +text(Etiopía) text(is:a:neighboring:country:of) text(Sudan) +text(संयुक्त:राज्य:वर्जिन:द्वीपसमूह) text(is:currently:in) text(कैरिबिया) +text(United:States:Virgin:Islands) text(is:placed:in) text(Amerika) +text(गिनी-बिसाऊ) text(was:placed:in) text(पश्चिमी:अफ्रीका) +text(Guinee-Bissau) text(can:be:found:in) text(非洲) +text(畿內亞比紹) text(was:a:neighboring:country:of) text(几内亚) +text(غينيا:بيساو) text(neighbors:with) text(السنغال) +text(लीबिया) text(was:situated:in) text(Noord-Afrika) +text(Libië) text(is:situated:in) text(Africa) +text(Libya) text(was:a:neighbor:of) text(乍得) +text(利比亞) text(is:a:neighbor:of) text(Túnez) +text(Libia) text(is:a:neighboring:state:to) text(Niger) +text(ليبيا) text(was:a:neighboring:state:to) text(Algerije) +text(लीबिया) text(borders:with) text(مصر) +text(Libië) text(borders) text(Soedan) +text(भूटान) text(is:located:in) text(Zuid-Azië) +text(بوتان) text(was:located:in) text(एशिया) +text(Bhutan) text(is:butted:against) text(Volksrepubliek:China) +text(不丹) text(was:butted:against) text(India) +text(澳門) text(can:be:found:in) text(Asia:Oriental) +text(Macau) text(was:positioned:in) text(Asia) +text(Macau) text(was:adjacent:to) text(中华人民共和国) +text(بولنيزيا:الفرنسية) text(is:positioned:in) text(पोलीनेशिया) +text(Polinesia:Francesa) text(was:sited:in) text(Oceania) +text(الصومال) text(is:sited:in) text(شرق:إفريقيا) +text(Somalia) text(was:localized:in) text(Afrika) +text(Somalië) text(is:adjacent:to) text(Djibouti) +text(索馬里) text(neighbors) text(Kenia) +text(Somalia) text(is:a:neighboring:country:of) text(Ethiopia) +text(Saint-Barthélemy) text(is:localized:in) text(Caribe) +text(سان:بارتيلمي) text(was:present:in) text(América) +text(Rusia) text(is:present:in) text(أوروبا:الشرقية) +text(Russia) text(is:still:in) text(Europa) +text(Rusland) text(was:a:neighboring:country:of) text(أوكرانيا) +text(रूस) text(neighbors:with) text(بيلاروس) +text(روسيا) text(was:a:neighbor:of) text(चीनी:जनवादी:गणराज्य) +text(俄罗斯) text(is:a:neighbor:of) text(哈萨克斯坦) +text(Rusia) text(is:a:neighboring:state:to) text(Noruega) +text(Russia) text(was:a:neighboring:state:to) text(بولندا) +text(Rusland) text(borders:with) text(Azerbaiyán) +text(रूस) text(borders) text(Litouwen) +text(روسيا) text(is:butted:against) text(إستونيا) +text(俄罗斯) text(was:butted:against) text(Corea:del:Norte) +text(Rusia) text(was:adjacent:to) text(芬蘭) +text(Russia) text(is:adjacent:to) text(Mongolië) +text(Rusland) text(neighbors) text(لاتفيا) +text(रूस) text(is:a:neighboring:country:of) text(Georgia) +text(新西兰) text(was:still:in) text(nan) +text(न्यूज़ीलैंड) text(was:currently:in) text(ओशिआनिया) +text(पनामा) text(is:currently:in) text(中美洲) +text(بنما) text(is:placed:in) text(أمريكتان) +text(Panamá) text(was:a:neighboring:country:of) text(كوستاريكا) +text(巴拿馬) text(neighbors:with) text(كولومبيا) +text(بابوا:غينيا:الجديدة) text(was:placed:in) text(Melanesia) +text(Papoea-Nieuw-Guinea) text(can:be:found:in) text(أوقيانوسيا) +text(巴布亚新几内亚) text(was:a:neighbor:of) text(Indonesia) +text(North:Korea) text(was:situated:in) text(東亞) +text(朝鮮民主主義人民共和國) text(is:a:neighbor:of) text(República:Popular:China) +text(उत्तर:कोरिया) text(is:a:neighboring:state:to) text(كوريا:الجنوبية) +text(Noord-Korea) text(was:a:neighboring:state:to) text(روسيا) +text(Letland) text(is:situated:in) text(Europa:del:Norte) +text(लातविया) text(is:located:in) text(यूरोप) +text(Latvia) text(borders:with) text(लिथुआनिया) +text(Letonia) text(borders) text(बेलारूस) +text(拉脫維亞) text(is:butted:against) text(俄罗斯) +text(لاتفيا) text(was:butted:against) text(愛沙尼亞) +text(Oman) text(was:located:in) text(Zuidwest-Azië) +text(Omán) text(can:be:found:in) text(Azië) +text(Oman) text(was:adjacent:to) text(Arabia:Saudí) +text(ओमान) text(is:adjacent:to) text(اليمن) +text(سلطنة:عمان) text(neighbors) text(Emiratos:Árabes:Unidos) +text(Saint-Pierre:en:Miquelon) text(was:positioned:in) text(América:del:Norte) +text(سان:بيير:وميكلون) text(is:positioned:in) text(Americas) +text(Martinique) text(was:sited:in) text(Caribbean) +text(مارتينيك) text(is:sited:in) text(美洲) +text(United:Kingdom) text(was:localized:in) text(Noord-Europa) +text(英国) text(is:localized:in) text(أوروبا) +text(यूनाइटेड:किंगडम) text(is:a:neighboring:country:of) text(英国) +text(إسرائيل) text(was:present:in) text(Asia:Occidental) +text(Israel) text(is:present:in) text(Asia) +text(Israel) text(was:a:neighboring:country:of) text(黎巴嫩) +text(以色列) text(neighbors:with) text(Egypt) +text(Israël) text(was:a:neighbor:of) text(जॉर्डन) +text(इज़राइल) text(is:a:neighbor:of) text(Syrië) +text(Jersey) text(is:still:in) text(उत्तरी:यूरोप) +text(جيرزي) text(was:still:in) text(Europe) +text(皮特凯恩群岛) text(was:currently:in) text(Polynesia) +text(Islas:Pitcairn) text(is:currently:in) text(Oceanía) +text(多哥) text(is:placed:in) text(西非) +text(Togo) text(was:placed:in) text(África) +text(Togo) text(is:a:neighboring:state:to) text(布吉納法索) +text(توغو) text(was:a:neighboring:state:to) text(غانا) +text(Togo) text(borders:with) text(貝南) +text(吉里巴斯) text(can:be:found:in) text(Micronesië) +text(Kiribati) text(was:situated:in) text(大洋洲) +text(Irán) text(is:situated:in) text(South:Asia) +text(Iran) text(is:located:in) text(亞洲) +text(ईरान) text(borders) text(Afghanistan) +text(Iran) text(is:butted:against) text(土庫曼斯坦) +text(伊朗) text(was:butted:against) text(तुर्की) +text(إيران) text(was:adjacent:to) text(Armenia) +text(Irán) text(is:adjacent:to) text(Azerbaijan) +text(Iran) text(neighbors) text(巴基斯坦) +text(ईरान) text(is:a:neighboring:country:of) text(इराक) +text(法屬聖馬丁) text(was:located:in) text(الكاريبي) +text(Saint-Martin) text(can:be:found:in) text(महाअमेरिका) +text(تجمع:سان:مارتين) text(was:a:neighboring:country:of) text(Sint:Maarten) +text(Dominican:Republic) text(was:positioned:in) text(加勒比地区) +text(جمهورية:الدومينيكان) text(is:positioned:in) text(Amerika) +text(República:Dominicana) text(neighbors:with) text(हैती) +text(Dinamarca) text(was:sited:in) text(أوروبا:الشمالية) +text(Denemarken) text(was:a:neighbor:of) text(Germany) +text(Bermuda) text(is:sited:in) text(उत्तर:अमेरिका) +text(बरमूडा) text(was:localized:in) text(América) +text(Chili) text(is:localized:in) text(أمريكا:الجنوبية) +text(Chile) text(is:a:neighbor:of) text(Argentinië) +text(تشيلي) text(is:a:neighboring:state:to) text(Bolivia) +text(Chile) text(was:a:neighboring:state:to) text(Perú) +text(科索沃) text(was:present:in) text(东欧) +text(Kosovo) text(is:present:in) text(Europa) +text(कोसोवो:गणराज्य) text(borders:with) text(Serbia) +text(Kosovo) text(borders) text(अल्बानिया) +text(كوسوفو) text(is:butted:against) text(مقدونيا:الشمالية) +text(Kosovo) text(was:butted:against) text(मॉन्टेनीग्रो) +text(सन्त:किट्स:और:नेविस) text(is:still:in) text(Caraïben) +text(Saint:Kitts:and:Nevis) text(was:still:in) text(أمريكتان) +text(Eritrea) text(was:currently:in) text(Oost-Afrika) +text(Eritrea) text(was:adjacent:to) text(Yibuti) +text(इरित्रिया) text(is:adjacent:to) text(السودان) +text(إرتريا) text(neighbors) text(إثيوبيا) +text(赤道几内亚) text(is:currently:in) text(मध्य:अफ्रीका) +text(غينيا:الاستوائية) text(is:placed:in) text(अफ्रीका) +text(Equatorial:Guinea) text(is:a:neighboring:country:of) text(Gabon) +text(Equatoriaal-Guinea) text(was:a:neighboring:country:of) text(الكاميرون) +text(Niger) text(was:placed:in) text(West:Africa) +text(尼日尔) text(can:be:found:in) text(إفريقيا) +text(नाइजर) text(neighbors:with) text(Chad) +text(النيجر) text(was:a:neighbor:of) text(Libya) +text(Níger) text(is:a:neighbor:of) text(बुर्किना:फासो) +text(Niger) text(is:a:neighboring:state:to) text(Benin) +text(Niger) text(was:a:neighboring:state:to) text(Mali) +text(尼日尔) text(borders:with) text(Algeria) +text(नाइजर) text(borders) text(نيجيريا) +text(Anguilla) text(was:situated:in) text(कैरिबिया) +text(安圭拉) text(is:situated:in) text(Americas) +text(रवाण्डा) text(is:located:in) text(पूर्वी:अफ्रीका) +text(رواندا) text(was:located:in) text(非洲) +text(Ruanda) text(is:butted:against) text(蒲隆地) +text(卢旺达) text(was:butted:against) text(坦桑尼亞) +text(Rwanda) text(was:adjacent:to) text(烏干達) +text(Rwanda) text(is:adjacent:to) text(刚果民主共和国) +text(الإمارات:العربية:المتحدة) text(can:be:found:in) text(West:Asia) +text(阿拉伯联合酋长国) text(was:positioned:in) text(آسيا) +text(संयुक्त:अरब:अमीरात) text(neighbors) text(阿曼) +text(Verenigde:Arabische:Emiraten) text(is:a:neighboring:country:of) text(Saoedi-Arabië) +text(Estonia) text(is:positioned:in) text(北歐) +text(एस्टोनिया) text(was:sited:in) text(欧洲) +text(Estonia) text(was:a:neighboring:country:of) text(Letland) +text(Estland) text(neighbors:with) text(Rusia) +text(Griekenland) text(is:sited:in) text(أوروبا:الجنوبية) +text(Grecia) text(was:localized:in) text(Europa) +text(اليونان) text(was:a:neighbor:of) text(Bulgarije) +text(यूनान) text(is:a:neighbor:of) text(ألبانيا) +text(Greece) text(is:a:neighboring:state:to) text(उत्तर:मैसिडोनिया) +text(希腊) text(was:a:neighboring:state:to) text(Turquía) +text(Senegal) text(is:localized:in) text(África:Occidental) +text(Senegal) text(was:present:in) text(Africa) +text(सेनेगल) text(borders:with) text(Guinea-Bisáu) +text(Senegal) text(borders) text(毛里塔尼亞) +text(塞内加尔) text(is:butted:against) text(马里) +text(السنغال) text(was:butted:against) text(غامبيا) +text(Senegal) text(was:adjacent:to) text(Guinea) +text(瓜德羅普) text(is:present:in) text(Caribe) +text(Guadalupe) text(is:still:in) text(美洲) +text(Mónaco) text(was:still:in) text(أوروبا:الغربية) +text(摩納哥) text(is:adjacent:to) text(法國) +text(جيبوتي) text(was:currently:in) text(东部非洲) +text(Djibouti) text(neighbors) text(厄立特里亞) +text(जिबूती) text(is:a:neighboring:country:of) text(सोमालिया) +text(吉布提) text(was:a:neighboring:country:of) text(Ethiopië) +text(Indonesia) text(is:currently:in) text(Sudeste:Asiático) +text(इंडोनेशिया) text(neighbors:with) text(Papua:New:Guinea) +text(إندونيسيا) text(was:a:neighbor:of) text(Timor:Oriental) +text(Indonesië) text(is:a:neighbor:of) text(मलेशिया) +text(British:Virgin:Islands) text(is:placed:in) text(Caribbean) +text(جزر:عذراء:بريطانية) text(was:placed:in) text(महाअमेरिका) +text(कुक:द्वीपसमूह) text(can:be:found:in) text(Polynesië) +text(Cookeilanden) text(was:situated:in) text(Oceanië) +text(أوغندا) text(is:situated:in) text(East:Africa) +text(Uganda) text(is:located:in) text(Afrika) +text(Oeganda) text(is:a:neighboring:state:to) text(तंज़ानिया) +text(युगाण्डा) text(was:a:neighboring:state:to) text(جمهورية:الكونغو:الديمقراطية) +text(Uganda) text(borders:with) text(कीनिया) +text(烏干達) text(borders) text(جنوب:السودان) +text(أوغندا) text(is:butted:against) text(रवाण्डा) +text(Noord-Macedonië) text(was:located:in) text(Zuid-Europa) +text(北马其顿) text(can:be:found:in) text(यूरोप) +text(Macedonia:del:Norte) text(was:butted:against) text(科索沃) +text(North:Macedonia) text(was:adjacent:to) text(Griekenland) +text(مقدونيا:الشمالية) text(is:adjacent:to) text(Albanië) +text(उत्तर:मैसिडोनिया) text(neighbors) text(सर्बिया) +text(Noord-Macedonië) text(is:a:neighboring:country:of) text(بلغاريا) +text(ट्यूनिशिया) text(was:positioned:in) text(Norte:de:África) +text(突尼西亞) text(is:positioned:in) text(África) +text(Tunesië) text(was:a:neighboring:country:of) text(利比亞) +text(Tunisia) text(neighbors:with) text(Argelia) +text(Ecuador) text(was:sited:in) text(दक्षिण:अमेरिका) +text(Ecuador) text(was:a:neighbor:of) text(पेरू) +text(厄瓜多尔) text(is:a:neighbor:of) text(Colombia) +text(Brazil) text(is:sited:in) text(Zuid-Amerika) +text(ब्राज़ील) text(was:localized:in) text(Amerika) +text(البرازيل) text(is:a:neighboring:state:to) text(玻利維亞) +text(巴西) text(was:a:neighboring:state:to) text(कोलम्बिया) +text(Brasil) text(borders:with) text(Paraguay) +text(Brazilië) text(borders) text(Uruguay) +text(Brazil) text(is:butted:against) text(Frans-Guyana) +text(ब्राज़ील) text(was:butted:against) text(Surinam) +text(البرازيل) text(was:adjacent:to) text(委內瑞拉) +text(巴西) text(is:adjacent:to) text(अर्जेण्टीना) +text(Brasil) text(neighbors) text(غيانا) +text(Brazilië) text(is:a:neighboring:country:of) text(Peru) +text(باراغواي) text(is:localized:in) text(南美洲) +text(巴拉圭) text(was:present:in) text(América) +text(Paraguay) text(was:a:neighboring:country:of) text(الأرجنتين) +text(पैराग्वे) text(neighbors:with) text(Brazil) +text(Paraguay) text(was:a:neighbor:of) text(बोलिविया) +text(Finland) text(is:present:in) text(Northern:Europe) +text(फ़िनलैण्ड) text(is:still:in) text(أوروبا) +text(فنلندا) text(is:a:neighbor:of) text(Noorwegen) +text(Finlandia) text(is:a:neighboring:state:to) text(स्वीडन) +text(Finland) text(was:a:neighboring:state:to) text(Russia) +text(約旦) text(was:still:in) text(غرب:آسيا) +text(Jordania) text(borders:with) text(السعودية) +text(الأردن) text(borders) text(إسرائيل) +text(Jordan) text(is:butted:against) text(Iraq) +text(Jordanië) text(was:butted:against) text(سوريا) +text(पूर्वी:तिमोर) text(was:currently:in) text(جنوب:شرق:آسيا) +text(Timor-Leste) text(was:adjacent:to) text(印度尼西亚) +text(Montenegro) text(is:currently:in) text(Europa:del:Sur) +text(Montenegro) text(is:placed:in) text(Europe) +text(الجبل:الأسود) text(is:adjacent:to) text(Kosovo) +text(Montenegro) text(neighbors) text(बोस्निया:और:हर्ज़ेगोविना) +text(蒙特內哥羅) text(is:a:neighboring:country:of) text(Kroatië) +text(मॉन्टेनीग्रो) text(was:a:neighboring:country:of) text(صربيا) +text(Montenegro) text(neighbors:with) text(阿爾巴尼亞) +text(秘鲁) text(was:placed:in) text(América:del:Sur) +text(بيرو) text(can:be:found:in) text(أمريكتان) +text(Peru) text(was:a:neighbor:of) text(Ecuador) +text(Perú) text(is:a:neighbor:of) text(بوليفيا) +text(पेरू) text(is:a:neighboring:state:to) text(चिली) +text(Peru) text(was:a:neighboring:state:to) text(ब्राज़ील) +text(秘鲁) text(borders:with) text(哥伦比亚) +text(मॉण्टसेराट) text(was:situated:in) text(الكاريبي) +text(蒙塞拉特島) text(is:situated:in) text(Americas) +text(烏克蘭) text(is:located:in) text(Eastern:Europe) +text(Ucrania) text(was:located:in) text(Europa) +text(Ukraine) text(borders) text(Slovakia) +text(युक्रेन) text(is:butted:against) text(白俄羅斯) +text(Oekraïne) text(was:butted:against) text(Polonia) +text(أوكرانيا) text(was:adjacent:to) text(Rusland) +text(烏克蘭) text(is:adjacent:to) text(हंगरी) +text(Ucrania) text(neighbors) text(摩爾多瓦) +text(Ukraine) text(is:a:neighboring:country:of) text(रोमानिया) +text(डोमिनिका) text(can:be:found:in) text(加勒比地区) +text(Dominica) text(was:positioned:in) text(美洲) +text(Turkmenistan) text(is:positioned:in) text(Centraal-Azië) +text(Turkmenistan) text(was:a:neighboring:country:of) text(كازاخستان) +text(Turkmenistán) text(neighbors:with) text(अफ़्ग़ानिस्तान) +text(تركمانستان) text(was:a:neighbor:of) text(أوزبكستان) +text(तुर्कमेनिस्तान) text(is:a:neighbor:of) text(Iran) +text(غيرنزي) text(was:sited:in) text(Europa:del:Norte) +text(Guernsey) text(is:sited:in) text(欧洲) +text(直布羅陀) text(was:localized:in) text(दक्षिणी:यूरोप) +text(जिब्राल्टर) text(is:localized:in) text(Europa) +text(Gibraltar) text(is:a:neighboring:state:to) text(Spain) +text(स्विट्ज़रलैण्ड) text(was:present:in) text(West-Europa) +text(瑞士) text(is:present:in) text(यूरोप) +text(Zwitserland) text(was:a:neighboring:state:to) text(Duitsland) +text(سويسرا) text(borders:with) text(إيطاليا) +text(Suiza) text(borders) text(النمسا) +text(Switzerland) text(is:butted:against) text(फ़्रान्स) +text(स्विट्ज़रलैण्ड) text(was:butted:against) text(列支敦斯登) +text(ऑस्ट्रिया) text(is:still:in) text(西欧) +text(Oostenrijk) text(was:still:in) text(أوروبا) +text(Austria) text(was:adjacent:to) text(Alemania) +text(奧地利) text(is:adjacent:to) text(斯洛伐克) +text(Austria) text(neighbors) text(स्लोवेनिया) +text(النمسا) text(is:a:neighboring:country:of) text(Italy) +text(ऑस्ट्रिया) text(was:a:neighboring:country:of) text(瑞士) +text(Oostenrijk) text(neighbors:with) text(Hongarije) +text(Austria) text(was:a:neighbor:of) text(Liechtenstein) +text(奧地利) text(is:a:neighbor:of) text(Czech:Republic) +text(Hungría) text(was:currently:in) text(पूर्वी:यूरोप) +text(المجر) text(is:a:neighboring:state:to) text(युक्रेन) +text(Hungary) text(was:a:neighboring:state:to) text(سلوفاكيا) +text(匈牙利) text(borders:with) text(Eslovenia) +text(हंगरी) text(borders) text(Croatia) +text(Hongarije) text(is:butted:against) text(Austria) +text(Hungría) text(was:butted:against) text(Serbia) +text(المجر) text(was:adjacent:to) text(Roemenië) +text(मलावी) text(is:currently:in) text(África:Oriental) +text(Malawi) text(is:placed:in) text(अफ्रीका) +text(馬拉威) text(is:adjacent:to) text(贊比亞) +text(Malaui) text(neighbors) text(Tanzania) +text(Malawi) text(is:a:neighboring:country:of) text(Mozambique) +text(香港) text(was:placed:in) text(East:Asia) +text(Hong:Kong) text(was:a:neighboring:country:of) text(الصين) +text(Liechtenstein) text(can:be:found:in) text(Europa:Occidental) +text(Liechtenstein) text(was:situated:in) text(Europe) +text(ليختنشتاين) text(neighbors:with) text(Zwitserland) +text(लिक्टेन्स्टाइन) text(was:a:neighbor:of) text(النمسا) +text(Barbados) text(is:situated:in) text(Caraïben) +text(Barbados) text(is:located:in) text(महाअमेरिका) +text(格鲁吉亚) text(was:located:in) text(पश्चिमी:एशिया) +text(Georgië) text(can:be:found:in) text(एशिया) +text(Georgia) text(is:a:neighbor:of) text(Armenië) +text(جورجيا) text(is:a:neighboring:state:to) text(Azerbeidzjan) +text(जॉर्जिया) text(was:a:neighboring:state:to) text(रूस) +text(Georgia) text(borders:with) text(土耳其) +text(Albania) text(was:positioned:in) text(南欧) +text(Albania) text(is:positioned:in) text(Europa) +text(अल्बानिया) text(borders) text(Montenegro) +text(ألبانيا) text(is:butted:against) text(北马其顿) +text(Albanië) text(was:butted:against) text(कोसोवो:गणराज्य) +text(阿爾巴尼亞) text(was:adjacent:to) text(Grecia) +text(科威特) text(was:sited:in) text(西亚) +text(الكويت) text(is:sited:in) text(Asia) +text(Koeweit) text(is:adjacent:to) text(沙特阿拉伯) +text(Kuwait) text(neighbors) text(Irak) +text(جنوب:إفريقيا) text(was:localized:in) text(إفريقيا:الجنوبية) +text(दक्षिण:अफ़्रीका) text(is:localized:in) text(إفريقيا) +text(南非) text(is:a:neighboring:country:of) text(Mozambique) +text(South:Africa) text(was:a:neighboring:country:of) text(बोत्सवाना) +text(Sudáfrica) text(neighbors:with) text(إسواتيني) +text(Zuid-Afrika) text(was:a:neighbor:of) text(Zimbabue) +text(جنوب:إفريقيا) text(is:a:neighbor:of) text(Namibia) +text(दक्षिण:अफ़्रीका) text(is:a:neighboring:state:to) text(Lesoto) +text(Haïti) text(was:present:in) text(कैरिबिया) +text(Haití) text(is:present:in) text(Amerika) +text(海地) text(was:a:neighboring:state:to) text(डोमिनिकन:गणराज्य) +text(أفغانستان) text(is:still:in) text(جنوب:آسيا) +text(Afghanistan) text(was:still:in) text(Azië) +text(阿富汗) text(borders:with) text(土庫曼斯坦) +text(Afganistán) text(borders) text(People's:Republic:of:China) +text(Afghanistan) text(is:butted:against) text(塔吉克斯坦) +text(अफ़्ग़ानिस्तान) text(was:butted:against) text(Oezbekistan) +text(أفغانستان) text(was:adjacent:to) text(伊朗) +text(Afghanistan) text(is:adjacent:to) text(باكستان) +text(سنغافورة) text(was:currently:in) text(东南亚) +text(新加坡) text(is:currently:in) text(Asia) +text(بنين) text(is:placed:in) text(غرب:إفريقيا) +text(Benín) text(was:placed:in) text(非洲) +text(Benin) text(neighbors) text(النيجر) +text(बेनिन) text(is:a:neighboring:country:of) text(بوركينا:فاسو) +text(貝南) text(was:a:neighboring:country:of) text(टोगो) +text(Benin) text(neighbors:with) text(Nigeria) +text(奥兰) text(can:be:found:in) text(Noord-Europa) +text(Åland) text(was:situated:in) text(欧洲) +text(Croacia) text(is:situated:in) text(Southern:Europe) +text(克羅地亞) text(is:located:in) text(Europa) +text(क्रोएशिया) text(was:a:neighbor:of) text(Slovenië) +text(كرواتيا) text(is:a:neighbor:of) text(Bosnia:and:Herzegovina) +text(Kroatië) text(is:a:neighboring:state:to) text(Hungary) +text(Croatia) text(was:a:neighboring:state:to) text(塞爾維亞) +text(Croacia) text(borders:with) text(الجبل:الأسود) +text(Zweden) text(was:located:in) text(उत्तरी:यूरोप) +text(Sweden) text(can:be:found:in) text(यूरोप) +text(السويد) text(borders) text(नॉर्वे) +text(瑞典) text(is:butted:against) text(芬蘭) +text(México) text(was:positioned:in) text(North:America) +text(मेक्सिको) text(was:butted:against) text(Belize) +text(墨西哥) text(was:adjacent:to) text(美國) +text(المكسيك) text(is:adjacent:to) text(Guatemala) +text(Greenland) text(is:positioned:in) text(北美洲) +text(ग्रीनलैण्ड) text(was:sited:in) text(América) +text(جزر:بيتكيرن) text(is:sited:in) text(nan) +text(Islas:Pitcairn) text(was:localized:in) text(Oceania) +text(नेपाल) text(is:localized:in) text(南亚) +text(نيبال) text(was:present:in) text(亞洲) +text(Nepal) text(neighbors) text(Volksrepubliek:China) +text(尼泊爾) text(is:a:neighboring:country:of) text(भारत) +text(Guatemala) text(is:present:in) text(Centraal-Amerika) +text(ग्वाटेमाला) text(was:a:neighboring:country:of) text(बेलीज़) +text(غواتيمالا) text(neighbors:with) text(薩爾瓦多) +text(Guatemala) text(was:a:neighbor:of) text(Mexico) +text(危地马拉) text(is:a:neighbor:of) text(Honduras) +text(大韩民国) text(is:still:in) text(شرق:آسيا) +text(Corea:del:Sur) text(was:still:in) text(آسيا) +text(दक्षिण:कोरिया) text(is:a:neighboring:state:to) text(كوريا:الشمالية) +text(Moldavië) text(was:currently:in) text(Europa:Oriental) +text(Moldavia) text(is:currently:in) text(أوروبا) +text(مولدوفا) text(was:a:neighboring:state:to) text(Oekraïne) +text(मोल्डोवा) text(borders:with) text(رومانيا) +text(موريشيوس) text(is:placed:in) text(شرق:إفريقيا) +text(Mauricio) text(was:placed:in) text(Africa) +text(Belarus) text(can:be:found:in) text(Oost-Europa) +text(Bielorrusia) text(borders) text(أوكرانيا) +text(Wit-Rusland) text(is:butted:against) text(पोलैंड) +text(بيلاروس) text(was:butted:against) text(ليتوانيا) +text(बेलारूस) text(was:adjacent:to) text(روسيا) +text(白俄羅斯) text(is:adjacent:to) text(लातविया) +text(孟加拉國) text(was:situated:in) text(दक्षिण:एशिया) +text(Bangladés) text(neighbors) text(म्यान्मार) +text(بنغلاديش) text(is:a:neighboring:country:of) text(印度) +text(Malaysia) text(is:situated:in) text(दक्षिण:पूर्व:एशिया) +text(Malasia) text(is:located:in) text(एशिया) +text(Maleisië) text(was:a:neighboring:country:of) text(تايلاند) +text(ماليزيا) text(neighbors:with) text(Indonesia) +text(馬來西亞) text(was:a:neighbor:of) text(ब्रुनेई) +text(البوسنة:والهرسك) text(was:located:in) text(أوروبا:الجنوبية) +text(Bosnia:y:Herzegovina) text(can:be:found:in) text(Europe) +text(波斯尼亚和黑塞哥维那) text(is:a:neighbor:of) text(Servië) +text(Bosnië:en:Herzegovina) text(is:a:neighboring:state:to) text(克羅地亞) +text(बोस्निया:और:हर्ज़ेगोविना) text(was:a:neighboring:state:to) text(Montenegro) +text(Luxembourg) text(was:positioned:in) text(पश्चिमी:यूरोप) +text(Luxemburg) text(is:positioned:in) text(Europa) +text(卢森堡) text(borders:with) text(德國) +text(Luxemburgo) text(borders) text(België) +text(لوكسمبورغ) text(is:butted:against) text(France) +text(Italië) text(was:sited:in) text(Zuid-Europa) +text(Italia) text(is:sited:in) text(欧洲) +text(意大利) text(was:butted:against) text(Slovenia) +text(इटली) text(was:adjacent:to) text(سويسرا) +text(إيطاليا) text(is:adjacent:to) text(ऑस्ट्रिया) +text(Italy) text(neighbors) text(Frankrijk) +text(Italië) text(is:a:neighboring:country:of) text(Vatican:City) +text(Italia) text(was:a:neighboring:country:of) text(सान:मारिनो) +text(أذربيجان) text(was:localized:in) text(Zuidwest-Azië) +text(अज़रबैजान) text(is:localized:in) text(Asia) +text(阿塞拜疆) text(neighbors:with) text(Turkije) +text(Azerbaiyán) text(was:a:neighbor:of) text(आर्मीनिया) +text(Azerbaijan) text(is:a:neighbor:of) text(俄罗斯) +text(Azerbeidzjan) text(is:a:neighboring:state:to) text(إيران) +text(أذربيجان) text(was:a:neighboring:state:to) text(格鲁吉亚) +text(Honduras) text(was:present:in) text(Central:America) +text(洪都拉斯) text(is:present:in) text(أمريكتان) +text(हॉण्डुरस) text(borders:with) text(Guatemala) +text(Honduras) text(borders) text(نيكاراغوا) +text(هندوراس) text(is:butted:against) text(El:Salvador) +text(Mali) text(is:still:in) text(West-Afrika) +text(مالي) text(was:still:in) text(Afrika) +text(माली) text(was:butted:against) text(Burkina:Faso) +text(Mali) text(was:adjacent:to) text(غينيا) +text(Mali) text(is:adjacent:to) text(Mauritania) +text(马里) text(neighbors) text(Níger) +text(Mali) text(is:a:neighboring:country:of) text(Senegal) +text(مالي) text(was:a:neighboring:country:of) text(अल्जीरिया) +text(माली) text(neighbors:with) text(科特迪瓦) +text(República:de:China) text(was:currently:in) text(Oost-Azië) +text(चीनी:गणराज्य) text(is:currently:in) text(Azië) +text(الجزائر) text(is:placed:in) text(北部非洲) +text(阿爾及利亞) text(was:placed:in) text(África) +text(Algerije) text(was:a:neighbor:of) text(Libia) +text(Algeria) text(is:a:neighbor:of) text(تونس) +text(Argelia) text(is:a:neighboring:state:to) text(موريتانيا) +text(अल्जीरिया) text(was:a:neighboring:state:to) text(Marokko) +text(الجزائر) text(borders:with) text(Niger) +text(阿爾及利亞) text(borders) text(Mali) +text(Algerije) text(is:butted:against) text(सहरावी:अरब:जनतांत्रिक:गणराज्य) +text(फ़्रान्सीसी:गुयाना) text(can:be:found:in) text(South:America) +text(法屬圭亞那) text(was:butted:against) text(البرازيل) +text(French:Guiana) text(was:adjacent:to) text(蘇利南) +text(Jemen) text(was:situated:in) text(Asia:Occidental) +text(Yemen) text(is:situated:in) text(Asia) +text(Yemen) text(is:adjacent:to) text(Oman) +text(यमन) text(neighbors) text(Saudi:Arabia) +text(Puerto:Rico) text(is:located:in) text(Caribe) +text(पोर्टो:रीको) text(was:located:in) text(Americas) +text(Saint:Vincent:en:de:Grenadines) text(can:be:found:in) text(Caribbean) +text(Saint:Vincent:and:the:Grenadines) text(was:positioned:in) text(美洲) +text(वेनेज़ुएला) text(is:positioned:in) text(أمريكا:الجنوبية) +text(Venezuela) text(is:a:neighboring:country:of) text(巴西) +text(Venezuela) text(was:a:neighboring:country:of) text(Guyana) +text(فنزويلا) text(neighbors:with) text(Colombia) +text(Granada) text(was:sited:in) text(الكاريبي) +text(ग्रेनाडा) text(is:sited:in) text(महाअमेरिका) +text(الولايات:المتحدة) text(was:localized:in) text(Noord-Amerika) +text(Verenigde:Staten) text(was:a:neighbor:of) text(Canada) +text(United:States) text(is:a:neighbor:of) text(Mexico) +text(Tokelau) text(is:localized:in) text(Polinesia) +text(टोकेलाऊ) text(was:present:in) text(ओशिआनिया) +text(سلوفينيا) text(is:present:in) text(Europa:del:Sur) +text(斯洛文尼亞) text(is:still:in) text(Europa) +text(स्लोवेनिया) text(is:a:neighboring:state:to) text(Oostenrijk) +text(Eslovenia) text(was:a:neighboring:state:to) text(क्रोएशिया) +text(Slovenië) text(borders:with) text(意大利) +text(Slovenia) text(borders) text(匈牙利) +text(Filipinas) text(was:still:in) text(Southeast:Asia) +text(菲律賓) text(was:currently:in) text(亞洲) +text(密克羅尼西亞群島) text(is:currently:in) text(माइक्रोनीशिया) +text(ميكرونيسيا) text(is:placed:in) text(أوقيانوسيا) +text(中华人民共和国) text(was:placed:in) text(पूर्वी:एशिया) +text(चीनी:जनवादी:गणराज्य) text(can:be:found:in) text(آسيا) +text(República:Popular:China) text(is:butted:against) text(阿富汗) +text(الصين) text(was:butted:against) text(Bhutan) +text(People's:Republic:of:China) text(was:adjacent:to) text(मकाउ) +text(Volksrepubliek:China) text(is:adjacent:to) text(India) +text(中华人民共和国) text(neighbors) text(Kazakhstan) +text(चीनी:जनवादी:गणराज्य) text(is:a:neighboring:country:of) text(किर्गिज़स्तान) +text(República:Popular:China) text(was:a:neighboring:country:of) text(Tadzjikistan) +text(الصين) text(neighbors:with) text(Laos) +text(People's:Republic:of:China) text(was:a:neighbor:of) text(Rusia) +text(Volksrepubliek:China) text(is:a:neighbor:of) text(Corea:del:Norte) +text(中华人民共和国) text(is:a:neighboring:state:to) text(Myanmar) +text(चीनी:जनवादी:गणराज्य) text(was:a:neighboring:state:to) text(पाकिस्तान) +text(República:Popular:China) text(borders:with) text(मंगोलिया) +text(الصين) text(borders) text(هونغ:كونغ) +text(People's:Republic:of:China) text(is:butted:against) text(فيتنام) +text(Gabon) text(was:situated:in) text(وسط:إفريقيا) +text(加蓬) text(is:situated:in) text(अफ्रीका) +text(الغابون) text(was:butted:against) text(Guinea:Ecuatorial) +text(गबॉन) text(was:adjacent:to) text(剛果共和國) +text(Gabón) text(is:adjacent:to) text(喀麦隆) +text(Islas:ultramarinas:de:Estados:Unidos) text(is:located:in) text(أمريكا:الشمالية) +text(جزر:الولايات:المتحدة:الصغيرة:النائية) text(was:located:in) text(Amerika) +text(Andorra) text(can:be:found:in) text(दक्षिणी:यूरोप) +text(Andorra) text(was:positioned:in) text(यूरोप) +text(安道尔) text(neighbors) text(स्पेन) +text(Andorra) text(is:a:neighboring:country:of) text(فرنسا) +text(समोआ) text(is:positioned:in) text(玻里尼西亞) +text(ساموا) text(was:sited:in) text(Oceanía) +text(गाम्बिया) text(is:sited:in) text(पश्चिमी:अफ्रीका) +text(Gambia) text(was:localized:in) text(إفريقيا) +text(Gambia) text(was:a:neighboring:country:of) text(सेनेगल) +text(nan) text(is:localized:in) text(West:Asia) +text(Pedro:Miguel) text(was:present:in) text(एशिया) +text(nan) text(neighbors:with) text(जॉर्डन) +text(Pedro:Miguel) text(was:a:neighbor:of) text(मिस्र) +text(nan) text(is:a:neighbor:of) text(Israel) +text(रेयूनियों) text(is:present:in) text(Oost-Afrika) +text(Réunion) text(is:still:in) text(非洲) +text(Francia) text(was:still:in) text(Western:Europe) +text(法國) text(was:currently:in) text(أوروبا) +text(फ़्रान्स) text(is:a:neighboring:state:to) text(ألمانيا) +text(France) text(was:a:neighboring:state:to) text(लक्ज़मबर्ग) +text(Frankrijk) text(borders:with) text(इटली) +text(فرنسا) text(borders) text(अण्डोरा) +text(Francia) text(is:butted:against) text(Suiza) +text(法國) text(was:butted:against) text(Monaco) +text(फ़्रान्स) text(was:adjacent:to) text(比利時) +text(France) text(is:adjacent:to) text(España) +text(منغوليا) text(is:currently:in) text(Asia:Oriental) +text(Mongolia) text(is:placed:in) text(Asia) +text(蒙古國) text(neighbors) text(Volksrepubliek:China) +text(Mongolia) text(is:a:neighboring:country:of) text(Russia) +text(立陶宛) text(was:placed:in) text(أوروبا:الشمالية) +text(Lithuania) text(can:be:found:in) text(Europe) +text(Lituania) text(was:a:neighboring:country:of) text(Polen) +text(Litouwen) text(neighbors:with) text(Latvia) +text(लिथुआनिया) text(was:a:neighbor:of) text(Belarus) +text(ليتوانيا) text(is:a:neighbor:of) text(Rusland) +text(Islas:Caimán) text(was:situated:in) text(加勒比地区) +text(開曼群島) text(is:situated:in) text(América) +text(सेंट:लूसिया) text(is:located:in) text(Caraïben) +text(Saint:Lucia) text(was:located:in) text(أمريكتان) +text(कुराकाओ) text(can:be:found:in) text(कैरिबिया) +text(كوراساو) text(was:positioned:in) text(Americas) +text(Caribe) text(is:positioned:in) text(美洲) +text(Asia:del:Sur) text(was:sited:in) text(Azië) +text(África:Central) text(is:sited:in) text(Africa) +text(北歐) text(was:localized:in) text(Europa) +text(南欧) text(is:localized:in) text(欧洲) +text(غرب:آسيا) text(was:present:in) text(Asia) +text(दक्षिण:अमेरिका) text(is:present:in) text(महाअमेरिका) +text(بولنيزيا) text(is:still:in) text(大洋洲) +text(nan) text(was:still:in) text(Oceanië) +text(أوروبا:الغربية) text(was:currently:in) text(Europa) +text(पूर्वी:अफ्रीका) text(is:currently:in) text(Afrika) +text(西非) text(is:placed:in) text(África) +text(أوروبا:الشرقية) text(was:placed:in) text(यूरोप) +text(केंद्रीय:अमेरिका) text(can:be:found:in) text(Amerika) +text(América:del:Norte) text(was:situated:in) text(América) +text(Zuidoost-Azië) text(is:situated:in) text(亞洲) +text(Southern:Africa) text(is:located:in) text(अफ्रीका) +text(東亞) text(was:located:in) text(آسيا) +text(شمال:إفريقيا) text(can:be:found:in) text(إفريقيا) +text(मॅलानिशिया) text(was:positioned:in) text(Oceania) +text(Micronesia) text(is:positioned:in) text(ओशिआनिया) +text(मध्य:एशिया) text(was:sited:in) text(एशिया) +text(Central:Europe) text(is:sited:in) text(أوروبا) \ No newline at end of file diff --git a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_relation2text.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_relation2text.tsv new file mode 100644 index 0000000..d6d5727 --- /dev/null +++ b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_relation2text.tsv @@ -0,0 +1,1111 @@ +palau text(is:positioned:in) micronesia +palau text(was:sited:in) oceania +maldives text(is:sited:in) southern_asia +maldives text(was:localized:in) asia +brunei text(is:localized:in) south-eastern_asia +brunei text(was:present:in) asia +brunei text(was:a:neighboring:country:of) malaysia +japan text(is:present:in) eastern_asia +japan text(is:still:in) asia +netherlands text(was:still:in) western_europe +netherlands text(neighbors:with) germany +netherlands text(was:a:neighbor:of) belgium +turkey text(was:currently:in) western_asia +turkey text(is:a:neighbor:of) armenia +turkey text(is:a:neighboring:state:to) azerbaijan +turkey text(was:a:neighboring:state:to) iran +turkey text(borders:with) greece +turkey text(borders) georgia +turkey text(is:butted:against) bulgaria +turkey text(was:butted:against) iraq +turkey text(was:adjacent:to) syria +angola text(is:currently:in) middle_africa +angola text(is:placed:in) africa +angola text(is:adjacent:to) dr_congo +angola text(neighbors) namibia +angola text(is:a:neighboring:country:of) zambia +angola text(was:a:neighboring:country:of) republic_of_the_congo +armenia text(was:placed:in) western_asia +armenia text(can:be:found:in) asia +armenia text(neighbors:with) georgia +armenia text(was:a:neighbor:of) azerbaijan +armenia text(is:a:neighbor:of) iran +armenia text(is:a:neighboring:state:to) turkey +antigua_and_barbuda text(was:situated:in) caribbean +antigua_and_barbuda text(is:situated:in) americas +swaziland text(is:located:in) southern_africa +swaziland text(was:located:in) africa +swaziland text(was:a:neighboring:state:to) south_africa +swaziland text(borders:with) mozambique +wallis_and_futuna text(can:be:found:in) polynesia +wallis_and_futuna text(was:positioned:in) oceania +uruguay text(is:positioned:in) south_america +uruguay text(was:sited:in) americas +uruguay text(borders) argentina +uruguay text(is:butted:against) brazil +zambia text(is:sited:in) eastern_africa +zambia text(was:localized:in) africa +zambia text(was:butted:against) tanzania +zambia text(was:adjacent:to) mozambique +zambia text(is:adjacent:to) dr_congo +zambia text(neighbors) angola +zambia text(is:a:neighboring:country:of) botswana +zambia text(was:a:neighboring:country:of) zimbabwe +zambia text(neighbors:with) namibia +zambia text(was:a:neighbor:of) malawi +cyprus text(is:localized:in) eastern_europe +cyprus text(was:present:in) europe +cyprus text(is:a:neighbor:of) united_kingdom +ireland text(is:present:in) northern_europe +ireland text(is:still:in) europe +ireland text(is:a:neighboring:state:to) united_kingdom +burundi text(was:still:in) eastern_africa +burundi text(was:currently:in) africa +burundi text(was:a:neighboring:state:to) dr_congo +burundi text(borders:with) rwanda +burundi text(borders) tanzania +central_african_republic text(is:currently:in) middle_africa +central_african_republic text(is:placed:in) africa +central_african_republic text(is:butted:against) chad +central_african_republic text(was:butted:against) republic_of_the_congo +central_african_republic text(was:adjacent:to) dr_congo +central_african_republic text(is:adjacent:to) south_sudan +central_african_republic text(neighbors) cameroon +central_african_republic text(is:a:neighboring:country:of) sudan +tonga text(was:placed:in) polynesia +tonga text(can:be:found:in) oceania +ivory_coast text(was:situated:in) western_africa +ivory_coast text(is:situated:in) africa +ivory_coast text(was:a:neighboring:country:of) burkina_faso +ivory_coast text(neighbors:with) ghana +ivory_coast text(was:a:neighbor:of) liberia +ivory_coast text(is:a:neighbor:of) mali +ivory_coast text(is:a:neighboring:state:to) guinea +sierra_leone text(is:located:in) western_africa +sierra_leone text(was:a:neighboring:state:to) liberia +sierra_leone text(borders:with) guinea +mayotte text(was:located:in) eastern_africa +mayotte text(can:be:found:in) africa +poland text(was:positioned:in) eastern_europe +poland text(borders) germany +poland text(is:butted:against) ukraine +poland text(was:butted:against) slovakia +poland text(was:adjacent:to) belarus +poland text(is:adjacent:to) russia +poland text(neighbors) lithuania +poland text(is:a:neighboring:country:of) czechia +kazakhstan text(is:positioned:in) central_asia +kazakhstan text(was:sited:in) asia +kazakhstan text(was:a:neighboring:country:of) turkmenistan +kazakhstan text(neighbors:with) china +kazakhstan text(was:a:neighbor:of) kyrgyzstan +kazakhstan text(is:a:neighbor:of) uzbekistan +kazakhstan text(is:a:neighboring:state:to) russia +uzbekistan text(is:sited:in) central_asia +uzbekistan text(was:localized:in) asia +uzbekistan text(was:a:neighboring:state:to) afghanistan +uzbekistan text(borders:with) turkmenistan +uzbekistan text(borders) kazakhstan +uzbekistan text(is:butted:against) kyrgyzstan +uzbekistan text(was:butted:against) tajikistan +turks_and_caicos_islands text(is:localized:in) caribbean +turks_and_caicos_islands text(was:present:in) americas +new_caledonia text(is:present:in) melanesia +new_caledonia text(is:still:in) oceania +pakistan text(was:still:in) southern_asia +pakistan text(was:adjacent:to) china +pakistan text(is:adjacent:to) afghanistan +pakistan text(neighbors) iran +pakistan text(is:a:neighboring:country:of) india +argentina text(was:currently:in) south_america +argentina text(is:currently:in) americas +argentina text(was:a:neighboring:country:of) bolivia +argentina text(neighbors:with) chile +argentina text(was:a:neighbor:of) brazil +argentina text(is:a:neighbor:of) paraguay +argentina text(is:a:neighboring:state:to) uruguay +cuba text(is:placed:in) caribbean +cuba text(was:placed:in) americas +serbia text(can:be:found:in) southern_europe +serbia text(was:a:neighboring:state:to) macedonia +serbia text(borders:with) montenegro +serbia text(borders) kosovo +serbia text(is:butted:against) bosnia_and_herzegovina +serbia text(was:butted:against) croatia +serbia text(was:adjacent:to) hungary +serbia text(is:adjacent:to) bulgaria +serbia text(neighbors) romania +czechia text(was:situated:in) eastern_europe +czechia text(is:situated:in) europe +czechia text(is:a:neighboring:country:of) germany +czechia text(was:a:neighboring:country:of) austria +czechia text(neighbors:with) poland +czechia text(was:a:neighbor:of) slovakia +nicaragua text(is:located:in) central_america +nicaragua text(is:a:neighbor:of) honduras +nicaragua text(is:a:neighboring:state:to) costa_rica +vietnam text(was:located:in) south-eastern_asia +vietnam text(can:be:found:in) asia +vietnam text(was:a:neighboring:state:to) cambodia +vietnam text(borders:with) laos +vietnam text(borders) china +niue text(was:positioned:in) polynesia +niue text(is:positioned:in) oceania +canada text(was:sited:in) northern_america +canada text(is:sited:in) americas +canada text(is:butted:against) united_states +slovakia text(was:localized:in) central_europe +slovakia text(was:butted:against) ukraine +slovakia text(was:adjacent:to) poland +slovakia text(is:adjacent:to) austria +slovakia text(neighbors) hungary +slovakia text(is:a:neighboring:country:of) czechia +mozambique text(is:localized:in) eastern_africa +mozambique text(was:a:neighboring:country:of) tanzania +mozambique text(neighbors:with) swaziland +mozambique text(was:a:neighbor:of) zimbabwe +mozambique text(is:a:neighbor:of) zambia +mozambique text(is:a:neighboring:state:to) malawi +mozambique text(was:a:neighboring:state:to) south_africa +aruba text(was:present:in) caribbean +aruba text(is:present:in) americas +bolivia text(is:still:in) south_america +bolivia text(was:still:in) americas +bolivia text(borders:with) chile +bolivia text(borders) brazil +bolivia text(is:butted:against) paraguay +bolivia text(was:butted:against) argentina +bolivia text(was:adjacent:to) peru +colombia text(was:currently:in) south_america +colombia text(is:currently:in) americas +colombia text(is:adjacent:to) ecuador +colombia text(neighbors) brazil +colombia text(is:a:neighboring:country:of) panama +colombia text(was:a:neighboring:country:of) venezuela +colombia text(neighbors:with) peru +fiji text(is:placed:in) melanesia +fiji text(was:placed:in) oceania +republic_of_the_congo text(can:be:found:in) middle_africa +republic_of_the_congo text(was:a:neighbor:of) gabon +republic_of_the_congo text(is:a:neighbor:of) dr_congo +republic_of_the_congo text(is:a:neighboring:state:to) angola +republic_of_the_congo text(was:a:neighboring:state:to) cameroon +republic_of_the_congo text(borders:with) central_african_republic +saudi_arabia text(was:situated:in) western_asia +saudi_arabia text(borders) qatar +saudi_arabia text(is:butted:against) united_arab_emirates +saudi_arabia text(was:butted:against) jordan +saudi_arabia text(was:adjacent:to) yemen +saudi_arabia text(is:adjacent:to) oman +saudi_arabia text(neighbors) kuwait +saudi_arabia text(is:a:neighboring:country:of) iraq +el_salvador text(is:situated:in) central_america +el_salvador text(is:located:in) americas +el_salvador text(was:a:neighboring:country:of) guatemala +el_salvador text(neighbors:with) honduras +madagascar text(was:located:in) eastern_africa +madagascar text(can:be:found:in) africa +australia text(was:positioned:in) australia_and_new_zealand +australia text(is:positioned:in) oceania +namibia text(was:sited:in) southern_africa +namibia text(is:sited:in) africa +namibia text(was:a:neighbor:of) zambia +namibia text(is:a:neighbor:of) angola +namibia text(is:a:neighboring:state:to) south_africa +namibia text(was:a:neighboring:state:to) botswana +tuvalu text(was:localized:in) polynesia +tuvalu text(is:localized:in) oceania +svalbard_and_jan_mayen text(was:present:in) northern_europe +svalbard_and_jan_mayen text(is:present:in) europe +isle_of_man text(is:still:in) northern_europe +isle_of_man text(was:still:in) europe +guyana text(was:currently:in) south_america +guyana text(borders:with) brazil +guyana text(borders) suriname +guyana text(is:butted:against) venezuela +vatican_city text(is:currently:in) southern_europe +vatican_city text(is:placed:in) europe +vatican_city text(was:butted:against) italy +british_indian_ocean_territory text(was:placed:in) eastern_africa +british_indian_ocean_territory text(can:be:found:in) africa +nigeria text(was:situated:in) western_africa +nigeria text(is:situated:in) africa +nigeria text(was:adjacent:to) chad +nigeria text(is:adjacent:to) niger +nigeria text(neighbors) cameroon +nigeria text(is:a:neighboring:country:of) benin +germany text(is:located:in) western_europe +germany text(was:a:neighboring:country:of) denmark +germany text(neighbors:with) netherlands +germany text(was:a:neighbor:of) poland +germany text(is:a:neighbor:of) luxembourg +germany text(is:a:neighboring:state:to) belgium +germany text(was:a:neighboring:state:to) switzerland +germany text(borders:with) austria +germany text(borders) france +germany text(is:butted:against) czechia +burkina_faso text(was:located:in) western_africa +burkina_faso text(was:butted:against) togo +burkina_faso text(was:adjacent:to) benin +burkina_faso text(is:adjacent:to) niger +burkina_faso text(neighbors) ghana +burkina_faso text(is:a:neighboring:country:of) mali +burkina_faso text(was:a:neighboring:country:of) ivory_coast +tanzania text(can:be:found:in) eastern_africa +tanzania text(neighbors:with) uganda +tanzania text(was:a:neighbor:of) mozambique +tanzania text(is:a:neighbor:of) dr_congo +tanzania text(is:a:neighboring:state:to) kenya +tanzania text(was:a:neighboring:state:to) rwanda +tanzania text(borders:with) zambia +tanzania text(borders) malawi +tanzania text(is:butted:against) burundi +northern_mariana_islands text(was:positioned:in) micronesia +northern_mariana_islands text(is:positioned:in) oceania +belize text(was:sited:in) central_america +belize text(is:sited:in) americas +belize text(was:butted:against) guatemala +belize text(was:adjacent:to) mexico +norway text(was:localized:in) northern_europe +norway text(is:adjacent:to) sweden +norway text(neighbors) finland +norway text(is:a:neighboring:country:of) russia +cocos_keeling_islands text(is:localized:in) australia_and_new_zealand +cocos_keeling_islands text(was:present:in) oceania +laos text(is:present:in) south-eastern_asia +laos text(is:still:in) asia +laos text(was:a:neighboring:country:of) china +laos text(neighbors:with) cambodia +laos text(was:a:neighbor:of) myanmar +laos text(is:a:neighbor:of) vietnam +laos text(is:a:neighboring:state:to) thailand +western_sahara text(was:still:in) northern_africa +western_sahara text(was:currently:in) africa +western_sahara text(was:a:neighboring:state:to) algeria +western_sahara text(borders:with) mauritania +western_sahara text(borders) morocco +suriname text(is:currently:in) south_america +suriname text(is:placed:in) americas +suriname text(is:butted:against) brazil +suriname text(was:butted:against) french_guiana +suriname text(was:adjacent:to) guyana +christmas_island text(was:placed:in) australia_and_new_zealand +christmas_island text(can:be:found:in) oceania +são_tomé_and_príncipe text(was:situated:in) middle_africa +são_tomé_and_príncipe text(is:situated:in) africa +egypt text(is:located:in) northern_africa +egypt text(is:adjacent:to) libya +egypt text(neighbors) israel +egypt text(is:a:neighboring:country:of) sudan +bulgaria text(was:located:in) eastern_europe +bulgaria text(was:a:neighboring:country:of) macedonia +bulgaria text(neighbors:with) turkey +bulgaria text(was:a:neighbor:of) greece +bulgaria text(is:a:neighbor:of) serbia +bulgaria text(is:a:neighboring:state:to) romania +guinea text(can:be:found:in) western_africa +guinea text(was:positioned:in) africa +guinea text(was:a:neighboring:state:to) guinea-bissau +guinea text(borders:with) sierra_leone +guinea text(borders) mali +guinea text(is:butted:against) liberia +guinea text(was:butted:against) senegal +guinea text(was:adjacent:to) ivory_coast +spain text(is:positioned:in) southern_europe +spain text(is:adjacent:to) morocco +spain text(neighbors) gibraltar +spain text(is:a:neighboring:country:of) andorra +spain text(was:a:neighboring:country:of) france +spain text(neighbors:with) portugal +costa_rica text(was:sited:in) central_america +costa_rica text(is:sited:in) americas +costa_rica text(was:a:neighbor:of) panama +costa_rica text(is:a:neighbor:of) nicaragua +malta text(was:localized:in) southern_europe +malta text(is:localized:in) europe +portugal text(was:present:in) southern_europe +portugal text(is:present:in) europe +portugal text(is:a:neighboring:state:to) spain +romania text(is:still:in) eastern_europe +romania text(was:still:in) europe +romania text(was:a:neighboring:state:to) ukraine +romania text(borders:with) hungary +romania text(borders) moldova +romania text(is:butted:against) bulgaria +romania text(was:butted:against) serbia +san_marino text(was:currently:in) southern_europe +san_marino text(is:currently:in) europe +san_marino text(was:adjacent:to) italy +mauritania text(is:placed:in) western_africa +mauritania text(was:placed:in) africa +mauritania text(is:adjacent:to) algeria +mauritania text(neighbors) mali +mauritania text(is:a:neighboring:country:of) western_sahara +mauritania text(was:a:neighboring:country:of) senegal +trinidad_and_tobago text(can:be:found:in) caribbean +trinidad_and_tobago text(was:situated:in) americas +bahrain text(is:situated:in) western_asia +bahrain text(is:located:in) asia +myanmar text(was:located:in) south-eastern_asia +myanmar text(neighbors:with) india +myanmar text(was:a:neighbor:of) bangladesh +myanmar text(is:a:neighbor:of) china +myanmar text(is:a:neighboring:state:to) laos +myanmar text(was:a:neighboring:state:to) thailand +iraq text(can:be:found:in) western_asia +iraq text(borders:with) turkey +iraq text(borders) saudi_arabia +iraq text(is:butted:against) iran +iraq text(was:butted:against) jordan +iraq text(was:adjacent:to) kuwait +iraq text(is:adjacent:to) syria +south_georgia text(was:positioned:in) south_america +south_georgia text(is:positioned:in) americas +iceland text(was:sited:in) northern_europe +iceland text(is:sited:in) europe +dr_congo text(was:localized:in) middle_africa +dr_congo text(is:localized:in) africa +dr_congo text(neighbors) uganda +dr_congo text(is:a:neighboring:country:of) tanzania +dr_congo text(was:a:neighboring:country:of) republic_of_the_congo +dr_congo text(neighbors:with) central_african_republic +dr_congo text(was:a:neighbor:of) angola +dr_congo text(is:a:neighbor:of) rwanda +dr_congo text(is:a:neighboring:state:to) south_sudan +dr_congo text(was:a:neighboring:state:to) zambia +dr_congo text(borders:with) burundi +seychelles text(was:present:in) eastern_africa +seychelles text(is:present:in) africa +kyrgyzstan text(is:still:in) central_asia +kyrgyzstan text(borders) china +kyrgyzstan text(is:butted:against) kazakhstan +kyrgyzstan text(was:butted:against) tajikistan +kyrgyzstan text(was:adjacent:to) uzbekistan +botswana text(was:still:in) southern_africa +botswana text(was:currently:in) africa +botswana text(is:adjacent:to) zimbabwe +botswana text(neighbors) namibia +botswana text(is:a:neighboring:country:of) zambia +botswana text(was:a:neighboring:country:of) south_africa +faroe_islands text(is:currently:in) northern_europe +faroe_islands text(is:placed:in) europe +jamaica text(was:placed:in) caribbean +jamaica text(can:be:found:in) americas +american_samoa text(was:situated:in) polynesia +american_samoa text(is:situated:in) oceania +lesotho text(is:located:in) southern_africa +lesotho text(was:located:in) africa +lesotho text(neighbors:with) south_africa +sri_lanka text(can:be:found:in) southern_asia +sri_lanka text(was:a:neighbor:of) india +belgium text(was:positioned:in) western_europe +belgium text(is:positioned:in) europe +belgium text(is:a:neighbor:of) germany +belgium text(is:a:neighboring:state:to) luxembourg +belgium text(was:a:neighboring:state:to) france +belgium text(borders:with) netherlands +qatar text(was:sited:in) western_asia +qatar text(is:sited:in) asia +qatar text(borders) saudi_arabia +solomon_islands text(was:localized:in) melanesia +solomon_islands text(is:localized:in) oceania +syria text(was:present:in) western_asia +syria text(is:present:in) asia +syria text(is:butted:against) israel +syria text(was:butted:against) turkey +syria text(was:adjacent:to) jordan +syria text(is:adjacent:to) lebanon +syria text(neighbors) iraq +india text(is:still:in) southern_asia +india text(was:still:in) asia +india text(is:a:neighboring:country:of) afghanistan +india text(was:a:neighboring:country:of) bhutan +india text(neighbors:with) bangladesh +india text(was:a:neighbor:of) china +india text(is:a:neighbor:of) nepal +india text(is:a:neighboring:state:to) myanmar +india text(was:a:neighboring:state:to) pakistan +india text(borders:with) sri_lanka +morocco text(was:currently:in) northern_africa +morocco text(borders) algeria +morocco text(is:butted:against) spain +morocco text(was:butted:against) western_sahara +kenya text(is:currently:in) eastern_africa +kenya text(is:placed:in) africa +kenya text(was:adjacent:to) uganda +kenya text(is:adjacent:to) tanzania +kenya text(neighbors) somalia +kenya text(is:a:neighboring:country:of) south_sudan +kenya text(was:a:neighboring:country:of) ethiopia +south_sudan text(was:placed:in) middle_africa +south_sudan text(can:be:found:in) africa +south_sudan text(neighbors:with) uganda +south_sudan text(was:a:neighbor:of) dr_congo +south_sudan text(is:a:neighbor:of) kenya +south_sudan text(is:a:neighboring:state:to) central_african_republic +south_sudan text(was:a:neighboring:state:to) sudan +south_sudan text(borders:with) ethiopia +ghana text(was:situated:in) western_africa +ghana text(borders) burkina_faso +ghana text(is:butted:against) ivory_coast +ghana text(was:butted:against) togo +tajikistan text(is:situated:in) central_asia +tajikistan text(is:located:in) asia +tajikistan text(was:adjacent:to) china +tajikistan text(is:adjacent:to) kyrgyzstan +tajikistan text(neighbors) afghanistan +tajikistan text(is:a:neighboring:country:of) uzbekistan +marshall_islands text(was:located:in) micronesia +marshall_islands text(can:be:found:in) oceania +cameroon text(was:positioned:in) middle_africa +cameroon text(is:positioned:in) africa +cameroon text(was:a:neighboring:country:of) chad +cameroon text(neighbors:with) republic_of_the_congo +cameroon text(was:a:neighbor:of) gabon +cameroon text(is:a:neighbor:of) equatorial_guinea +cameroon text(is:a:neighboring:state:to) central_african_republic +cameroon text(was:a:neighboring:state:to) nigeria +nauru text(was:sited:in) micronesia +nauru text(is:sited:in) oceania +thailand text(was:localized:in) south-eastern_asia +thailand text(borders:with) cambodia +thailand text(borders) myanmar +thailand text(is:butted:against) laos +thailand text(was:butted:against) malaysia +sudan text(is:localized:in) northern_africa +sudan text(was:adjacent:to) chad +sudan text(is:adjacent:to) libya +sudan text(neighbors) south_sudan +sudan text(is:a:neighboring:country:of) eritrea +sudan text(was:a:neighboring:country:of) central_african_republic +sudan text(neighbors:with) egypt +sudan text(was:a:neighbor:of) ethiopia +chad text(was:present:in) middle_africa +chad text(is:present:in) africa +chad text(is:a:neighbor:of) libya +chad text(is:a:neighboring:state:to) niger +chad text(was:a:neighboring:state:to) south_sudan +chad text(borders:with) cameroon +chad text(borders) central_african_republic +chad text(is:butted:against) nigeria +vanuatu text(is:still:in) melanesia +vanuatu text(was:still:in) oceania +cape_verde text(was:currently:in) western_africa +cape_verde text(is:currently:in) africa +falkland_islands text(is:placed:in) south_america +falkland_islands text(was:placed:in) americas +liberia text(can:be:found:in) western_africa +liberia text(was:situated:in) africa +liberia text(was:butted:against) ivory_coast +liberia text(was:adjacent:to) sierra_leone +liberia text(is:adjacent:to) guinea +cambodia text(is:situated:in) south-eastern_asia +cambodia text(is:located:in) asia +cambodia text(neighbors) vietnam +cambodia text(is:a:neighboring:country:of) thailand +cambodia text(was:a:neighboring:country:of) laos +zimbabwe text(was:located:in) eastern_africa +zimbabwe text(neighbors:with) zambia +zimbabwe text(was:a:neighbor:of) south_africa +zimbabwe text(is:a:neighbor:of) botswana +zimbabwe text(is:a:neighboring:state:to) mozambique +comoros text(can:be:found:in) eastern_africa +comoros text(was:positioned:in) africa +guam text(is:positioned:in) micronesia +guam text(was:sited:in) oceania +bahamas text(is:sited:in) caribbean +bahamas text(was:localized:in) americas +lebanon text(is:localized:in) western_asia +lebanon text(was:present:in) asia +lebanon text(was:a:neighboring:state:to) israel +lebanon text(borders:with) syria +sint_maarten text(is:present:in) caribbean +sint_maarten text(is:still:in) americas +sint_maarten text(borders) saint_martin +ethiopia text(was:still:in) eastern_africa +ethiopia text(was:currently:in) africa +ethiopia text(is:butted:against) somalia +ethiopia text(was:butted:against) kenya +ethiopia text(was:adjacent:to) eritrea +ethiopia text(is:adjacent:to) south_sudan +ethiopia text(neighbors) djibouti +ethiopia text(is:a:neighboring:country:of) sudan +united_states_virgin_islands text(is:currently:in) caribbean +united_states_virgin_islands text(is:placed:in) americas +guinea-bissau text(was:placed:in) western_africa +guinea-bissau text(can:be:found:in) africa +guinea-bissau text(was:a:neighboring:country:of) guinea +guinea-bissau text(neighbors:with) senegal +libya text(was:situated:in) northern_africa +libya text(is:situated:in) africa +libya text(was:a:neighbor:of) chad +libya text(is:a:neighbor:of) tunisia +libya text(is:a:neighboring:state:to) niger +libya text(was:a:neighboring:state:to) algeria +libya text(borders:with) egypt +libya text(borders) sudan +bhutan text(is:located:in) southern_asia +bhutan text(was:located:in) asia +bhutan text(is:butted:against) china +bhutan text(was:butted:against) india +macau text(can:be:found:in) eastern_asia +macau text(was:positioned:in) asia +macau text(was:adjacent:to) china +french_polynesia text(is:positioned:in) polynesia +french_polynesia text(was:sited:in) oceania +somalia text(is:sited:in) eastern_africa +somalia text(was:localized:in) africa +somalia text(is:adjacent:to) djibouti +somalia text(neighbors) kenya +somalia text(is:a:neighboring:country:of) ethiopia +saint_barthélemy text(is:localized:in) caribbean +saint_barthélemy text(was:present:in) americas +russia text(is:present:in) eastern_europe +russia text(is:still:in) europe +russia text(was:a:neighboring:country:of) ukraine +russia text(neighbors:with) belarus +russia text(was:a:neighbor:of) china +russia text(is:a:neighbor:of) kazakhstan +russia text(is:a:neighboring:state:to) norway +russia text(was:a:neighboring:state:to) poland +russia text(borders:with) azerbaijan +russia text(borders) lithuania +russia text(is:butted:against) estonia +russia text(was:butted:against) north_korea +russia text(was:adjacent:to) finland +russia text(is:adjacent:to) mongolia +russia text(neighbors) latvia +russia text(is:a:neighboring:country:of) georgia +new_zealand text(was:still:in) australia_and_new_zealand +new_zealand text(was:currently:in) oceania +panama text(is:currently:in) central_america +panama text(is:placed:in) americas +panama text(was:a:neighboring:country:of) costa_rica +panama text(neighbors:with) colombia +papua_new_guinea text(was:placed:in) melanesia +papua_new_guinea text(can:be:found:in) oceania +papua_new_guinea text(was:a:neighbor:of) indonesia +north_korea text(was:situated:in) eastern_asia +north_korea text(is:a:neighbor:of) china +north_korea text(is:a:neighboring:state:to) south_korea +north_korea text(was:a:neighboring:state:to) russia +latvia text(is:situated:in) northern_europe +latvia text(is:located:in) europe +latvia text(borders:with) lithuania +latvia text(borders) belarus +latvia text(is:butted:against) russia +latvia text(was:butted:against) estonia +oman text(was:located:in) western_asia +oman text(can:be:found:in) asia +oman text(was:adjacent:to) saudi_arabia +oman text(is:adjacent:to) yemen +oman text(neighbors) united_arab_emirates +saint_pierre_and_miquelon text(was:positioned:in) northern_america +saint_pierre_and_miquelon text(is:positioned:in) americas +martinique text(was:sited:in) caribbean +martinique text(is:sited:in) americas +united_kingdom text(was:localized:in) northern_europe +united_kingdom text(is:localized:in) europe +united_kingdom text(is:a:neighboring:country:of) ireland +israel text(was:present:in) western_asia +israel text(is:present:in) asia +israel text(was:a:neighboring:country:of) lebanon +israel text(neighbors:with) egypt +israel text(was:a:neighbor:of) jordan +israel text(is:a:neighbor:of) syria +jersey text(is:still:in) northern_europe +jersey text(was:still:in) europe +pitcairn_islands text(was:currently:in) polynesia +pitcairn_islands text(is:currently:in) oceania +togo text(is:placed:in) western_africa +togo text(was:placed:in) africa +togo text(is:a:neighboring:state:to) burkina_faso +togo text(was:a:neighboring:state:to) ghana +togo text(borders:with) benin +kiribati text(can:be:found:in) micronesia +kiribati text(was:situated:in) oceania +iran text(is:situated:in) southern_asia +iran text(is:located:in) asia +iran text(borders) afghanistan +iran text(is:butted:against) turkmenistan +iran text(was:butted:against) turkey +iran text(was:adjacent:to) armenia +iran text(is:adjacent:to) azerbaijan +iran text(neighbors) pakistan +iran text(is:a:neighboring:country:of) iraq +saint_martin text(was:located:in) caribbean +saint_martin text(can:be:found:in) americas +saint_martin text(was:a:neighboring:country:of) sint_maarten +dominican_republic text(was:positioned:in) caribbean +dominican_republic text(is:positioned:in) americas +dominican_republic text(neighbors:with) haiti +denmark text(was:sited:in) northern_europe +denmark text(was:a:neighbor:of) germany +bermuda text(is:sited:in) northern_america +bermuda text(was:localized:in) americas +chile text(is:localized:in) south_america +chile text(is:a:neighbor:of) argentina +chile text(is:a:neighboring:state:to) bolivia +chile text(was:a:neighboring:state:to) peru +kosovo text(was:present:in) eastern_europe +kosovo text(is:present:in) europe +kosovo text(borders:with) serbia +kosovo text(borders) albania +kosovo text(is:butted:against) macedonia +kosovo text(was:butted:against) montenegro +saint_kitts_and_nevis text(is:still:in) caribbean +saint_kitts_and_nevis text(was:still:in) americas +eritrea text(was:currently:in) eastern_africa +eritrea text(was:adjacent:to) djibouti +eritrea text(is:adjacent:to) sudan +eritrea text(neighbors) ethiopia +equatorial_guinea text(is:currently:in) middle_africa +equatorial_guinea text(is:placed:in) africa +equatorial_guinea text(is:a:neighboring:country:of) gabon +equatorial_guinea text(was:a:neighboring:country:of) cameroon +niger text(was:placed:in) western_africa +niger text(can:be:found:in) africa +niger text(neighbors:with) chad +niger text(was:a:neighbor:of) libya +niger text(is:a:neighbor:of) burkina_faso +niger text(is:a:neighboring:state:to) benin +niger text(was:a:neighboring:state:to) mali +niger text(borders:with) algeria +niger text(borders) nigeria +anguilla text(was:situated:in) caribbean +anguilla text(is:situated:in) americas +rwanda text(is:located:in) eastern_africa +rwanda text(was:located:in) africa +rwanda text(is:butted:against) burundi +rwanda text(was:butted:against) tanzania +rwanda text(was:adjacent:to) uganda +rwanda text(is:adjacent:to) dr_congo +united_arab_emirates text(can:be:found:in) western_asia +united_arab_emirates text(was:positioned:in) asia +united_arab_emirates text(neighbors) oman +united_arab_emirates text(is:a:neighboring:country:of) saudi_arabia +estonia text(is:positioned:in) northern_europe +estonia text(was:sited:in) europe +estonia text(was:a:neighboring:country:of) latvia +estonia text(neighbors:with) russia +greece text(is:sited:in) southern_europe +greece text(was:localized:in) europe +greece text(was:a:neighbor:of) bulgaria +greece text(is:a:neighbor:of) albania +greece text(is:a:neighboring:state:to) macedonia +greece text(was:a:neighboring:state:to) turkey +senegal text(is:localized:in) western_africa +senegal text(was:present:in) africa +senegal text(borders:with) guinea-bissau +senegal text(borders) mauritania +senegal text(is:butted:against) mali +senegal text(was:butted:against) gambia +senegal text(was:adjacent:to) guinea +guadeloupe text(is:present:in) caribbean +guadeloupe text(is:still:in) americas +monaco text(was:still:in) western_europe +monaco text(is:adjacent:to) france +djibouti text(was:currently:in) eastern_africa +djibouti text(neighbors) eritrea +djibouti text(is:a:neighboring:country:of) somalia +djibouti text(was:a:neighboring:country:of) ethiopia +indonesia text(is:currently:in) south-eastern_asia +indonesia text(neighbors:with) papua_new_guinea +indonesia text(was:a:neighbor:of) timor-leste +indonesia text(is:a:neighbor:of) malaysia +british_virgin_islands text(is:placed:in) caribbean +british_virgin_islands text(was:placed:in) americas +cook_islands text(can:be:found:in) polynesia +cook_islands text(was:situated:in) oceania +uganda text(is:situated:in) eastern_africa +uganda text(is:located:in) africa +uganda text(is:a:neighboring:state:to) tanzania +uganda text(was:a:neighboring:state:to) dr_congo +uganda text(borders:with) kenya +uganda text(borders) south_sudan +uganda text(is:butted:against) rwanda +macedonia text(was:located:in) southern_europe +macedonia text(can:be:found:in) europe +macedonia text(was:butted:against) kosovo +macedonia text(was:adjacent:to) greece +macedonia text(is:adjacent:to) albania +macedonia text(neighbors) serbia +macedonia text(is:a:neighboring:country:of) bulgaria +tunisia text(was:positioned:in) northern_africa +tunisia text(is:positioned:in) africa +tunisia text(was:a:neighboring:country:of) libya +tunisia text(neighbors:with) algeria +ecuador text(was:sited:in) south_america +ecuador text(was:a:neighbor:of) peru +ecuador text(is:a:neighbor:of) colombia +brazil text(is:sited:in) south_america +brazil text(was:localized:in) americas +brazil text(is:a:neighboring:state:to) bolivia +brazil text(was:a:neighboring:state:to) colombia +brazil text(borders:with) paraguay +brazil text(borders) uruguay +brazil text(is:butted:against) french_guiana +brazil text(was:butted:against) suriname +brazil text(was:adjacent:to) venezuela +brazil text(is:adjacent:to) argentina +brazil text(neighbors) guyana +brazil text(is:a:neighboring:country:of) peru +paraguay text(is:localized:in) south_america +paraguay text(was:present:in) americas +paraguay text(was:a:neighboring:country:of) argentina +paraguay text(neighbors:with) brazil +paraguay text(was:a:neighbor:of) bolivia +finland text(is:present:in) northern_europe +finland text(is:still:in) europe +finland text(is:a:neighbor:of) norway +finland text(is:a:neighboring:state:to) sweden +finland text(was:a:neighboring:state:to) russia +jordan text(was:still:in) western_asia +jordan text(borders:with) saudi_arabia +jordan text(borders) israel +jordan text(is:butted:against) iraq +jordan text(was:butted:against) syria +timor-leste text(was:currently:in) south-eastern_asia +timor-leste text(was:adjacent:to) indonesia +montenegro text(is:currently:in) southern_europe +montenegro text(is:placed:in) europe +montenegro text(is:adjacent:to) kosovo +montenegro text(neighbors) bosnia_and_herzegovina +montenegro text(is:a:neighboring:country:of) croatia +montenegro text(was:a:neighboring:country:of) serbia +montenegro text(neighbors:with) albania +peru text(was:placed:in) south_america +peru text(can:be:found:in) americas +peru text(was:a:neighbor:of) ecuador +peru text(is:a:neighbor:of) bolivia +peru text(is:a:neighboring:state:to) chile +peru text(was:a:neighboring:state:to) brazil +peru text(borders:with) colombia +montserrat text(was:situated:in) caribbean +montserrat text(is:situated:in) americas +ukraine text(is:located:in) eastern_europe +ukraine text(was:located:in) europe +ukraine text(borders) slovakia +ukraine text(is:butted:against) belarus +ukraine text(was:butted:against) poland +ukraine text(was:adjacent:to) russia +ukraine text(is:adjacent:to) hungary +ukraine text(neighbors) moldova +ukraine text(is:a:neighboring:country:of) romania +dominica text(can:be:found:in) caribbean +dominica text(was:positioned:in) americas +turkmenistan text(is:positioned:in) central_asia +turkmenistan text(was:a:neighboring:country:of) kazakhstan +turkmenistan text(neighbors:with) afghanistan +turkmenistan text(was:a:neighbor:of) uzbekistan +turkmenistan text(is:a:neighbor:of) iran +guernsey text(was:sited:in) northern_europe +guernsey text(is:sited:in) europe +gibraltar text(was:localized:in) southern_europe +gibraltar text(is:localized:in) europe +gibraltar text(is:a:neighboring:state:to) spain +switzerland text(was:present:in) western_europe +switzerland text(is:present:in) europe +switzerland text(was:a:neighboring:state:to) germany +switzerland text(borders:with) italy +switzerland text(borders) austria +switzerland text(is:butted:against) france +switzerland text(was:butted:against) liechtenstein +austria text(is:still:in) western_europe +austria text(was:still:in) europe +austria text(was:adjacent:to) germany +austria text(is:adjacent:to) slovakia +austria text(neighbors) slovenia +austria text(is:a:neighboring:country:of) italy +austria text(was:a:neighboring:country:of) switzerland +austria text(neighbors:with) hungary +austria text(was:a:neighbor:of) liechtenstein +austria text(is:a:neighbor:of) czechia +hungary text(was:currently:in) eastern_europe +hungary text(is:a:neighboring:state:to) ukraine +hungary text(was:a:neighboring:state:to) slovakia +hungary text(borders:with) slovenia +hungary text(borders) croatia +hungary text(is:butted:against) austria +hungary text(was:butted:against) serbia +hungary text(was:adjacent:to) romania +malawi text(is:currently:in) eastern_africa +malawi text(is:placed:in) africa +malawi text(is:adjacent:to) zambia +malawi text(neighbors) tanzania +malawi text(is:a:neighboring:country:of) mozambique +hong_kong text(was:placed:in) eastern_asia +hong_kong text(was:a:neighboring:country:of) china +liechtenstein text(can:be:found:in) western_europe +liechtenstein text(was:situated:in) europe +liechtenstein text(neighbors:with) switzerland +liechtenstein text(was:a:neighbor:of) austria +barbados text(is:situated:in) caribbean +barbados text(is:located:in) americas +georgia text(was:located:in) western_asia +georgia text(can:be:found:in) asia +georgia text(is:a:neighbor:of) armenia +georgia text(is:a:neighboring:state:to) azerbaijan +georgia text(was:a:neighboring:state:to) russia +georgia text(borders:with) turkey +albania text(was:positioned:in) southern_europe +albania text(is:positioned:in) europe +albania text(borders) montenegro +albania text(is:butted:against) macedonia +albania text(was:butted:against) kosovo +albania text(was:adjacent:to) greece +kuwait text(was:sited:in) western_asia +kuwait text(is:sited:in) asia +kuwait text(is:adjacent:to) saudi_arabia +kuwait text(neighbors) iraq +south_africa text(was:localized:in) southern_africa +south_africa text(is:localized:in) africa +south_africa text(is:a:neighboring:country:of) mozambique +south_africa text(was:a:neighboring:country:of) botswana +south_africa text(neighbors:with) swaziland +south_africa text(was:a:neighbor:of) zimbabwe +south_africa text(is:a:neighbor:of) namibia +south_africa text(is:a:neighboring:state:to) lesotho +haiti text(was:present:in) caribbean +haiti text(is:present:in) americas +haiti text(was:a:neighboring:state:to) dominican_republic +afghanistan text(is:still:in) southern_asia +afghanistan text(was:still:in) asia +afghanistan text(borders:with) turkmenistan +afghanistan text(borders) china +afghanistan text(is:butted:against) tajikistan +afghanistan text(was:butted:against) uzbekistan +afghanistan text(was:adjacent:to) iran +afghanistan text(is:adjacent:to) pakistan +singapore text(was:currently:in) south-eastern_asia +singapore text(is:currently:in) asia +benin text(is:placed:in) western_africa +benin text(was:placed:in) africa +benin text(neighbors) niger +benin text(is:a:neighboring:country:of) burkina_faso +benin text(was:a:neighboring:country:of) togo +benin text(neighbors:with) nigeria +åland_islands text(can:be:found:in) northern_europe +åland_islands text(was:situated:in) europe +croatia text(is:situated:in) southern_europe +croatia text(is:located:in) europe +croatia text(was:a:neighbor:of) slovenia +croatia text(is:a:neighbor:of) bosnia_and_herzegovina +croatia text(is:a:neighboring:state:to) hungary +croatia text(was:a:neighboring:state:to) serbia +croatia text(borders:with) montenegro +sweden text(was:located:in) northern_europe +sweden text(can:be:found:in) europe +sweden text(borders) norway +sweden text(is:butted:against) finland +mexico text(was:positioned:in) northern_america +mexico text(was:butted:against) belize +mexico text(was:adjacent:to) united_states +mexico text(is:adjacent:to) guatemala +greenland text(is:positioned:in) northern_america +greenland text(was:sited:in) americas +norfolk_island text(is:sited:in) australia_and_new_zealand +norfolk_island text(was:localized:in) oceania +nepal text(is:localized:in) southern_asia +nepal text(was:present:in) asia +nepal text(neighbors) china +nepal text(is:a:neighboring:country:of) india +guatemala text(is:present:in) central_america +guatemala text(was:a:neighboring:country:of) belize +guatemala text(neighbors:with) el_salvador +guatemala text(was:a:neighbor:of) mexico +guatemala text(is:a:neighbor:of) honduras +south_korea text(is:still:in) eastern_asia +south_korea text(was:still:in) asia +south_korea text(is:a:neighboring:state:to) north_korea +moldova text(was:currently:in) eastern_europe +moldova text(is:currently:in) europe +moldova text(was:a:neighboring:state:to) ukraine +moldova text(borders:with) romania +mauritius text(is:placed:in) eastern_africa +mauritius text(was:placed:in) africa +belarus text(can:be:found:in) eastern_europe +belarus text(borders) ukraine +belarus text(is:butted:against) poland +belarus text(was:butted:against) lithuania +belarus text(was:adjacent:to) russia +belarus text(is:adjacent:to) latvia +bangladesh text(was:situated:in) southern_asia +bangladesh text(neighbors) myanmar +bangladesh text(is:a:neighboring:country:of) india +malaysia text(is:situated:in) south-eastern_asia +malaysia text(is:located:in) asia +malaysia text(was:a:neighboring:country:of) thailand +malaysia text(neighbors:with) indonesia +malaysia text(was:a:neighbor:of) brunei +bosnia_and_herzegovina text(was:located:in) southern_europe +bosnia_and_herzegovina text(can:be:found:in) europe +bosnia_and_herzegovina text(is:a:neighbor:of) serbia +bosnia_and_herzegovina text(is:a:neighboring:state:to) croatia +bosnia_and_herzegovina text(was:a:neighboring:state:to) montenegro +luxembourg text(was:positioned:in) western_europe +luxembourg text(is:positioned:in) europe +luxembourg text(borders:with) germany +luxembourg text(borders) belgium +luxembourg text(is:butted:against) france +italy text(was:sited:in) southern_europe +italy text(is:sited:in) europe +italy text(was:butted:against) slovenia +italy text(was:adjacent:to) switzerland +italy text(is:adjacent:to) austria +italy text(neighbors) france +italy text(is:a:neighboring:country:of) vatican_city +italy text(was:a:neighboring:country:of) san_marino +azerbaijan text(was:localized:in) western_asia +azerbaijan text(is:localized:in) asia +azerbaijan text(neighbors:with) turkey +azerbaijan text(was:a:neighbor:of) armenia +azerbaijan text(is:a:neighbor:of) russia +azerbaijan text(is:a:neighboring:state:to) iran +azerbaijan text(was:a:neighboring:state:to) georgia +honduras text(was:present:in) central_america +honduras text(is:present:in) americas +honduras text(borders:with) guatemala +honduras text(borders) nicaragua +honduras text(is:butted:against) el_salvador +mali text(is:still:in) western_africa +mali text(was:still:in) africa +mali text(was:butted:against) burkina_faso +mali text(was:adjacent:to) guinea +mali text(is:adjacent:to) mauritania +mali text(neighbors) niger +mali text(is:a:neighboring:country:of) senegal +mali text(was:a:neighboring:country:of) algeria +mali text(neighbors:with) ivory_coast +taiwan text(was:currently:in) eastern_asia +taiwan text(is:currently:in) asia +algeria text(is:placed:in) northern_africa +algeria text(was:placed:in) africa +algeria text(was:a:neighbor:of) libya +algeria text(is:a:neighbor:of) tunisia +algeria text(is:a:neighboring:state:to) mauritania +algeria text(was:a:neighboring:state:to) morocco +algeria text(borders:with) niger +algeria text(borders) mali +algeria text(is:butted:against) western_sahara +french_guiana text(can:be:found:in) south_america +french_guiana text(was:butted:against) brazil +french_guiana text(was:adjacent:to) suriname +yemen text(was:situated:in) western_asia +yemen text(is:situated:in) asia +yemen text(is:adjacent:to) oman +yemen text(neighbors) saudi_arabia +puerto_rico text(is:located:in) caribbean +puerto_rico text(was:located:in) americas +saint_vincent_and_the_grenadines text(can:be:found:in) caribbean +saint_vincent_and_the_grenadines text(was:positioned:in) americas +venezuela text(is:positioned:in) south_america +venezuela text(is:a:neighboring:country:of) brazil +venezuela text(was:a:neighboring:country:of) guyana +venezuela text(neighbors:with) colombia +grenada text(was:sited:in) caribbean +grenada text(is:sited:in) americas +united_states text(was:localized:in) northern_america +united_states text(was:a:neighbor:of) canada +united_states text(is:a:neighbor:of) mexico +tokelau text(is:localized:in) polynesia +tokelau text(was:present:in) oceania +slovenia text(is:present:in) southern_europe +slovenia text(is:still:in) europe +slovenia text(is:a:neighboring:state:to) austria +slovenia text(was:a:neighboring:state:to) croatia +slovenia text(borders:with) italy +slovenia text(borders) hungary +philippines text(was:still:in) south-eastern_asia +philippines text(was:currently:in) asia +micronesia text(is:currently:in) micronesia +micronesia text(is:placed:in) oceania +china text(was:placed:in) eastern_asia +china text(can:be:found:in) asia +china text(is:butted:against) afghanistan +china text(was:butted:against) bhutan +china text(was:adjacent:to) macau +china text(is:adjacent:to) india +china text(neighbors) kazakhstan +china text(is:a:neighboring:country:of) kyrgyzstan +china text(was:a:neighboring:country:of) tajikistan +china text(neighbors:with) laos +china text(was:a:neighbor:of) russia +china text(is:a:neighbor:of) north_korea +china text(is:a:neighboring:state:to) myanmar +china text(was:a:neighboring:state:to) pakistan +china text(borders:with) mongolia +china text(borders) hong_kong +china text(is:butted:against) vietnam +gabon text(was:situated:in) middle_africa +gabon text(is:situated:in) africa +gabon text(was:butted:against) equatorial_guinea +gabon text(was:adjacent:to) republic_of_the_congo +gabon text(is:adjacent:to) cameroon +united_states_minor_outlying_islands text(is:located:in) northern_america +united_states_minor_outlying_islands text(was:located:in) americas +andorra text(can:be:found:in) southern_europe +andorra text(was:positioned:in) europe +andorra text(neighbors) spain +andorra text(is:a:neighboring:country:of) france +samoa text(is:positioned:in) polynesia +samoa text(was:sited:in) oceania +gambia text(is:sited:in) western_africa +gambia text(was:localized:in) africa +gambia text(was:a:neighboring:country:of) senegal +palestine text(is:localized:in) western_asia +palestine text(was:present:in) asia +palestine text(neighbors:with) jordan +palestine text(was:a:neighbor:of) egypt +palestine text(is:a:neighbor:of) israel +réunion text(is:present:in) eastern_africa +réunion text(is:still:in) africa +france text(was:still:in) western_europe +france text(was:currently:in) europe +france text(is:a:neighboring:state:to) germany +france text(was:a:neighboring:state:to) luxembourg +france text(borders:with) italy +france text(borders) andorra +france text(is:butted:against) switzerland +france text(was:butted:against) monaco +france text(was:adjacent:to) belgium +france text(is:adjacent:to) spain +mongolia text(is:currently:in) eastern_asia +mongolia text(is:placed:in) asia +mongolia text(neighbors) china +mongolia text(is:a:neighboring:country:of) russia +lithuania text(was:placed:in) northern_europe +lithuania text(can:be:found:in) europe +lithuania text(was:a:neighboring:country:of) poland +lithuania text(neighbors:with) latvia +lithuania text(was:a:neighbor:of) belarus +lithuania text(is:a:neighbor:of) russia +cayman_islands text(was:situated:in) caribbean +cayman_islands text(is:situated:in) americas +saint_lucia text(is:located:in) caribbean +saint_lucia text(was:located:in) americas +curaçao text(can:be:found:in) caribbean +curaçao text(was:positioned:in) americas +caribbean text(is:positioned:in) americas +southern_asia text(was:sited:in) asia +middle_africa text(is:sited:in) africa +northern_europe text(was:localized:in) europe +southern_europe text(is:localized:in) europe +western_asia text(was:present:in) asia +south_america text(is:present:in) americas +polynesia text(is:still:in) oceania +australia_and_new_zealand text(was:still:in) oceania +western_europe text(was:currently:in) europe +eastern_africa text(is:currently:in) africa +western_africa text(is:placed:in) africa +eastern_europe text(was:placed:in) europe +central_america text(can:be:found:in) americas +northern_america text(was:situated:in) americas +south-eastern_asia text(is:situated:in) asia +southern_africa text(is:located:in) africa +eastern_asia text(was:located:in) asia +northern_africa text(can:be:found:in) africa +melanesia text(was:positioned:in) oceania +micronesia text(is:positioned:in) oceania +central_asia text(was:sited:in) asia +central_europe text(is:sited:in) europe \ No newline at end of file diff --git a/deepsoftlog/experiments/wiki_countries/data/raw/countries_S2.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S2.tsv similarity index 100% rename from deepsoftlog/experiments/wiki_countries/data/raw/countries_S2.tsv rename to deepsoftlog/experiments/mentions_countries/data/raw/countries_S2.tsv diff --git a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_country2text.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_country2text.tsv new file mode 100644 index 0000000..770f4a3 --- /dev/null +++ b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_country2text.tsv @@ -0,0 +1,1063 @@ +text(帛琉) locatedIn text(ميكرونيسيا) +text(Palau) locatedIn text(Oceanië) +text(馬爾代夫) locatedIn text(South:Asia) +text(المالديف) locatedIn text(Azië) +text(Brunei) locatedIn text(Sudeste:Asiático) +text(بروناي) locatedIn text(Asia) +text(Brunei) neighborOf text(ماليزيا) +text(Japón) locatedIn text(東亞) +text(Japan) locatedIn text(Asia) +text(Países:Bajos) neighborOf text(ألمانيا) +text(荷蘭) neighborOf text(بلجيكا) +text(تركيا) neighborOf text(Armenia) +text(Turquía) neighborOf text(أذربيجان) +text(Turkey) neighborOf text(إيران) +text(तुर्की) neighborOf text(Griekenland) +text(Turkije) neighborOf text(Georgia) +text(土耳其) neighborOf text(Bulgaria) +text(تركيا) neighborOf text(Irak) +text(Turquía) neighborOf text(Syrië) +text(Angola) locatedIn text(وسط:إفريقيا) +text(安哥拉) locatedIn text(Africa) +text(أنغولا) neighborOf text(Congo-Kinshasa) +text(Angola) neighborOf text(नामीबिया) +text(अंगोला) neighborOf text(贊比亞) +text(Angola) neighborOf text(جمهورية:الكونغو) +text(आर्मीनिया) locatedIn text(पश्चिमी:एशिया) +text(亞美尼亞) locatedIn text(亞洲) +text(Armenia) neighborOf text(जॉर्जिया) +text(أرمينيا) neighborOf text(Azerbeidzjan) +text(Armenië) neighborOf text(Iran) +text(Armenia) neighborOf text(Turkey) +text(Antigua:en:Barbuda) locatedIn text(Caribbean) +text(安提瓜和巴布达) locatedIn text(América) +text(Esuatini) locatedIn text(إفريقيا:الجنوبية) +text(Swaziland) locatedIn text(África) +text(एस्वातीनी) neighborOf text(Sudáfrica) +text(Eswatini) neighborOf text(موزمبيق) +text(Wallis:y:Futuna) locatedIn text(بولنيزيا) +text(Wallis:en:Futuna) locatedIn text(大洋洲) +text(उरुग्वे) locatedIn text(أمريكا:الجنوبية) +text(Uruguay) locatedIn text(Americas) +text(Uruguay) neighborOf text(阿根廷) +text(Uruguay) neighborOf text(巴西) +text(Zambia) locatedIn text(East:Africa) +text(Zambia) locatedIn text(Afrika) +text(زامبيا) neighborOf text(Tanzania) +text(ज़ाम्बिया) neighborOf text(Mozambique) +text(Zambia) neighborOf text(Democratic:Republic:of:the:Congo) +text(贊比亞) neighborOf text(Angola) +text(Zambia) neighborOf text(Botswana) +text(Zambia) neighborOf text(Zimbabwe) +text(زامبيا) neighborOf text(Namibië) +text(ज़ाम्बिया) neighborOf text(Malawi) +text(قبرص) locatedIn text(पूर्वी:यूरोप) +text(Cyprus) locatedIn text(Europe) +text(साइप्रस) neighborOf text(United:Kingdom) +text(المملكة:المتحدة) locatedIn text(أوروبا:الشمالية) +text(United:Kingdom) locatedIn text(Europa) +text(Reino:Unido) neighborOf text(英国) +text(बुरुण्डी) locatedIn text(شرق:إفريقيا) +text(Burundi) locatedIn text(अफ्रीका) +text(Burundi) neighborOf text(刚果民主共和国) +text(بوروندي) neighborOf text(Rwanda) +text(蒲隆地) neighborOf text(تنزانيا) +text(中非共和國) locatedIn text(Central:Africa) +text(جمهورية:إفريقيا:الوسطى) locatedIn text(非洲) +text(Central:African:Republic) neighborOf text(تشاد) +text(Centraal-Afrikaanse:Republiek) neighborOf text(剛果共和國) +text(República:Centroafricana) neighborOf text(جمهورية:الكونغو:الديمقراطية) +text(मध्य:अफ़्रीकी:गणराज्य) neighborOf text(Zuid-Soedan) +text(中非共和國) neighborOf text(Camerún) +text(جمهورية:إفريقيا:الوسطى) neighborOf text(Soedan) +text(Tonga) locatedIn text(पोलीनेशिया) +text(東加) locatedIn text(أوقيانوسيا) +text(कोत:दिव्वार) locatedIn text(West-Afrika) +text(科特迪瓦) locatedIn text(إفريقيا) +text(Ivoorkust) neighborOf text(Burkina:Faso) +text(Costa:de:Marfil) neighborOf text(घाना) +text(Ivory:Coast) neighborOf text(लाइबेरिया) +text(ساحل:العاج) neighborOf text(马里) +text(कोत:दिव्वार) neighborOf text(几内亚) +text(सिएरा:लियोन) neighborOf text(利比里亞) +text(سيراليون) neighborOf text(Guinea) +text(Mayotte) locatedIn text(Oost-Afrika) +text(马约特) locatedIn text(Africa) +text(بولندا) neighborOf text(德國) +text(Polonia) neighborOf text(Oekraïne) +text(Polen) neighborOf text(斯洛伐克) +text(波蘭) neighborOf text(Bielorrusia) +text(Poland) neighborOf text(Russia) +text(पोलैंड) neighborOf text(लिथुआनिया) +text(بولندا) neighborOf text(جمهورية:التشيك) +text(कज़ाख़िस्तान) locatedIn text(Centraal-Azië) +text(Kazachstan) locatedIn text(آسيا) +text(Kazajistán) neighborOf text(تركمانستان) +text(哈萨克斯坦) neighborOf text(People's:Republic:of:China) +text(Kazakhstan) neighborOf text(Kirguistán) +text(كازاخستان) neighborOf text(उज़्बेकिस्तान) +text(कज़ाख़िस्तान) neighborOf text(रूस) +text(Uzbekistan) locatedIn text(中亚) +text(أوزبكستان) locatedIn text(एशिया) +text(乌兹别克斯坦) neighborOf text(Afghanistan) +text(Uzbekistán) neighborOf text(土庫曼斯坦) +text(Oezbekistan) neighborOf text(Kazachstan) +text(उज़्बेकिस्तान) neighborOf text(吉尔吉斯斯坦) +text(Uzbekistan) neighborOf text(ताजीकिस्तान) +text(Islas:Turcas:y:Caicos) locatedIn text(Caraïben) +text(Turks:and:Caicos:Islands) locatedIn text(أمريكتان) +text(नया:कैलेडोनिया) locatedIn text(Melanesia) +text(New:Caledonia) locatedIn text(Oceanía) +text(巴基斯坦) neighborOf text(中华人民共和国) +text(Pakistan) neighborOf text(Afghanistan) +text(Pakistán) neighborOf text(ईरान) +text(पाकिस्तान) neighborOf text(India) +text(अर्जेण्टीना) locatedIn text(南美洲) +text(Argentinië) locatedIn text(美洲) +text(الأرجنتين) neighborOf text(Bolivia) +text(Argentina) neighborOf text(Chili) +text(Argentina) neighborOf text(Brazilië) +text(阿根廷) neighborOf text(Paraguay) +text(अर्जेण्टीना) neighborOf text(烏拉圭) +text(كوبا) locatedIn text(Caribe) +text(古巴) locatedIn text(महाअमेरिका) +text(塞爾維亞) neighborOf text(Macedonia:del:Norte) +text(Servië) neighborOf text(मॉन्टेनीग्रो) +text(सर्बिया) neighborOf text(कोसोवो:गणराज्य) +text(Serbia) neighborOf text(बोस्निया:और:हर्ज़ेगोविना) +text(صربيا) neighborOf text(क्रोएशिया) +text(Serbia) neighborOf text(Hongarije) +text(塞爾維亞) neighborOf text(Bulgarije) +text(Servië) neighborOf text(Romania) +text(República:Checa) locatedIn text(Oost-Europa) +text(चेक:गणराज्य) locatedIn text(أوروبا) +text(捷克) neighborOf text(जर्मनी) +text(Czech:Republic) neighborOf text(ऑस्ट्रिया) +text(Tsjechië) neighborOf text(Polonia) +text(جمهورية:التشيك) neighborOf text(स्लोवाकिया) +text(Nicaragua) neighborOf text(هندوراس) +text(निकारागुआ) neighborOf text(Costa:Rica) +text(Vietnam) locatedIn text(दक्षिण:पूर्व:एशिया) +text(Vietnam) locatedIn text(Azië) +text(Vietnam) neighborOf text(柬埔寨) +text(越南) neighborOf text(Laos) +text(فيتنام) neighborOf text(الصين) +text(نييوي) locatedIn text(玻里尼西亞) +text(निउए) locatedIn text(ओशिआनिया) +text(加拿大) locatedIn text(北美洲) +text(Canadá) locatedIn text(Amerika) +text(Canada) neighborOf text(United:States) +text(سلوفاكيا) neighborOf text(Ukraine) +text(Slowakije) neighborOf text(Polen) +text(Slovakia) neighborOf text(奧地利) +text(Eslovaquia) neighborOf text(हंगरी) +text(斯洛伐克) neighborOf text(República:Checa) +text(Mozambique) neighborOf text(Tanzania) +text(मोज़ाम्बीक) neighborOf text(斯威士兰) +text(莫桑比克) neighborOf text(Zimbabwe) +text(Mozambique) neighborOf text(Zambia) +text(موزمبيق) neighborOf text(Malawi) +text(Mozambique) neighborOf text(جنوب:إفريقيا) +text(Aruba) locatedIn text(الكاريبي) +text(Aruba) locatedIn text(América) +text(Bolivia) locatedIn text(América:del:Sur) +text(Bolivia) locatedIn text(Americas) +text(बोलिविया) neighborOf text(智利) +text(بوليفيا) neighborOf text(ब्राज़ील) +text(玻利維亞) neighborOf text(باراغواي) +text(Bolivia) neighborOf text(Argentinië) +text(Bolivia) neighborOf text(Perú) +text(Colombia) locatedIn text(दक्षिण:अमेरिका) +text(哥伦比亚) locatedIn text(أمريكتان) +text(Colombia) neighborOf text(ईक्वाडोर) +text(कोलम्बिया) neighborOf text(البرازيل) +text(كولومبيا) neighborOf text(Panama) +text(Colombia) neighborOf text(فنزويلا) +text(Colombia) neighborOf text(بيرو) +text(Fiji) locatedIn text(Melanesia) +text(Fiji) locatedIn text(Oceania) +text(Congo-Brazzaville) neighborOf text(加蓬) +text(Republic:of:the:Congo) neighborOf text(कांगो:लोकतान्त्रिक:गणराज्य) +text(कांगो:गणराज्य) neighborOf text(安哥拉) +text(República:del:Congo) neighborOf text(कैमरुन) +text(جمهورية:الكونغو) neighborOf text(Central:African:Republic) +text(Arabia:Saudí) neighborOf text(Qatar) +text(沙特阿拉伯) neighborOf text(संयुक्त:अरब:अमीरात) +text(السعودية) neighborOf text(約旦) +text(सउदी:अरब) neighborOf text(اليمن) +text(Saudi:Arabia) neighborOf text(Oman) +text(Saoedi-Arabië) neighborOf text(科威特) +text(Arabia:Saudí) neighborOf text(العراق) +text(El:Salvador) locatedIn text(Central:America) +text(अल:साल्वाडोर) locatedIn text(美洲) +text(السلفادور) neighborOf text(غواتيمالا) +text(薩爾瓦多) neighborOf text(洪都拉斯) +text(Madagascar) locatedIn text(东部非洲) +text(मेडागास्कर) locatedIn text(África) +text(Australia) locatedIn text(nan) +text(Australia) locatedIn text(Oceanië) +text(纳米比亚) locatedIn text(Zuidelijk:Afrika) +text(Namibia) locatedIn text(Afrika) +text(Namibia) neighborOf text(贊比亞) +text(ناميبيا) neighborOf text(أنغولا) +text(नामीबिया) neighborOf text(南非) +text(Namibië) neighborOf text(बोत्सवाना) +text(Tuvalu) locatedIn text(Polynesië) +text(तुवालू) locatedIn text(大洋洲) +text(斯瓦巴和扬马延) locatedIn text(Northern:Europe) +text(Spitsbergen:en:Jan:Mayen) locatedIn text(欧洲) +text(Man) locatedIn text(उत्तरी:यूरोप) +text(جزيرة:مان) locatedIn text(Europa) +text(圭亚那) neighborOf text(Brasil) +text(Guyana) neighborOf text(Surinam) +text(غيانا) neighborOf text(委內瑞拉) +text(वैटिकन:नगर) locatedIn text(Zuid-Europa) +text(梵蒂岡城國) locatedIn text(यूरोप) +text(Vaticaanstad) neighborOf text(意大利) +text(British:Indian:Ocean:Territory) locatedIn text(África:Oriental) +text(Territorio:Británico:del:Océano:Índico) locatedIn text(अफ्रीका) +text(नाइजीरिया) locatedIn text(غرب:إفريقيا) +text(奈及利亞) locatedIn text(非洲) +text(نيجيريا) neighborOf text(乍得) +text(Nigeria) neighborOf text(Níger) +text(Nigeria) neighborOf text(喀麦隆) +text(Nigeria) neighborOf text(貝南) +text(Duitsland) neighborOf text(Denmark) +text(Alemania) neighborOf text(Netherlands) +text(Germany) neighborOf text(波蘭) +text(ألمانيا) neighborOf text(لوكسمبورغ) +text(德國) neighborOf text(België) +text(जर्मनी) neighborOf text(Suiza) +text(Duitsland) neighborOf text(Austria) +text(Alemania) neighborOf text(France) +text(Germany) neighborOf text(चेक:गणराज्य) +text(Burkina:Faso) neighborOf text(Togo) +text(بوركينا:فاسو) neighborOf text(بنين) +text(Burkina:Faso) neighborOf text(النيجر) +text(बुर्किना:फासो) neighborOf text(Ghana) +text(布吉納法索) neighborOf text(माली) +text(Burkina:Faso) neighborOf text(科特迪瓦) +text(Tanzania) neighborOf text(Uganda) +text(तंज़ानिया) neighborOf text(Mozambique) +text(坦桑尼亞) neighborOf text(República:Democrática:del:Congo) +text(Tanzania) neighborOf text(Kenia) +text(تنزانيا) neighborOf text(رواندا) +text(Tanzania) neighborOf text(Zambia) +text(Tanzania) neighborOf text(मलावी) +text(तंज़ानिया) neighborOf text(Burundi) +text(उत्तरी:मारियाना:द्वीप) locatedIn text(माइक्रोनीशिया) +text(Noordelijke:Marianen) locatedIn text(أوقيانوسيا) +text(Belize) locatedIn text(أمريكا:الوسطى) +text(बेलीज़) locatedIn text(महाअमेरिका) +text(Belice) neighborOf text(Guatemala) +text(بليز) neighborOf text(墨西哥) +text(नॉर्वे) neighborOf text(Zweden) +text(النرويج) neighborOf text(Finland) +text(Noorwegen) neighborOf text(俄罗斯) +text(جزر:كوكوس) locatedIn text(nan) +text(कोकोस:(कीलिंग):द्वीपसमूह) locatedIn text(Oceanía) +text(Laos) locatedIn text(Zuidoost-Azië) +text(लाओस) locatedIn text(Asia) +text(Laos) neighborOf text(República:Popular:China) +text(لاوس) neighborOf text(Cambodia) +text(老撾) neighborOf text(Birmania) +text(Laos) neighborOf text(वियतनाम) +text(Laos) neighborOf text(泰國) +text(Sahrawi:Arabische:Democratische:Republiek) locatedIn text(Norte:de:África) +text(الجمهورية:العربية:الصحراوية:الديمقراطية) locatedIn text(إفريقيا) +text(Sahrawi:Arab:Democratic:Republic) neighborOf text(अल्जीरिया) +text(República:Árabe:Saharaui:Democrática) neighborOf text(毛里塔尼亞) +text(सहरावी:अरब:जनतांत्रिक:गणराज्य) neighborOf text(Marruecos) +text(蘇利南) locatedIn text(Zuid-Amerika) +text(سورينام) locatedIn text(Amerika) +text(Suriname) neighborOf text(Brazil) +text(सूरीनाम) neighborOf text(Guayana:Francesa) +text(Suriname) neighborOf text(Guyana) +text(Isla:de:Navidad) locatedIn text(Australië:en:Nieuw-Zeeland) +text(Christmas:Island) locatedIn text(ओशिआनिया) +text(São:Tomé:and:Príncipe) locatedIn text(मध्य:अफ्रीका) +text(ساو:تومي:وبرينسيب) locatedIn text(Africa) +text(मिस्र) neighborOf text(Libia) +text(Egipto) neighborOf text(إسرائيل) +text(Egypte) neighborOf text(السودان) +text(बुल्गारिया) neighborOf text(北马其顿) +text(بلغاريا) neighborOf text(तुर्की) +text(保加利亚) neighborOf text(Grecia) +text(Bulgaria) neighborOf text(सर्बिया) +text(Bulgaria) neighborOf text(羅馬尼亞) +text(غينيا) locatedIn text(पश्चिमी:अफ्रीका) +text(Guinea) locatedIn text(África) +text(गिनी) neighborOf text(غينيا:بيساو) +text(Guinee) neighborOf text(Sierra:Leone) +text(几内亚) neighborOf text(Mali) +text(Guinea) neighborOf text(ليبيريا) +text(غينيا) neighborOf text(Senegal) +text(Guinea) neighborOf text(Ivoorkust) +text(España) neighborOf text(Morocco) +text(स्पेन) neighborOf text(جبل:طارق) +text(西班牙) neighborOf text(Andorra) +text(Spain) neighborOf text(Francia) +text(Spanje) neighborOf text(पुर्तगाल) +text(كوستاريكا) locatedIn text(Centraal-Amerika) +text(Costa:Rica) locatedIn text(América) +text(哥斯达黎加) neighborOf text(بنما) +text(Costa:Rica) neighborOf text(Nicaragua) +text(مالطا) locatedIn text(Europa:del:Sur) +text(Malta) locatedIn text(Europe) +text(葡萄牙) locatedIn text(南欧) +text(البرتغال) locatedIn text(Europa) +text(Portugal) neighborOf text(إسبانيا) +text(Roemenië) locatedIn text(Eastern:Europe) +text(رومانيا) locatedIn text(أوروبا) +text(रोमानिया) neighborOf text(Ucrania) +text(Rumania) neighborOf text(Hungría) +text(Romania) neighborOf text(मोल्डोवा) +text(羅馬尼亞) neighborOf text(Bulgarije) +text(Roemenië) neighborOf text(Serbia) +text(सान:मारिनो) locatedIn text(أوروبا:الجنوبية) +text(San:Marino) locatedIn text(欧洲) +text(سان:مارينو) neighborOf text(Italië) +text(Mauritania) locatedIn text(West:Africa) +text(Mauritania) locatedIn text(Afrika) +text(موريتانيا) neighborOf text(Algerije) +text(मॉरीतानिया) neighborOf text(Mali) +text(Mauritanië) neighborOf text(撒拉威阿拉伯民主共和國) +text(毛里塔尼亞) neighborOf text(Senegal) +text(त्रिनिदाद:और:टोबैगो) locatedIn text(加勒比地区) +text(ترينيداد:وتوباغو) locatedIn text(Americas) +text(巴林) locatedIn text(Zuidwest-Azië) +text(बहरीन) locatedIn text(Asia) +text(Myanmar) neighborOf text(भारत) +text(म्यान्मार) neighborOf text(Bangladesh) +text(Myanmar) neighborOf text(चीनी:जनवादी:गणराज्य) +text(ميانمار) neighborOf text(लाओस) +text(緬甸) neighborOf text(Tailandia) +text(इराक) neighborOf text(Turkije) +text(Irak) neighborOf text(沙特阿拉伯) +text(伊拉克) neighborOf text(Irán) +text(Iraq) neighborOf text(Jordanië) +text(Irak) neighborOf text(Kuwait) +text(العراق) neighborOf text(Syria) +text(South:Georgia:and:the:South:Sandwich:Islands) locatedIn text(South:America) +text(جورجيا:الجنوبية:وجزر:ساندويتش:الجنوبية) locatedIn text(أمريكتان) +text(冰島) locatedIn text(Noord-Europa) +text(IJsland) locatedIn text(Europa) +text(Congo-Kinshasa) locatedIn text(中部非洲) +text(Democratic:Republic:of:the:Congo) locatedIn text(अफ्रीका) +text(刚果民主共和国) neighborOf text(Uganda) +text(جمهورية:الكونغو:الديمقراطية) neighborOf text(坦桑尼亞) +text(कांगो:लोकतान्त्रिक:गणराज्य) neighborOf text(剛果共和國) +text(República:Democrática:del:Congo) neighborOf text(Centraal-Afrikaanse:Republiek) +text(Congo-Kinshasa) neighborOf text(Angola) +text(Democratic:Republic:of:the:Congo) neighborOf text(卢旺达) +text(刚果民主共和国) neighborOf text(جنوب:السودان) +text(جمهورية:الكونغو:الديمقراطية) neighborOf text(Zambia) +text(कांगो:लोकतान्त्रिक:गणराज्य) neighborOf text(बुरुण्डी) +text(塞舌尔) locatedIn text(पूर्वी:अफ्रीका) +text(सेशेल्स) locatedIn text(非洲) +text(قرغيزستان) neighborOf text(Volksrepubliek:China) +text(Kyrgyzstan) neighborOf text(Kazajistán) +text(किर्गिज़स्तान) neighborOf text(Tayikistán) +text(Kirgizië) neighborOf text(أوزبكستان) +text(بوتسوانا) locatedIn text(Southern:Africa) +text(Botswana) locatedIn text(إفريقيا) +text(波札那) neighborOf text(Zimbabue) +text(Botsuana) neighborOf text(纳米比亚) +text(Botswana) neighborOf text(زامبيا) +text(बोत्सवाना) neighborOf text(दक्षिण:अफ़्रीका) +text(फ़रो:द्वीपसमूह) locatedIn text(Europa:del:Norte) +text(法罗群岛) locatedIn text(यूरोप) +text(Jamaica) locatedIn text(कैरिबिया) +text(जमैका) locatedIn text(美洲) +text(Samoa:Americana) locatedIn text(Polinesia) +text(अमेरिकी:समोआ) locatedIn text(Oceania) +text(莱索托) locatedIn text(दक्षिणी:अफ्रीका) +text(Lesoto) locatedIn text(Africa) +text(लेसोथो) neighborOf text(Zuid-Afrika) +text(Sri:Lanka) neighborOf text(印度) +text(Belgium) locatedIn text(أوروبا:الغربية) +text(比利時) locatedIn text(Europe) +text(बेल्जियम) neighborOf text(ألمانيا) +text(Bélgica) neighborOf text(Luxembourg) +text(بلجيكا) neighborOf text(فرنسا) +text(België) neighborOf text(هولندا) +text(قطر) locatedIn text(Asia:Occidental) +text(卡塔尔) locatedIn text(亞洲) +text(Qatar) neighborOf text(السعودية) +text(Islas:Salomón) locatedIn text(ميلانيزيا) +text(所罗门群岛) locatedIn text(Oceanië) +text(敘利亞) locatedIn text(西亚) +text(سوريا) locatedIn text(آسيا) +text(सीरिया) neighborOf text(以色列) +text(Siria) neighborOf text(土耳其) +text(Syrië) neighborOf text(जॉर्डन) +text(Syria) neighborOf text(黎巴嫩) +text(敘利亞) neighborOf text(इराक) +text(India) locatedIn text(南亚) +text(India) locatedIn text(एशिया) +text(الهند) neighborOf text(Afganistán) +text(India) neighborOf text(Bhutan) +text(भारत) neighborOf text(Bangladesh) +text(印度) neighborOf text(People's:Republic:of:China) +text(India) neighborOf text(नेपाल) +text(India) neighborOf text(Birmania) +text(الهند) neighborOf text(Pakistan) +text(India) neighborOf text(斯里蘭卡) +text(المغرب) neighborOf text(Algeria) +text(मोरक्को) neighborOf text(España) +text(摩洛哥) neighborOf text(Sahrawi:Arabische:Democratische:Republiek) +text(Kenia) locatedIn text(East:Africa) +text(Kenya) locatedIn text(África) +text(कीनिया) neighborOf text(أوغندا) +text(肯尼亚) neighborOf text(Tanzania) +text(كينيا) neighborOf text(Somalia) +text(Kenia) neighborOf text(South:Sudan) +text(Kenia) neighborOf text(Ethiopië) +text(दक्षिण:सूडान) locatedIn text(Centraal-Afrika) +text(Sudán:del:Sur) locatedIn text(Afrika) +text(南蘇丹) neighborOf text(Oeganda) +text(Zuid-Soedan) neighborOf text(República:Democrática:del:Congo) +text(جنوب:السودان) neighborOf text(Kenya) +text(South:Sudan) neighborOf text(República:Centroafricana) +text(दक्षिण:सूडान) neighborOf text(Sudan) +text(Sudán:del:Sur) neighborOf text(Ethiopia) +text(Ghana) neighborOf text(Burkina:Faso) +text(迦納) neighborOf text(Costa:de:Marfil) +text(غانا) neighborOf text(Togo) +text(塔吉克斯坦) locatedIn text(मध्य:एशिया) +text(Tajikistan) locatedIn text(Azië) +text(Tadzjikistan) neighborOf text(中华人民共和国) +text(طاجيكستان) neighborOf text(Kirguistán) +text(ताजीकिस्तान) neighborOf text(أفغانستان) +text(Tayikistán) neighborOf text(乌兹别克斯坦) +text(Islas:Marshall) locatedIn text(Micronesië) +text(Marshall:Islands) locatedIn text(大洋洲) +text(الكاميرون) locatedIn text(África:Central) +text(Kameroen) locatedIn text(अफ्रीका) +text(Cameroon) neighborOf text(चाड) +text(Camerún) neighborOf text(Congo-Brazzaville) +text(कैमरुन) neighborOf text(Gabon) +text(喀麦隆) neighborOf text(赤道几内亚) +text(الكاميرون) neighborOf text(मध्य:अफ़्रीकी:गणराज्य) +text(Kameroen) neighborOf text(नाइजीरिया) +text(नौरु) locatedIn text(密克羅尼西亞群島) +text(瑙鲁) locatedIn text(أوقيانوسيا) +text(Thailand) neighborOf text(Camboya) +text(تايلاند) neighborOf text(Myanmar) +text(Thailand) neighborOf text(Laos) +text(थाईलैंड) neighborOf text(馬來西亞) +text(Sudán) neighborOf text(Chad) +text(सूडान) neighborOf text(लीबिया) +text(苏丹) neighborOf text(南蘇丹) +text(Soedan) neighborOf text(Eritrea) +text(السودان) neighborOf text(中非共和國) +text(Sudan) neighborOf text(埃及) +text(Sudán) neighborOf text(Etiopía) +text(Tsjaad) locatedIn text(وسط:إفريقيا) +text(Chad) locatedIn text(非洲) +text(تشاد) neighborOf text(Libië) +text(乍得) neighborOf text(Niger) +text(चाड) neighborOf text(Zuid-Soedan) +text(Chad) neighborOf text(Cameroon) +text(Tsjaad) neighborOf text(جمهورية:إفريقيا:الوسطى) +text(Chad) neighborOf text(奈及利亞) +text(Vanuatu) locatedIn text(मॅलानिशिया) +text(萬那杜) locatedIn text(Oceanía) +text(الرأس:الأخضر) locatedIn text(西非) +text(佛得角) locatedIn text(إفريقيا) +text(Islas:Malvinas) locatedIn text(أمريكا:الجنوبية) +text(福克蘭群島) locatedIn text(महाअमेरिका) +text(Liberia) locatedIn text(África:Occidental) +text(Liberia) locatedIn text(Africa) +text(Liberia) neighborOf text(Ivory:Coast) +text(लाइबेरिया) neighborOf text(Sierra:Leone) +text(利比里亞) neighborOf text(गिनी) +text(कम्बोडिया) locatedIn text(东南亚) +text(Cambodja) locatedIn text(Asia) +text(كمبوديا) neighborOf text(Vietnam) +text(柬埔寨) neighborOf text(泰國) +text(Cambodia) neighborOf text(لاوس) +text(زيمبابوي) neighborOf text(ज़ाम्बिया) +text(津巴布韦) neighborOf text(South:Africa) +text(ज़िम्बाब्वे) neighborOf text(بوتسوانا) +text(Zimbabwe) neighborOf text(मोज़ाम्बीक) +text(جزر:القمر) locatedIn text(شرق:إفريقيا) +text(कोमोरोस) locatedIn text(África) +text(Guam) locatedIn text(Micronesia) +text(關島) locatedIn text(ओशिआनिया) +text(The:Bahamas) locatedIn text(Caribbean) +text(جزر:البهاما) locatedIn text(Amerika) +text(लेबनॉन) locatedIn text(West:Asia) +text(Libanon) locatedIn text(Asia) +text(Líbano) neighborOf text(Israel) +text(Lebanon) neighborOf text(سوريا) +text(Sint:Maarten) locatedIn text(Caraïben) +text(सेंट:मार्टिन) locatedIn text(América) +text(Saint:Martin) neighborOf text(सेंट:मार्टिन:की:सामूहिकता) +text(إثيوبيا) locatedIn text(Oost-Afrika) +text(埃塞俄比亚) locatedIn text(Afrika) +text(इथियोपिया) neighborOf text(索馬里) +text(Ethiopië) neighborOf text(कीनिया) +text(Ethiopia) neighborOf text(Eritrea) +text(Etiopía) neighborOf text(جنوب:السودان) +text(إثيوبيا) neighborOf text(जिबूती) +text(埃塞俄比亚) neighborOf text(सूडान) +text(美屬維爾京群島) locatedIn text(Caribe) +text(संयुक्त:राज्य:वर्जिन:द्वीपसमूह) locatedIn text(Americas) +text(Guinea-Bisáu) locatedIn text(West-Afrika) +text(Guinea-Bissau) locatedIn text(अफ्रीका) +text(畿內亞比紹) neighborOf text(Guinee) +text(Guinee-Bissau) neighborOf text(塞内加尔) +text(ليبيا) locatedIn text(شمال:إفريقيا) +text(利比亞) locatedIn text(非洲) +text(Libya) neighborOf text(تشاد) +text(Libia) neighborOf text(تونس) +text(लीबिया) neighborOf text(Niger) +text(Libië) neighborOf text(阿爾及利亞) +text(ليبيا) neighborOf text(مصر) +text(利比亞) neighborOf text(苏丹) +text(Bhutan) locatedIn text(Asia:del:Sur) +text(भूटान) locatedIn text(亞洲) +text(不丹) neighborOf text(الصين) +text(بوتان) neighborOf text(भारत) +text(澳門) locatedIn text(شرق:آسيا) +text(Macau) locatedIn text(آسيا) +text(मकाउ) neighborOf text(República:Popular:China) +text(Frans-Polynesië) locatedIn text(Polynesia) +text(French:Polynesia) locatedIn text(Oceania) +text(Somalië) locatedIn text(东部非洲) +text(Somalia) locatedIn text(إفريقيا) +text(الصومال) neighborOf text(吉布提) +text(सोमालिया) neighborOf text(肯尼亚) +text(Somalia) neighborOf text(इथियोपिया) +text(सेंट:बार्थेलेमी) locatedIn text(الكاريبي) +text(Saint-Barthélemy) locatedIn text(أمريكتان) +text(روسيا) locatedIn text(东欧) +text(Rusia) locatedIn text(Europa) +text(Rusland) neighborOf text(烏克蘭) +text(Russia) neighborOf text(Belarus) +text(रूस) neighborOf text(चीनी:जनवादी:गणराज्य) +text(俄罗斯) neighborOf text(哈萨克斯坦) +text(روسيا) neighborOf text(挪威) +text(Rusia) neighborOf text(Poland) +text(Rusland) neighborOf text(Azerbaiyán) +text(Russia) neighborOf text(ليتوانيا) +text(रूस) neighborOf text(إستونيا) +text(俄罗斯) neighborOf text(Corea:del:Norte) +text(روسيا) neighborOf text(फ़िनलैण्ड) +text(Rusia) neighborOf text(Mongolia) +text(Rusland) neighborOf text(लातविया) +text(Russia) neighborOf text(格鲁吉亚) +text(نيوزيلندا) locatedIn text(nan) +text(New:Zealand) locatedIn text(Oceanië) +text(Panamá) locatedIn text(América:Central) +text(Panama) locatedIn text(美洲) +text(巴拿馬) neighborOf text(कोस्टा:रीका) +text(पनामा) neighborOf text(哥伦比亚) +text(Papua:New:Guinea) locatedIn text(美拉尼西亞) +text(Papúa:Nueva:Guinea) locatedIn text(大洋洲) +text(巴布亚新几内亚) neighborOf text(Indonesië) +text(उत्तर:कोरिया) neighborOf text(Volksrepubliek:China) +text(كوريا:الشمالية) neighborOf text(Zuid-Korea) +text(朝鮮民主主義人民共和國) neighborOf text(रूस) +text(Letland) locatedIn text(北歐) +text(لاتفيا) locatedIn text(أوروبا) +text(Latvia) neighborOf text(立陶宛) +text(拉脫維亞) neighborOf text(Wit-Rusland) +text(Letonia) neighborOf text(俄罗斯) +text(लातविया) neighborOf text(Estonia) +text(Omán) locatedIn text(غرب:آسيا) +text(Oman) locatedIn text(एशिया) +text(سلطنة:عمان) neighborOf text(सउदी:अरब) +text(ओमान) neighborOf text(Yemen) +text(阿曼) neighborOf text(阿拉伯联合酋长国) +text(सन्त:पियर:और:मिकलान) locatedIn text(أمريكا:الشمالية) +text(San:Pedro:y:Miquelón) locatedIn text(महाअमेरिका) +text(मार्टीनिक) locatedIn text(加勒比地区) +text(馬提尼克) locatedIn text(Amerika) +text(Verenigd:Koninkrijk) locatedIn text(أوروبا:الشمالية) +text(यूनाइटेड:किंगडम) locatedIn text(欧洲) +text(Reino:Unido) neighborOf text(英国) +text(Israel) locatedIn text(पश्चिमी:एशिया) +text(इज़राइल) locatedIn text(Azië) +text(Israël) neighborOf text(لبنان) +text(إسرائيل) neighborOf text(Egypt) +text(以色列) neighborOf text(Jordan) +text(Israel) neighborOf text(सीरिया) +text(Jersey) locatedIn text(Northern:Europe) +text(Jersey) locatedIn text(Europa) +text(Islas:Pitcairn) locatedIn text(بولنيزيا) +text(جزر:بيتكيرن) locatedIn text(أوقيانوسيا) +text(Togo) locatedIn text(غرب:إفريقيا) +text(多哥) locatedIn text(Africa) +text(टोगो) neighborOf text(بوركينا:فاسو) +text(توغو) neighborOf text(Ghana) +text(Togo) neighborOf text(Benin) +text(كيريباتي) locatedIn text(Micronesia) +text(Kiribati) locatedIn text(Oceanía) +text(伊朗) locatedIn text(Zuid-Azië) +text(Iran) locatedIn text(Asia) +text(إيران) neighborOf text(阿富汗) +text(Iran) neighborOf text(Turkmenistan) +text(ईरान) neighborOf text(تركيا) +text(Irán) neighborOf text(आर्मीनिया) +text(伊朗) neighborOf text(Azerbaijan) +text(Iran) neighborOf text(باكستان) +text(إيران) neighborOf text(Irak) +text(تجمع:سان:مارتين) locatedIn text(कैरिबिया) +text(法屬聖馬丁) locatedIn text(América) +text(Saint-Martin) neighborOf text(圣马丁岛) +text(República:Dominicana) locatedIn text(Caribbean) +text(Dominican:Republic) locatedIn text(Americas) +text(多明尼加) neighborOf text(هايتي) +text(丹麥) neighborOf text(德國) +text(बरमूडा) locatedIn text(América:del:Norte) +text(Bermuda) locatedIn text(أمريكتان) +text(تشيلي) neighborOf text(الأرجنتين) +text(चिली) neighborOf text(Bolivia) +text(Chile) neighborOf text(Peru) +text(Kosovo) locatedIn text(أوروبا:الشرقية) +text(Kosovo) locatedIn text(यूरोप) +text(كوسوفو) neighborOf text(صربيا) +text(科索沃) neighborOf text(Albania) +text(Kosovo) neighborOf text(Noord-Macedonië) +text(कोसोवो:गणराज्य) neighborOf text(Montenegro) +text(सन्त:किट्स:और:नेविस) locatedIn text(Caraïben) +text(Saint:Kitts:en:Nevis) locatedIn text(美洲) +text(इरित्रिया) neighborOf text(Djibouti) +text(厄立特里亞) neighborOf text(Soedan) +text(Eritrea) neighborOf text(Ethiopië) +text(भूमध्यरेखीय:गिनी) locatedIn text(Central:Africa) +text(Guinea:Ecuatorial) locatedIn text(África) +text(Equatorial:Guinea) neighborOf text(الغابون) +text(غينيا:الاستوائية) neighborOf text(Camerún) +text(尼日尔) locatedIn text(पश्चिमी:अफ्रीका) +text(नाइजर) locatedIn text(Afrika) +text(Níger) neighborOf text(乍得) +text(النيجر) neighborOf text(Libya) +text(Niger) neighborOf text(Burkina:Faso) +text(Niger) neighborOf text(Benín) +text(尼日尔) neighborOf text(مالي) +text(नाइजर) neighborOf text(Argelia) +text(Níger) neighborOf text(نيجيريا) +text(Anguila) locatedIn text(Caribe) +text(Anguilla) locatedIn text(महाअमेरिका) +text(Rwanda) locatedIn text(África:Oriental) +text(रवाण्डा) locatedIn text(अफ्रीका) +text(Ruanda) neighborOf text(Burundi) +text(Rwanda) neighborOf text(تنزانيا) +text(رواندا) neighborOf text(烏干達) +text(卢旺达) neighborOf text(Congo-Kinshasa) +text(الإمارات:العربية:المتحدة) locatedIn text(Zuidwest-Azië) +text(Verenigde:Arabische:Emiraten) locatedIn text(Asia) +text(United:Arab:Emirates) neighborOf text(Oman) +text(Emiratos:Árabes:Unidos) neighborOf text(Saudi:Arabia) +text(Estland) locatedIn text(उत्तरी:यूरोप) +text(एस्टोनिया) locatedIn text(Europe) +text(Estonia) neighborOf text(Letland) +text(愛沙尼亞) neighborOf text(روسيا) +text(希腊) locatedIn text(दक्षिणी:यूरोप) +text(اليونان) locatedIn text(Europa) +text(Greece) neighborOf text(बुल्गारिया) +text(यूनान) neighborOf text(ألبانيا) +text(Griekenland) neighborOf text(North:Macedonia) +text(Grecia) neighborOf text(Turquía) +text(Senegal) locatedIn text(West:Africa) +text(सेनेगल) locatedIn text(非洲) +text(السنغال) neighborOf text(गिनी-बिसाऊ) +text(Senegal) neighborOf text(Mauritania) +text(Senegal) neighborOf text(Mali) +text(塞内加尔) neighborOf text(岡比亞) +text(Senegal) neighborOf text(几内亚) +text(Guadeloupe) locatedIn text(الكاريبي) +text(Guadalupe) locatedIn text(Amerika) +text(मोनाको) neighborOf text(फ़्रान्स) +text(Djibouti) neighborOf text(إرتريا) +text(Yibuti) neighborOf text(索馬里) +text(جيبوتي) neighborOf text(Ethiopia) +text(इंडोनेशिया) neighborOf text(पापुआ:न्यू:गिनी) +text(Indonesia) neighborOf text(Timor-Leste) +text(印度尼西亚) neighborOf text(Maleisië) +text(جزر:عذراء:بريطانية) locatedIn text(加勒比地区) +text(英屬維爾京群島) locatedIn text(América) +text(Islas:Cook) locatedIn text(पोलीनेशिया) +text(جزر:كوك) locatedIn text(ओशिआनिया) +text(युगाण्डा) locatedIn text(पूर्वी:अफ्रीका) +text(Uganda) locatedIn text(إفريقيا) +text(Uganda) neighborOf text(Tanzania) +text(أوغندا) neighborOf text(Democratic:Republic:of:the:Congo) +text(Oeganda) neighborOf text(كينيا) +text(烏干達) neighborOf text(South:Sudan) +text(युगाण्डा) neighborOf text(Rwanda) +text(مقدونيا:الشمالية) locatedIn text(Southern:Europe) +text(उत्तर:मैसिडोनिया) locatedIn text(أوروبا) +text(Macedonia:del:Norte) neighborOf text(Kosovo) +text(北马其顿) neighborOf text(希腊) +text(Noord-Macedonië) neighborOf text(阿爾巴尼亞) +text(North:Macedonia) neighborOf text(Serbia) +text(مقدونيا:الشمالية) neighborOf text(بلغاريا) +text(Túnez) locatedIn text(北部非洲) +text(突尼西亞) locatedIn text(Africa) +text(Tunisia) neighborOf text(Libia) +text(ट्यूनिशिया) neighborOf text(الجزائر) +text(الإكوادور) neighborOf text(पेरू) +text(Ecuador) neighborOf text(Colombia) +text(巴西) locatedIn text(南美洲) +text(Brazilië) locatedIn text(Americas) +text(ब्राज़ील) neighborOf text(बोलिविया) +text(البرازيل) neighborOf text(कोलम्बिया) +text(Brasil) neighborOf text(Paraguay) +text(Brazil) neighborOf text(الأوروغواي) +text(巴西) neighborOf text(Frans-Guyana) +text(Brazilië) neighborOf text(Surinam) +text(ब्राज़ील) neighborOf text(Venezuela) +text(البرازيل) neighborOf text(Argentina) +text(Brasil) neighborOf text(Guyana) +text(Brazil) neighborOf text(秘鲁) +text(Paraguay) locatedIn text(América:del:Sur) +text(巴拉圭) locatedIn text(أمريكتان) +text(पैराग्वे) neighborOf text(Argentina) +text(Paraguay) neighborOf text(巴西) +text(باراغواي) neighborOf text(بوليفيا) +text(Finlandia) locatedIn text(Noord-Europa) +text(Finland) locatedIn text(欧洲) +text(芬蘭) neighborOf text(Norway) +text(فنلندا) neighborOf text(स्वीडन) +text(Finland) neighborOf text(Rusia) +text(Jordania) neighborOf text(Saoedi-Arabië) +text(الأردن) neighborOf text(Israel) +text(約旦) neighborOf text(伊拉克) +text(Jordanië) neighborOf text(Siria) +text(पूर्वी:तिमोर) neighborOf text(إندونيسيا) +text(الجبل:الأسود) locatedIn text(Zuid-Europa) +text(蒙特內哥羅) locatedIn text(Europa) +text(Montenegro) neighborOf text(Kosovo) +text(Montenegro) neighborOf text(البوسنة:والهرسك) +text(मॉन्टेनीग्रो) neighborOf text(Kroatië) +text(Montenegro) neighborOf text(塞爾維亞) +text(الجبل:الأسود) neighborOf text(अल्बानिया) +text(Peru) locatedIn text(दक्षिण:अमेरिका) +text(Perú) locatedIn text(美洲) +text(بيرو) neighborOf text(Ecuador) +text(Peru) neighborOf text(玻利維亞) +text(पेरू) neighborOf text(Chile) +text(秘鲁) neighborOf text(Brazilië) +text(Peru) neighborOf text(كولومبيا) +text(Montserrat) locatedIn text(कैरिबिया) +text(Montserrat) locatedIn text(महाअमेरिका) +text(युक्रेन) locatedIn text(Europa:Oriental) +text(أوكرانيا) locatedIn text(यूरोप) +text(Oekraïne) neighborOf text(स्लोवाकिया) +text(Ukraine) neighborOf text(بيلاروس) +text(Ucrania) neighborOf text(पोलैंड) +text(烏克蘭) neighborOf text(Rusland) +text(युक्रेन) neighborOf text(المجر) +text(أوكرانيا) neighborOf text(Moldova) +text(Oekraïne) neighborOf text(رومانيا) +text(Dominica) locatedIn text(Caribbean) +text(डोमिनिका) locatedIn text(Amerika) +text(तुर्कमेनिस्तान) neighborOf text(Kazakhstan) +text(Turkmenistán) neighborOf text(अफ़्ग़ानिस्तान) +text(Turkmenistan) neighborOf text(Uzbekistán) +text(تركمانستان) neighborOf text(Iran) +text(غيرنزي) locatedIn text(Europa:del:Norte) +text(ग्वेर्नसे) locatedIn text(Europe) +text(Gibraltar) locatedIn text(Europa:del:Sur) +text(जिब्राल्टर) locatedIn text(Europa) +text(Gibraltar) neighborOf text(स्पेन) +text(स्विट्ज़रलैण्ड) locatedIn text(Western:Europe) +text(瑞士) locatedIn text(أوروبا) +text(سويسرا) neighborOf text(जर्मनी) +text(Zwitserland) neighborOf text(Italia) +text(Switzerland) neighborOf text(Austria) +text(Suiza) neighborOf text(法國) +text(स्विट्ज़रलैण्ड) neighborOf text(लिक्टेन्स्टाइन) +text(Oostenrijk) locatedIn text(西欧) +text(النمسا) locatedIn text(欧洲) +text(ऑस्ट्रिया) neighborOf text(Duitsland) +text(奧地利) neighborOf text(سلوفاكيا) +text(Austria) neighborOf text(Slovenië) +text(Austria) neighborOf text(इटली) +text(Oostenrijk) neighborOf text(瑞士) +text(النمسا) neighborOf text(Hungary) +text(ऑस्ट्रिया) neighborOf text(Liechtenstein) +text(奧地利) neighborOf text(捷克) +text(匈牙利) neighborOf text(Ukraine) +text(Hongarije) neighborOf text(Slowakije) +text(हंगरी) neighborOf text(سلوفينيا) +text(Hungría) neighborOf text(Croatia) +text(المجر) neighborOf text(Austria) +text(Hungary) neighborOf text(Servië) +text(匈牙利) neighborOf text(रोमानिया) +text(Malaui) locatedIn text(East:Africa) +text(馬拉威) locatedIn text(África) +text(مالاوي) neighborOf text(Zambia) +text(Malawi) neighborOf text(Tanzania) +text(Malawi) neighborOf text(莫桑比克) +text(Hong:Kong) neighborOf text(People's:Republic:of:China) +text(ليختنشتاين) locatedIn text(पश्चिमी:यूरोप) +text(Liechtenstein) locatedIn text(Europa) +text(列支敦斯登) neighborOf text(سويسرا) +text(Liechtenstein) neighborOf text(Austria) +text(Barbados) locatedIn text(Caraïben) +text(巴巴多斯) locatedIn text(América) +text(Georgia) locatedIn text(Asia:Occidental) +text(جورجيا) locatedIn text(亞洲) +text(Georgië) neighborOf text(亞美尼亞) +text(Georgia) neighborOf text(阿塞拜疆) +text(जॉर्जिया) neighborOf text(Russia) +text(格鲁吉亚) neighborOf text(Turkey) +text(Albanië) locatedIn text(南欧) +text(Albania) locatedIn text(यूरोप) +text(Albania) neighborOf text(蒙特內哥羅) +text(ألبانيا) neighborOf text(उत्तर:मैसिडोनिया) +text(阿爾巴尼亞) neighborOf text(كوسوفو) +text(अल्बानिया) neighborOf text(اليونان) +text(Kuwait) locatedIn text(西亚) +text(कुवैत) locatedIn text(آسيا) +text(Koeweit) neighborOf text(Arabia:Saudí) +text(الكويت) neighborOf text(Iraq) +text(Sudáfrica) locatedIn text(南部非洲) +text(جنوب:إفريقيا) locatedIn text(Afrika) +text(南非) neighborOf text(Mozambique) +text(दक्षिण:अफ़्रीका) neighborOf text(Botswana) +text(Zuid-Afrika) neighborOf text(إسواتيني) +text(South:Africa) neighborOf text(Zimbabwe) +text(Sudáfrica) neighborOf text(Namibia) +text(جنوب:إفريقيا) neighborOf text(Lesotho) +text(海地) locatedIn text(Caribe) +text(Haití) locatedIn text(Americas) +text(Haïti) neighborOf text(جمهورية:الدومينيكان) +text(Afghanistan) locatedIn text(جنوب:آسيا) +text(Afghanistan) locatedIn text(एशिया) +text(Afganistán) neighborOf text(土庫曼斯坦) +text(أفغانستان) neighborOf text(中华人民共和国) +text(阿富汗) neighborOf text(塔吉克斯坦) +text(अफ़्ग़ानिस्तान) neighborOf text(Oezbekistan) +text(Afghanistan) neighborOf text(ईरान) +text(Afghanistan) neighborOf text(巴基斯坦) +text(Singapur) locatedIn text(Southeast:Asia) +text(सिंगापुर) locatedIn text(Azië) +text(बेनिन) locatedIn text(西非) +text(Benin) locatedIn text(अफ्रीका) +text(貝南) neighborOf text(النيجر) +text(بنين) neighborOf text(बुर्किना:फासो) +text(Benin) neighborOf text(Togo) +text(Benín) neighborOf text(Nigeria) +text(Åland) locatedIn text(北歐) +text(ऑलैण्ड:द्वीपसमूह) locatedIn text(Europe) +text(Croacia) locatedIn text(أوروبا:الجنوبية) +text(克羅地亞) locatedIn text(Europa) +text(كرواتيا) neighborOf text(Slovenia) +text(क्रोएशिया) neighborOf text(波斯尼亚和黑塞哥维那) +text(Kroatië) neighborOf text(Hongarije) +text(Croatia) neighborOf text(सर्बिया) +text(Croacia) neighborOf text(Montenegro) +text(Sweden) locatedIn text(أوروبا:الشمالية) +text(السويد) locatedIn text(أوروبا) +text(瑞典) neighborOf text(Noruega) +text(Suecia) neighborOf text(फ़िनलैण्ड) +text(México) neighborOf text(伯利兹) +text(Mexico) neighborOf text(संयुक्त:राज्य:अमेरिका) +text(Mexico) neighborOf text(Guatemala) +text(جرينلاند) locatedIn text(उत्तर:अमेरिका) +text(Greenland) locatedIn text(أمريكتان) +text(Pitcairn:Islands) locatedIn text(Australia:and:New:Zealand) +text(पिटकेर्न:द्वीपसमूह) locatedIn text(Oceania) +text(尼泊爾) locatedIn text(दक्षिण:एशिया) +text(Nepal) locatedIn text(Asia) +text(Nepal) neighborOf text(الصين) +text(Nepal) neighborOf text(印度) +text(Guatemala) neighborOf text(Belize) +text(危地马拉) neighborOf text(El:Salvador) +text(ग्वाटेमाला) neighborOf text(मेक्सिको) +text(غواتيمالا) neighborOf text(Honduras) +text(दक्षिण:कोरिया) locatedIn text(East:Asia) +text(Corea:del:Sur) locatedIn text(Asia) +text(大韩民国) neighborOf text(North:Korea) +text(Moldavië) locatedIn text(पूर्वी:यूरोप) +text(摩爾多瓦) locatedIn text(欧洲) +text(مولدوفا) neighborOf text(Ucrania) +text(Moldavia) neighborOf text(Rumania) +text(Mauritius) locatedIn text(شرق:إفريقيا) +text(毛里求斯) locatedIn text(非洲) +text(白俄羅斯) neighborOf text(烏克蘭) +text(बेलारूस) neighborOf text(بولندا) +text(Bielorrusia) neighborOf text(Lithuania) +text(Belarus) neighborOf text(रूस) +text(Wit-Rusland) neighborOf text(لاتفيا) +text(बांग्लादेश) neighborOf text(म्यान्मार) +text(بنغلاديش) neighborOf text(India) +text(Malaysia) locatedIn text(جنوب:شرق:آسيا) +text(Malasia) locatedIn text(亞洲) +text(मलेशिया) neighborOf text(Tailandia) +text(ماليزيا) neighborOf text(Indonesia) +text(馬來西亞) neighborOf text(汶莱) +text(Bosnia:and:Herzegovina) locatedIn text(दक्षिणी:यूरोप) +text(Bosnië:en:Herzegovina) locatedIn text(Europa) +text(Bosnia:y:Herzegovina) neighborOf text(Serbia) +text(बोस्निया:और:हर्ज़ेगोविना) neighborOf text(克羅地亞) +text(البوسنة:والهرسك) neighborOf text(Montenegro) +text(Luxemburgo) locatedIn text(West-Europa) +text(Luxemburg) locatedIn text(यूरोप) +text(लक्ज़मबर्ग) neighborOf text(Alemania) +text(卢森堡) neighborOf text(Belgium) +text(لوكسمبورغ) neighborOf text(Frankrijk) +text(Italy) locatedIn text(Southern:Europe) +text(إيطاليا) locatedIn text(Europe) +text(意大利) neighborOf text(स्लोवेनिया) +text(Italië) neighborOf text(Zwitserland) +text(Italia) neighborOf text(Oostenrijk) +text(इटली) neighborOf text(France) +text(Italy) neighborOf text(Ciudad:del:Vaticano) +text(إيطاليا) neighborOf text(圣马力诺) +text(अज़रबैजान) locatedIn text(West:Asia) +text(أذربيجان) locatedIn text(آسيا) +text(Azerbeidzjan) neighborOf text(तुर्की) +text(Azerbaiyán) neighborOf text(Armenia) +text(Azerbaijan) neighborOf text(俄罗斯) +text(阿塞拜疆) neighborOf text(Irán) +text(अज़रबैजान) neighborOf text(Georgia) +text(Honduras) locatedIn text(中美洲) +text(Honduras) locatedIn text(美洲) +text(हॉण्डुरस) neighborOf text(Guatemala) +text(هندوراس) neighborOf text(尼加拉瓜) +text(洪都拉斯) neighborOf text(El:Salvador) +text(马里) locatedIn text(África:Occidental) +text(माली) locatedIn text(إفريقيا) +text(Mali) neighborOf text(布吉納法索) +text(Mali) neighborOf text(Guinea) +text(مالي) neighborOf text(Mauritania) +text(Mali) neighborOf text(Niger) +text(马里) neighborOf text(सेनेगल) +text(माली) neighborOf text(अल्जीरिया) +text(Mali) neighborOf text(ساحل:العاج) +text(Taiwan) locatedIn text(Oost-Azië) +text(चीनी:गणराज्य) locatedIn text(एशिया) +text(Algerije) locatedIn text(Noord-Afrika) +text(Algeria) locatedIn text(Africa) +text(阿爾及利亞) neighborOf text(लीबिया) +text(Argelia) neighborOf text(Tunesië) +text(الجزائر) neighborOf text(موريتانيا) +text(अल्जीरिया) neighborOf text(Marokko) +text(Algerije) neighborOf text(Niger) +text(Algeria) neighborOf text(Mali) +text(阿爾及利亞) neighborOf text(الجمهورية:العربية:الصحراوية:الديمقراطية) +text(फ़्रान्सीसी:गुयाना) neighborOf text(ब्राज़ील) +text(French:Guiana) neighborOf text(蘇利南) +text(Jemen) locatedIn text(غرب:آسيا) +text(也门) locatedIn text(Azië) +text(Yemen) neighborOf text(Omán) +text(यमन) neighborOf text(沙特阿拉伯) +text(Puerto:Rico) locatedIn text(الكاريبي) +text(波多黎各) locatedIn text(महाअमेरिका) +text(سانت:فينسنت:والغرينادين) locatedIn text(加勒比地区) +text(圣文森特和格林纳丁斯) locatedIn text(Amerika) +text(वेनेज़ुएला) neighborOf text(البرازيل) +text(Venezuela) neighborOf text(गयाना) +text(Venezuela) neighborOf text(Colombia) +text(غرينادا) locatedIn text(कैरिबिया) +text(Grenada) locatedIn text(América) +text(Estados:Unidos) neighborOf text(Canada) +text(الولايات:المتحدة) neighborOf text(المكسيك) +text(توكيلاو) locatedIn text(玻里尼西亞) +text(Tokelau) locatedIn text(Oceanië) +text(斯洛文尼亞) locatedIn text(Zuid-Europa) +text(Eslovenia) locatedIn text(Europa) +text(Slovenië) neighborOf text(النمسا) +text(سلوفينيا) neighborOf text(كرواتيا) +text(Slovenia) neighborOf text(意大利) +text(स्लोवेनिया) neighborOf text(हंगरी) +text(الفلبين) locatedIn text(Sudeste:Asiático) +text(Filipinas) locatedIn text(Asia) +text(ميكرونيسيا) locatedIn text(माइक्रोनीशिया) +text(Micronesië) locatedIn text(大洋洲) +text(República:Popular:China) locatedIn text(पूर्वी:एशिया) +text(चीनी:जनवादी:गणराज्य) locatedIn text(Asia) +text(Volksrepubliek:China) neighborOf text(Afganistán) +text(People's:Republic:of:China) neighborOf text(Bután) +text(中华人民共和国) neighborOf text(ماكاو) +text(الصين) neighborOf text(India) +text(República:Popular:China) neighborOf text(كازاخستان) +text(चीनी:जनवादी:गणराज्य) neighborOf text(吉尔吉斯斯坦) +text(Volksrepubliek:China) neighborOf text(Tajikistan) +text(People's:Republic:of:China) neighborOf text(老撾) +text(中华人民共和国) neighborOf text(روسيا) +text(الصين) neighborOf text(Noord-Korea) +text(República:Popular:China) neighborOf text(Myanmar) +text(चीनी:जनवादी:गणराज्य) neighborOf text(Pakistan) +text(Volksrepubliek:China) neighborOf text(Mongolia) +text(People's:Republic:of:China) neighborOf text(हांगकांग) +text(中华人民共和国) neighborOf text(Vietnam) +text(गबॉन) locatedIn text(मध्य:अफ्रीका) +text(Gabon) locatedIn text(África) +text(Gabón) neighborOf text(Equatoriaal-Guinea) +text(加蓬) neighborOf text(Republic:of:the:Congo) +text(Gabon) neighborOf text(कैमरुन) +text(Amerikaanse:Kleinere:Afgelegen:Eilanden) locatedIn text(North:America) +text(United:States:Minor:Outlying:Islands) locatedIn text(Americas) +text(Andorra) locatedIn text(Europa:del:Sur) +text(安道尔) locatedIn text(أوروبا) +text(Andorra) neighborOf text(西班牙) +text(अण्डोरा) neighborOf text(Francia) +text(ساموا) locatedIn text(Polynesië) +text(Samoa) locatedIn text(أوقيانوسيا) +text(The:Gambia) locatedIn text(West-Afrika) +text(गाम्बिया) locatedIn text(Afrika) +text(غامبيا) neighborOf text(السنغال) +text(nan) locatedIn text(पश्चिमी:एशिया) +text(Pedro:Miguel) locatedIn text(亞洲) +text(Pedro:Miguel) neighborOf text(जॉर्डन) +text(nan) neighborOf text(मिस्र) +text(nan) neighborOf text(इज़राइल) +text(रेयूनियों) locatedIn text(Oost-Afrika) +text(留尼汪) locatedIn text(अफ्रीका) +text(فرنسا) locatedIn text(Europa:Occidental) +text(फ़्रान्स) locatedIn text(欧洲) +text(法國) neighborOf text(Germany) +text(Frankrijk) neighborOf text(Luxembourg) +text(France) neighborOf text(Italië) +text(Francia) neighborOf text(أندورا) +text(فرنسا) neighborOf text(Switzerland) +text(फ़्रान्स) neighborOf text(摩納哥) +text(法國) neighborOf text(比利時) +text(Frankrijk) neighborOf text(Spain) +text(منغوليا) locatedIn text(Asia:Oriental) +text(蒙古國) locatedIn text(آسيا) +text(Mongolië) neighborOf text(الصين) +text(मंगोलिया) neighborOf text(Rusia) +text(Lituania) locatedIn text(Northern:Europe) +text(Litouwen) locatedIn text(Europa) +text(लिथुआनिया) neighborOf text(Polonia) +text(ليتوانيا) neighborOf text(Latvia) +text(立陶宛) neighborOf text(بيلاروس) +text(Lithuania) neighborOf text(Rusland) +text(Kaaimaneilanden) locatedIn text(Caribbean) +text(開曼群島) locatedIn text(أمريكتان) +text(سانت:لوسيا) locatedIn text(Caraïben) +text(圣卢西亚) locatedIn text(美洲) +text(Curaçao) locatedIn text(Caribe) +text(كوراساو) locatedIn text(महाअमेरिका) +text(الكاريبي) locatedIn text(Amerika) +text(South:Asia) locatedIn text(एशिया) +text(中部非洲) locatedIn text(非洲) +text(उत्तरी:यूरोप) locatedIn text(यूरोप) +text(南欧) locatedIn text(Europe) +text(Zuidwest-Azië) locatedIn text(Azië) +text(Zuid-Amerika) locatedIn text(América) +text(Polinesia) locatedIn text(Oceanía) +text(nan) locatedIn text(ओशिआनिया) +text(أوروبا:الغربية) locatedIn text(Europa) +text(东部非洲) locatedIn text(إفريقيا) +text(غرب:إفريقيا) locatedIn text(Africa) +text(Oost-Europa) locatedIn text(أوروبا) +text(केंद्रीय:अमेरिका) locatedIn text(Americas) +text(Noord-Amerika) locatedIn text(أمريكتان) +text(दक्षिण:पूर्व:एशिया) locatedIn text(Asia) +text(África:austral) locatedIn text(África) +text(東亞) locatedIn text(Asia) +text(North:Africa) locatedIn text(Afrika) +text(Melanesië) locatedIn text(Oceania) +text(密克羅尼西亞群島) locatedIn text(Oceanië) +text(Asia:Central) locatedIn text(亞洲) +text(Centraal-Europa) locatedIn text(欧洲) \ No newline at end of file diff --git a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_country2text_relation2text.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_country2text_relation2text.tsv new file mode 100644 index 0000000..6de0f99 --- /dev/null +++ b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_country2text_relation2text.tsv @@ -0,0 +1,1063 @@ +text(पलाउ) text(was:localized:in) text(Micronesia) +text(帛琉) text(is:localized:in) text(أوقيانوسيا) +text(Maldivas) text(was:present:in) text(Zuid-Azië) +text(馬爾代夫) text(is:present:in) text(Asia) +text(Brunei) text(is:still:in) text(Sudeste:Asiático) +text(Brunéi) text(was:still:in) text(Azië) +text(汶莱) text(is:a:neighboring:state:to) text(मलेशिया) +text(जापान) text(was:currently:in) text(East:Asia) +text(Japan) text(is:currently:in) text(Asia) +text(Nederland) text(was:a:neighboring:state:to) text(जर्मनी) +text(荷蘭) text(borders:with) text(बेल्जियम) +text(Turkey) text(borders) text(Armenia) +text(تركيا) text(is:butted:against) text(अज़रबैजान) +text(तुर्की) text(was:butted:against) text(Irán) +text(Turquía) text(was:adjacent:to) text(اليونان) +text(土耳其) text(is:adjacent:to) text(Georgië) +text(Turkije) text(neighbors) text(Bulgaria) +text(Turkey) text(is:a:neighboring:country:of) text(Irak) +text(تركيا) text(was:a:neighboring:country:of) text(Syria) +text(अंगोला) text(is:placed:in) text(Centraal-Afrika) +text(Angola) text(was:placed:in) text(非洲) +text(Angola) text(neighbors:with) text(कांगो:लोकतान्त्रिक:गणराज्य) +text(Angola) text(was:a:neighbor:of) text(ناميبيا) +text(安哥拉) text(is:a:neighbor:of) text(Zambia) +text(أنغولا) text(is:a:neighboring:state:to) text(कांगो:गणराज्य) +text(亞美尼亞) text(can:be:found:in) text(पश्चिमी:एशिया) +text(أرمينيا) text(was:situated:in) text(亞洲) +text(Armenia) text(was:a:neighboring:state:to) text(Georgia) +text(Armenië) text(borders:with) text(阿塞拜疆) +text(आर्मीनिया) text(borders) text(Iran) +text(Armenia) text(is:butted:against) text(तुर्की) +text(अण्टीगुआ:और:बारबूडा) text(is:situated:in) text(Caribbean) +text(أنتيغوا:وباربودا) text(is:located:in) text(أمريكتان) +text(एस्वातीनी) text(was:located:in) text(南部非洲) +text(斯威士兰) text(can:be:found:in) text(Africa) +text(Eswatini) text(was:butted:against) text(南非) +text(Swaziland) text(was:adjacent:to) text(Mozambique) +text(Wallis:and:Futuna) text(was:positioned:in) text(पोलीनेशिया) +text(वालिस:और:फ़्यूचूना) text(is:positioned:in) text(Oceanía) +text(उरुग्वे) text(was:sited:in) text(Zuid-Amerika) +text(الأوروغواي) text(is:sited:in) text(Americas) +text(烏拉圭) text(is:adjacent:to) text(Argentina) +text(Uruguay) text(neighbors) text(Brasil) +text(Zambia) text(was:localized:in) text(东部非洲) +text(زامبيا) text(is:localized:in) text(Afrika) +text(Zambia) text(is:a:neighboring:country:of) text(تنزانيا) +text(ज़ाम्बिया) text(was:a:neighboring:country:of) text(موزمبيق) +text(贊比亞) text(neighbors:with) text(Congo-Kinshasa) +text(Zambia) text(was:a:neighbor:of) text(अंगोला) +text(Zambia) text(is:a:neighbor:of) text(Botsuana) +text(زامبيا) text(is:a:neighboring:state:to) text(Zimbabwe) +text(Zambia) text(was:a:neighboring:state:to) text(Namibia) +text(ज़ाम्बिया) text(borders:with) text(مالاوي) +text(Cyprus) text(was:present:in) text(东欧) +text(साइप्रस) text(is:present:in) text(Europe) +text(塞浦路斯) text(borders) text(Reino:Unido) +text(Verenigd:Koninkrijk) text(is:still:in) text(Northern:Europe) +text(المملكة:المتحدة) text(was:still:in) text(Europa) +text(Reino:Unido) text(is:butted:against) text(Verenigd:Koninkrijk) +text(Burundi) text(was:currently:in) text(East:Africa) +text(बुरुण्डी) text(is:currently:in) text(África) +text(بوروندي) text(was:butted:against) text(Democratic:Republic:of:the:Congo) +text(Burundi) text(was:adjacent:to) text(رواندا) +text(Burundi) text(is:adjacent:to) text(Tanzania) +text(Centraal-Afrikaanse:Republiek) text(is:placed:in) text(中部非洲) +text(मध्य:अफ़्रीकी:गणराज्य) text(was:placed:in) text(अफ्रीका) +text(中非共和國) text(neighbors) text(Chad) +text(Central:African:Republic) text(is:a:neighboring:country:of) text(República:del:Congo) +text(جمهورية:إفريقيا:الوسطى) text(was:a:neighboring:country:of) text(República:Democrática:del:Congo) +text(República:Centroafricana) text(neighbors:with) text(दक्षिण:सूडान) +text(Centraal-Afrikaanse:Republiek) text(was:a:neighbor:of) text(Kameroen) +text(मध्य:अफ़्रीकी:गणराज्य) text(is:a:neighbor:of) text(सूडान) +text(Tonga) text(can:be:found:in) text(Polynesia) +text(東加) text(was:situated:in) text(大洋洲) +text(Ivoorkust) text(is:situated:in) text(West:Africa) +text(ساحل:العاج) text(is:located:in) text(إفريقيا) +text(Ivory:Coast) text(is:a:neighboring:state:to) text(Burkina:Faso) +text(Costa:de:Marfil) text(was:a:neighboring:state:to) text(Ghana) +text(कोत:दिव्वार) text(borders:with) text(ليبيريا) +text(科特迪瓦) text(borders) text(Mali) +text(Ivoorkust) text(is:butted:against) text(Guinea) +text(सिएरा:लियोन) text(was:butted:against) text(Liberia) +text(Sierra:Leone) text(was:adjacent:to) text(गिनी) +text(马约特) text(was:located:in) text(África:Oriental) +text(Mayotte) text(can:be:found:in) text(非洲) +text(波蘭) text(is:adjacent:to) text(Germany) +text(Poland) text(neighbors) text(烏克蘭) +text(بولندا) text(is:a:neighboring:country:of) text(Slowakije) +text(Polonia) text(was:a:neighboring:country:of) text(Bielorrusia) +text(पोलैंड) text(neighbors:with) text(रूस) +text(Polen) text(was:a:neighbor:of) text(立陶宛) +text(波蘭) text(is:a:neighbor:of) text(चेक:गणराज्य) +text(कज़ाख़िस्तान) text(was:positioned:in) text(آسيا:الوسطى) +text(Kazajistán) text(is:positioned:in) text(آسيا) +text(Kazachstan) text(is:a:neighboring:state:to) text(Turkmenistan) +text(哈萨克斯坦) text(was:a:neighboring:state:to) text(中华人民共和国) +text(كازاخستان) text(borders:with) text(Kirgizië) +text(Kazakhstan) text(borders) text(Uzbekistán) +text(कज़ाख़िस्तान) text(is:butted:against) text(روسيا) +text(उज़्बेकिस्तान) text(was:sited:in) text(Central:Asia) +text(乌兹别克斯坦) text(is:sited:in) text(एशिया) +text(Uzbekistan) text(was:butted:against) text(Afganistán) +text(أوزبكستان) text(was:adjacent:to) text(Turkmenistan) +text(Oezbekistan) text(is:adjacent:to) text(Kazajistán) +text(Uzbekistán) text(neighbors) text(Kirguistán) +text(उज़्बेकिस्तान) text(is:a:neighboring:country:of) text(Tajikistan) +text(Turks-:en:Caicoseilanden) text(was:localized:in) text(الكاريبي) +text(Islas:Turcas:y:Caicos) text(is:localized:in) text(美洲) +text(Nieuw-Caledonië) text(was:present:in) text(ميلانيزيا) +text(New:Caledonia) text(is:present:in) text(Oceanië) +text(Pakistan) text(was:a:neighboring:country:of) text(चीनी:जनवादी:गणराज्य) +text(Pakistan) text(neighbors:with) text(Afghanistan) +text(Pakistán) text(was:a:neighbor:of) text(ईरान) +text(巴基斯坦) text(is:a:neighbor:of) text(India) +text(Argentina) text(is:still:in) text(南美洲) +text(阿根廷) text(was:still:in) text(महाअमेरिका) +text(Argentinië) text(is:a:neighboring:state:to) text(Bolivia) +text(अर्जेण्टीना) text(was:a:neighboring:state:to) text(智利) +text(الأرجنتين) text(borders:with) text(Brazilië) +text(Argentina) text(borders) text(Paraguay) +text(Argentina) text(is:butted:against) text(Uruguay) +text(Cuba) text(was:currently:in) text(加勒比地区) +text(古巴) text(is:currently:in) text(Amerika) +text(Serbia) text(was:butted:against) text(Macedonia:del:Norte) +text(सर्बिया) text(was:adjacent:to) text(蒙特內哥羅) +text(صربيا) text(is:adjacent:to) text(Kosovo) +text(Serbia) text(neighbors) text(Bosnia:and:Herzegovina) +text(塞爾維亞) text(is:a:neighboring:country:of) text(كرواتيا) +text(Servië) text(was:a:neighboring:country:of) text(हंगरी) +text(Serbia) text(neighbors:with) text(保加利亚) +text(सर्बिया) text(was:a:neighbor:of) text(羅馬尼亞) +text(جمهورية:التشيك) text(is:placed:in) text(Eastern:Europe) +text(Tsjechië) text(was:placed:in) text(欧洲) +text(República:Checa) text(is:a:neighbor:of) text(Duitsland) +text(捷克) text(is:a:neighboring:state:to) text(Austria) +text(Czech:Republic) text(was:a:neighboring:state:to) text(Poland) +text(चेक:गणराज्य) text(borders:with) text(स्लोवाकिया) +text(निकारागुआ) text(borders) text(Honduras) +text(Nicaragua) text(is:butted:against) text(Costa:Rica) +text(Vietnam) text(can:be:found:in) text(جنوب:شرق:آسيا) +text(越南) text(was:situated:in) text(Asia) +text(Vietnam) text(was:butted:against) text(Cambodia) +text(Vietnam) text(was:adjacent:to) text(لاوس) +text(वियतनाम) text(is:adjacent:to) text(República:Popular:China) +text(نييوي) text(is:situated:in) text(Polynesië) +text(Niue) text(is:located:in) text(Oceania) +text(Canada) text(was:located:in) text(उत्तर:अमेरिका) +text(كندا) text(can:be:found:in) text(América) +text(Canadá) text(neighbors) text(संयुक्त:राज्य:अमेरिका) +text(Eslovaquia) text(is:a:neighboring:country:of) text(Ucrania) +text(Slovakia) text(was:a:neighboring:country:of) text(بولندا) +text(斯洛伐克) text(neighbors:with) text(奧地利) +text(سلوفاكيا) text(was:a:neighbor:of) text(Hongarije) +text(Slowakije) text(is:a:neighbor:of) text(جمهورية:التشيك) +text(मोज़ाम्बीक) text(is:a:neighboring:state:to) text(Tanzania) +text(莫桑比克) text(was:a:neighboring:state:to) text(Esuatini) +text(Mozambique) text(borders:with) text(زيمبابوي) +text(Mozambique) text(borders) text(贊比亞) +text(Mozambique) text(is:butted:against) text(मलावी) +text(موزمبيق) text(was:butted:against) text(South:Africa) +text(Aruba) text(was:positioned:in) text(Caraïben) +text(Aruba) text(is:positioned:in) text(أمريكتان) +text(Bolivia) text(was:sited:in) text(América:del:Sur) +text(Bolivia) text(is:sited:in) text(Americas) +text(玻利維亞) text(was:adjacent:to) text(Chili) +text(बोलिविया) text(is:adjacent:to) text(Brazil) +text(بوليفيا) text(neighbors) text(باراغواي) +text(Bolivia) text(is:a:neighboring:country:of) text(阿根廷) +text(Bolivia) text(was:a:neighboring:country:of) text(بيرو) +text(Colombia) text(was:localized:in) text(South:America) +text(كولومبيا) text(is:localized:in) text(美洲) +text(Colombia) text(neighbors:with) text(ईक्वाडोर) +text(कोलम्बिया) text(was:a:neighbor:of) text(ब्राज़ील) +text(哥伦比亚) text(is:a:neighbor:of) text(Panama) +text(Colombia) text(is:a:neighboring:state:to) text(Venezuela) +text(Colombia) text(was:a:neighboring:state:to) text(Peru) +text(فيجي) text(was:present:in) text(美拉尼西亞) +text(斐濟) text(is:present:in) text(ओशिआनिया) +text(Congo-Brazzaville) text(borders:with) text(Gabon) +text(Republic:of:the:Congo) text(borders) text(刚果民主共和国) +text(جمهورية:الكونغو) text(is:butted:against) text(Angola) +text(剛果共和國) text(was:butted:against) text(कैमरुन) +text(कांगो:गणराज्य) text(was:adjacent:to) text(中非共和國) +text(सउदी:अरब) text(is:adjacent:to) text(Qatar) +text(Arabia:Saudí) text(neighbors) text(United:Arab:Emirates) +text(Saoedi-Arabië) text(is:a:neighboring:country:of) text(約旦) +text(السعودية) text(was:a:neighboring:country:of) text(也门) +text(沙特阿拉伯) text(neighbors:with) text(Omán) +text(Saudi:Arabia) text(was:a:neighbor:of) text(कुवैत) +text(सउदी:अरब) text(is:a:neighbor:of) text(伊拉克) +text(السلفادور) text(is:still:in) text(أمريكا:الوسطى) +text(अल:साल्वाडोर) text(was:still:in) text(महाअमेरिका) +text(El:Salvador) text(is:a:neighboring:state:to) text(Guatemala) +text(El:Salvador) text(was:a:neighboring:state:to) text(Honduras) +text(Madagascar) text(was:currently:in) text(شرق:إفريقيا) +text(Madagascar) text(is:currently:in) text(Africa) +text(ऑस्ट्रेलिया) text(is:placed:in) text(Australia:and:New:Zealand) +text(澳大利亚) text(was:placed:in) text(أوقيانوسيا) +text(纳米比亚) text(can:be:found:in) text(दक्षिणी:अफ्रीका) +text(Namibië) text(was:situated:in) text(Afrika) +text(नामीबिया) text(borders:with) text(Zambia) +text(Namibia) text(borders) text(Angola) +text(ناميبيا) text(is:butted:against) text(Sudáfrica) +text(Namibia) text(was:butted:against) text(بوتسوانا) +text(Tuvalu) text(is:situated:in) text(Polinesia) +text(Tuvalu) text(is:located:in) text(Oceanía) +text(سفالبارد:ويان:ماين) text(was:located:in) text(Europa:del:Norte) +text(nan) text(can:be:found:in) text(Europa) +text(Man) text(was:positioned:in) text(Noord-Europa) +text(Isle:of:Man) text(is:positioned:in) text(यूरोप) +text(Guyana) text(was:adjacent:to) text(البرازيل) +text(Guyana) text(is:adjacent:to) text(Suriname) +text(圭亚那) text(neighbors) text(委內瑞拉) +text(الفاتيكان) text(was:sited:in) text(Southern:Europe) +text(梵蒂岡城國) text(is:sited:in) text(أوروبا) +text(Ciudad:del:Vaticano) text(is:a:neighboring:country:of) text(إيطاليا) +text(英屬印度洋領地) text(was:localized:in) text(Oost-Afrika) +text(Brits:Indische:Oceaanterritorium) text(is:localized:in) text(África) +text(Nigeria) text(was:present:in) text(África:Occidental) +text(奈及利亞) text(is:present:in) text(अफ्रीका) +text(नाइजीरिया) text(was:a:neighboring:country:of) text(Tsjaad) +text(Nigeria) text(neighbors:with) text(Niger) +text(نيجيريا) text(was:a:neighbor:of) text(Camerún) +text(Nigeria) text(is:a:neighbor:of) text(بنين) +text(Alemania) text(is:a:neighboring:state:to) text(डेनमार्क) +text(德國) text(was:a:neighboring:state:to) text(नीदरलैण्ड) +text(ألمانيا) text(borders:with) text(Polonia) +text(जर्मनी) text(borders) text(Luxembourg) +text(Germany) text(is:butted:against) text(Bélgica) +text(Duitsland) text(was:butted:against) text(Switzerland) +text(Alemania) text(was:adjacent:to) text(Austria) +text(德國) text(is:adjacent:to) text(Frankrijk) +text(ألمانيا) text(neighbors) text(Tsjechië) +text(Burkina:Faso) text(is:a:neighboring:country:of) text(多哥) +text(布吉納法索) text(was:a:neighboring:country:of) text(Benín) +text(बुर्किना:फासो) text(neighbors:with) text(尼日尔) +text(بوركينا:فاسو) text(was:a:neighbor:of) text(Ghana) +text(Burkina:Faso) text(is:a:neighbor:of) text(马里) +text(Burkina:Faso) text(is:a:neighboring:state:to) text(ساحل:العاج) +text(坦桑尼亞) text(was:a:neighboring:state:to) text(Uganda) +text(तंज़ानिया) text(borders:with) text(मोज़ाम्बीक) +text(Tanzania) text(borders) text(جمهورية:الكونغو:الديمقراطية) +text(تنزانيا) text(is:butted:against) text(Kenia) +text(Tanzania) text(was:butted:against) text(Ruanda) +text(Tanzania) text(was:adjacent:to) text(Zambia) +text(坦桑尼亞) text(is:adjacent:to) text(Malawi) +text(तंज़ानिया) text(neighbors) text(蒲隆地) +text(Islas:Marianas:del:Norte) text(is:still:in) text(Micronesië) +text(उत्तरी:मारियाना:द्वीप) text(was:still:in) text(大洋洲) +text(Belize) text(was:currently:in) text(América:Central) +text(伯利兹) text(is:currently:in) text(Amerika) +text(بليز) text(is:a:neighboring:country:of) text(ग्वाटेमाला) +text(Belice) text(was:a:neighboring:country:of) text(México) +text(Norway) text(neighbors:with) text(Suecia) +text(挪威) text(was:a:neighbor:of) text(Finland) +text(النرويج) text(is:a:neighbor:of) text(俄罗斯) +text(कोकोस:(कीलिंग):द्वीपसमूह) text(is:placed:in) text(nan) +text(islas:Cocos) text(was:placed:in) text(Oceanië) +text(Laos) text(can:be:found:in) text(东南亚) +text(लाओस) text(was:situated:in) text(Azië) +text(老撾) text(is:a:neighboring:state:to) text(الصين) +text(Laos) text(was:a:neighboring:state:to) text(柬埔寨) +text(Laos) text(borders:with) text(ميانمار) +text(لاوس) text(borders) text(فيتنام) +text(Laos) text(is:butted:against) text(Thailand) +text(República:Árabe:Saharaui:Democrática) text(is:situated:in) text(उत्तर:अफ़्रीका) +text(Sahrawi:Arab:Democratic:Republic) text(is:located:in) text(إفريقيا) +text(الجمهورية:العربية:الصحراوية:الديمقراطية) text(was:butted:against) text(Algeria) +text(Sahrawi:Arabische:Democratische:Republiek) text(was:adjacent:to) text(Mauritanië) +text(撒拉威阿拉伯民主共和國) text(is:adjacent:to) text(Morocco) +text(سورينام) text(was:located:in) text(أمريكا:الجنوبية) +text(सूरीनाम) text(can:be:found:in) text(América) +text(Suriname) text(neighbors) text(巴西) +text(Surinam) text(is:a:neighboring:country:of) text(Guayana:Francesa) +text(蘇利南) text(was:a:neighboring:country:of) text(गयाना) +text(聖誕島) text(was:positioned:in) text(Australië:en:Nieuw-Zeeland) +text(Christmas:Island) text(is:positioned:in) text(Oceania) +text(Sao:Tomé:en:Principe) text(was:sited:in) text(Central:Africa) +text(ساو:تومي:وبرينسيب) text(is:sited:in) text(非洲) +text(Egipto) text(neighbors:with) text(ليبيا) +text(埃及) text(was:a:neighbor:of) text(Israel) +text(Egypte) text(is:a:neighbor:of) text(苏丹) +text(बुल्गारिया) text(is:a:neighboring:state:to) text(North:Macedonia) +text(Bulgaria) text(was:a:neighboring:state:to) text(Turquía) +text(Bulgarije) text(borders:with) text(यूनान) +text(بلغاريا) text(borders) text(صربيا) +text(Bulgaria) text(is:butted:against) text(Rumania) +text(Guinee) text(was:localized:in) text(غرب:إفريقيا) +text(几内亚) text(is:localized:in) text(Africa) +text(Guinea) text(was:butted:against) text(Guinea-Bissau) +text(غينيا) text(was:adjacent:to) text(Sierra:Leone) +text(Guinea) text(is:adjacent:to) text(Mali) +text(गिनी) text(neighbors) text(Liberia) +text(Guinee) text(is:a:neighboring:country:of) text(Senegal) +text(几内亚) text(was:a:neighboring:country:of) text(Ivory:Coast) +text(إسبانيا) text(neighbors:with) text(मोरक्को) +text(Spanje) text(was:a:neighbor:of) text(جبل:طارق) +text(西班牙) text(is:a:neighbor:of) text(أندورا) +text(Spain) text(is:a:neighboring:state:to) text(فرنسا) +text(स्पेन) text(was:a:neighboring:state:to) text(葡萄牙) +text(कोस्टा:रीका) text(was:present:in) text(中美洲) +text(哥斯达黎加) text(is:present:in) text(أمريكتان) +text(Costa:Rica) text(borders:with) text(Panama) +text(Costa:Rica) text(borders) text(Nicaragua) +text(مالطا) text(is:still:in) text(أوروبا:الجنوبية) +text(माल्टा) text(was:still:in) text(Europe) +text(Portugal) text(was:currently:in) text(Zuid-Europa) +text(पुर्तगाल) text(is:currently:in) text(Europa) +text(Portugal) text(is:butted:against) text(España) +text(Romania) text(is:placed:in) text(पूर्वी:यूरोप) +text(रोमानिया) text(was:placed:in) text(欧洲) +text(Roemenië) text(was:butted:against) text(Ukraine) +text(رومانيا) text(was:adjacent:to) text(Hungría) +text(羅馬尼亞) text(is:adjacent:to) text(Moldova) +text(Rumania) text(neighbors) text(保加利亚) +text(Romania) text(is:a:neighboring:country:of) text(Serbia) +text(San:Marino) text(can:be:found:in) text(Europa:del:Sur) +text(San:Marino) text(was:situated:in) text(Europa) +text(圣马力诺) text(was:a:neighboring:country:of) text(Italy) +text(Mauritania) text(is:situated:in) text(West-Afrika) +text(मॉरीतानिया) text(is:located:in) text(Afrika) +text(毛里塔尼亞) text(neighbors:with) text(Argelia) +text(Mauritania) text(was:a:neighbor:of) text(مالي) +text(موريتانيا) text(is:a:neighbor:of) text(सहरावी:अरब:जनतांत्रिक:गणराज्य) +text(Mauritanië) text(is:a:neighboring:state:to) text(塞内加尔) +text(千里達及托巴哥) text(was:located:in) text(कैरिबिया) +text(Trinidad:and:Tobago) text(can:be:found:in) text(Americas) +text(巴林) text(was:positioned:in) text(西亚) +text(Bahrain) text(is:positioned:in) text(Asia) +text(緬甸) text(was:a:neighboring:state:to) text(الهند) +text(Birmania) text(borders:with) text(बांग्लादेश) +text(Myanmar) text(borders) text(People's:Republic:of:China) +text(म्यान्मार) text(is:butted:against) text(लाओस) +text(Myanmar) text(was:butted:against) text(Tailandia) +text(العراق) text(was:adjacent:to) text(土耳其) +text(इराक) text(is:adjacent:to) text(Arabia:Saudí) +text(Iraq) text(neighbors) text(Iran) +text(Irak) text(is:a:neighboring:country:of) text(Jordania) +text(Irak) text(was:a:neighboring:country:of) text(Kuwait) +text(伊拉克) text(neighbors:with) text(Siria) +text(南乔治亚和南桑威奇群岛) text(was:sited:in) text(दक्षिण:अमेरिका) +text(दक्षिण:जॉर्जिया:एवं:दक्षिण:सैंडविच:द्वीप:समूह) text(is:sited:in) text(美洲) +text(Iceland) text(was:localized:in) text(उत्तरी:यूरोप) +text(Islandia) text(is:localized:in) text(यूरोप) +text(कांगो:लोकतान्त्रिक:गणराज्य) text(was:present:in) text(मध्य:अफ्रीका) +text(Congo-Kinshasa) text(is:present:in) text(África) +text(Democratic:Republic:of:the:Congo) text(was:a:neighbor:of) text(Oeganda) +text(República:Democrática:del:Congo) text(is:a:neighbor:of) text(Tanzania) +text(刚果民主共和国) text(is:a:neighboring:state:to) text(República:del:Congo) +text(جمهورية:الكونغو:الديمقراطية) text(was:a:neighboring:state:to) text(Central:African:Republic) +text(कांगो:लोकतान्त्रिक:गणराज्य) text(borders:with) text(Angola) +text(Congo-Kinshasa) text(borders) text(卢旺达) +text(Democratic:Republic:of:the:Congo) text(is:butted:against) text(Zuid-Soedan) +text(República:Democrática:del:Congo) text(was:butted:against) text(زامبيا) +text(刚果民主共和国) text(was:adjacent:to) text(Burundi) +text(塞舌尔) text(is:still:in) text(पूर्वी:अफ्रीका) +text(سيشل) text(was:still:in) text(अफ्रीका) +text(吉尔吉斯斯坦) text(is:adjacent:to) text(Volksrepubliek:China) +text(Kyrgyzstan) text(neighbors) text(Kazachstan) +text(قرغيزستان) text(is:a:neighboring:country:of) text(Tayikistán) +text(किर्गिज़स्तान) text(was:a:neighboring:country:of) text(乌兹别克斯坦) +text(Botswana) text(was:currently:in) text(Zuidelijk:Afrika) +text(Botswana) text(is:currently:in) text(إفريقيا) +text(波札那) text(neighbors:with) text(津巴布韦) +text(बोत्सवाना) text(was:a:neighbor:of) text(纳米比亚) +text(Botsuana) text(is:a:neighbor:of) text(Zambia) +text(بوتسوانا) text(is:a:neighboring:state:to) text(Zuid-Afrika) +text(法罗群岛) text(is:placed:in) text(أوروبا:الشمالية) +text(Islas:Feroe) text(was:placed:in) text(أوروبا) +text(Jamaica) text(can:be:found:in) text(Caribe) +text(Jamaica) text(was:situated:in) text(महाअमेरिका) +text(ساموا:الأمريكية) text(is:situated:in) text(玻里尼西亞) +text(अमेरिकी:समोआ) text(is:located:in) text(ओशिआनिया) +text(莱索托) text(was:located:in) text(África:austral) +text(Lesotho) text(can:be:found:in) text(非洲) +text(ليسوتو) text(was:a:neighboring:state:to) text(جنوب:إفريقيا) +text(Sri:Lanka) text(borders:with) text(India) +text(بلجيكا) text(was:positioned:in) text(West-Europa) +text(Belgium) text(is:positioned:in) text(Europe) +text(België) text(borders) text(जर्मनी) +text(比利時) text(is:butted:against) text(Luxemburg) +text(बेल्जियम) text(was:butted:against) text(Francia) +text(Bélgica) text(was:adjacent:to) text(Países:Bajos) +text(قطر) text(was:sited:in) text(Zuidwest-Azië) +text(क़तर) text(is:sited:in) text(亞洲) +text(Catar) text(is:adjacent:to) text(Saoedi-Arabië) +text(Islas:Salomón) text(was:localized:in) text(Melanesië) +text(Salomonseilanden) text(is:localized:in) text(أوقيانوسيا) +text(सीरिया) text(was:present:in) text(Asia:Occidental) +text(敘利亞) text(is:present:in) text(آسيا) +text(Syrië) text(neighbors) text(以色列) +text(سوريا) text(is:a:neighboring:country:of) text(Turkije) +text(Syria) text(was:a:neighboring:country:of) text(الأردن) +text(Siria) text(neighbors:with) text(लेबनॉन) +text(सीरिया) text(was:a:neighbor:of) text(العراق) +text(भारत) text(is:still:in) text(South:Asia) +text(印度) text(was:still:in) text(एशिया) +text(India) text(is:a:neighbor:of) text(अफ़्ग़ानिस्तान) +text(India) text(is:a:neighboring:state:to) text(Bután) +text(الهند) text(was:a:neighboring:state:to) text(Bangladesh) +text(India) text(borders:with) text(中华人民共和国) +text(भारत) text(borders) text(Nepal) +text(印度) text(is:butted:against) text(ميانمار) +text(India) text(was:butted:against) text(باكستان) +text(India) text(was:adjacent:to) text(Sri:Lanka) +text(Marruecos) text(is:adjacent:to) text(अल्जीरिया) +text(المغرب) text(neighbors) text(إسبانيا) +text(摩洛哥) text(is:a:neighboring:country:of) text(República:Árabe:Saharaui:Democrática) +text(Kenya) text(was:currently:in) text(东部非洲) +text(肯尼亚) text(is:currently:in) text(Africa) +text(كينيا) text(was:a:neighboring:country:of) text(युगाण्डा) +text(Kenia) text(neighbors:with) text(تنزانيا) +text(कीनिया) text(was:a:neighbor:of) text(الصومال) +text(Kenia) text(is:a:neighbor:of) text(南蘇丹) +text(Kenya) text(is:a:neighboring:state:to) text(इथियोपिया) +text(South:Sudan) text(is:placed:in) text(وسط:إفريقيا) +text(Sudán:del:Sur) text(was:placed:in) text(Afrika) +text(جنوب:السودان) text(was:a:neighboring:state:to) text(Uganda) +text(दक्षिण:सूडान) text(borders:with) text(جمهورية:الكونغو:الديمقراطية) +text(Zuid-Soedan) text(borders) text(肯尼亚) +text(南蘇丹) text(is:butted:against) text(جمهورية:إفريقيا:الوسطى) +text(South:Sudan) text(was:butted:against) text(Sudán) +text(Sudán:del:Sur) text(was:adjacent:to) text(埃塞俄比亚) +text(घाना) text(is:adjacent:to) text(Burkina:Faso) +text(Ghana) text(neighbors) text(Costa:de:Marfil) +text(迦納) text(is:a:neighboring:country:of) text(Togo) +text(طاجيكستان) text(can:be:found:in) text(Asia:Central) +text(ताजीकिस्तान) text(was:situated:in) text(Asia) +text(塔吉克斯坦) text(was:a:neighboring:country:of) text(चीनी:जनवादी:गणराज्य) +text(Tadzjikistan) text(neighbors:with) text(Kirgizië) +text(Tajikistan) text(was:a:neighbor:of) text(أفغانستان) +text(Tayikistán) text(is:a:neighbor:of) text(Uzbekistan) +text(मार्शल:द्वीपसमूह) text(is:situated:in) text(密克羅尼西亞群島) +text(Marshalleilanden) text(is:located:in) text(Oceanía) +text(Cameroon) text(was:located:in) text(África:Central) +text(الكاميرون) text(can:be:found:in) text(África) +text(喀麦隆) text(is:a:neighboring:state:to) text(تشاد) +text(Kameroen) text(was:a:neighboring:state:to) text(Congo-Brazzaville) +text(कैमरुन) text(borders:with) text(Gabon) +text(Camerún) text(borders) text(भूमध्यरेखीय:गिनी) +text(Cameroon) text(is:butted:against) text(República:Centroafricana) +text(الكاميرون) text(was:butted:against) text(Nigeria) +text(Nauru) text(was:positioned:in) text(माइक्रोनीशिया) +text(瑙鲁) text(is:positioned:in) text(大洋洲) +text(泰國) text(was:adjacent:to) text(كمبوديا) +text(थाईलैंड) text(is:adjacent:to) text(緬甸) +text(Thailand) text(neighbors) text(老撾) +text(تايلاند) text(is:a:neighboring:country:of) text(Malaysia) +text(Sudan) text(was:a:neighboring:country:of) text(चाड) +text(Soedan) text(neighbors:with) text(लीबिया) +text(السودان) text(was:a:neighbor:of) text(جنوب:السودان) +text(सूडान) text(is:a:neighbor:of) text(Eritrea) +text(苏丹) text(is:a:neighboring:state:to) text(Centraal-Afrikaanse:Republiek) +text(Sudán) text(was:a:neighboring:state:to) text(مصر) +text(Sudan) text(borders:with) text(Etiopía) +text(乍得) text(was:sited:in) text(Centraal-Afrika) +text(Chad) text(is:sited:in) text(अफ्रीका) +text(Chad) text(borders) text(Libië) +text(Tsjaad) text(is:butted:against) text(नाइजर) +text(تشاد) text(was:butted:against) text(दक्षिण:सूडान) +text(चाड) text(was:adjacent:to) text(喀麦隆) +text(乍得) text(is:adjacent:to) text(मध्य:अफ़्रीकी:गणराज्य) +text(Chad) text(neighbors) text(奈及利亞) +text(萬那杜) text(was:localized:in) text(Melanesia) +text(Vanuatu) text(is:localized:in) text(Oceanië) +text(الرأس:الأخضر) text(was:present:in) text(पश्चिमी:अफ्रीका) +text(Kaapverdië) text(is:present:in) text(إفريقيا) +text(福克蘭群島) text(is:still:in) text(Zuid-Amerika) +text(Islas:Malvinas) text(was:still:in) text(Amerika) +text(利比里亞) text(was:currently:in) text(西非) +text(Liberia) text(is:currently:in) text(非洲) +text(लाइबेरिया) text(is:a:neighboring:country:of) text(कोत:दिव्वार) +text(ليبيريا) text(was:a:neighboring:country:of) text(塞拉利昂) +text(Liberia) text(neighbors:with) text(Guinea) +text(कम्बोडिया) text(is:placed:in) text(दक्षिण:पूर्व:एशिया) +text(Camboya) text(was:placed:in) text(Azië) +text(Cambodja) text(was:a:neighbor:of) text(Vietnam) +text(Cambodia) text(is:a:neighbor:of) text(Thailand) +text(柬埔寨) text(is:a:neighboring:state:to) text(Laos) +text(Zimbabwe) text(was:a:neighboring:state:to) text(ज़ाम्बिया) +text(ज़िम्बाब्वे) text(borders:with) text(दक्षिण:अफ़्रीका) +text(Zimbabue) text(borders) text(Botswana) +text(Zimbabwe) text(is:butted:against) text(莫桑比克) +text(कोमोरोस) text(can:be:found:in) text(East:Africa) +text(Comoras) text(was:situated:in) text(Africa) +text(關島) text(is:situated:in) text(ميكرونيسيا) +text(Guam) text(is:located:in) text(Oceania) +text(बहामास) text(was:located:in) text(Caribbean) +text(The:Bahamas) text(can:be:found:in) text(América) +text(Lebanon) text(was:positioned:in) text(West:Asia) +text(Líbano) text(is:positioned:in) text(Asia) +text(لبنان) text(was:butted:against) text(Israël) +text(Libanon) text(was:adjacent:to) text(敘利亞) +text(Saint:Martin) text(was:sited:in) text(الكاريبي) +text(सेंट:मार्टिन) text(is:sited:in) text(أمريكتان) +text(圣马丁岛) text(is:adjacent:to) text(San:Martín) +text(Ethiopia) text(was:localized:in) text(África:Oriental) +text(إثيوبيا) text(is:localized:in) text(Afrika) +text(Ethiopië) text(neighbors) text(Somalia) +text(इथियोपिया) text(is:a:neighboring:country:of) text(كينيا) +text(埃塞俄比亚) text(was:a:neighboring:country:of) text(Eritrea) +text(Etiopía) text(neighbors:with) text(Zuid-Soedan) +text(Ethiopia) text(was:a:neighbor:of) text(Djibouti) +text(إثيوبيا) text(is:a:neighbor:of) text(Soedan) +text(Amerikaanse:Maagdeneilanden) text(was:present:in) text(加勒比地区) +text(美屬維爾京群島) text(is:present:in) text(Americas) +text(गिनी-बिसाऊ) text(is:still:in) text(West:Africa) +text(Guinee-Bissau) text(was:still:in) text(África) +text(畿內亞比紹) text(is:a:neighboring:state:to) text(غينيا) +text(غينيا:بيساو) text(was:a:neighboring:state:to) text(السنغال) +text(Libya) text(was:currently:in) text(North:Africa) +text(利比亞) text(is:currently:in) text(अफ्रीका) +text(Libia) text(borders:with) text(Chad) +text(ليبيا) text(borders) text(Túnez) +text(लीबिया) text(is:butted:against) text(النيجر) +text(Libië) text(was:butted:against) text(الجزائر) +text(Libya) text(was:adjacent:to) text(Egypt) +text(利比亞) text(is:adjacent:to) text(السودان) +text(भूटान) text(is:placed:in) text(جنوب:آسيا) +text(بوتان) text(was:placed:in) text(亞洲) +text(Bhutan) text(neighbors) text(República:Popular:China) +text(不丹) text(is:a:neighboring:country:of) text(الهند) +text(ماكاو) text(can:be:found:in) text(شرق:آسيا) +text(Macao) text(was:situated:in) text(آسيا) +text(澳門) text(was:a:neighboring:country:of) text(الصين) +text(法屬玻里尼西亞) text(is:situated:in) text(بولنيزيا) +text(French:Polynesia) text(is:located:in) text(ओशिआनिया) +text(Somalië) text(was:located:in) text(شرق:إفريقيا) +text(索馬里) text(can:be:found:in) text(إفريقيا) +text(Somalia) text(neighbors:with) text(Yibuti) +text(सोमालिया) text(was:a:neighbor:of) text(Kenia) +text(الصومال) text(is:a:neighbor:of) text(Ethiopië) +text(Saint:Barthélemy) text(was:positioned:in) text(Caraïben) +text(聖巴泰勒米) text(is:positioned:in) text(美洲) +text(Rusia) text(was:sited:in) text(Europa:Oriental) +text(Russia) text(is:sited:in) text(Europa) +text(Rusland) text(is:a:neighboring:state:to) text(युक्रेन) +text(रूस) text(was:a:neighboring:state:to) text(Wit-Rusland) +text(روسيا) text(borders:with) text(People's:Republic:of:China) +text(俄罗斯) text(borders) text(哈萨克斯坦) +text(Rusia) text(is:butted:against) text(Noruega) +text(Russia) text(was:butted:against) text(पोलैंड) +text(Rusland) text(was:adjacent:to) text(Azerbaiyán) +text(रूस) text(is:adjacent:to) text(Lithuania) +text(روسيا) text(neighbors) text(إستونيا) +text(俄罗斯) text(is:a:neighboring:country:of) text(North:Korea) +text(Rusia) text(was:a:neighboring:country:of) text(फ़िनलैण्ड) +text(Russia) text(neighbors:with) text(Mongolië) +text(Rusland) text(was:a:neighbor:of) text(Letonia) +text(रूस) text(is:a:neighbor:of) text(جورجيا) +text(Nieuw-Zeeland) text(was:localized:in) text(nan) +text(Nueva:Zelanda) text(is:localized:in) text(أوقيانوسيا) +text(पनामा) text(was:present:in) text(Centraal-Amerika) +text(بنما) text(is:present:in) text(महाअमेरिका) +text(Panamá) text(is:a:neighboring:state:to) text(كوستاريكا) +text(巴拿馬) text(was:a:neighboring:state:to) text(كولومبيا) +text(Papúa:Nueva:Guinea) text(is:still:in) text(Melanesia) +text(पापुआ:न्यू:गिनी) text(was:still:in) text(Oceanía) +text(بابوا:غينيا:الجديدة) text(borders:with) text(Indonesia) +text(朝鮮民主主義人民共和國) text(borders) text(Volksrepubliek:China) +text(उत्तर:कोरिया) text(is:butted:against) text(Zuid-Korea) +text(Noord-Korea) text(was:butted:against) text(روسيا) +text(拉脫維亞) text(was:currently:in) text(北歐) +text(لاتفيا) text(is:currently:in) text(欧洲) +text(Letland) text(was:adjacent:to) text(Lituania) +text(लातविया) text(is:adjacent:to) text(بيلاروس) +text(Latvia) text(neighbors) text(俄罗斯) +text(Letonia) text(is:a:neighboring:country:of) text(愛沙尼亞) +text(Oman) text(is:placed:in) text(غرب:آسيا) +text(ओमान) text(was:placed:in) text(एशिया) +text(سلطنة:عمان) text(was:a:neighboring:country:of) text(السعودية) +text(阿曼) text(neighbors:with) text(اليمن) +text(Oman) text(was:a:neighbor:of) text(Emiratos:Árabes:Unidos) +text(圣皮埃尔和密克隆) text(can:be:found:in) text(North:America) +text(सन्त:पियर:और:मिकलान) text(was:situated:in) text(Amerika) +text(馬提尼克) text(is:situated:in) text(कैरिबिया) +text(मार्टीनिक) text(is:located:in) text(América) +text(المملكة:المتحدة) text(was:located:in) text(Northern:Europe) +text(United:Kingdom) text(can:be:found:in) text(Europa) +text(英国) text(is:a:neighbor:of) text(United:Kingdom) +text(इज़राइल) text(was:positioned:in) text(पश्चिमी:एशिया) +text(إسرائيل) text(is:positioned:in) text(Asia) +text(Israel) text(is:a:neighboring:state:to) text(黎巴嫩) +text(Israel) text(was:a:neighboring:state:to) text(मिस्र) +text(以色列) text(borders:with) text(Jordan) +text(Israël) text(borders) text(Syrië) +text(澤西) text(was:sited:in) text(Europa:del:Norte) +text(Jersey) text(is:sited:in) text(यूरोप) +text(पिटकेर्न:द्वीपसमूह) text(was:localized:in) text(पोलीनेशिया) +text(جزر:بيتكيرن) text(is:localized:in) text(大洋洲) +text(Togo) text(was:present:in) text(África:Occidental) +text(توغو) text(is:present:in) text(非洲) +text(Togo) text(is:butted:against) text(布吉納法索) +text(टोगो) text(was:butted:against) text(غانا) +text(多哥) text(was:adjacent:to) text(Benin) +text(كيريباتي) text(is:still:in) text(Micronesia) +text(किरिबाती) text(was:still:in) text(Oceanië) +text(伊朗) text(was:currently:in) text(南亚) +text(إيران) text(is:currently:in) text(Azië) +text(Irán) text(is:adjacent:to) text(Afghanistan) +text(Iran) text(neighbors) text(Turkmenistán) +text(ईरान) text(is:a:neighboring:country:of) text(Turkey) +text(Iran) text(was:a:neighboring:country:of) text(亞美尼亞) +text(伊朗) text(neighbors:with) text(Azerbaijan) +text(إيران) text(was:a:neighbor:of) text(पाकिस्तान) +text(Irán) text(is:a:neighbor:of) text(इराक) +text(सेंट:मार्टिन:की:सामूहिकता) text(is:placed:in) text(Caribe) +text(Sint-Maarten) text(was:placed:in) text(أمريكتان) +text(法屬聖馬丁) text(is:a:neighboring:state:to) text(San:Martín) +text(多明尼加) text(can:be:found:in) text(Caribbean) +text(Dominicaanse:Republiek) text(was:situated:in) text(Americas) +text(Dominican:Republic) text(was:a:neighboring:state:to) text(Haiti) +text(الدنمارك) text(borders:with) text(Germany) +text(Bermudas) text(is:situated:in) text(北美洲) +text(百慕大) text(is:located:in) text(美洲) +text(Chile) text(borders) text(Argentinië) +text(تشيلي) text(is:butted:against) text(Bolivia) +text(Chile) text(was:butted:against) text(Perú) +text(كوسوفو) text(was:located:in) text(Oost-Europa) +text(Kosovo) text(can:be:found:in) text(أوروبا) +text(科索沃) text(was:adjacent:to) text(塞爾維亞) +text(Kosovo) text(is:adjacent:to) text(Albania) +text(कोसोवो:गणराज्य) text(neighbors) text(مقدونيا:الشمالية) +text(Kosovo) text(is:a:neighboring:country:of) text(मॉन्टेनीग्रो) +text(سانت:كيتس:ونيفيس) text(was:positioned:in) text(الكاريبي) +text(San:Cristóbal:y:Nieves) text(is:positioned:in) text(महाअमेरिका) +text(Eritrea) text(was:a:neighboring:country:of) text(جيبوتي) +text(इरित्रिया) text(neighbors:with) text(सूडान) +text(إرتريا) text(was:a:neighbor:of) text(इथियोपिया) +text(赤道几内亚) text(was:sited:in) text(中部非洲) +text(غينيا:الاستوائية) text(is:sited:in) text(Africa) +text(Equatorial:Guinea) text(is:a:neighbor:of) text(加蓬) +text(Equatoriaal-Guinea) text(is:a:neighboring:state:to) text(Kameroen) +text(Níger) text(was:localized:in) text(غرب:إفريقيا) +text(Niger) text(is:localized:in) text(Afrika) +text(Niger) text(was:a:neighboring:state:to) text(Tsjaad) +text(尼日尔) text(borders:with) text(Libia) +text(नाइजर) text(borders) text(बुर्किना:फासो) +text(النيجر) text(is:butted:against) text(बेनिन) +text(Níger) text(was:butted:against) text(माली) +text(Niger) text(was:adjacent:to) text(阿爾及利亞) +text(Niger) text(is:adjacent:to) text(नाइजीरिया) +text(Anguilla) text(was:present:in) text(加勒比地区) +text(Anguila) text(is:present:in) text(Amerika) +text(Rwanda) text(is:still:in) text(Oost-Afrika) +text(Rwanda) text(was:still:in) text(África) +text(रवाण्डा) text(neighbors) text(बुरुण्डी) +text(رواندا) text(is:a:neighboring:country:of) text(Tanzania) +text(Ruanda) text(was:a:neighboring:country:of) text(烏干達) +text(卢旺达) text(neighbors:with) text(कांगो:लोकतान्त्रिक:गणराज्य) +text(الإمارات:العربية:المتحدة) text(was:currently:in) text(西亚) +text(阿拉伯联合酋长国) text(is:currently:in) text(Asia) +text(संयुक्त:अरब:अमीरात) text(was:a:neighbor:of) text(Omán) +text(Verenigde:Arabische:Emiraten) text(is:a:neighbor:of) text(沙特阿拉伯) +text(Estonia) text(is:placed:in) text(Noord-Europa) +text(एस्टोनिया) text(was:placed:in) text(Europe) +text(Estonia) text(is:a:neighboring:state:to) text(拉脫維亞) +text(Estland) text(was:a:neighboring:state:to) text(Rusia) +text(Greece) text(can:be:found:in) text(दक्षिणी:यूरोप) +text(希腊) text(was:situated:in) text(Europa) +text(Griekenland) text(borders:with) text(बुल्गारिया) +text(Grecia) text(borders) text(Albania) +text(اليونان) text(is:butted:against) text(उत्तर:मैसिडोनिया) +text(यूनान) text(was:butted:against) text(تركيا) +text(Senegal) text(is:situated:in) text(West-Afrika) +text(Senegal) text(is:located:in) text(अफ्रीका) +text(सेनेगल) text(was:adjacent:to) text(Guinea-Bisáu) +text(Senegal) text(is:adjacent:to) text(Mauritania) +text(塞内加尔) text(neighbors) text(Mali) +text(السنغال) text(is:a:neighboring:country:of) text(岡比亞) +text(Senegal) text(was:a:neighboring:country:of) text(Guinea) +text(गुआदेलूप) text(was:located:in) text(Caraïben) +text(Guadeloupe) text(can:be:found:in) text(América) +text(Monaco) text(neighbors:with) text(法國) +text(Djibouti) text(was:a:neighbor:of) text(厄立特里亞) +text(जिबूती) text(is:a:neighbor:of) text(Somalia) +text(吉布提) text(is:a:neighboring:state:to) text(埃塞俄比亚) +text(इंडोनेशिया) text(was:a:neighboring:state:to) text(Papoea-Nieuw-Guinea) +text(إندونيسيا) text(borders:with) text(東帝汶) +text(Indonesië) text(borders) text(Malasia) +text(Islas:Vírgenes:Británicas) text(was:positioned:in) text(कैरिबिया) +text(Britse:Maagdeneilanden) text(is:positioned:in) text(أمريكتان) +text(库克群岛) text(was:sited:in) text(Polynesia) +text(Cook:Islands) text(is:sited:in) text(Oceania) +text(أوغندا) text(was:localized:in) text(पूर्वी:अफ्रीका) +text(Uganda) text(is:localized:in) text(إفريقيا) +text(Oeganda) text(is:butted:against) text(Tanzania) +text(युगाण्डा) text(was:butted:against) text(Congo-Kinshasa) +text(Uganda) text(was:adjacent:to) text(कीनिया) +text(烏干達) text(is:adjacent:to) text(南蘇丹) +text(أوغندا) text(neighbors) text(Rwanda) +text(Noord-Macedonië) text(was:present:in) text(南欧) +text(北马其顿) text(is:present:in) text(欧洲) +text(Macedonia:del:Norte) text(is:a:neighboring:country:of) text(كوسوفو) +text(North:Macedonia) text(was:a:neighboring:country:of) text(Greece) +text(مقدونيا:الشمالية) text(neighbors:with) text(अल्बानिया) +text(उत्तर:मैसिडोनिया) text(was:a:neighbor:of) text(Servië) +text(Noord-Macedonië) text(is:a:neighbor:of) text(Bulgaria) +text(ट्यूनिशिया) text(is:still:in) text(Noord-Afrika) +text(突尼西亞) text(was:still:in) text(非洲) +text(Tunesië) text(is:a:neighboring:state:to) text(ليبيا) +text(Tunisia) text(was:a:neighboring:state:to) text(Algerije) +text(الإكوادور) text(borders:with) text(पेरू) +text(Ecuador) text(borders) text(Colombia) +text(Brasil) text(was:currently:in) text(南美洲) +text(Brazilië) text(is:currently:in) text(Americas) +text(Brazil) text(is:butted:against) text(玻利維亞) +text(ब्राज़ील) text(was:butted:against) text(कोलम्बिया) +text(البرازيل) text(was:adjacent:to) text(巴拉圭) +text(巴西) text(is:adjacent:to) text(Uruguay) +text(Brasil) text(neighbors) text(غويانا:الفرنسية) +text(Brazilië) text(is:a:neighboring:country:of) text(Suriname) +text(Brazil) text(was:a:neighboring:country:of) text(वेनेज़ुएला) +text(ब्राज़ील) text(neighbors:with) text(अर्जेण्टीना) +text(البرازيل) text(was:a:neighbor:of) text(غيانا) +text(巴西) text(is:a:neighbor:of) text(Peru) +text(Paraguay) text(is:placed:in) text(América:del:Sur) +text(पैराग्वे) text(was:placed:in) text(美洲) +text(Paraguay) text(is:a:neighboring:state:to) text(الأرجنتين) +text(Paraguay) text(was:a:neighboring:state:to) text(Brasil) +text(باراغواي) text(borders:with) text(बोलिविया) +text(فنلندا) text(can:be:found:in) text(उत्तरी:यूरोप) +text(Finlandia) text(was:situated:in) text(Europa) +text(Finland) text(borders) text(Noorwegen) +text(芬蘭) text(is:butted:against) text(स्वीडन) +text(Finland) text(was:butted:against) text(Russia) +text(Jordanië) text(was:adjacent:to) text(Saudi:Arabia) +text(जॉर्डन) text(is:adjacent:to) text(इज़राइल) +text(約旦) text(neighbors) text(Iraq) +text(Jordania) text(is:a:neighboring:country:of) text(سوريا) +text(تيمور:الشرقية) text(was:a:neighboring:country:of) text(印度尼西亚) +text(Montenegro) text(is:situated:in) text(Southern:Europe) +text(Montenegro) text(is:located:in) text(यूरोप) +text(الجبل:الأسود) text(neighbors:with) text(Kosovo) +text(Montenegro) text(was:a:neighbor:of) text(البوسنة:والهرسك) +text(蒙特內哥羅) text(is:a:neighbor:of) text(Kroatië) +text(मॉन्टेनीग्रो) text(is:a:neighboring:state:to) text(Serbia) +text(Montenegro) text(was:a:neighboring:state:to) text(ألبانيا) +text(秘鲁) text(was:located:in) text(South:America) +text(بيرو) text(can:be:found:in) text(महाअमेरिका) +text(Peru) text(borders:with) text(Ecuador) +text(Perú) text(borders) text(بوليفيا) +text(पेरू) text(is:butted:against) text(चिली) +text(Peru) text(was:butted:against) text(Brazilië) +text(秘鲁) text(was:adjacent:to) text(哥伦比亚) +text(مونتسيرات) text(was:positioned:in) text(Caribe) +text(Montserrat) text(is:positioned:in) text(Amerika) +text(Oekraïne) text(was:sited:in) text(أوروبا:الشرقية) +text(أوكرانيا) text(is:sited:in) text(أوروبا) +text(烏克蘭) text(is:adjacent:to) text(स्लोवाकिया) +text(Ucrania) text(neighbors) text(बेलारूस) +text(Ukraine) text(is:a:neighboring:country:of) text(Polen) +text(युक्रेन) text(was:a:neighboring:country:of) text(Rusland) +text(Oekraïne) text(neighbors:with) text(المجر) +text(أوكرانيا) text(was:a:neighbor:of) text(摩爾多瓦) +text(烏克蘭) text(is:a:neighbor:of) text(रोमानिया) +text(Dominica) text(was:localized:in) text(Caribbean) +text(多米尼克) text(is:localized:in) text(América) +text(تركمانستان) text(is:a:neighboring:state:to) text(كازاخستان) +text(तुर्कमेनिस्तान) text(was:a:neighboring:state:to) text(阿富汗) +text(土庫曼斯坦) text(borders:with) text(أوزبكستان) +text(Turkmenistan) text(borders) text(Iran) +text(ग्वेर्नसे) text(was:present:in) text(أوروبا:الشمالية) +text(Guernsey) text(is:present:in) text(Europe) +text(Gibraltar) text(is:still:in) text(أوروبا:الجنوبية) +text(Gibraltar) text(was:still:in) text(Europa) +text(直布羅陀) text(is:butted:against) text(Spanje) +text(स्विट्ज़रलैण्ड) text(was:currently:in) text(西欧) +text(瑞士) text(is:currently:in) text(欧洲) +text(Zwitserland) text(was:butted:against) text(Duitsland) +text(سويسرا) text(was:adjacent:to) text(Italië) +text(Suiza) text(is:adjacent:to) text(النمسا) +text(Switzerland) text(neighbors) text(फ़्रान्स) +text(स्विट्ज़रलैण्ड) text(is:a:neighboring:country:of) text(列支敦斯登) +text(ऑस्ट्रिया) text(is:placed:in) text(Europa:Occidental) +text(Oostenrijk) text(was:placed:in) text(Europa) +text(Austria) text(was:a:neighboring:country:of) text(Alemania) +text(奧地利) text(neighbors:with) text(Eslovaquia) +text(Austria) text(was:a:neighbor:of) text(سلوفينيا) +text(النمسا) text(is:a:neighbor:of) text(Italia) +text(ऑस्ट्रिया) text(is:a:neighboring:state:to) text(瑞士) +text(Oostenrijk) text(was:a:neighboring:state:to) text(Hungary) +text(Austria) text(borders:with) text(Liechtenstein) +text(奧地利) text(borders) text(República:Checa) +text(匈牙利) text(is:butted:against) text(Ucrania) +text(हंगरी) text(was:butted:against) text(Slovakia) +text(Hongarije) text(was:adjacent:to) text(斯洛文尼亞) +text(Hungría) text(is:adjacent:to) text(Croatia) +text(المجر) text(neighbors) text(Austria) +text(Hungary) text(is:a:neighboring:country:of) text(सर्बिया) +text(匈牙利) text(was:a:neighboring:country:of) text(Roemenië) +text(馬拉威) text(can:be:found:in) text(东部非洲) +text(Malaui) text(was:situated:in) text(Africa) +text(Malawi) text(neighbors:with) text(贊比亞) +text(مالاوي) text(was:a:neighbor:of) text(坦桑尼亞) +text(मलावी) text(is:a:neighbor:of) text(Mozambique) +text(Hong:Kong) text(is:a:neighboring:state:to) text(中华人民共和国) +text(Liechtenstein) text(is:situated:in) text(पश्चिमी:यूरोप) +text(Liechtenstein) text(is:located:in) text(यूरोप) +text(ليختنشتاين) text(was:a:neighboring:state:to) text(Zwitserland) +text(लिक्टेन्स्टाइन) text(borders:with) text(النمسا) +text(बारबाडोस) text(was:located:in) text(الكاريبي) +text(باربادوس) text(can:be:found:in) text(أمريكتان) +text(जॉर्जिया) text(was:positioned:in) text(Zuidwest-Azië) +text(Georgia) text(is:positioned:in) text(亞洲) +text(格鲁吉亚) text(borders) text(أرمينيا) +text(Georgië) text(is:butted:against) text(Azerbeidzjan) +text(Georgia) text(was:butted:against) text(रूस) +text(جورجيا) text(was:adjacent:to) text(तुर्की) +text(Albanië) text(was:sited:in) text(Zuid-Europa) +text(阿爾巴尼亞) text(is:sited:in) text(أوروبا) +text(Albania) text(is:adjacent:to) text(Montenegro) +text(Albania) text(neighbors) text(北马其顿) +text(अल्बानिया) text(is:a:neighboring:country:of) text(科索沃) +text(ألبانيا) text(was:a:neighboring:country:of) text(希腊) +text(科威特) text(was:localized:in) text(Asia:Occidental) +text(الكويت) text(is:localized:in) text(آسيا) +text(Koeweit) text(neighbors:with) text(सउदी:अरब) +text(Kuwait) text(was:a:neighbor:of) text(Irak) +text(南非) text(was:present:in) text(إفريقيا:الجنوبية) +text(South:Africa) text(is:present:in) text(Afrika) +text(Sudáfrica) text(is:a:neighbor:of) text(Mozambique) +text(Zuid-Afrika) text(is:a:neighboring:state:to) text(Botswana) +text(جنوب:إفريقيا) text(was:a:neighboring:state:to) text(إسواتيني) +text(दक्षिण:अफ़्रीका) text(borders:with) text(زيمبابوي) +text(南非) text(borders) text(Namibië) +text(South:Africa) text(is:butted:against) text(Lesotho) +text(هايتي) text(is:still:in) text(加勒比地区) +text(हैती) text(was:still:in) text(Americas) +text(Haïti) text(was:butted:against) text(جمهورية:الدومينيكان) +text(Afganistán) text(was:currently:in) text(दक्षिण:एशिया) +text(Afghanistan) text(is:currently:in) text(एशिया) +text(अफ़्ग़ानिस्तान) text(was:adjacent:to) text(Turkmenistan) +text(أفغانستان) text(is:adjacent:to) text(चीनी:जनवादी:गणराज्य) +text(Afghanistan) text(neighbors) text(طاجيكستان) +text(阿富汗) text(is:a:neighboring:country:of) text(Oezbekistan) +text(Afganistán) text(was:a:neighboring:country:of) text(ईरान) +text(Afghanistan) text(neighbors:with) text(Pakistan) +text(सिंगापुर) text(is:placed:in) text(Southeast:Asia) +text(Singapore) text(was:placed:in) text(Asia) +text(貝南) text(can:be:found:in) text(पश्चिमी:अफ्रीका) +text(Benin) text(was:situated:in) text(África) +text(بنين) text(was:a:neighbor:of) text(尼日尔) +text(Benín) text(is:a:neighbor:of) text(بوركينا:فاسو) +text(Benin) text(is:a:neighboring:state:to) text(Togo) +text(बेनिन) text(was:a:neighboring:state:to) text(Nigeria) +text(ऑलैण्ड:द्वीपसमूह) text(is:situated:in) text(北歐) +text(Åland) text(is:located:in) text(Europe) +text(Croacia) text(was:located:in) text(Europa:del:Sur) +text(克羅地亞) text(can:be:found:in) text(Europa) +text(क्रोएशिया) text(borders:with) text(स्लोवेनिया) +text(كرواتيا) text(borders) text(Bosnia:y:Herzegovina) +text(Kroatië) text(is:butted:against) text(हंगरी) +text(Croatia) text(was:butted:against) text(صربيا) +text(Croacia) text(was:adjacent:to) text(الجبل:الأسود) +text(Zweden) text(was:positioned:in) text(Northern:Europe) +text(Sweden) text(is:positioned:in) text(欧洲) +text(السويد) text(is:adjacent:to) text(नॉर्वे) +text(瑞典) text(neighbors) text(फ़िनलैण्ड) +text(मेक्सिको) text(is:a:neighboring:country:of) text(Belize) +text(墨西哥) text(was:a:neighboring:country:of) text(Estados:Unidos) +text(المكسيك) text(neighbors:with) text(غواتيمالا) +text(格陵兰) text(was:sited:in) text(Noord-Amerika) +text(جرينلاند) text(is:sited:in) text(美洲) +text(皮特凯恩群岛) text(was:localized:in) text(nan) +text(पिटकेर्न:द्वीपसमूह) text(is:localized:in) text(ओशिआनिया) +text(Nepal) text(was:present:in) text(Asia:del:Sur) +text(नेपाल) text(is:present:in) text(Azië) +text(نيبال) text(was:a:neighbor:of) text(República:Popular:China) +text(Nepal) text(is:a:neighbor:of) text(India) +text(Guatemala) text(is:a:neighboring:state:to) text(बेलीज़) +text(危地马拉) text(was:a:neighboring:state:to) text(薩爾瓦多) +text(Guatemala) text(borders:with) text(Mexico) +text(Guatemala) text(borders) text(洪都拉斯) +text(South:Korea) text(is:still:in) text(Oost-Azië) +text(كوريا:الجنوبية) text(was:still:in) text(Asia) +text(大韩民国) text(is:butted:against) text(كوريا:الشمالية) +text(Moldavië) text(was:currently:in) text(东欧) +text(Moldavia) text(is:currently:in) text(Europa) +text(مولدوفا) text(was:butted:against) text(Ukraine) +text(मोल्डोवा) text(was:adjacent:to) text(رومانيا) +text(Mauritius) text(is:placed:in) text(East:Africa) +text(Mauritius) text(was:placed:in) text(अफ्रीका) +text(白俄羅斯) text(is:adjacent:to) text(युक्रेन) +text(Belarus) text(neighbors) text(波蘭) +text(Bielorrusia) text(is:a:neighboring:country:of) text(Litouwen) +text(Wit-Rusland) text(was:a:neighboring:country:of) text(روسيا) +text(بيلاروس) text(neighbors:with) text(لاتفيا) +text(Bangladesh) text(was:a:neighbor:of) text(Birmania) +text(孟加拉國) text(is:a:neighbor:of) text(भारत) +text(Maleisië) text(can:be:found:in) text(Zuidoost-Azië) +text(ماليزيا) text(was:situated:in) text(亞洲) +text(馬來西亞) text(is:a:neighboring:state:to) text(Tailandia) +text(मलेशिया) text(was:a:neighboring:state:to) text(Indonesia) +text(Malaysia) text(borders:with) text(Brunei) +text(波斯尼亚和黑塞哥维那) text(is:situated:in) text(दक्षिणी:यूरोप) +text(Bosnië:en:Herzegovina) text(is:located:in) text(यूरोप) +text(बोस्निया:और:हर्ज़ेगोविना) text(borders) text(Serbia) +text(Bosnia:and:Herzegovina) text(is:butted:against) text(克羅地亞) +text(البوسنة:والهرسك) text(was:butted:against) text(Montenegro) +text(卢森堡) text(was:located:in) text(Western:Europe) +text(Luxemburgo) text(can:be:found:in) text(أوروبا) +text(لوكسمبورغ) text(was:adjacent:to) text(德國) +text(लक्ज़मबर्ग) text(is:adjacent:to) text(بلجيكا) +text(Luxembourg) text(neighbors) text(France) +text(意大利) text(was:positioned:in) text(南欧) +text(इटली) text(is:positioned:in) text(Europe) +text(إيطاليا) text(is:a:neighboring:country:of) text(Eslovenia) +text(Italy) text(was:a:neighboring:country:of) text(سويسرا) +text(Italië) text(neighbors:with) text(ऑस्ट्रिया) +text(Italia) text(was:a:neighbor:of) text(Frankrijk) +text(意大利) text(is:a:neighbor:of) text(वैटिकन:नगर) +text(इटली) text(is:a:neighboring:state:to) text(San:Marino) +text(أذربيجان) text(was:sited:in) text(West:Asia) +text(अज़रबैजान) text(is:sited:in) text(آسيا) +text(阿塞拜疆) text(was:a:neighboring:state:to) text(Turquía) +text(Azerbaiyán) text(borders:with) text(Armenia) +text(Azerbaijan) text(borders) text(俄罗斯) +text(Azerbeidzjan) text(is:butted:against) text(Iran) +text(أذربيجان) text(was:butted:against) text(जॉर्जिया) +text(हॉण्डुरस) text(was:localized:in) text(Central:America) +text(Honduras) text(is:localized:in) text(महाअमेरिका) +text(هندوراس) text(was:adjacent:to) text(ग्वाटेमाला) +text(Honduras) text(is:adjacent:to) text(尼加拉瓜) +text(Honduras) text(neighbors) text(El:Salvador) +text(Mali) text(was:present:in) text(西非) +text(马里) text(is:present:in) text(إفريقيا) +text(Mali) text(is:a:neighboring:country:of) text(Burkina:Faso) +text(مالي) text(was:a:neighboring:country:of) text(गिनी) +text(माली) text(neighbors:with) text(मॉरीतानिया) +text(Mali) text(was:a:neighbor:of) text(नाइजर) +text(Mali) text(is:a:neighbor:of) text(Senegal) +text(马里) text(is:a:neighboring:state:to) text(Algeria) +text(Mali) text(was:a:neighboring:state:to) text(科特迪瓦) +text(中華民國) text(is:still:in) text(पूर्वी:एशिया) +text(Taiwan) text(was:still:in) text(एशिया) +text(Argelia) text(was:currently:in) text(Norte:de:África) +text(अल्जीरिया) text(is:currently:in) text(非洲) +text(الجزائر) text(borders:with) text(लीबिया) +text(阿爾及利亞) text(borders) text(تونس) +text(Algerije) text(is:butted:against) text(毛里塔尼亞) +text(Algeria) text(was:butted:against) text(Marokko) +text(Argelia) text(was:adjacent:to) text(النيجر) +text(अल्जीरिया) text(is:adjacent:to) text(مالي) +text(الجزائر) text(neighbors) text(Sahrawi:Arab:Democratic:Republic) +text(Frans-Guyana) text(is:a:neighboring:country:of) text(Brazil) +text(फ़्रान्सीसी:गुयाना) text(was:a:neighboring:country:of) text(سورينام) +text(Jemen) text(is:placed:in) text(غرب:آسيا) +text(Yemen) text(was:placed:in) text(Asia) +text(Yemen) text(neighbors:with) text(Oman) +text(यमन) text(was:a:neighbor:of) text(Arabia:Saudí) +text(Puerto:Rico) text(can:be:found:in) text(Caraïben) +text(波多黎各) text(was:situated:in) text(Amerika) +text(سانت:فينسنت:والغرينادين) text(is:situated:in) text(कैरिबिया) +text(सन्त:विन्सेण्ट:और:ग्रेनाडाइन्स) text(is:located:in) text(América) +text(Venezuela) text(is:a:neighbor:of) text(ब्राज़ील) +text(Venezuela) text(is:a:neighboring:state:to) text(Guyana) +text(فنزويلا) text(was:a:neighboring:state:to) text(Colombia) +text(格瑞那達) text(was:located:in) text(Caribe) +text(Grenada) text(can:be:found:in) text(أمريكتان) +text(美國) text(borders:with) text(加拿大) +text(الولايات:المتحدة) text(borders) text(Mexico) +text(Tokelau) text(was:positioned:in) text(Polynesië) +text(توكيلاو) text(is:positioned:in) text(أوقيانوسيا) +text(Slovenië) text(was:sited:in) text(Southern:Europe) +text(Slovenia) text(is:sited:in) text(Europa) +text(سلوفينيا) text(is:butted:against) text(Oostenrijk) +text(斯洛文尼亞) text(was:butted:against) text(क्रोएशिया) +text(स्लोवेनिया) text(was:adjacent:to) text(إيطاليا) +text(Eslovenia) text(is:adjacent:to) text(Hongarije) +text(الفلبين) text(was:localized:in) text(Sudeste:Asiático) +text(फ़िलीपीन्स) text(is:localized:in) text(Azië) +text(Micronesia) text(was:present:in) text(Micronesië) +text(密克羅尼西亞群島) text(is:present:in) text(Oceanía) +text(الصين) text(is:still:in) text(Asia:Oriental) +text(People's:Republic:of:China) text(was:still:in) text(Asia) +text(Volksrepubliek:China) text(neighbors) text(अफ़्ग़ानिस्तान) +text(中华人民共和国) text(is:a:neighboring:country:of) text(Bhutan) +text(चीनी:जनवादी:गणराज्य) text(was:a:neighboring:country:of) text(Macau) +text(República:Popular:China) text(neighbors:with) text(印度) +text(الصين) text(was:a:neighbor:of) text(Kazakhstan) +text(People's:Republic:of:China) text(is:a:neighbor:of) text(Kirguistán) +text(Volksrepubliek:China) text(is:a:neighboring:state:to) text(ताजीकिस्तान) +text(中华人民共和国) text(was:a:neighboring:state:to) text(Laos) +text(चीनी:जनवादी:गणराज्य) text(borders:with) text(Rusia) +text(República:Popular:China) text(borders) text(Corea:del:Norte) +text(الصين) text(is:butted:against) text(Myanmar) +text(People's:Republic:of:China) text(was:butted:against) text(Pakistan) +text(Volksrepubliek:China) text(was:adjacent:to) text(मंगोलिया) +text(中华人民共和国) text(is:adjacent:to) text(हांगकांग) +text(चीनी:जनवादी:गणराज्य) text(neighbors) text(越南) +text(الغابون) text(was:currently:in) text(Central:Africa) +text(गबॉन) text(is:currently:in) text(Africa) +text(Gabón) text(is:a:neighboring:country:of) text(Guinea:Ecuatorial) +text(Gabon) text(was:a:neighboring:country:of) text(Republic:of:the:Congo) +text(Gabon) text(neighbors:with) text(कैमरुन) +text(United:States:Minor:Outlying:Islands) text(is:placed:in) text(أمريكا:الشمالية) +text(संयुक्त:राज्य:अमेरिका:के:छोटे:दूरस्थ:द्वीपसमूह) text(was:placed:in) text(Americas) +text(Andorra) text(can:be:found:in) text(أوروبا:الجنوبية) +text(Andorra) text(was:situated:in) text(欧洲) +text(安道尔) text(was:a:neighbor:of) text(西班牙) +text(Andorra) text(is:a:neighbor:of) text(فرنسا) +text(Samoa) text(is:situated:in) text(Polinesia) +text(Samoa) text(is:located:in) text(大洋洲) +text(The:Gambia) text(was:located:in) text(West:Africa) +text(غامبيا) text(can:be:found:in) text(Afrika) +text(गाम्बिया) text(is:a:neighboring:state:to) text(सेनेगल) +text(Pedro:Miguel) text(was:positioned:in) text(पश्चिमी:एशिया) +text(nan) text(is:positioned:in) text(亞洲) +text(Pedro:Miguel) text(was:a:neighboring:state:to) text(الأردن) +text(nan) text(borders:with) text(Egipto) +text(Pedro:Miguel) text(borders) text(إسرائيل) +text(Reunión) text(was:sited:in) text(África:Oriental) +text(ريونيون) text(is:sited:in) text(África) +text(Francia) text(was:localized:in) text(أوروبا:الغربية) +text(法國) text(is:localized:in) text(Europa) +text(फ़्रान्स) text(is:butted:against) text(ألمانيا) +text(France) text(was:butted:against) text(Luxemburg) +text(Frankrijk) text(was:adjacent:to) text(Italy) +text(فرنسا) text(is:adjacent:to) text(अण्डोरा) +text(Francia) text(neighbors) text(Suiza) +text(法國) text(is:a:neighboring:country:of) text(موناكو) +text(फ़्रान्स) text(was:a:neighboring:country:of) text(Belgium) +text(France) text(neighbors:with) text(Spain) +text(منغوليا) text(was:present:in) text(東亞) +text(Mongolia) text(is:present:in) text(آسيا) +text(蒙古國) text(was:a:neighbor:of) text(República:Popular:China) +text(Mongolia) text(is:a:neighbor:of) text(Russia) +text(लिथुआनिया) text(is:still:in) text(Europa:del:Norte) +text(ليتوانيا) text(was:still:in) text(यूरोप) +text(立陶宛) text(is:a:neighboring:state:to) text(Poland) +text(Lithuania) text(was:a:neighboring:state:to) text(Letland) +text(Lituania) text(borders:with) text(बेलारूस) +text(Litouwen) text(borders) text(Rusland) +text(Kaaimaneilanden) text(was:currently:in) text(Caribbean) +text(جزر:كايمان) text(is:currently:in) text(美洲) +text(圣卢西亚) text(is:placed:in) text(الكاريبي) +text(Santa:Lucía) text(was:placed:in) text(महाअमेरिका) +text(Curaçao) text(can:be:found:in) text(加勒比地区) +text(库拉索) text(was:situated:in) text(Amerika) +text(Caraïben) text(is:situated:in) text(América) +text(Zuid-Azië) text(is:located:in) text(एशिया) +text(मध्य:अफ्रीका) text(was:located:in) text(अफ्रीका) +text(Noord-Europa) text(can:be:found:in) text(أوروبا) +text(Zuid-Europa) text(was:positioned:in) text(Europe) +text(西亚) text(is:positioned:in) text(Asia) +text(أمريكا:الجنوبية) text(was:sited:in) text(أمريكتان) +text(玻里尼西亞) text(is:sited:in) text(Oceanië) +text(nan) text(was:localized:in) text(Oceania) +text(West-Europa) text(is:localized:in) text(Europa) +text(شرق:إفريقيا) text(was:present:in) text(إفريقيا) +text(África:Occidental) text(is:present:in) text(非洲) +text(Eastern:Europe) text(is:still:in) text(欧洲) +text(केंद्रीय:अमेरिका) text(was:still:in) text(Americas) +text(América:del:Norte) text(was:currently:in) text(美洲) +text(جنوب:شرق:آسيا) text(is:currently:in) text(Azië) +text(Southern:Africa) text(is:placed:in) text(Africa) +text(East:Asia) text(was:placed:in) text(Asia) +text(北部非洲) text(can:be:found:in) text(Afrika) +text(मॅलानिशिया) text(was:situated:in) text(ओशिआनिया) +text(माइक्रोनीशिया) text(is:situated:in) text(أوقيانوسيا) +text(中亚) text(is:located:in) text(亞洲) +text(Centraal-Europa) text(was:located:in) text(Europa) \ No newline at end of file diff --git a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_relation2text.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_relation2text.tsv new file mode 100644 index 0000000..3520a42 --- /dev/null +++ b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_relation2text.tsv @@ -0,0 +1,1063 @@ +palau text(was:localized:in) micronesia +palau text(is:localized:in) oceania +maldives text(was:present:in) southern_asia +maldives text(is:present:in) asia +brunei text(is:still:in) south-eastern_asia +brunei text(was:still:in) asia +brunei text(is:a:neighboring:state:to) malaysia +japan text(was:currently:in) eastern_asia +japan text(is:currently:in) asia +netherlands text(was:a:neighboring:state:to) germany +netherlands text(borders:with) belgium +turkey text(borders) armenia +turkey text(is:butted:against) azerbaijan +turkey text(was:butted:against) iran +turkey text(was:adjacent:to) greece +turkey text(is:adjacent:to) georgia +turkey text(neighbors) bulgaria +turkey text(is:a:neighboring:country:of) iraq +turkey text(was:a:neighboring:country:of) syria +angola text(is:placed:in) middle_africa +angola text(was:placed:in) africa +angola text(neighbors:with) dr_congo +angola text(was:a:neighbor:of) namibia +angola text(is:a:neighbor:of) zambia +angola text(is:a:neighboring:state:to) republic_of_the_congo +armenia text(can:be:found:in) western_asia +armenia text(was:situated:in) asia +armenia text(was:a:neighboring:state:to) georgia +armenia text(borders:with) azerbaijan +armenia text(borders) iran +armenia text(is:butted:against) turkey +antigua_and_barbuda text(is:situated:in) caribbean +antigua_and_barbuda text(is:located:in) americas +swaziland text(was:located:in) southern_africa +swaziland text(can:be:found:in) africa +swaziland text(was:butted:against) south_africa +swaziland text(was:adjacent:to) mozambique +wallis_and_futuna text(was:positioned:in) polynesia +wallis_and_futuna text(is:positioned:in) oceania +uruguay text(was:sited:in) south_america +uruguay text(is:sited:in) americas +uruguay text(is:adjacent:to) argentina +uruguay text(neighbors) brazil +zambia text(was:localized:in) eastern_africa +zambia text(is:localized:in) africa +zambia text(is:a:neighboring:country:of) tanzania +zambia text(was:a:neighboring:country:of) mozambique +zambia text(neighbors:with) dr_congo +zambia text(was:a:neighbor:of) angola +zambia text(is:a:neighbor:of) botswana +zambia text(is:a:neighboring:state:to) zimbabwe +zambia text(was:a:neighboring:state:to) namibia +zambia text(borders:with) malawi +cyprus text(was:present:in) eastern_europe +cyprus text(is:present:in) europe +cyprus text(borders) united_kingdom +ireland text(is:still:in) northern_europe +ireland text(was:still:in) europe +ireland text(is:butted:against) united_kingdom +burundi text(was:currently:in) eastern_africa +burundi text(is:currently:in) africa +burundi text(was:butted:against) dr_congo +burundi text(was:adjacent:to) rwanda +burundi text(is:adjacent:to) tanzania +central_african_republic text(is:placed:in) middle_africa +central_african_republic text(was:placed:in) africa +central_african_republic text(neighbors) chad +central_african_republic text(is:a:neighboring:country:of) republic_of_the_congo +central_african_republic text(was:a:neighboring:country:of) dr_congo +central_african_republic text(neighbors:with) south_sudan +central_african_republic text(was:a:neighbor:of) cameroon +central_african_republic text(is:a:neighbor:of) sudan +tonga text(can:be:found:in) polynesia +tonga text(was:situated:in) oceania +ivory_coast text(is:situated:in) western_africa +ivory_coast text(is:located:in) africa +ivory_coast text(is:a:neighboring:state:to) burkina_faso +ivory_coast text(was:a:neighboring:state:to) ghana +ivory_coast text(borders:with) liberia +ivory_coast text(borders) mali +ivory_coast text(is:butted:against) guinea +sierra_leone text(was:butted:against) liberia +sierra_leone text(was:adjacent:to) guinea +mayotte text(was:located:in) eastern_africa +mayotte text(can:be:found:in) africa +poland text(is:adjacent:to) germany +poland text(neighbors) ukraine +poland text(is:a:neighboring:country:of) slovakia +poland text(was:a:neighboring:country:of) belarus +poland text(neighbors:with) russia +poland text(was:a:neighbor:of) lithuania +poland text(is:a:neighbor:of) czechia +kazakhstan text(was:positioned:in) central_asia +kazakhstan text(is:positioned:in) asia +kazakhstan text(is:a:neighboring:state:to) turkmenistan +kazakhstan text(was:a:neighboring:state:to) china +kazakhstan text(borders:with) kyrgyzstan +kazakhstan text(borders) uzbekistan +kazakhstan text(is:butted:against) russia +uzbekistan text(was:sited:in) central_asia +uzbekistan text(is:sited:in) asia +uzbekistan text(was:butted:against) afghanistan +uzbekistan text(was:adjacent:to) turkmenistan +uzbekistan text(is:adjacent:to) kazakhstan +uzbekistan text(neighbors) kyrgyzstan +uzbekistan text(is:a:neighboring:country:of) tajikistan +turks_and_caicos_islands text(was:localized:in) caribbean +turks_and_caicos_islands text(is:localized:in) americas +new_caledonia text(was:present:in) melanesia +new_caledonia text(is:present:in) oceania +pakistan text(was:a:neighboring:country:of) china +pakistan text(neighbors:with) afghanistan +pakistan text(was:a:neighbor:of) iran +pakistan text(is:a:neighbor:of) india +argentina text(is:still:in) south_america +argentina text(was:still:in) americas +argentina text(is:a:neighboring:state:to) bolivia +argentina text(was:a:neighboring:state:to) chile +argentina text(borders:with) brazil +argentina text(borders) paraguay +argentina text(is:butted:against) uruguay +cuba text(was:currently:in) caribbean +cuba text(is:currently:in) americas +serbia text(was:butted:against) macedonia +serbia text(was:adjacent:to) montenegro +serbia text(is:adjacent:to) kosovo +serbia text(neighbors) bosnia_and_herzegovina +serbia text(is:a:neighboring:country:of) croatia +serbia text(was:a:neighboring:country:of) hungary +serbia text(neighbors:with) bulgaria +serbia text(was:a:neighbor:of) romania +czechia text(is:placed:in) eastern_europe +czechia text(was:placed:in) europe +czechia text(is:a:neighbor:of) germany +czechia text(is:a:neighboring:state:to) austria +czechia text(was:a:neighboring:state:to) poland +czechia text(borders:with) slovakia +nicaragua text(borders) honduras +nicaragua text(is:butted:against) costa_rica +vietnam text(can:be:found:in) south-eastern_asia +vietnam text(was:situated:in) asia +vietnam text(was:butted:against) cambodia +vietnam text(was:adjacent:to) laos +vietnam text(is:adjacent:to) china +niue text(is:situated:in) polynesia +niue text(is:located:in) oceania +canada text(was:located:in) northern_america +canada text(can:be:found:in) americas +canada text(neighbors) united_states +slovakia text(is:a:neighboring:country:of) ukraine +slovakia text(was:a:neighboring:country:of) poland +slovakia text(neighbors:with) austria +slovakia text(was:a:neighbor:of) hungary +slovakia text(is:a:neighbor:of) czechia +mozambique text(is:a:neighboring:state:to) tanzania +mozambique text(was:a:neighboring:state:to) swaziland +mozambique text(borders:with) zimbabwe +mozambique text(borders) zambia +mozambique text(is:butted:against) malawi +mozambique text(was:butted:against) south_africa +aruba text(was:positioned:in) caribbean +aruba text(is:positioned:in) americas +bolivia text(was:sited:in) south_america +bolivia text(is:sited:in) americas +bolivia text(was:adjacent:to) chile +bolivia text(is:adjacent:to) brazil +bolivia text(neighbors) paraguay +bolivia text(is:a:neighboring:country:of) argentina +bolivia text(was:a:neighboring:country:of) peru +colombia text(was:localized:in) south_america +colombia text(is:localized:in) americas +colombia text(neighbors:with) ecuador +colombia text(was:a:neighbor:of) brazil +colombia text(is:a:neighbor:of) panama +colombia text(is:a:neighboring:state:to) venezuela +colombia text(was:a:neighboring:state:to) peru +fiji text(was:present:in) melanesia +fiji text(is:present:in) oceania +republic_of_the_congo text(borders:with) gabon +republic_of_the_congo text(borders) dr_congo +republic_of_the_congo text(is:butted:against) angola +republic_of_the_congo text(was:butted:against) cameroon +republic_of_the_congo text(was:adjacent:to) central_african_republic +saudi_arabia text(is:adjacent:to) qatar +saudi_arabia text(neighbors) united_arab_emirates +saudi_arabia text(is:a:neighboring:country:of) jordan +saudi_arabia text(was:a:neighboring:country:of) yemen +saudi_arabia text(neighbors:with) oman +saudi_arabia text(was:a:neighbor:of) kuwait +saudi_arabia text(is:a:neighbor:of) iraq +el_salvador text(is:still:in) central_america +el_salvador text(was:still:in) americas +el_salvador text(is:a:neighboring:state:to) guatemala +el_salvador text(was:a:neighboring:state:to) honduras +madagascar text(was:currently:in) eastern_africa +madagascar text(is:currently:in) africa +australia text(is:placed:in) australia_and_new_zealand +australia text(was:placed:in) oceania +namibia text(can:be:found:in) southern_africa +namibia text(was:situated:in) africa +namibia text(borders:with) zambia +namibia text(borders) angola +namibia text(is:butted:against) south_africa +namibia text(was:butted:against) botswana +tuvalu text(is:situated:in) polynesia +tuvalu text(is:located:in) oceania +svalbard_and_jan_mayen text(was:located:in) northern_europe +svalbard_and_jan_mayen text(can:be:found:in) europe +isle_of_man text(was:positioned:in) northern_europe +isle_of_man text(is:positioned:in) europe +guyana text(was:adjacent:to) brazil +guyana text(is:adjacent:to) suriname +guyana text(neighbors) venezuela +vatican_city text(was:sited:in) southern_europe +vatican_city text(is:sited:in) europe +vatican_city text(is:a:neighboring:country:of) italy +british_indian_ocean_territory text(was:localized:in) eastern_africa +british_indian_ocean_territory text(is:localized:in) africa +nigeria text(was:present:in) western_africa +nigeria text(is:present:in) africa +nigeria text(was:a:neighboring:country:of) chad +nigeria text(neighbors:with) niger +nigeria text(was:a:neighbor:of) cameroon +nigeria text(is:a:neighbor:of) benin +germany text(is:a:neighboring:state:to) denmark +germany text(was:a:neighboring:state:to) netherlands +germany text(borders:with) poland +germany text(borders) luxembourg +germany text(is:butted:against) belgium +germany text(was:butted:against) switzerland +germany text(was:adjacent:to) austria +germany text(is:adjacent:to) france +germany text(neighbors) czechia +burkina_faso text(is:a:neighboring:country:of) togo +burkina_faso text(was:a:neighboring:country:of) benin +burkina_faso text(neighbors:with) niger +burkina_faso text(was:a:neighbor:of) ghana +burkina_faso text(is:a:neighbor:of) mali +burkina_faso text(is:a:neighboring:state:to) ivory_coast +tanzania text(was:a:neighboring:state:to) uganda +tanzania text(borders:with) mozambique +tanzania text(borders) dr_congo +tanzania text(is:butted:against) kenya +tanzania text(was:butted:against) rwanda +tanzania text(was:adjacent:to) zambia +tanzania text(is:adjacent:to) malawi +tanzania text(neighbors) burundi +northern_mariana_islands text(is:still:in) micronesia +northern_mariana_islands text(was:still:in) oceania +belize text(was:currently:in) central_america +belize text(is:currently:in) americas +belize text(is:a:neighboring:country:of) guatemala +belize text(was:a:neighboring:country:of) mexico +norway text(neighbors:with) sweden +norway text(was:a:neighbor:of) finland +norway text(is:a:neighbor:of) russia +cocos_keeling_islands text(is:placed:in) australia_and_new_zealand +cocos_keeling_islands text(was:placed:in) oceania +laos text(can:be:found:in) south-eastern_asia +laos text(was:situated:in) asia +laos text(is:a:neighboring:state:to) china +laos text(was:a:neighboring:state:to) cambodia +laos text(borders:with) myanmar +laos text(borders) vietnam +laos text(is:butted:against) thailand +western_sahara text(is:situated:in) northern_africa +western_sahara text(is:located:in) africa +western_sahara text(was:butted:against) algeria +western_sahara text(was:adjacent:to) mauritania +western_sahara text(is:adjacent:to) morocco +suriname text(was:located:in) south_america +suriname text(can:be:found:in) americas +suriname text(neighbors) brazil +suriname text(is:a:neighboring:country:of) french_guiana +suriname text(was:a:neighboring:country:of) guyana +christmas_island text(was:positioned:in) australia_and_new_zealand +christmas_island text(is:positioned:in) oceania +são_tomé_and_príncipe text(was:sited:in) middle_africa +são_tomé_and_príncipe text(is:sited:in) africa +egypt text(neighbors:with) libya +egypt text(was:a:neighbor:of) israel +egypt text(is:a:neighbor:of) sudan +bulgaria text(is:a:neighboring:state:to) macedonia +bulgaria text(was:a:neighboring:state:to) turkey +bulgaria text(borders:with) greece +bulgaria text(borders) serbia +bulgaria text(is:butted:against) romania +guinea text(was:localized:in) western_africa +guinea text(is:localized:in) africa +guinea text(was:butted:against) guinea-bissau +guinea text(was:adjacent:to) sierra_leone +guinea text(is:adjacent:to) mali +guinea text(neighbors) liberia +guinea text(is:a:neighboring:country:of) senegal +guinea text(was:a:neighboring:country:of) ivory_coast +spain text(neighbors:with) morocco +spain text(was:a:neighbor:of) gibraltar +spain text(is:a:neighbor:of) andorra +spain text(is:a:neighboring:state:to) france +spain text(was:a:neighboring:state:to) portugal +costa_rica text(was:present:in) central_america +costa_rica text(is:present:in) americas +costa_rica text(borders:with) panama +costa_rica text(borders) nicaragua +malta text(is:still:in) southern_europe +malta text(was:still:in) europe +portugal text(was:currently:in) southern_europe +portugal text(is:currently:in) europe +portugal text(is:butted:against) spain +romania text(is:placed:in) eastern_europe +romania text(was:placed:in) europe +romania text(was:butted:against) ukraine +romania text(was:adjacent:to) hungary +romania text(is:adjacent:to) moldova +romania text(neighbors) bulgaria +romania text(is:a:neighboring:country:of) serbia +san_marino text(can:be:found:in) southern_europe +san_marino text(was:situated:in) europe +san_marino text(was:a:neighboring:country:of) italy +mauritania text(is:situated:in) western_africa +mauritania text(is:located:in) africa +mauritania text(neighbors:with) algeria +mauritania text(was:a:neighbor:of) mali +mauritania text(is:a:neighbor:of) western_sahara +mauritania text(is:a:neighboring:state:to) senegal +trinidad_and_tobago text(was:located:in) caribbean +trinidad_and_tobago text(can:be:found:in) americas +bahrain text(was:positioned:in) western_asia +bahrain text(is:positioned:in) asia +myanmar text(was:a:neighboring:state:to) india +myanmar text(borders:with) bangladesh +myanmar text(borders) china +myanmar text(is:butted:against) laos +myanmar text(was:butted:against) thailand +iraq text(was:adjacent:to) turkey +iraq text(is:adjacent:to) saudi_arabia +iraq text(neighbors) iran +iraq text(is:a:neighboring:country:of) jordan +iraq text(was:a:neighboring:country:of) kuwait +iraq text(neighbors:with) syria +south_georgia text(was:sited:in) south_america +south_georgia text(is:sited:in) americas +iceland text(was:localized:in) northern_europe +iceland text(is:localized:in) europe +dr_congo text(was:present:in) middle_africa +dr_congo text(is:present:in) africa +dr_congo text(was:a:neighbor:of) uganda +dr_congo text(is:a:neighbor:of) tanzania +dr_congo text(is:a:neighboring:state:to) republic_of_the_congo +dr_congo text(was:a:neighboring:state:to) central_african_republic +dr_congo text(borders:with) angola +dr_congo text(borders) rwanda +dr_congo text(is:butted:against) south_sudan +dr_congo text(was:butted:against) zambia +dr_congo text(was:adjacent:to) burundi +seychelles text(is:still:in) eastern_africa +seychelles text(was:still:in) africa +kyrgyzstan text(is:adjacent:to) china +kyrgyzstan text(neighbors) kazakhstan +kyrgyzstan text(is:a:neighboring:country:of) tajikistan +kyrgyzstan text(was:a:neighboring:country:of) uzbekistan +botswana text(was:currently:in) southern_africa +botswana text(is:currently:in) africa +botswana text(neighbors:with) zimbabwe +botswana text(was:a:neighbor:of) namibia +botswana text(is:a:neighbor:of) zambia +botswana text(is:a:neighboring:state:to) south_africa +faroe_islands text(is:placed:in) northern_europe +faroe_islands text(was:placed:in) europe +jamaica text(can:be:found:in) caribbean +jamaica text(was:situated:in) americas +american_samoa text(is:situated:in) polynesia +american_samoa text(is:located:in) oceania +lesotho text(was:located:in) southern_africa +lesotho text(can:be:found:in) africa +lesotho text(was:a:neighboring:state:to) south_africa +sri_lanka text(borders:with) india +belgium text(was:positioned:in) western_europe +belgium text(is:positioned:in) europe +belgium text(borders) germany +belgium text(is:butted:against) luxembourg +belgium text(was:butted:against) france +belgium text(was:adjacent:to) netherlands +qatar text(was:sited:in) western_asia +qatar text(is:sited:in) asia +qatar text(is:adjacent:to) saudi_arabia +solomon_islands text(was:localized:in) melanesia +solomon_islands text(is:localized:in) oceania +syria text(was:present:in) western_asia +syria text(is:present:in) asia +syria text(neighbors) israel +syria text(is:a:neighboring:country:of) turkey +syria text(was:a:neighboring:country:of) jordan +syria text(neighbors:with) lebanon +syria text(was:a:neighbor:of) iraq +india text(is:still:in) southern_asia +india text(was:still:in) asia +india text(is:a:neighbor:of) afghanistan +india text(is:a:neighboring:state:to) bhutan +india text(was:a:neighboring:state:to) bangladesh +india text(borders:with) china +india text(borders) nepal +india text(is:butted:against) myanmar +india text(was:butted:against) pakistan +india text(was:adjacent:to) sri_lanka +morocco text(is:adjacent:to) algeria +morocco text(neighbors) spain +morocco text(is:a:neighboring:country:of) western_sahara +kenya text(was:currently:in) eastern_africa +kenya text(is:currently:in) africa +kenya text(was:a:neighboring:country:of) uganda +kenya text(neighbors:with) tanzania +kenya text(was:a:neighbor:of) somalia +kenya text(is:a:neighbor:of) south_sudan +kenya text(is:a:neighboring:state:to) ethiopia +south_sudan text(is:placed:in) middle_africa +south_sudan text(was:placed:in) africa +south_sudan text(was:a:neighboring:state:to) uganda +south_sudan text(borders:with) dr_congo +south_sudan text(borders) kenya +south_sudan text(is:butted:against) central_african_republic +south_sudan text(was:butted:against) sudan +south_sudan text(was:adjacent:to) ethiopia +ghana text(is:adjacent:to) burkina_faso +ghana text(neighbors) ivory_coast +ghana text(is:a:neighboring:country:of) togo +tajikistan text(can:be:found:in) central_asia +tajikistan text(was:situated:in) asia +tajikistan text(was:a:neighboring:country:of) china +tajikistan text(neighbors:with) kyrgyzstan +tajikistan text(was:a:neighbor:of) afghanistan +tajikistan text(is:a:neighbor:of) uzbekistan +marshall_islands text(is:situated:in) micronesia +marshall_islands text(is:located:in) oceania +cameroon text(was:located:in) middle_africa +cameroon text(can:be:found:in) africa +cameroon text(is:a:neighboring:state:to) chad +cameroon text(was:a:neighboring:state:to) republic_of_the_congo +cameroon text(borders:with) gabon +cameroon text(borders) equatorial_guinea +cameroon text(is:butted:against) central_african_republic +cameroon text(was:butted:against) nigeria +nauru text(was:positioned:in) micronesia +nauru text(is:positioned:in) oceania +thailand text(was:adjacent:to) cambodia +thailand text(is:adjacent:to) myanmar +thailand text(neighbors) laos +thailand text(is:a:neighboring:country:of) malaysia +sudan text(was:a:neighboring:country:of) chad +sudan text(neighbors:with) libya +sudan text(was:a:neighbor:of) south_sudan +sudan text(is:a:neighbor:of) eritrea +sudan text(is:a:neighboring:state:to) central_african_republic +sudan text(was:a:neighboring:state:to) egypt +sudan text(borders:with) ethiopia +chad text(was:sited:in) middle_africa +chad text(is:sited:in) africa +chad text(borders) libya +chad text(is:butted:against) niger +chad text(was:butted:against) south_sudan +chad text(was:adjacent:to) cameroon +chad text(is:adjacent:to) central_african_republic +chad text(neighbors) nigeria +vanuatu text(was:localized:in) melanesia +vanuatu text(is:localized:in) oceania +cape_verde text(was:present:in) western_africa +cape_verde text(is:present:in) africa +falkland_islands text(is:still:in) south_america +falkland_islands text(was:still:in) americas +liberia text(was:currently:in) western_africa +liberia text(is:currently:in) africa +liberia text(is:a:neighboring:country:of) ivory_coast +liberia text(was:a:neighboring:country:of) sierra_leone +liberia text(neighbors:with) guinea +cambodia text(is:placed:in) south-eastern_asia +cambodia text(was:placed:in) asia +cambodia text(was:a:neighbor:of) vietnam +cambodia text(is:a:neighbor:of) thailand +cambodia text(is:a:neighboring:state:to) laos +zimbabwe text(was:a:neighboring:state:to) zambia +zimbabwe text(borders:with) south_africa +zimbabwe text(borders) botswana +zimbabwe text(is:butted:against) mozambique +comoros text(can:be:found:in) eastern_africa +comoros text(was:situated:in) africa +guam text(is:situated:in) micronesia +guam text(is:located:in) oceania +bahamas text(was:located:in) caribbean +bahamas text(can:be:found:in) americas +lebanon text(was:positioned:in) western_asia +lebanon text(is:positioned:in) asia +lebanon text(was:butted:against) israel +lebanon text(was:adjacent:to) syria +sint_maarten text(was:sited:in) caribbean +sint_maarten text(is:sited:in) americas +sint_maarten text(is:adjacent:to) saint_martin +ethiopia text(was:localized:in) eastern_africa +ethiopia text(is:localized:in) africa +ethiopia text(neighbors) somalia +ethiopia text(is:a:neighboring:country:of) kenya +ethiopia text(was:a:neighboring:country:of) eritrea +ethiopia text(neighbors:with) south_sudan +ethiopia text(was:a:neighbor:of) djibouti +ethiopia text(is:a:neighbor:of) sudan +united_states_virgin_islands text(was:present:in) caribbean +united_states_virgin_islands text(is:present:in) americas +guinea-bissau text(is:still:in) western_africa +guinea-bissau text(was:still:in) africa +guinea-bissau text(is:a:neighboring:state:to) guinea +guinea-bissau text(was:a:neighboring:state:to) senegal +libya text(was:currently:in) northern_africa +libya text(is:currently:in) africa +libya text(borders:with) chad +libya text(borders) tunisia +libya text(is:butted:against) niger +libya text(was:butted:against) algeria +libya text(was:adjacent:to) egypt +libya text(is:adjacent:to) sudan +bhutan text(is:placed:in) southern_asia +bhutan text(was:placed:in) asia +bhutan text(neighbors) china +bhutan text(is:a:neighboring:country:of) india +macau text(can:be:found:in) eastern_asia +macau text(was:situated:in) asia +macau text(was:a:neighboring:country:of) china +french_polynesia text(is:situated:in) polynesia +french_polynesia text(is:located:in) oceania +somalia text(was:located:in) eastern_africa +somalia text(can:be:found:in) africa +somalia text(neighbors:with) djibouti +somalia text(was:a:neighbor:of) kenya +somalia text(is:a:neighbor:of) ethiopia +saint_barthélemy text(was:positioned:in) caribbean +saint_barthélemy text(is:positioned:in) americas +russia text(was:sited:in) eastern_europe +russia text(is:sited:in) europe +russia text(is:a:neighboring:state:to) ukraine +russia text(was:a:neighboring:state:to) belarus +russia text(borders:with) china +russia text(borders) kazakhstan +russia text(is:butted:against) norway +russia text(was:butted:against) poland +russia text(was:adjacent:to) azerbaijan +russia text(is:adjacent:to) lithuania +russia text(neighbors) estonia +russia text(is:a:neighboring:country:of) north_korea +russia text(was:a:neighboring:country:of) finland +russia text(neighbors:with) mongolia +russia text(was:a:neighbor:of) latvia +russia text(is:a:neighbor:of) georgia +new_zealand text(was:localized:in) australia_and_new_zealand +new_zealand text(is:localized:in) oceania +panama text(was:present:in) central_america +panama text(is:present:in) americas +panama text(is:a:neighboring:state:to) costa_rica +panama text(was:a:neighboring:state:to) colombia +papua_new_guinea text(is:still:in) melanesia +papua_new_guinea text(was:still:in) oceania +papua_new_guinea text(borders:with) indonesia +north_korea text(borders) china +north_korea text(is:butted:against) south_korea +north_korea text(was:butted:against) russia +latvia text(was:currently:in) northern_europe +latvia text(is:currently:in) europe +latvia text(was:adjacent:to) lithuania +latvia text(is:adjacent:to) belarus +latvia text(neighbors) russia +latvia text(is:a:neighboring:country:of) estonia +oman text(is:placed:in) western_asia +oman text(was:placed:in) asia +oman text(was:a:neighboring:country:of) saudi_arabia +oman text(neighbors:with) yemen +oman text(was:a:neighbor:of) united_arab_emirates +saint_pierre_and_miquelon text(can:be:found:in) northern_america +saint_pierre_and_miquelon text(was:situated:in) americas +martinique text(is:situated:in) caribbean +martinique text(is:located:in) americas +united_kingdom text(was:located:in) northern_europe +united_kingdom text(can:be:found:in) europe +united_kingdom text(is:a:neighbor:of) ireland +israel text(was:positioned:in) western_asia +israel text(is:positioned:in) asia +israel text(is:a:neighboring:state:to) lebanon +israel text(was:a:neighboring:state:to) egypt +israel text(borders:with) jordan +israel text(borders) syria +jersey text(was:sited:in) northern_europe +jersey text(is:sited:in) europe +pitcairn_islands text(was:localized:in) polynesia +pitcairn_islands text(is:localized:in) oceania +togo text(was:present:in) western_africa +togo text(is:present:in) africa +togo text(is:butted:against) burkina_faso +togo text(was:butted:against) ghana +togo text(was:adjacent:to) benin +kiribati text(is:still:in) micronesia +kiribati text(was:still:in) oceania +iran text(was:currently:in) southern_asia +iran text(is:currently:in) asia +iran text(is:adjacent:to) afghanistan +iran text(neighbors) turkmenistan +iran text(is:a:neighboring:country:of) turkey +iran text(was:a:neighboring:country:of) armenia +iran text(neighbors:with) azerbaijan +iran text(was:a:neighbor:of) pakistan +iran text(is:a:neighbor:of) iraq +saint_martin text(is:placed:in) caribbean +saint_martin text(was:placed:in) americas +saint_martin text(is:a:neighboring:state:to) sint_maarten +dominican_republic text(can:be:found:in) caribbean +dominican_republic text(was:situated:in) americas +dominican_republic text(was:a:neighboring:state:to) haiti +denmark text(borders:with) germany +bermuda text(is:situated:in) northern_america +bermuda text(is:located:in) americas +chile text(borders) argentina +chile text(is:butted:against) bolivia +chile text(was:butted:against) peru +kosovo text(was:located:in) eastern_europe +kosovo text(can:be:found:in) europe +kosovo text(was:adjacent:to) serbia +kosovo text(is:adjacent:to) albania +kosovo text(neighbors) macedonia +kosovo text(is:a:neighboring:country:of) montenegro +saint_kitts_and_nevis text(was:positioned:in) caribbean +saint_kitts_and_nevis text(is:positioned:in) americas +eritrea text(was:a:neighboring:country:of) djibouti +eritrea text(neighbors:with) sudan +eritrea text(was:a:neighbor:of) ethiopia +equatorial_guinea text(was:sited:in) middle_africa +equatorial_guinea text(is:sited:in) africa +equatorial_guinea text(is:a:neighbor:of) gabon +equatorial_guinea text(is:a:neighboring:state:to) cameroon +niger text(was:localized:in) western_africa +niger text(is:localized:in) africa +niger text(was:a:neighboring:state:to) chad +niger text(borders:with) libya +niger text(borders) burkina_faso +niger text(is:butted:against) benin +niger text(was:butted:against) mali +niger text(was:adjacent:to) algeria +niger text(is:adjacent:to) nigeria +anguilla text(was:present:in) caribbean +anguilla text(is:present:in) americas +rwanda text(is:still:in) eastern_africa +rwanda text(was:still:in) africa +rwanda text(neighbors) burundi +rwanda text(is:a:neighboring:country:of) tanzania +rwanda text(was:a:neighboring:country:of) uganda +rwanda text(neighbors:with) dr_congo +united_arab_emirates text(was:currently:in) western_asia +united_arab_emirates text(is:currently:in) asia +united_arab_emirates text(was:a:neighbor:of) oman +united_arab_emirates text(is:a:neighbor:of) saudi_arabia +estonia text(is:placed:in) northern_europe +estonia text(was:placed:in) europe +estonia text(is:a:neighboring:state:to) latvia +estonia text(was:a:neighboring:state:to) russia +greece text(can:be:found:in) southern_europe +greece text(was:situated:in) europe +greece text(borders:with) bulgaria +greece text(borders) albania +greece text(is:butted:against) macedonia +greece text(was:butted:against) turkey +senegal text(is:situated:in) western_africa +senegal text(is:located:in) africa +senegal text(was:adjacent:to) guinea-bissau +senegal text(is:adjacent:to) mauritania +senegal text(neighbors) mali +senegal text(is:a:neighboring:country:of) gambia +senegal text(was:a:neighboring:country:of) guinea +guadeloupe text(was:located:in) caribbean +guadeloupe text(can:be:found:in) americas +monaco text(neighbors:with) france +djibouti text(was:a:neighbor:of) eritrea +djibouti text(is:a:neighbor:of) somalia +djibouti text(is:a:neighboring:state:to) ethiopia +indonesia text(was:a:neighboring:state:to) papua_new_guinea +indonesia text(borders:with) timor-leste +indonesia text(borders) malaysia +british_virgin_islands text(was:positioned:in) caribbean +british_virgin_islands text(is:positioned:in) americas +cook_islands text(was:sited:in) polynesia +cook_islands text(is:sited:in) oceania +uganda text(was:localized:in) eastern_africa +uganda text(is:localized:in) africa +uganda text(is:butted:against) tanzania +uganda text(was:butted:against) dr_congo +uganda text(was:adjacent:to) kenya +uganda text(is:adjacent:to) south_sudan +uganda text(neighbors) rwanda +macedonia text(was:present:in) southern_europe +macedonia text(is:present:in) europe +macedonia text(is:a:neighboring:country:of) kosovo +macedonia text(was:a:neighboring:country:of) greece +macedonia text(neighbors:with) albania +macedonia text(was:a:neighbor:of) serbia +macedonia text(is:a:neighbor:of) bulgaria +tunisia text(is:still:in) northern_africa +tunisia text(was:still:in) africa +tunisia text(is:a:neighboring:state:to) libya +tunisia text(was:a:neighboring:state:to) algeria +ecuador text(borders:with) peru +ecuador text(borders) colombia +brazil text(was:currently:in) south_america +brazil text(is:currently:in) americas +brazil text(is:butted:against) bolivia +brazil text(was:butted:against) colombia +brazil text(was:adjacent:to) paraguay +brazil text(is:adjacent:to) uruguay +brazil text(neighbors) french_guiana +brazil text(is:a:neighboring:country:of) suriname +brazil text(was:a:neighboring:country:of) venezuela +brazil text(neighbors:with) argentina +brazil text(was:a:neighbor:of) guyana +brazil text(is:a:neighbor:of) peru +paraguay text(is:placed:in) south_america +paraguay text(was:placed:in) americas +paraguay text(is:a:neighboring:state:to) argentina +paraguay text(was:a:neighboring:state:to) brazil +paraguay text(borders:with) bolivia +finland text(can:be:found:in) northern_europe +finland text(was:situated:in) europe +finland text(borders) norway +finland text(is:butted:against) sweden +finland text(was:butted:against) russia +jordan text(was:adjacent:to) saudi_arabia +jordan text(is:adjacent:to) israel +jordan text(neighbors) iraq +jordan text(is:a:neighboring:country:of) syria +timor-leste text(was:a:neighboring:country:of) indonesia +montenegro text(is:situated:in) southern_europe +montenegro text(is:located:in) europe +montenegro text(neighbors:with) kosovo +montenegro text(was:a:neighbor:of) bosnia_and_herzegovina +montenegro text(is:a:neighbor:of) croatia +montenegro text(is:a:neighboring:state:to) serbia +montenegro text(was:a:neighboring:state:to) albania +peru text(was:located:in) south_america +peru text(can:be:found:in) americas +peru text(borders:with) ecuador +peru text(borders) bolivia +peru text(is:butted:against) chile +peru text(was:butted:against) brazil +peru text(was:adjacent:to) colombia +montserrat text(was:positioned:in) caribbean +montserrat text(is:positioned:in) americas +ukraine text(was:sited:in) eastern_europe +ukraine text(is:sited:in) europe +ukraine text(is:adjacent:to) slovakia +ukraine text(neighbors) belarus +ukraine text(is:a:neighboring:country:of) poland +ukraine text(was:a:neighboring:country:of) russia +ukraine text(neighbors:with) hungary +ukraine text(was:a:neighbor:of) moldova +ukraine text(is:a:neighbor:of) romania +dominica text(was:localized:in) caribbean +dominica text(is:localized:in) americas +turkmenistan text(is:a:neighboring:state:to) kazakhstan +turkmenistan text(was:a:neighboring:state:to) afghanistan +turkmenistan text(borders:with) uzbekistan +turkmenistan text(borders) iran +guernsey text(was:present:in) northern_europe +guernsey text(is:present:in) europe +gibraltar text(is:still:in) southern_europe +gibraltar text(was:still:in) europe +gibraltar text(is:butted:against) spain +switzerland text(was:currently:in) western_europe +switzerland text(is:currently:in) europe +switzerland text(was:butted:against) germany +switzerland text(was:adjacent:to) italy +switzerland text(is:adjacent:to) austria +switzerland text(neighbors) france +switzerland text(is:a:neighboring:country:of) liechtenstein +austria text(is:placed:in) western_europe +austria text(was:placed:in) europe +austria text(was:a:neighboring:country:of) germany +austria text(neighbors:with) slovakia +austria text(was:a:neighbor:of) slovenia +austria text(is:a:neighbor:of) italy +austria text(is:a:neighboring:state:to) switzerland +austria text(was:a:neighboring:state:to) hungary +austria text(borders:with) liechtenstein +austria text(borders) czechia +hungary text(is:butted:against) ukraine +hungary text(was:butted:against) slovakia +hungary text(was:adjacent:to) slovenia +hungary text(is:adjacent:to) croatia +hungary text(neighbors) austria +hungary text(is:a:neighboring:country:of) serbia +hungary text(was:a:neighboring:country:of) romania +malawi text(can:be:found:in) eastern_africa +malawi text(was:situated:in) africa +malawi text(neighbors:with) zambia +malawi text(was:a:neighbor:of) tanzania +malawi text(is:a:neighbor:of) mozambique +hong_kong text(is:a:neighboring:state:to) china +liechtenstein text(is:situated:in) western_europe +liechtenstein text(is:located:in) europe +liechtenstein text(was:a:neighboring:state:to) switzerland +liechtenstein text(borders:with) austria +barbados text(was:located:in) caribbean +barbados text(can:be:found:in) americas +georgia text(was:positioned:in) western_asia +georgia text(is:positioned:in) asia +georgia text(borders) armenia +georgia text(is:butted:against) azerbaijan +georgia text(was:butted:against) russia +georgia text(was:adjacent:to) turkey +albania text(was:sited:in) southern_europe +albania text(is:sited:in) europe +albania text(is:adjacent:to) montenegro +albania text(neighbors) macedonia +albania text(is:a:neighboring:country:of) kosovo +albania text(was:a:neighboring:country:of) greece +kuwait text(was:localized:in) western_asia +kuwait text(is:localized:in) asia +kuwait text(neighbors:with) saudi_arabia +kuwait text(was:a:neighbor:of) iraq +south_africa text(was:present:in) southern_africa +south_africa text(is:present:in) africa +south_africa text(is:a:neighbor:of) mozambique +south_africa text(is:a:neighboring:state:to) botswana +south_africa text(was:a:neighboring:state:to) swaziland +south_africa text(borders:with) zimbabwe +south_africa text(borders) namibia +south_africa text(is:butted:against) lesotho +haiti text(is:still:in) caribbean +haiti text(was:still:in) americas +haiti text(was:butted:against) dominican_republic +afghanistan text(was:currently:in) southern_asia +afghanistan text(is:currently:in) asia +afghanistan text(was:adjacent:to) turkmenistan +afghanistan text(is:adjacent:to) china +afghanistan text(neighbors) tajikistan +afghanistan text(is:a:neighboring:country:of) uzbekistan +afghanistan text(was:a:neighboring:country:of) iran +afghanistan text(neighbors:with) pakistan +singapore text(is:placed:in) south-eastern_asia +singapore text(was:placed:in) asia +benin text(can:be:found:in) western_africa +benin text(was:situated:in) africa +benin text(was:a:neighbor:of) niger +benin text(is:a:neighbor:of) burkina_faso +benin text(is:a:neighboring:state:to) togo +benin text(was:a:neighboring:state:to) nigeria +åland_islands text(is:situated:in) northern_europe +åland_islands text(is:located:in) europe +croatia text(was:located:in) southern_europe +croatia text(can:be:found:in) europe +croatia text(borders:with) slovenia +croatia text(borders) bosnia_and_herzegovina +croatia text(is:butted:against) hungary +croatia text(was:butted:against) serbia +croatia text(was:adjacent:to) montenegro +sweden text(was:positioned:in) northern_europe +sweden text(is:positioned:in) europe +sweden text(is:adjacent:to) norway +sweden text(neighbors) finland +mexico text(is:a:neighboring:country:of) belize +mexico text(was:a:neighboring:country:of) united_states +mexico text(neighbors:with) guatemala +greenland text(was:sited:in) northern_america +greenland text(is:sited:in) americas +norfolk_island text(was:localized:in) australia_and_new_zealand +norfolk_island text(is:localized:in) oceania +nepal text(was:present:in) southern_asia +nepal text(is:present:in) asia +nepal text(was:a:neighbor:of) china +nepal text(is:a:neighbor:of) india +guatemala text(is:a:neighboring:state:to) belize +guatemala text(was:a:neighboring:state:to) el_salvador +guatemala text(borders:with) mexico +guatemala text(borders) honduras +south_korea text(is:still:in) eastern_asia +south_korea text(was:still:in) asia +south_korea text(is:butted:against) north_korea +moldova text(was:currently:in) eastern_europe +moldova text(is:currently:in) europe +moldova text(was:butted:against) ukraine +moldova text(was:adjacent:to) romania +mauritius text(is:placed:in) eastern_africa +mauritius text(was:placed:in) africa +belarus text(is:adjacent:to) ukraine +belarus text(neighbors) poland +belarus text(is:a:neighboring:country:of) lithuania +belarus text(was:a:neighboring:country:of) russia +belarus text(neighbors:with) latvia +bangladesh text(was:a:neighbor:of) myanmar +bangladesh text(is:a:neighbor:of) india +malaysia text(can:be:found:in) south-eastern_asia +malaysia text(was:situated:in) asia +malaysia text(is:a:neighboring:state:to) thailand +malaysia text(was:a:neighboring:state:to) indonesia +malaysia text(borders:with) brunei +bosnia_and_herzegovina text(is:situated:in) southern_europe +bosnia_and_herzegovina text(is:located:in) europe +bosnia_and_herzegovina text(borders) serbia +bosnia_and_herzegovina text(is:butted:against) croatia +bosnia_and_herzegovina text(was:butted:against) montenegro +luxembourg text(was:located:in) western_europe +luxembourg text(can:be:found:in) europe +luxembourg text(was:adjacent:to) germany +luxembourg text(is:adjacent:to) belgium +luxembourg text(neighbors) france +italy text(was:positioned:in) southern_europe +italy text(is:positioned:in) europe +italy text(is:a:neighboring:country:of) slovenia +italy text(was:a:neighboring:country:of) switzerland +italy text(neighbors:with) austria +italy text(was:a:neighbor:of) france +italy text(is:a:neighbor:of) vatican_city +italy text(is:a:neighboring:state:to) san_marino +azerbaijan text(was:sited:in) western_asia +azerbaijan text(is:sited:in) asia +azerbaijan text(was:a:neighboring:state:to) turkey +azerbaijan text(borders:with) armenia +azerbaijan text(borders) russia +azerbaijan text(is:butted:against) iran +azerbaijan text(was:butted:against) georgia +honduras text(was:localized:in) central_america +honduras text(is:localized:in) americas +honduras text(was:adjacent:to) guatemala +honduras text(is:adjacent:to) nicaragua +honduras text(neighbors) el_salvador +mali text(was:present:in) western_africa +mali text(is:present:in) africa +mali text(is:a:neighboring:country:of) burkina_faso +mali text(was:a:neighboring:country:of) guinea +mali text(neighbors:with) mauritania +mali text(was:a:neighbor:of) niger +mali text(is:a:neighbor:of) senegal +mali text(is:a:neighboring:state:to) algeria +mali text(was:a:neighboring:state:to) ivory_coast +taiwan text(is:still:in) eastern_asia +taiwan text(was:still:in) asia +algeria text(was:currently:in) northern_africa +algeria text(is:currently:in) africa +algeria text(borders:with) libya +algeria text(borders) tunisia +algeria text(is:butted:against) mauritania +algeria text(was:butted:against) morocco +algeria text(was:adjacent:to) niger +algeria text(is:adjacent:to) mali +algeria text(neighbors) western_sahara +french_guiana text(is:a:neighboring:country:of) brazil +french_guiana text(was:a:neighboring:country:of) suriname +yemen text(is:placed:in) western_asia +yemen text(was:placed:in) asia +yemen text(neighbors:with) oman +yemen text(was:a:neighbor:of) saudi_arabia +puerto_rico text(can:be:found:in) caribbean +puerto_rico text(was:situated:in) americas +saint_vincent_and_the_grenadines text(is:situated:in) caribbean +saint_vincent_and_the_grenadines text(is:located:in) americas +venezuela text(is:a:neighbor:of) brazil +venezuela text(is:a:neighboring:state:to) guyana +venezuela text(was:a:neighboring:state:to) colombia +grenada text(was:located:in) caribbean +grenada text(can:be:found:in) americas +united_states text(borders:with) canada +united_states text(borders) mexico +tokelau text(was:positioned:in) polynesia +tokelau text(is:positioned:in) oceania +slovenia text(was:sited:in) southern_europe +slovenia text(is:sited:in) europe +slovenia text(is:butted:against) austria +slovenia text(was:butted:against) croatia +slovenia text(was:adjacent:to) italy +slovenia text(is:adjacent:to) hungary +philippines text(was:localized:in) south-eastern_asia +philippines text(is:localized:in) asia +micronesia text(was:present:in) micronesia +micronesia text(is:present:in) oceania +china text(is:still:in) eastern_asia +china text(was:still:in) asia +china text(neighbors) afghanistan +china text(is:a:neighboring:country:of) bhutan +china text(was:a:neighboring:country:of) macau +china text(neighbors:with) india +china text(was:a:neighbor:of) kazakhstan +china text(is:a:neighbor:of) kyrgyzstan +china text(is:a:neighboring:state:to) tajikistan +china text(was:a:neighboring:state:to) laos +china text(borders:with) russia +china text(borders) north_korea +china text(is:butted:against) myanmar +china text(was:butted:against) pakistan +china text(was:adjacent:to) mongolia +china text(is:adjacent:to) hong_kong +china text(neighbors) vietnam +gabon text(was:currently:in) middle_africa +gabon text(is:currently:in) africa +gabon text(is:a:neighboring:country:of) equatorial_guinea +gabon text(was:a:neighboring:country:of) republic_of_the_congo +gabon text(neighbors:with) cameroon +united_states_minor_outlying_islands text(is:placed:in) northern_america +united_states_minor_outlying_islands text(was:placed:in) americas +andorra text(can:be:found:in) southern_europe +andorra text(was:situated:in) europe +andorra text(was:a:neighbor:of) spain +andorra text(is:a:neighbor:of) france +samoa text(is:situated:in) polynesia +samoa text(is:located:in) oceania +gambia text(was:located:in) western_africa +gambia text(can:be:found:in) africa +gambia text(is:a:neighboring:state:to) senegal +palestine text(was:positioned:in) western_asia +palestine text(is:positioned:in) asia +palestine text(was:a:neighboring:state:to) jordan +palestine text(borders:with) egypt +palestine text(borders) israel +réunion text(was:sited:in) eastern_africa +réunion text(is:sited:in) africa +france text(was:localized:in) western_europe +france text(is:localized:in) europe +france text(is:butted:against) germany +france text(was:butted:against) luxembourg +france text(was:adjacent:to) italy +france text(is:adjacent:to) andorra +france text(neighbors) switzerland +france text(is:a:neighboring:country:of) monaco +france text(was:a:neighboring:country:of) belgium +france text(neighbors:with) spain +mongolia text(was:present:in) eastern_asia +mongolia text(is:present:in) asia +mongolia text(was:a:neighbor:of) china +mongolia text(is:a:neighbor:of) russia +lithuania text(is:still:in) northern_europe +lithuania text(was:still:in) europe +lithuania text(is:a:neighboring:state:to) poland +lithuania text(was:a:neighboring:state:to) latvia +lithuania text(borders:with) belarus +lithuania text(borders) russia +cayman_islands text(was:currently:in) caribbean +cayman_islands text(is:currently:in) americas +saint_lucia text(is:placed:in) caribbean +saint_lucia text(was:placed:in) americas +curaçao text(can:be:found:in) caribbean +curaçao text(was:situated:in) americas +caribbean text(is:situated:in) americas +southern_asia text(is:located:in) asia +middle_africa text(was:located:in) africa +northern_europe text(can:be:found:in) europe +southern_europe text(was:positioned:in) europe +western_asia text(is:positioned:in) asia +south_america text(was:sited:in) americas +polynesia text(is:sited:in) oceania +australia_and_new_zealand text(was:localized:in) oceania +western_europe text(is:localized:in) europe +eastern_africa text(was:present:in) africa +western_africa text(is:present:in) africa +eastern_europe text(is:still:in) europe +central_america text(was:still:in) americas +northern_america text(was:currently:in) americas +south-eastern_asia text(is:currently:in) asia +southern_africa text(is:placed:in) africa +eastern_asia text(was:placed:in) asia +northern_africa text(can:be:found:in) africa +melanesia text(was:situated:in) oceania +micronesia text(is:situated:in) oceania +central_asia text(is:located:in) asia +central_europe text(was:located:in) europe \ No newline at end of file diff --git a/deepsoftlog/experiments/wiki_countries/data/raw/countries_S3.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S3.tsv similarity index 100% rename from deepsoftlog/experiments/wiki_countries/data/raw/countries_S3.tsv rename to deepsoftlog/experiments/mentions_countries/data/raw/countries_S3.tsv diff --git a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_country2text.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_country2text.tsv new file mode 100644 index 0000000..b37c3b8 --- /dev/null +++ b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_country2text.tsv @@ -0,0 +1,979 @@ +text(بالاو) locatedIn text(Micronesia) +text(Palau) locatedIn text(大洋洲) +text(मालदीव) locatedIn text(南亚) +text(Maldivas) locatedIn text(آسيا) +text(ब्रुनेई) locatedIn text(Zuidoost-Azië) +text(Brunéi) locatedIn text(एशिया) +text(Brunei) neighborOf text(Maleisië) +text(日本) locatedIn text(شرق:آسيا) +text(Japan) locatedIn text(Azië) +text(Nederland) neighborOf text(ألمانيا) +text(नीदरलैण्ड) neighborOf text(बेल्जियम) +text(Turkije) neighborOf text(أرمينيا) +text(土耳其) neighborOf text(أذربيجان) +text(تركيا) neighborOf text(伊朗) +text(Turquía) neighborOf text(Greece) +text(Turkey) neighborOf text(جورجيا) +text(तुर्की) neighborOf text(保加利亚) +text(Turkije) neighborOf text(Irak) +text(土耳其) neighborOf text(Syrië) +text(अंगोला) locatedIn text(Centraal-Afrika) +text(Angola) neighborOf text(刚果民主共和国) +text(Angola) neighborOf text(Namibia) +text(安哥拉) neighborOf text(贊比亞) +text(أنغولا) neighborOf text(कांगो:गणराज्य) +text(Armenië) locatedIn text(Asia:Occidental) +text(Armenia) neighborOf text(Georgië) +text(आर्मीनिया) neighborOf text(Azerbeidzjan) +text(亞美尼亞) neighborOf text(Iran) +text(Armenia) neighborOf text(تركيا) +text(أنتيغوا:وباربودا) locatedIn text(加勒比地区) +text(Antigua:and:Barbuda) locatedIn text(美洲) +text(Esuatini) locatedIn text(إفريقيا:الجنوبية) +text(Swaziland) neighborOf text(南非) +text(एस्वातीनी) neighborOf text(موزمبيق) +text(واليس:وفوتونا) locatedIn text(Polynesia) +text(瓦利斯和富圖納) locatedIn text(أوقيانوسيا) +text(उरुग्वे) locatedIn text(South:America) +text(Uruguay) locatedIn text(महाअमेरिका) +text(Uruguay) neighborOf text(阿根廷) +text(Uruguay) neighborOf text(Brasil) +text(Zambia) locatedIn text(África:Oriental) +text(Zambia) neighborOf text(तंज़ानिया) +text(زامبيا) neighborOf text(Mozambique) +text(ज़ाम्बिया) neighborOf text(جمهورية:الكونغو:الديمقراطية) +text(Zambia) neighborOf text(Angola) +text(贊比亞) neighborOf text(波札那) +text(Zambia) neighborOf text(Zimbabue) +text(Zambia) neighborOf text(ناميبيا) +text(زامبيا) neighborOf text(मलावी) +text(塞浦路斯) locatedIn text(Eastern:Europe) +text(Chipre) locatedIn text(Europa) +text(Cyprus) neighborOf text(المملكة:المتحدة) +text(Verenigd:Koninkrijk) locatedIn text(Noord-Europa) +text(यूनाइटेड:किंगडम) locatedIn text(यूरोप) +text(المملكة:المتحدة) neighborOf text(United:Kingdom) +text(Burundi) locatedIn text(पूर्वी:अफ्रीका) +text(بوروندي) neighborOf text(कांगो:लोकतान्त्रिक:गणराज्य) +text(蒲隆地) neighborOf text(रवाण्डा) +text(Burundi) neighborOf text(坦桑尼亞) +text(Central:African:Republic) locatedIn text(África:Central) +text(Centraal-Afrikaanse:Republiek) neighborOf text(चाड) +text(República:Centroafricana) neighborOf text(República:del:Congo) +text(मध्य:अफ़्रीकी:गणराज्य) neighborOf text(República:Democrática:del:Congo) +text(中非共和國) neighborOf text(दक्षिण:सूडान) +text(جمهورية:إفريقيا:الوسطى) neighborOf text(喀麦隆) +text(Central:African:Republic) neighborOf text(السودان) +text(تونغا) locatedIn text(بولنيزيا) +text(Tonga) locatedIn text(Oceanía) +text(कोत:दिव्वार) locatedIn text(पश्चिमी:अफ्रीका) +text(科特迪瓦) neighborOf text(Burkina:Faso) +text(Ivoorkust) neighborOf text(घाना) +text(Costa:de:Marfil) neighborOf text(ليبيريا) +text(Ivory:Coast) neighborOf text(مالي) +text(ساحل:العاج) neighborOf text(غينيا) +text(Sierra:Leona) neighborOf text(Liberia) +text(塞拉利昂) neighborOf text(Guinea) +text(Mayotte) locatedIn text(East:Africa) +text(मेयोट) locatedIn text(अफ्रीका) +text(Polen) neighborOf text(德國) +text(波蘭) neighborOf text(युक्रेन) +text(Poland) neighborOf text(Slovakia) +text(पोलैंड) neighborOf text(白俄羅斯) +text(بولندا) neighborOf text(Russia) +text(Polonia) neighborOf text(Lituania) +text(Polen) neighborOf text(Czech:Republic) +text(कज़ाख़िस्तान) locatedIn text(آسيا:الوسطى) +text(Kazachstan) neighborOf text(Turkmenistan) +text(Kazajistán) neighborOf text(República:Popular:China) +text(哈萨克斯坦) neighborOf text(قرغيزستان) +text(Kazakhstan) neighborOf text(उज़्बेकिस्तान) +text(كازاخستان) neighborOf text(रूस) +text(Uzbekistan) locatedIn text(Central:Asia) +text(أوزبكستان) neighborOf text(أفغانستان) +text(乌兹别克斯坦) neighborOf text(तुर्कमेनिस्तान) +text(Uzbekistán) neighborOf text(कज़ाख़िस्तान) +text(Oezbekistan) neighborOf text(Kyrgyzstan) +text(उज़्बेकिस्तान) neighborOf text(Tadzjikistan) +text(جزر:توركس:وكايكوس) locatedIn text(कैरिबिया) +text(特克斯和凯科斯群岛) locatedIn text(Amerika) +text(新喀里多尼亞) locatedIn text(Melanesia) +text(Nieuw-Caledonië) locatedIn text(ओशिआनिया) +text(Pakistán) neighborOf text(चीनी:जनवादी:गणराज्य) +text(पाकिस्तान) neighborOf text(阿富汗) +text(Pakistan) neighborOf text(إيران) +text(باكستان) neighborOf text(الهند) +text(अर्जेण्टीना) locatedIn text(أمريكا:الجنوبية) +text(Argentinië) neighborOf text(Bolivia) +text(الأرجنتين) neighborOf text(Chili) +text(Argentina) neighborOf text(Brazil) +text(Argentina) neighborOf text(Paraguay) +text(阿根廷) neighborOf text(烏拉圭) +text(Cuba) locatedIn text(Caribbean) +text(क्यूबा) locatedIn text(América) +text(صربيا) neighborOf text(Macedonia:del:Norte) +text(Serbia) neighborOf text(मॉन्टेनीग्रो) +text(塞爾維亞) neighborOf text(科索沃) +text(Servië) neighborOf text(波斯尼亚和黑塞哥维那) +text(सर्बिया) neighborOf text(क्रोएशिया) +text(Serbia) neighborOf text(Hungría) +text(صربيا) neighborOf text(Bulgaria) +text(Serbia) neighborOf text(Romania) +text(Tsjechië) locatedIn text(东欧) +text(جمهورية:التشيك) neighborOf text(जर्मनी) +text(República:Checa) neighborOf text(ऑस्ट्रिया) +text(चेक:गणराज्य) neighborOf text(波蘭) +text(捷克) neighborOf text(Eslovaquia) +text(نيكاراغوا) neighborOf text(Honduras) +text(Nicaragua) neighborOf text(Costa:Rica) +text(Vietnam) locatedIn text(东南亚) +text(越南) locatedIn text(Asia) +text(فيتنام) neighborOf text(Camboya) +text(वियतनाम) neighborOf text(Laos) +text(Vietnam) neighborOf text(Volksrepubliek:China) +text(Niue) locatedIn text(पोलीनेशिया) +text(Niue) locatedIn text(Oceania) +text(कनाडा) locatedIn text(北美洲) +text(كندا) neighborOf text(Verenigde:Staten) +text(斯洛伐克) neighborOf text(أوكرانيا) +text(स्लोवाकिया) neighborOf text(Poland) +text(سلوفاكيا) neighborOf text(奧地利) +text(Slowakije) neighborOf text(المجر) +text(Slovakia) neighborOf text(Czech:Republic) +text(Mozambique) neighborOf text(Tanzania) +text(मोज़ाम्बीक) neighborOf text(Eswatini) +text(莫桑比克) neighborOf text(زيمبابوي) +text(Mozambique) neighborOf text(ज़ाम्बिया) +text(موزمبيق) neighborOf text(Malaui) +text(Mozambique) neighborOf text(दक्षिण:अफ़्रीका) +text(أروبا) locatedIn text(Caraïben) +text(अरूबा) locatedIn text(Americas) +text(Bolivia) locatedIn text(南美洲) +text(Bolivia) neighborOf text(智利) +text(बोलिविया) neighborOf text(巴西) +text(بوليفيا) neighborOf text(Paraguay) +text(玻利維亞) neighborOf text(अर्जेण्टीना) +text(Bolivia) neighborOf text(Perú) +text(Colombia) locatedIn text(América:del:Sur) +text(哥伦比亚) neighborOf text(厄瓜多尔) +text(Colombia) neighborOf text(Brazilië) +text(कोलम्बिया) neighborOf text(Panama) +text(كولومبيا) neighborOf text(فنزويلا) +text(Colombia) neighborOf text(بيرو) +text(斐濟) locatedIn text(Melanesia) +text(फ़िजी) locatedIn text(Oceanië) +text(جمهورية:الكونغو) neighborOf text(الغابون) +text(剛果共和國) neighborOf text(Congo-Kinshasa) +text(Congo-Brazzaville) neighborOf text(अंगोला) +text(Republic:of:the:Congo) neighborOf text(الكاميرون) +text(कांगो:गणराज्य) neighborOf text(Centraal-Afrikaanse:Republiek) +text(السعودية) neighborOf text(Catar) +text(सउदी:अरब) neighborOf text(संयुक्त:अरब:अमीरात) +text(Saudi:Arabia) neighborOf text(Jordan) +text(Saoedi-Arabië) neighborOf text(اليمن) +text(Arabia:Saudí) neighborOf text(Oman) +text(沙特阿拉伯) neighborOf text(科威特) +text(السعودية) neighborOf text(العراق) +text(El:Salvador) locatedIn text(Central:America) +text(अल:साल्वाडोर) neighborOf text(Guatemala) +text(السلفادور) neighborOf text(Honduras) +text(Madagascar) locatedIn text(شرق:إفريقيا) +text(Madagaskar) locatedIn text(非洲) +text(Australië) locatedIn text(nan) +text(澳大利亚) locatedIn text(大洋洲) +text(नामीबिया) locatedIn text(Zuidelijk:Afrika) +text(Namibië) locatedIn text(إفريقيا) +text(纳米比亚) neighborOf text(Zambia) +text(Namibia) neighborOf text(Angola) +text(Namibia) neighborOf text(Zuid-Afrika) +text(ناميبيا) neighborOf text(Botsuana) +text(吐瓦魯) locatedIn text(玻里尼西亞) +text(Tuvalu) locatedIn text(أوقيانوسيا) +text(سفالبارد:ويان:ماين) locatedIn text(Europa:del:Norte) +text(Svalbard:and:Jan:Mayen) locatedIn text(Europe) +text(马恩岛) locatedIn text(北歐) +text(आइल:ऑफ़:मैन) locatedIn text(Europa) +text(圭亚那) neighborOf text(ब्राज़ील) +text(Guyana) neighborOf text(سورينام) +text(غيانا) neighborOf text(委內瑞拉) +text(الفاتيكان) locatedIn text(أوروبا:الجنوبية) +text(Vatican:City) locatedIn text(أوروبا) +text(वैटिकन:नगर) neighborOf text(Italia) +text(ब्रिटिश:हिंद:महासागर:क्षेत्र) locatedIn text(Oost-Afrika) +text(إقليم:المحيط:الهندي:البريطاني) locatedIn text(Africa) +text(Nigeria) locatedIn text(West:Africa) +text(Nigeria) locatedIn text(África) +text(नाइजीरिया) neighborOf text(Chad) +text(奈及利亞) neighborOf text(尼日尔) +text(نيجيريا) neighborOf text(Kameroen) +text(Nigeria) neighborOf text(बेनिन) +text(Duitsland) neighborOf text(Dinamarca) +text(Alemania) neighborOf text(Países:Bajos) +text(Germany) neighborOf text(पोलैंड) +text(ألمانيا) neighborOf text(Luxemburgo) +text(德國) neighborOf text(Bélgica) +text(जर्मनी) neighborOf text(Suiza) +text(Duitsland) neighborOf text(Austria) +text(Alemania) neighborOf text(France) +text(Germany) neighborOf text(Tsjechië) +text(Burkina:Faso) neighborOf text(Togo) +text(بوركينا:فاسو) neighborOf text(Benin) +text(Burkina:Faso) neighborOf text(नाइजर) +text(बुर्किना:फासो) neighborOf text(Ghana) +text(布吉納法索) neighborOf text(Mali) +text(Burkina:Faso) neighborOf text(कोत:दिव्वार) +text(تنزانيا) neighborOf text(Uganda) +text(Tanzania) neighborOf text(Mozambique) +text(Tanzania) neighborOf text(Democratic:Republic:of:the:Congo) +text(तंज़ानिया) neighborOf text(Kenia) +text(坦桑尼亞) neighborOf text(Ruanda) +text(Tanzania) neighborOf text(贊比亞) +text(تنزانيا) neighborOf text(馬拉威) +text(Tanzania) neighborOf text(बुरुण्डी) +text(Northern:Mariana:Islands) locatedIn text(Micronesia) +text(北马里亚纳群岛) locatedIn text(Oceanía) +text(Belize) locatedIn text(أمريكا:الوسطى) +text(बेलीज़) neighborOf text(Guatemala) +text(Belice) neighborOf text(墨西哥) +text(नॉर्वे) neighborOf text(Zweden) +text(النرويج) neighborOf text(Finlandia) +text(Noorwegen) neighborOf text(俄罗斯) +text(islas:Cocos) locatedIn text(nan) +text(科科斯(基林)群島) locatedIn text(ओशिआनिया) +text(Laos) locatedIn text(Southeast:Asia) +text(लाओस) neighborOf text(People's:Republic:of:China) +text(Laos) neighborOf text(कम्बोडिया) +text(لاوس) neighborOf text(ميانمار) +text(老撾) neighborOf text(Vietnam) +text(Laos) neighborOf text(Thailand) +text(Sahrawi:Arab:Democratic:Republic) locatedIn text(उत्तर:अफ़्रीका) +text(República:Árabe:Saharaui:Democrática) neighborOf text(Argelia) +text(सहरावी:अरब:जनतांत्रिक:गणराज्य) neighborOf text(मॉरीतानिया) +text(撒拉威阿拉伯民主共和國) neighborOf text(Marruecos) +text(Suriname) locatedIn text(दक्षिण:अमेरिका) +text(सूरीनाम) neighborOf text(البرازيل) +text(Suriname) neighborOf text(غويانا:الفرنسية) +text(Surinam) neighborOf text(Guyana) +text(جزيرة:عيد:الميلاد) locatedIn text(Australië:en:Nieuw-Zeeland) +text(क्रिसमस:द्वीप) locatedIn text(Oceania) +text(圣多美和普林西比) locatedIn text(وسط:إفريقيا) +text(Sao:Tomé:en:Principe) locatedIn text(Afrika) +text(Egipto) neighborOf text(Libië) +text(Egypte) neighborOf text(Israël) +text(埃及) neighborOf text(Sudan) +text(Bulgaria) neighborOf text(北马其顿) +text(Bulgarije) neighborOf text(Turquía) +text(बुल्गारिया) neighborOf text(यूनान) +text(بلغاريا) neighborOf text(塞爾維亞) +text(保加利亚) neighborOf text(羅馬尼亞) +text(गिनी) locatedIn text(西非) +text(Guinee) neighborOf text(غينيا:بيساو) +text(几内亚) neighborOf text(सिएरा:लियोन) +text(Guinea) neighborOf text(马里) +text(غينيا) neighborOf text(Liberia) +text(Guinea) neighborOf text(Senegal) +text(गिनी) neighborOf text(科特迪瓦) +text(Spanje) neighborOf text(Morocco) +text(إسبانيا) neighborOf text(Gibraltar) +text(España) neighborOf text(Andorra) +text(स्पेन) neighborOf text(Francia) +text(西班牙) neighborOf text(Portugal) +text(كوستاريكا) locatedIn text(Centraal-Amerika) +text(Costa:Rica) neighborOf text(بنما) +text(哥斯达黎加) neighborOf text(Nicaragua) +text(馬耳他) locatedIn text(दक्षिणी:यूरोप) +text(Malta) locatedIn text(欧洲) +text(Portugal) locatedIn text(Southern:Europe) +text(पुर्तगाल) neighborOf text(Spain) +text(Roemenië) locatedIn text(أوروبا:الشرقية) +text(رومانيا) neighborOf text(Oekraïne) +text(रोमानिया) neighborOf text(Hungary) +text(Rumania) neighborOf text(मोल्डोवा) +text(Romania) neighborOf text(Bulgaria) +text(羅馬尼亞) neighborOf text(Servië) +text(San:Marino) locatedIn text(Zuid-Europa) +text(San:Marino) locatedIn text(Europa) +text(सान:मारिनो) neighborOf text(इटली) +text(Mauritanië) locatedIn text(África:Occidental) +text(毛里塔尼亞) locatedIn text(अफ्रीका) +text(Mauritania) neighborOf text(الجزائر) +text(Mauritania) neighborOf text(माली) +text(موريتانيا) neighborOf text(Sahrawi:Arabische:Democratische:Republiek) +text(मॉरीतानिया) neighborOf text(Senegal) +text(千里達及托巴哥) locatedIn text(Caribe) +text(Trinidad:and:Tobago) locatedIn text(أمريكتان) +text(Bahrein) locatedIn text(西亚) +text(البحرين) locatedIn text(Asia) +text(緬甸) neighborOf text(India) +text(Birmania) neighborOf text(Bangladés) +text(Myanmar) neighborOf text(中华人民共和国) +text(म्यान्मार) neighborOf text(Laos) +text(Myanmar) neighborOf text(تايلاند) +text(इराक) neighborOf text(Turkey) +text(Irak) neighborOf text(सउदी:अरब) +text(伊拉克) neighborOf text(Iran) +text(Iraq) neighborOf text(Jordania) +text(Irak) neighborOf text(Kuwait) +text(العراق) neighborOf text(Syria) +text(Islas:Georgias:del:Sur:y:Sandwich:del:Sur) locatedIn text(Zuid-Amerika) +text(दक्षिण:जॉर्जिया:एवं:दक्षिण:सैंडविच:द्वीप:समूह) locatedIn text(美洲) +text(आइसलैण्ड) locatedIn text(أوروبا:الشمالية) +text(Iceland) locatedIn text(यूरोप) +text(刚果民主共和国) locatedIn text(Central:Africa) +text(جمهورية:الكونغو:الديمقراطية) neighborOf text(Uganda) +text(कांगो:लोकतान्त्रिक:गणराज्य) neighborOf text(Tanzania) +text(República:Democrática:del:Congo) neighborOf text(República:del:Congo) +text(Congo-Kinshasa) neighborOf text(República:Centroafricana) +text(Democratic:Republic:of:the:Congo) neighborOf text(Angola) +text(刚果民主共和国) neighborOf text(Rwanda) +text(جمهورية:الكونغو:الديمقراطية) neighborOf text(Sudán:del:Sur) +text(कांगो:लोकतान्त्रिक:गणराज्य) neighborOf text(Zambia) +text(República:Democrática:del:Congo) neighborOf text(Burundi) +text(Seychelles) locatedIn text(东部非洲) +text(سيشل) locatedIn text(非洲) +text(किर्गिज़स्तान) neighborOf text(الصين) +text(Kirgizië) neighborOf text(Kazachstan) +text(Kirguistán) neighborOf text(طاجيكستان) +text(吉尔吉斯斯坦) neighborOf text(Uzbekistan) +text(Botswana) locatedIn text(Southern:Africa) +text(बोत्सवाना) neighborOf text(津巴布韦) +text(بوتسوانا) neighborOf text(नामीबिया) +text(Botswana) neighborOf text(Zambia) +text(波札那) neighborOf text(South:Africa) +text(Islas:Feroe) locatedIn text(Northern:Europe) +text(Faroe:Islands) locatedIn text(Europe) +text(جامايكا) locatedIn text(الكاريبي) +text(牙買加) locatedIn text(महाअमेरिका) +text(美屬薩摩亞) locatedIn text(Polynesië) +text(American:Samoa) locatedIn text(Oceanië) +text(ليسوتو) locatedIn text(दक्षिणी:अफ्रीका) +text(Lesotho) locatedIn text(إفريقيا) +text(莱索托) neighborOf text(Sudáfrica) +text(Sri:Lanka) neighborOf text(भारत) +text(بلجيكا) locatedIn text(Western:Europe) +text(België) neighborOf text(ألمانيا) +text(Belgium) neighborOf text(Luxemburg) +text(比利時) neighborOf text(فرنسا) +text(बेल्जियम) neighborOf text(荷蘭) +text(क़तर) locatedIn text(West:Asia) +text(Qatar) neighborOf text(Saudi:Arabia) +text(सोलोमन:द्वीपसमूह) locatedIn text(ميلانيزيا) +text(Salomonseilanden) locatedIn text(大洋洲) +text(敘利亞) locatedIn text(غرب:آسيا) +text(سوريا) neighborOf text(إسرائيل) +text(सीरिया) neighborOf text(तुर्की) +text(Siria) neighborOf text(الأردن) +text(Syrië) neighborOf text(黎巴嫩) +text(Syria) neighborOf text(इराक) +text(印度) locatedIn text(Asia:del:Sur) +text(India) neighborOf text(अफ़्ग़ानिस्तान) +text(India) neighborOf text(Bhutan) +text(الهند) neighborOf text(孟加拉國) +text(India) neighborOf text(República:Popular:China) +text(भारत) neighborOf text(نيبال) +text(印度) neighborOf text(ميانمار) +text(India) neighborOf text(巴基斯坦) +text(India) neighborOf text(سريلانكا) +text(المغرب) neighborOf text(अल्जीरिया) +text(मोरक्को) neighborOf text(Spanje) +text(摩洛哥) neighborOf text(الجمهورية:العربية:الصحراوية:الديمقراطية) +text(Kenia) locatedIn text(África:Oriental) +text(Kenya) neighborOf text(أوغندا) +text(कीनिया) neighborOf text(तंज़ानिया) +text(肯尼亚) neighborOf text(Somalië) +text(كينيا) neighborOf text(南蘇丹) +text(Kenia) neighborOf text(Etiopía) +text(Zuid-Soedan) locatedIn text(मध्य:अफ्रीका) +text(جنوب:السودان) neighborOf text(Oeganda) +text(South:Sudan) neighborOf text(Congo-Kinshasa) +text(दक्षिण:सूडान) neighborOf text(Kenia) +text(Sudán:del:Sur) neighborOf text(मध्य:अफ़्रीकी:गणराज्य) +text(南蘇丹) neighborOf text(Sudán) +text(Zuid-Soedan) neighborOf text(إثيوبيا) +text(Ghana) neighborOf text(Burkina:Faso) +text(迦納) neighborOf text(Ivoorkust) +text(غانا) neighborOf text(多哥) +text(ताजीकिस्तान) locatedIn text(Centraal-Azië) +text(Tayikistán) neighborOf text(चीनी:जनवादी:गणराज्य) +text(塔吉克斯坦) neighborOf text(قرغيزستان) +text(Tajikistan) neighborOf text(Afghanistan) +text(Tadzjikistan) neighborOf text(أوزبكستان) +text(馬紹爾群島) locatedIn text(ميكرونيسيا) +text(मार्शल:द्वीपसमूह) locatedIn text(أوقيانوسيا) +text(Cameroon) locatedIn text(中部非洲) +text(Camerún) neighborOf text(Tsjaad) +text(कैमरुन) neighborOf text(جمهورية:الكونغو) +text(喀麦隆) neighborOf text(गबॉन) +text(الكاميرون) neighborOf text(赤道几内亚) +text(Kameroen) neighborOf text(中非共和國) +text(Cameroon) neighborOf text(Nigeria) +text(Nauru) locatedIn text(माइक्रोनीशिया) +text(Nauru) locatedIn text(Oceanía) +text(Thailand) neighborOf text(Cambodja) +text(थाईलैंड) neighborOf text(緬甸) +text(泰國) neighborOf text(लाओस) +text(Tailandia) neighborOf text(Malaysia) +text(सूडान) neighborOf text(Chad) +text(苏丹) neighborOf text(ليبيا) +text(Soedan) neighborOf text(جنوب:السودان) +text(السودان) neighborOf text(Eritrea) +text(Sudan) neighborOf text(جمهورية:إفريقيا:الوسطى) +text(Sudán) neighborOf text(مصر) +text(सूडान) neighborOf text(埃塞俄比亚) +text(تشاد) locatedIn text(Centraal-Afrika) +text(乍得) neighborOf text(利比亞) +text(चाड) neighborOf text(Níger) +text(Chad) neighborOf text(South:Sudan) +text(Tsjaad) neighborOf text(Camerún) +text(Chad) neighborOf text(Central:African:Republic) +text(تشاد) neighborOf text(Nigeria) +text(Vanuatu) locatedIn text(मॅलानिशिया) +text(Vanuatu) locatedIn text(ओशिआनिया) +text(केप:वर्दे) locatedIn text(West-Afrika) +text(Cabo:Verde) locatedIn text(Africa) +text(Falkland:Islands) locatedIn text(South:America) +text(Falklandeilanden) locatedIn text(Amerika) +text(Liberia) locatedIn text(غرب:إفريقيا) +text(लाइबेरिया) neighborOf text(Costa:de:Marfil) +text(利比里亞) neighborOf text(سيراليون) +text(ليبيريا) neighborOf text(Guinee) +text(كمبوديا) locatedIn text(جنوب:شرق:آسيا) +text(柬埔寨) neighborOf text(Vietnam) +text(Cambodia) neighborOf text(Thailand) +text(Camboya) neighborOf text(Laos) +text(ज़िम्बाब्वे) neighborOf text(زامبيا) +text(Zimbabwe) neighborOf text(جنوب:إفريقيا) +text(Zimbabwe) neighborOf text(Botsuana) +text(Zimbabue) neighborOf text(मोज़ाम्बीक) +text(Comoren) locatedIn text(पूर्वी:अफ्रीका) +text(葛摩) locatedIn text(África) +text(Guam) locatedIn text(Micronesië) +text(Guam) locatedIn text(Oceania) +text(Bahama's) locatedIn text(加勒比地区) +text(Bahamas) locatedIn text(América) +text(लेबनॉन) locatedIn text(पश्चिमी:एशिया) +text(Libanon) locatedIn text(亞洲) +text(Líbano) neighborOf text(以色列) +text(Lebanon) neighborOf text(敘利亞) +text(سانت:مارتن) locatedIn text(कैरिबिया) +text(San:Martín) locatedIn text(Americas) +text(Sint:Maarten) neighborOf text(San:Martín) +text(इथियोपिया) locatedIn text(East:Africa) +text(Ethiopië) neighborOf text(Somalia) +text(Ethiopia) neighborOf text(Kenya) +text(Etiopía) neighborOf text(Eritrea) +text(إثيوبيا) neighborOf text(दक्षिण:सूडान) +text(埃塞俄比亚) neighborOf text(जिबूती) +text(इथियोपिया) neighborOf text(苏丹) +text(United:States:Virgin:Islands) locatedIn text(Caribbean) +text(Amerikaanse:Maagdeneilanden) locatedIn text(أمريكتان) +text(Guinea-Bisáu) locatedIn text(पश्चिमी:अफ्रीका) +text(Guinea-Bissau) locatedIn text(Afrika) +text(畿內亞比紹) neighborOf text(几内亚) +text(Guinee-Bissau) neighborOf text(塞内加尔) +text(Libya) locatedIn text(Norte:de:África) +text(Libia) neighborOf text(乍得) +text(लीबिया) neighborOf text(تونس) +text(Libië) neighborOf text(النيجر) +text(ليبيا) neighborOf text(Algerije) +text(利比亞) neighborOf text(Egypt) +text(Libya) neighborOf text(Soedan) +text(Bhutan) locatedIn text(Zuid-Azië) +text(भूटान) locatedIn text(آسيا) +text(不丹) neighborOf text(Volksrepubliek:China) +text(بوتان) neighborOf text(الهند) +text(Macau) locatedIn text(East:Asia) +text(Macao) locatedIn text(एशिया) +text(澳門) neighborOf text(People's:Republic:of:China) +text(Polinesia:Francesa) locatedIn text(Polinesia) +text(بولنيزيا:الفرنسية) locatedIn text(Oceanië) +text(الصومال) locatedIn text(شرق:إفريقيا) +text(सोमालिया) neighborOf text(吉布提) +text(Somalia) neighborOf text(कीनिया) +text(索馬里) neighborOf text(Ethiopië) +text(聖巴泰勒米) locatedIn text(Caraïben) +text(San:Bartolomé) locatedIn text(美洲) +text(روسيا) locatedIn text(Europa:Oriental) +text(Rusia) neighborOf text(Ukraine) +text(Rusland) neighborOf text(बेलारूस) +text(Russia) neighborOf text(中华人民共和国) +text(रूस) neighborOf text(Kazajistán) +text(俄罗斯) neighborOf text(挪威) +text(روسيا) neighborOf text(بولندا) +text(Rusia) neighborOf text(Azerbaiyán) +text(Rusland) neighborOf text(Litouwen) +text(Russia) neighborOf text(إستونيا) +text(रूस) neighborOf text(Corea:del:Norte) +text(俄罗斯) neighborOf text(Finland) +text(روسيا) neighborOf text(Mongolia) +text(Rusia) neighborOf text(拉脫維亞) +text(Rusland) neighborOf text(Georgia) +text(न्यूज़ीलैंड) locatedIn text(nan) +text(Nueva:Zelanda) locatedIn text(大洋洲) +text(Panamá) locatedIn text(América:Central) +text(Panama) locatedIn text(महाअमेरिका) +text(巴拿馬) neighborOf text(Costa:Rica) +text(पनामा) neighborOf text(Colombia) +text(بابوا:غينيا:الجديدة) locatedIn text(美拉尼西亞) +text(Papoea-Nieuw-Guinea) neighborOf text(Indonesië) +text(उत्तर:कोरिया) neighborOf text(الصين) +text(كوريا:الشمالية) neighborOf text(South:Korea) +text(朝鮮民主主義人民共和國) neighborOf text(Russia) +text(Letonia) locatedIn text(उत्तरी:यूरोप) +text(लातविया) neighborOf text(लिथुआनिया) +text(Letland) neighborOf text(Bielorrusia) +text(لاتفيا) neighborOf text(रूस) +text(Latvia) neighborOf text(Estonia) +text(سلطنة:عمان) locatedIn text(Zuidwest-Azië) +text(ओमान) neighborOf text(Saoedi-Arabië) +text(阿曼) neighborOf text(Yemen) +text(Oman) neighborOf text(阿拉伯联合酋长国) +text(Saint-Pierre:en:Miquelon) locatedIn text(أمريكا:الشمالية) +text(Saint:Pierre:and:Miquelon) locatedIn text(Amerika) +text(Martinica) locatedIn text(Caribe) +text(Martinique) locatedIn text(América) +text(英国) locatedIn text(Noord-Europa) +text(Verenigd:Koninkrijk) locatedIn text(Europa) +text(यूनाइटेड:किंगडम) neighborOf text(United:Kingdom) +text(Israel) locatedIn text(Asia:Occidental) +text(Israel) neighborOf text(لبنان) +text(इज़राइल) neighborOf text(मिस्र) +text(Israël) neighborOf text(約旦) +text(إسرائيل) neighborOf text(سوريا) +text(جيرزي) locatedIn text(Europa:del:Norte) +text(जर्सी) locatedIn text(أوروبا) +text(Pitcairn:Islands) locatedIn text(Polynesia) +text(皮特凯恩群岛) locatedIn text(أوقيانوسيا) +text(टोगो) locatedIn text(West:Africa) +text(توغو) neighborOf text(بوركينا:فاسو) +text(Togo) neighborOf text(Ghana) +text(Togo) neighborOf text(貝南) +text(किरिबाती) locatedIn text(密克羅尼西亞群島) +text(吉里巴斯) locatedIn text(Oceanía) +text(ईरान) locatedIn text(جنوب:آسيا) +text(Irán) neighborOf text(Afghanistan) +text(伊朗) neighborOf text(Turkmenistán) +text(Iran) neighborOf text(Turkije) +text(إيران) neighborOf text(أرمينيا) +text(Iran) neighborOf text(Azerbaijan) +text(ईरान) neighborOf text(Pakistan) +text(Irán) neighborOf text(Irak) +text(Sint-Maarten) locatedIn text(الكاريبي) +text(सेंट:मार्टिन:की:सामूहिकता) locatedIn text(Americas) +text(تجمع:سان:مارتين) neighborOf text(सेंट:मार्टिन) +text(Dominicaanse:Republiek) locatedIn text(加勒比地区) +text(डोमिनिकन:गणराज्य) locatedIn text(أمريكتان) +text(República:Dominicana) neighborOf text(Haiti) +text(डेनमार्क) neighborOf text(德國) +text(Bermuda) locatedIn text(América:del:Norte) +text(Bermudas) locatedIn text(美洲) +text(تشيلي) neighborOf text(Argentinië) +text(चिली) neighborOf text(Bolivia) +text(Chile) neighborOf text(Peru) +text(Kosovo) locatedIn text(पूर्वी:यूरोप) +text(कोसोवो:गणराज्य) neighborOf text(सर्बिया) +text(Kosovo) neighborOf text(Albanië) +text(Kosovo) neighborOf text(Noord-Macedonië) +text(كوسوفو) neighborOf text(Montenegro) +text(Saint:Kitts:and:Nevis) locatedIn text(कैरिबिया) +text(سانت:كيتس:ونيفيس) locatedIn text(महाअमेरिका) +text(इरित्रिया) neighborOf text(Djibouti) +text(厄立特里亞) neighborOf text(السودان) +text(Eritrea) neighborOf text(Ethiopia) +text(भूमध्यरेखीय:गिनी) locatedIn text(África:Central) +text(Guinea:Ecuatorial) locatedIn text(अफ्रीका) +text(Equatorial:Guinea) neighborOf text(Gabon) +text(غينيا:الاستوائية) neighborOf text(कैमरुन) +text(Niger) locatedIn text(西非) +text(Niger) neighborOf text(चाड) +text(尼日尔) neighborOf text(Libia) +text(नाइजर) neighborOf text(Burkina:Faso) +text(Níger) neighborOf text(بنين) +text(النيجر) neighborOf text(Mali) +text(Niger) neighborOf text(Algeria) +text(Niger) neighborOf text(नाइजीरिया) +text(安圭拉) locatedIn text(Caribbean) +text(Anguilla) locatedIn text(Amerika) +text(رواندا) locatedIn text(Oost-Afrika) +text(卢旺达) neighborOf text(Burundi) +text(Rwanda) neighborOf text(坦桑尼亞) +text(रवाण्डा) neighborOf text(烏干達) +text(Ruanda) neighborOf text(Democratic:Republic:of:the:Congo) +text(الإمارات:العربية:المتحدة) locatedIn text(西亚) +text(Verenigde:Arabische:Emiraten) neighborOf text(Omán) +text(United:Arab:Emirates) neighborOf text(Arabia:Saudí) +text(Estland) locatedIn text(北歐) +text(एस्टोनिया) locatedIn text(欧洲) +text(Estonia) neighborOf text(拉脫維亞) +text(愛沙尼亞) neighborOf text(俄罗斯) +text(Griekenland) locatedIn text(Europa:del:Sur) +text(Grecia) neighborOf text(Bulgaria) +text(希腊) neighborOf text(Albania) +text(اليونان) neighborOf text(North:Macedonia) +text(Greece) neighborOf text(土耳其) +text(Senegal) locatedIn text(África:Occidental) +text(सेनेगल) locatedIn text(非洲) +text(السنغال) neighborOf text(गिनी-बिसाऊ) +text(Senegal) neighborOf text(Mauritanië) +text(Senegal) neighborOf text(Mali) +text(塞内加尔) neighborOf text(Gambia) +text(Senegal) neighborOf text(Guinea) +text(غوادلوب) locatedIn text(Caraïben) +text(瓜德羅普) locatedIn text(América) +text(Monaco) neighborOf text(फ़्रान्स) +text(Djibouti) neighborOf text(إرتريا) +text(Yibuti) neighborOf text(Somalië) +text(جيبوتي) neighborOf text(Etiopía) +text(इंडोनेशिया) neighborOf text(Papua:New:Guinea) +text(Indonesia) neighborOf text(Oost-Timor) +text(印度尼西亚) neighborOf text(Malasia) +text(Islas:Vírgenes:Británicas) locatedIn text(Caribe) +text(ब्रिटिश:वर्जिन:द्वीपसमूह) locatedIn text(Americas) +text(库克群岛) locatedIn text(بولنيزيا) +text(Cookeilanden) locatedIn text(ओशिआनिया) +text(युगाण्डा) locatedIn text(东部非洲) +text(Uganda) neighborOf text(Tanzania) +text(Uganda) neighborOf text(刚果民主共和国) +text(أوغندا) neighborOf text(肯尼亚) +text(Oeganda) neighborOf text(Sudán:del:Sur) +text(烏干達) neighborOf text(Rwanda) +text(مقدونيا:الشمالية) locatedIn text(南欧) +text(उत्तर:मैसिडोनिया) neighborOf text(科索沃) +text(Macedonia:del:Norte) neighborOf text(यूनान) +text(北马其顿) neighborOf text(Albania) +text(Noord-Macedonië) neighborOf text(Serbia) +text(North:Macedonia) neighborOf text(Bulgarije) +text(Túnez) locatedIn text(شمال:إفريقيا) +text(突尼西亞) locatedIn text(إفريقيا) +text(Tunisia) neighborOf text(लीबिया) +text(ट्यूनिशिया) neighborOf text(阿爾及利亞) +text(Ecuador) neighborOf text(पेरू) +text(ईक्वाडोर) neighborOf text(哥伦比亚) +text(Brasil) locatedIn text(أمريكا:الجنوبية) +text(Brazil) neighborOf text(Bolivia) +text(巴西) neighborOf text(Colombia) +text(Brazilië) neighborOf text(巴拉圭) +text(ब्राज़ील) neighborOf text(الأوروغواي) +text(البرازيل) neighborOf text(法屬圭亞那) +text(Brasil) neighborOf text(蘇利南) +text(Brazil) neighborOf text(Venezuela) +text(巴西) neighborOf text(الأرجنتين) +text(Brazilië) neighborOf text(Guyana) +text(ब्राज़ील) neighborOf text(秘鲁) +text(पैराग्वे) locatedIn text(南美洲) +text(Paraguay) locatedIn text(أمريكتان) +text(باراغواي) neighborOf text(Argentina) +text(Paraguay) neighborOf text(البرازيل) +text(Paraguay) neighborOf text(बोलिविया) +text(芬蘭) locatedIn text(أوروبا:الشمالية) +text(فنلندا) neighborOf text(Norway) +text(Finland) neighborOf text(स्वीडन) +text(फ़िनलैण्ड) neighborOf text(روسيا) +text(Jordanië) neighborOf text(沙特阿拉伯) +text(जॉर्डन) neighborOf text(以色列) +text(Jordan) neighborOf text(伊拉克) +text(Jordania) neighborOf text(सीरिया) +text(تيمور:الشرقية) neighborOf text(إندونيسيا) +text(الجبل:الأسود) locatedIn text(أوروبا:الجنوبية) +text(蒙特內哥羅) neighborOf text(Kosovo) +text(Montenegro) neighborOf text(Bosnia:and:Herzegovina) +text(Montenegro) neighborOf text(Kroatië) +text(मॉन्टेनीग्रो) neighborOf text(صربيا) +text(Montenegro) neighborOf text(ألبانيا) +text(Peru) locatedIn text(América:del:Sur) +text(Perú) neighborOf text(الإكوادور) +text(بيرو) neighborOf text(بوليفيا) +text(Peru) neighborOf text(Chile) +text(पेरू) neighborOf text(Brasil) +text(秘鲁) neighborOf text(कोलम्बिया) +text(Montserrat) locatedIn text(الكاريبي) +text(蒙塞拉特島) locatedIn text(美洲) +text(Ucrania) locatedIn text(Oost-Europa) +text(烏克蘭) neighborOf text(Eslovaquia) +text(युक्रेन) neighborOf text(Belarus) +text(أوكرانيا) neighborOf text(Polonia) +text(Oekraïne) neighborOf text(Rusia) +text(Ukraine) neighborOf text(匈牙利) +text(Ucrania) neighborOf text(Moldova) +text(烏克蘭) neighborOf text(Roemenië) +text(Dominica) locatedIn text(加勒比地区) +text(多米尼克) locatedIn text(महाअमेरिका) +text(Turkmenistan) neighborOf text(哈萨克斯坦) +text(تركمانستان) neighborOf text(Afganistán) +text(土庫曼斯坦) neighborOf text(乌兹别克斯坦) +text(Turkmenistan) neighborOf text(伊朗) +text(Guernsey) locatedIn text(Northern:Europe) +text(Guernsey) locatedIn text(Europa) +text(直布羅陀) locatedIn text(दक्षिणी:यूरोप) +text(جبل:طارق) neighborOf text(إسبانيا) +text(स्विट्ज़रलैण्ड) locatedIn text(西欧) +text(瑞士) neighborOf text(जर्मनी) +text(سويسرا) neighborOf text(Italy) +text(Zwitserland) neighborOf text(Austria) +text(Switzerland) neighborOf text(法國) +text(Suiza) neighborOf text(लिक्टेन्स्टाइन) +text(Oostenrijk) locatedIn text(पश्चिमी:यूरोप) +text(النمسا) neighborOf text(Duitsland) +text(ऑस्ट्रिया) neighborOf text(斯洛伐克) +text(奧地利) neighborOf text(斯洛文尼亞) +text(Austria) neighborOf text(إيطاليا) +text(Austria) neighborOf text(स्विट्ज़रलैण्ड) +text(Oostenrijk) neighborOf text(Hongarije) +text(النمسا) neighborOf text(Liechtenstein) +text(ऑस्ट्रिया) neighborOf text(جمهورية:التشيك) +text(हंगरी) neighborOf text(युक्रेन) +text(Hungría) neighborOf text(स्लोवाकिया) +text(المجر) neighborOf text(Eslovenia) +text(Hungary) neighborOf text(Croatia) +text(匈牙利) neighborOf text(奧地利) +text(Hongarije) neighborOf text(Serbia) +text(हंगरी) neighborOf text(رومانيا) +text(مالاوي) locatedIn text(África:Oriental) +text(Malawi) neighborOf text(ज़ाम्बिया) +text(Malawi) neighborOf text(تنزانيا) +text(मलावी) neighborOf text(莫桑比克) +text(هونغ:كونغ) neighborOf text(República:Popular:China) +text(ليختنشتاين) locatedIn text(West-Europa) +text(Liechtenstein) locatedIn text(यूरोप) +text(列支敦斯登) neighborOf text(瑞士) +text(Liechtenstein) neighborOf text(Austria) +text(Barbados) locatedIn text(कैरिबिया) +text(باربادوس) locatedIn text(Amerika) +text(जॉर्जिया) locatedIn text(West:Asia) +text(格鲁吉亚) neighborOf text(Armenië) +text(Georgia) neighborOf text(阿塞拜疆) +text(جورجيا) neighborOf text(Rusland) +text(Georgië) neighborOf text(تركيا) +text(阿爾巴尼亞) locatedIn text(Southern:Europe) +text(अल्बानिया) locatedIn text(Europe) +text(Albanië) neighborOf text(الجبل:الأسود) +text(Albania) neighborOf text(مقدونيا:الشمالية) +text(Albania) neighborOf text(कोसोवो:गणराज्य) +text(ألبانيا) neighborOf text(Griekenland) +text(Kuwait) locatedIn text(غرب:آسيا) +text(कुवैत) neighborOf text(السعودية) +text(Koeweit) neighborOf text(Iraq) +text(南非) locatedIn text(南部非洲) +text(दक्षिण:अफ़्रीका) neighborOf text(Mozambique) +text(Zuid-Afrika) neighborOf text(Botswana) +text(South:Africa) neighborOf text(斯威士兰) +text(Sudáfrica) neighborOf text(زيمبابوي) +text(جنوب:إفريقيا) neighborOf text(Namibië) +text(南非) neighborOf text(Lesoto) +text(हैती) locatedIn text(Caribbean) +text(هايتي) locatedIn text(América) +text(海地) neighborOf text(Dominican:Republic) +text(أفغانستان) locatedIn text(दक्षिण:एशिया) +text(阿富汗) neighborOf text(तुर्कमेनिस्तान) +text(अफ़्ग़ानिस्तान) neighborOf text(चीनी:जनवादी:गणराज्य) +text(Afghanistan) neighborOf text(طاجيكستان) +text(Afghanistan) neighborOf text(Uzbekistán) +text(Afganistán) neighborOf text(Iran) +text(أفغانستان) neighborOf text(Pakistán) +text(新加坡) locatedIn text(Sudeste:Asiático) +text(Singapore) locatedIn text(Azië) +text(Benin) locatedIn text(West-Afrika) +text(Benín) neighborOf text(尼日尔) +text(बेनिन) neighborOf text(बुर्किना:फासो) +text(Benin) neighborOf text(Togo) +text(貝南) neighborOf text(奈及利亞) +text(Åland) locatedIn text(उत्तरी:यूरोप) +text(جزر:أولاند) locatedIn text(Europa) +text(Croacia) locatedIn text(Zuid-Europa) +text(克羅地亞) neighborOf text(Slovenië) +text(كرواتيا) neighborOf text(Bosnië:en:Herzegovina) +text(क्रोएशिया) neighborOf text(Hungría) +text(Kroatië) neighborOf text(塞爾維亞) +text(Croatia) neighborOf text(蒙特內哥羅) +text(Sweden) locatedIn text(Noord-Europa) +text(السويد) neighborOf text(Noruega) +text(瑞典) neighborOf text(Finlandia) +text(México) neighborOf text(بليز) +text(Mexico) neighborOf text(美國) +text(Mexico) neighborOf text(危地马拉) +text(Groenlandia) locatedIn text(उत्तर:अमेरिका) +text(ग्रीनलैण्ड) locatedIn text(Americas) +text(皮特凯恩群岛) locatedIn text(Australia:and:New:Zealand) +text(Islas:Pitcairn) locatedIn text(Oceania) +text(नेपाल) locatedIn text(South:Asia) +text(尼泊爾) locatedIn text(Asia) +text(Nepal) neighborOf text(Volksrepubliek:China) +text(Nepal) neighborOf text(India) +text(ग्वाटेमाला) neighborOf text(伯利兹) +text(غواتيمالا) neighborOf text(薩爾瓦多) +text(Guatemala) neighborOf text(मेक्सिको) +text(Guatemala) neighborOf text(Honduras) +text(كوريا:الجنوبية) locatedIn text(Oost-Azië) +text(Zuid-Korea) neighborOf text(North:Korea) +text(Moldavië) locatedIn text(Eastern:Europe) +text(摩爾多瓦) locatedIn text(أوروبا) +text(مولدوفا) neighborOf text(أوكرانيا) +text(Moldavia) neighborOf text(रोमानिया) +text(Mauricio) locatedIn text(पूर्वी:अफ्रीका) +text(मॉरिशस) locatedIn text(Africa) +text(Wit-Rusland) neighborOf text(Oekraïne) +text(بيلاروس) neighborOf text(Polen) +text(白俄羅斯) neighborOf text(ليتوانيا) +text(बेलारूस) neighborOf text(Russia) +text(Bielorrusia) neighborOf text(Letonia) +text(Bangladesh) neighborOf text(Birmania) +text(Bangladesh) neighborOf text(भारत) +text(मलेशिया) locatedIn text(दक्षिण:पूर्व:एशिया) +text(ماليزيا) neighborOf text(تايلاند) +text(馬來西亞) neighborOf text(Indonesia) +text(Maleisië) neighborOf text(بروناي) +text(Bosnia:y:Herzegovina) locatedIn text(Europa:del:Sur) +text(बोस्निया:और:हर्ज़ेगोविना) neighborOf text(Servië) +text(البوسنة:والهرسك) neighborOf text(Croacia) +text(波斯尼亚和黑塞哥维那) neighborOf text(Montenegro) +text(लक्ज़मबर्ग) locatedIn text(Europa:Occidental) +text(卢森堡) neighborOf text(Alemania) +text(لوكسمبورغ) neighborOf text(Bélgica) +text(Luxembourg) neighborOf text(Frankrijk) +text(意大利) locatedIn text(南欧) +text(Italië) locatedIn text(欧洲) +text(Italia) neighborOf text(سلوفينيا) +text(इटली) neighborOf text(سويسرا) +text(Italy) neighborOf text(Austria) +text(إيطاليا) neighborOf text(France) +text(意大利) neighborOf text(梵蒂岡城國) +text(Italië) neighborOf text(San:Marino) +text(अज़रबैजान) locatedIn text(पश्चिमी:एशिया) +text(أذربيجان) neighborOf text(Turquía) +text(Azerbeidzjan) neighborOf text(Armenia) +text(Azerbaiyán) neighborOf text(रूस) +text(Azerbaijan) neighborOf text(إيران) +text(阿塞拜疆) neighborOf text(Georgia) +text(हॉण्डुरस) locatedIn text(中美洲) +text(هندوراس) neighborOf text(Guatemala) +text(洪都拉斯) neighborOf text(निकारागुआ) +text(Honduras) neighborOf text(El:Salvador) +text(مالي) locatedIn text(غرب:إفريقيا) +text(Mali) neighborOf text(布吉納法索) +text(马里) neighborOf text(غينيا) +text(माली) neighborOf text(毛里塔尼亞) +text(Mali) neighborOf text(नाइजर) +text(Mali) neighborOf text(सेनेगल) +text(مالي) neighborOf text(Argelia) +text(Mali) neighborOf text(Ivory:Coast) +text(República:de:China) locatedIn text(पूर्वी:एशिया) +text(Taiwan) locatedIn text(Asia) +text(الجزائر) locatedIn text(北部非洲) +text(अल्जीरिया) neighborOf text(Libië) +text(Algerije) neighborOf text(Tunesië) +text(Algeria) neighborOf text(Mauritania) +text(阿爾及利亞) neighborOf text(Marokko) +text(Argelia) neighborOf text(Níger) +text(الجزائر) neighborOf text(马里) +text(अल्जीरिया) neighborOf text(Sahrawi:Arab:Democratic:Republic) +text(Guayana:Francesa) neighborOf text(Brazil) +text(Frans-Guyana) neighborOf text(سورينام) +text(Jemen) locatedIn text(Zuidwest-Azië) +text(也门) neighborOf text(Oman) +text(Yemen) neighborOf text(सउदी:अरब) +text(Puerto:Rico) locatedIn text(Caraïben) +text(Puerto:Rico) locatedIn text(أمريكتان) +text(Saint:Vincent:en:de:Grenadines) locatedIn text(Caribe) +text(Saint:Vincent:and:the:Grenadines) locatedIn text(美洲) +text(वेनेज़ुएला) neighborOf text(巴西) +text(Venezuela) neighborOf text(गयाना) +text(Venezuela) neighborOf text(كولومبيا) +text(格瑞那達) locatedIn text(الكاريبي) +text(Grenada) locatedIn text(महाअमेरिका) +text(United:States) neighborOf text(加拿大) +text(संयुक्त:राज्य:अमेरिका) neighborOf text(المكسيك) +text(Tokelau) locatedIn text(पोलीनेशिया) +text(टोकेलाऊ) locatedIn text(Oceanië) +text(Slovenia) locatedIn text(أوروبا:الجنوبية) +text(स्लोवेनिया) neighborOf text(Oostenrijk) +text(斯洛文尼亞) neighborOf text(克羅地亞) +text(Eslovenia) neighborOf text(Italia) +text(Slovenië) neighborOf text(المجر) +text(फ़िलीपीन्स) locatedIn text(Zuidoost-Azië) +text(菲律賓) locatedIn text(亞洲) +text(Micronesia) locatedIn text(Micronesia) +text(ميكرونيسيا) locatedIn text(大洋洲) +text(People's:Republic:of:China) locatedIn text(Asia:Oriental) +text(中华人民共和国) neighborOf text(阿富汗) +text(الصين) neighborOf text(Bután) +text(República:Popular:China) neighborOf text(Macau) +text(चीनी:जनवादी:गणराज्य) neighborOf text(印度) +text(Volksrepubliek:China) neighborOf text(Kazakhstan) +text(People's:Republic:of:China) neighborOf text(Kyrgyzstan) +text(中华人民共和国) neighborOf text(ताजीकिस्तान) +text(الصين) neighborOf text(لاوس) +text(República:Popular:China) neighborOf text(俄罗斯) +text(चीनी:जनवादी:गणराज्य) neighborOf text(Noord-Korea) +text(Volksrepubliek:China) neighborOf text(Myanmar) +text(People's:Republic:of:China) neighborOf text(पाकिस्तान) +text(中华人民共和国) neighborOf text(Mongolia) +text(الصين) neighborOf text(香港) +text(República:Popular:China) neighborOf text(越南) +text(Gabón) locatedIn text(وسط:إفريقيا) +text(加蓬) neighborOf text(Equatoriaal-Guinea) +text(Gabon) neighborOf text(剛果共和國) +text(الغابون) neighborOf text(喀麦隆) +text(Islas:ultramarinas:de:Estados:Unidos) locatedIn text(North:America) +text(美国本土外小岛屿) locatedIn text(Amerika) +text(Andorra) locatedIn text(दक्षिणी:यूरोप) +text(安道尔) neighborOf text(España) +text(Andorra) neighborOf text(Francia) +text(समोआ) locatedIn text(玻里尼西亞) +text(Samoa) locatedIn text(أوقيانوسيا) +text(Gambia) locatedIn text(पश्चिमी:अफ्रीका) +text(岡比亞) locatedIn text(África) +text(The:Gambia) neighborOf text(السنغال) +text(Pedro:Miguel) locatedIn text(Asia:Occidental) +text(nan) locatedIn text(آسيا) +text(Pedro:Miguel) neighborOf text(الأردن) +text(Pedro:Miguel) neighborOf text(Egipto) +text(nan) neighborOf text(Israel) +text(ريونيون) locatedIn text(East:Africa) +text(Réunion) locatedIn text(Afrika) +text(فرنسا) locatedIn text(أوروبا:الغربية) +text(फ़्रान्स) neighborOf text(Germany) +text(法國) neighborOf text(Luxemburgo) +text(Frankrijk) neighborOf text(इटली) +text(France) neighborOf text(अण्डोरा) +text(Francia) neighborOf text(Zwitserland) +text(فرنسا) neighborOf text(Mónaco) +text(फ़्रान्स) neighborOf text(بلجيكا) +text(法國) neighborOf text(स्पेन) +text(منغوليا) locatedIn text(東亞) +text(蒙古國) locatedIn text(एशिया) +text(Mongolië) neighborOf text(चीनी:जनवादी:गणराज्य) +text(मंगोलिया) neighborOf text(روسيا) +text(立陶宛) locatedIn text(Europa:del:Norte) +text(Lithuania) neighborOf text(波蘭) +text(Lituania) neighborOf text(लातविया) +text(Litouwen) neighborOf text(Belarus) +text(लिथुआनिया) neighborOf text(Rusia) +text(Cayman:Islands) locatedIn text(加勒比地区) +text(केमन:द्वीपसमूह) locatedIn text(América) +text(Saint:Lucia) locatedIn text(कैरिबिया) +text(Saint:Lucia) locatedIn text(Americas) +text(Curazao) locatedIn text(Caribbean) +text(Curaçao) locatedIn text(أمريكتان) +text(Caraïben) locatedIn text(美洲) +text(南亚) locatedIn text(Azië) +text(Central:Africa) locatedIn text(अफ्रीका) +text(北歐) locatedIn text(Europa) +text(Southern:Europe) locatedIn text(यूरोप) +text(西亚) locatedIn text(Asia) +text(दक्षिण:अमेरिका) locatedIn text(महाअमेरिका) +text(Polynesië) locatedIn text(Oceanía) +text(nan) locatedIn text(ओशिआनिया) +text(Western:Europe) locatedIn text(Europe) +text(شرق:إفريقيا) locatedIn text(非洲) +text(West:Africa) locatedIn text(إفريقيا) +text(东欧) locatedIn text(Europa) +text(केंद्रीय:अमेरिका) locatedIn text(Amerika) +text(Noord-Amerika) locatedIn text(América) +text(东南亚) locatedIn text(Asia) +text(África:austral) locatedIn text(Africa) +text(شرق:آسيا) locatedIn text(亞洲) +text(Noord-Afrika) locatedIn text(África) +text(Melanesië) locatedIn text(Oceania) +text(माइक्रोनीशिया) locatedIn text(Oceanië) +text(中亚) locatedIn text(آسيا) +text(中欧) locatedIn text(أوروبا) \ No newline at end of file diff --git a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_country2text_relation2text.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_country2text_relation2text.tsv new file mode 100644 index 0000000..7741b5d --- /dev/null +++ b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_country2text_relation2text.tsv @@ -0,0 +1,979 @@ +text(Palaos) text(can:be:found:in) text(ميكرونيسيا) +text(بالاو) text(was:positioned:in) text(Oceanía) +text(المالديف) text(is:positioned:in) text(South:Asia) +text(Maldives) text(was:sited:in) text(آسيا) +text(بروناي) text(is:sited:in) text(东南亚) +text(ब्रुनेई) text(was:localized:in) text(एशिया) +text(Brunei) text(is:butted:against) text(Malasia) +text(Japan) text(is:localized:in) text(شرق:آسيا) +text(Japón) text(was:present:in) text(Asia) +text(هولندا) text(was:butted:against) text(जर्मनी) +text(Netherlands) text(was:adjacent:to) text(België) +text(土耳其) text(is:adjacent:to) text(Armenië) +text(Turkije) text(neighbors) text(अज़रबैजान) +text(Turkey) text(is:a:neighboring:country:of) text(伊朗) +text(تركيا) text(was:a:neighboring:country:of) text(Griekenland) +text(तुर्की) text(neighbors:with) text(Georgia) +text(Turquía) text(was:a:neighbor:of) text(Bulgarije) +text(土耳其) text(is:a:neighbor:of) text(Irak) +text(Turkije) text(is:a:neighboring:state:to) text(Syria) +text(安哥拉) text(is:present:in) text(وسط:إفريقيا) +text(أنغولا) text(was:a:neighboring:state:to) text(Democratic:Republic:of:the:Congo) +text(अंगोला) text(borders:with) text(नामीबिया) +text(Angola) text(borders) text(Zambia) +text(Angola) text(is:butted:against) text(جمهورية:الكونغو) +text(आर्मीनिया) text(is:still:in) text(Zuidwest-Azië) +text(Armenia) text(was:butted:against) text(格鲁吉亚) +text(亞美尼亞) text(was:adjacent:to) text(阿塞拜疆) +text(أرمينيا) text(is:adjacent:to) text(إيران) +text(Armenia) text(neighbors) text(Turkey) +text(安提瓜和巴布达) text(was:still:in) text(कैरिबिया) +text(Antigua:y:Barbuda) text(was:currently:in) text(महाअमेरिका) +text(एस्वातीनी) text(is:currently:in) text(南部非洲) +text(斯威士兰) text(is:a:neighboring:country:of) text(Sudáfrica) +text(Eswatini) text(was:a:neighboring:country:of) text(Mozambique) +text(瓦利斯和富圖納) text(is:placed:in) text(بولنيزيا) +text(واليس:وفوتونا) text(was:placed:in) text(大洋洲) +text(उरुग्वे) text(can:be:found:in) text(दक्षिण:अमेरिका) +text(الأوروغواي) text(was:situated:in) text(Amerika) +text(烏拉圭) text(neighbors:with) text(Argentina) +text(Uruguay) text(was:a:neighbor:of) text(البرازيل) +text(Zambia) text(is:situated:in) text(Oost-Afrika) +text(زامبيا) text(is:a:neighbor:of) text(तंज़ानिया) +text(Zambia) text(is:a:neighboring:state:to) text(موزمبيق) +text(ज़ाम्बिया) text(was:a:neighboring:state:to) text(República:Democrática:del:Congo) +text(贊比亞) text(borders:with) text(Angola) +text(Zambia) text(borders) text(波札那) +text(Zambia) text(is:butted:against) text(津巴布韦) +text(زامبيا) text(was:butted:against) text(Namibia) +text(Zambia) text(was:adjacent:to) text(Malawi) +text(قبرص) text(is:located:in) text(पूर्वी:यूरोप) +text(Chipre) text(was:located:in) text(यूरोप) +text(Cyprus) text(is:adjacent:to) text(यूनाइटेड:किंगडम) +text(यूनाइटेड:किंगडम) text(can:be:found:in) text(उत्तरी:यूरोप) +text(英国) text(was:positioned:in) text(أوروبا) +text(Verenigd:Koninkrijk) text(neighbors) text(Reino:Unido) +text(بوروندي) text(is:positioned:in) text(पूर्वी:अफ्रीका) +text(Burundi) text(is:a:neighboring:country:of) text(刚果民主共和国) +text(Burundi) text(was:a:neighboring:country:of) text(Rwanda) +text(蒲隆地) text(neighbors:with) text(Tanzania) +text(中非共和國) text(was:sited:in) text(África:Central) +text(Central:African:Republic) text(was:a:neighbor:of) text(تشاد) +text(جمهورية:إفريقيا:الوسطى) text(is:a:neighbor:of) text(剛果共和國) +text(República:Centroafricana) text(is:a:neighboring:state:to) text(جمهورية:الكونغو:الديمقراطية) +text(Centraal-Afrikaanse:Republiek) text(was:a:neighboring:state:to) text(South:Sudan) +text(मध्य:अफ़्रीकी:गणराज्य) text(borders:with) text(Camerún) +text(中非共和國) text(borders) text(苏丹) +text(تونغا) text(is:sited:in) text(पोलीनेशिया) +text(टोंगा) text(was:localized:in) text(Oceanië) +text(Ivoorkust) text(is:localized:in) text(غرب:إفريقيا) +text(ساحل:العاج) text(is:butted:against) text(Burkina:Faso) +text(Ivory:Coast) text(was:butted:against) text(Ghana) +text(Costa:de:Marfil) text(was:adjacent:to) text(Liberia) +text(कोत:दिव्वार) text(is:adjacent:to) text(माली) +text(科特迪瓦) text(neighbors) text(Guinee) +text(سيراليون) text(is:a:neighboring:country:of) text(利比里亞) +text(Sierra:Leona) text(was:a:neighboring:country:of) text(几内亚) +text(مايوت) text(was:present:in) text(东部非洲) +text(Mayotte) text(is:present:in) text(África) +text(بولندا) text(neighbors:with) text(Germany) +text(Polonia) text(was:a:neighbor:of) text(Oekraïne) +text(पोलैंड) text(is:a:neighbor:of) text(斯洛伐克) +text(Polen) text(is:a:neighboring:state:to) text(白俄羅斯) +text(波蘭) text(was:a:neighboring:state:to) text(रूस) +text(Poland) text(borders:with) text(लिथुआनिया) +text(بولندا) text(borders) text(捷克) +text(कज़ाख़िस्तान) text(is:still:in) text(Centraal-Azië) +text(Kazajistán) text(is:butted:against) text(Turkmenistán) +text(Kazachstan) text(was:butted:against) text(الصين) +text(哈萨克斯坦) text(was:adjacent:to) text(吉尔吉斯斯坦) +text(كازاخستان) text(is:adjacent:to) text(Uzbekistán) +text(Kazakhstan) text(neighbors) text(روسيا) +text(उज़्बेकिस्तान) text(was:still:in) text(मध्य:एशिया) +text(乌兹别克斯坦) text(is:a:neighboring:country:of) text(أفغانستان) +text(Uzbekistan) text(was:a:neighboring:country:of) text(تركمانستان) +text(أوزبكستان) text(neighbors:with) text(कज़ाख़िस्तान) +text(Oezbekistan) text(was:a:neighbor:of) text(Kyrgyzstan) +text(Uzbekistán) text(is:a:neighbor:of) text(塔吉克斯坦) +text(तुर्क:और:केकोस:द्वीपसमूह) text(was:currently:in) text(Caribe) +text(جزر:توركس:وكايكوس) text(is:currently:in) text(América) +text(Nueva:Caledonia) text(is:placed:in) text(ميلانيزيا) +text(كاليدونيا:الجديدة) text(was:placed:in) text(Oceania) +text(Pakistán) text(is:a:neighboring:state:to) text(People's:Republic:of:China) +text(巴基斯坦) text(was:a:neighboring:state:to) text(Afghanistan) +text(باكستان) text(borders:with) text(Irán) +text(पाकिस्तान) text(borders) text(India) +text(Argentina) text(can:be:found:in) text(Zuid-Amerika) +text(阿根廷) text(is:butted:against) text(Bolivia) +text(Argentinië) text(was:butted:against) text(智利) +text(अर्जेण्टीना) text(was:adjacent:to) text(巴西) +text(الأرجنتين) text(is:adjacent:to) text(巴拉圭) +text(Argentina) text(neighbors) text(Uruguay) +text(क्यूबा) text(was:situated:in) text(Caribbean) +text(Cuba) text(is:situated:in) text(أمريكتان) +text(塞爾維亞) text(is:a:neighboring:country:of) text(Macedonia:del:Norte) +text(Servië) text(was:a:neighboring:country:of) text(蒙特內哥羅) +text(Serbia) text(neighbors:with) text(Kosovo) +text(सर्बिया) text(was:a:neighbor:of) text(Bosnia:y:Herzegovina) +text(صربيا) text(is:a:neighbor:of) text(كرواتيا) +text(Serbia) text(is:a:neighboring:state:to) text(Hungría) +text(塞爾維亞) text(was:a:neighboring:state:to) text(بلغاريا) +text(Servië) text(borders:with) text(羅馬尼亞) +text(Czech:Republic) text(is:located:in) text(Europa:Oriental) +text(चेक:गणराज्य) text(borders) text(Duitsland) +text(جمهورية:التشيك) text(is:butted:against) text(Austria) +text(Tsjechië) text(was:butted:against) text(Polonia) +text(República:Checa) text(was:adjacent:to) text(سلوفاكيا) +text(Nicaragua) text(is:adjacent:to) text(洪都拉斯) +text(نيكاراغوا) text(neighbors) text(Costa:Rica) +text(Vietnam) text(was:located:in) text(दक्षिण:पूर्व:एशिया) +text(Vietnam) text(can:be:found:in) text(Azië) +text(वियतनाम) text(is:a:neighboring:country:of) text(كمبوديا) +text(فيتنام) text(was:a:neighboring:country:of) text(لاوس) +text(Vietnam) text(neighbors:with) text(Volksrepubliek:China) +text(निउए) text(was:positioned:in) text(Polynesia) +text(Niue) text(is:positioned:in) text(ओशिआनिया) +text(कनाडा) text(was:sited:in) text(उत्तर:अमेरिका) +text(Canada) text(was:a:neighbor:of) text(Verenigde:Staten) +text(Slowakije) text(is:a:neighbor:of) text(أوكرانيا) +text(स्लोवाकिया) text(is:a:neighboring:state:to) text(पोलैंड) +text(Eslovaquia) text(was:a:neighboring:state:to) text(奧地利) +text(Slovakia) text(borders:with) text(المجر) +text(斯洛伐克) text(borders) text(捷克) +text(मोज़ाम्बीक) text(is:butted:against) text(تنزانيا) +text(莫桑比克) text(was:butted:against) text(Swaziland) +text(Mozambique) text(was:adjacent:to) text(Zimbabwe) +text(Mozambique) text(is:adjacent:to) text(ज़ाम्बिया) +text(Mozambique) text(neighbors) text(馬拉威) +text(موزمبيق) text(is:a:neighboring:country:of) text(Zuid-Afrika) +text(أروبا) text(is:sited:in) text(الكاريبي) +text(अरूबा) text(was:localized:in) text(Americas) +text(Bolivia) text(is:localized:in) text(南美洲) +text(Bolivia) text(was:a:neighboring:country:of) text(Chili) +text(玻利維亞) text(neighbors:with) text(Brasil) +text(बोलिविया) text(was:a:neighbor:of) text(Paraguay) +text(بوليفيا) text(is:a:neighbor:of) text(Argentina) +text(Bolivia) text(is:a:neighboring:state:to) text(بيرو) +text(Colombia) text(was:present:in) text(América:del:Sur) +text(كولومبيا) text(was:a:neighboring:state:to) text(厄瓜多尔) +text(Colombia) text(borders:with) text(Brazilië) +text(कोलम्बिया) text(borders) text(Panama) +text(哥伦比亚) text(is:butted:against) text(Venezuela) +text(Colombia) text(was:butted:against) text(Peru) +text(फ़िजी) text(is:present:in) text(美拉尼西亞) +text(Fiyi) text(is:still:in) text(أوقيانوسيا) +text(कांगो:गणराज्य) text(was:adjacent:to) text(加蓬) +text(República:del:Congo) text(is:adjacent:to) text(कांगो:लोकतान्त्रिक:गणराज्य) +text(Congo-Brazzaville) text(neighbors) text(安哥拉) +text(Republic:of:the:Congo) text(is:a:neighboring:country:of) text(Cameroon) +text(جمهورية:الكونغو) text(was:a:neighboring:country:of) text(Central:African:Republic) +text(Saoedi-Arabië) text(neighbors:with) text(卡塔尔) +text(السعودية) text(was:a:neighbor:of) text(United:Arab:Emirates) +text(沙特阿拉伯) text(is:a:neighbor:of) text(Jordan) +text(Saudi:Arabia) text(is:a:neighboring:state:to) text(也门) +text(सउदी:अरब) text(was:a:neighboring:state:to) text(ओमान) +text(Arabia:Saudí) text(borders:with) text(कुवैत) +text(Saoedi-Arabië) text(borders) text(伊拉克) +text(السلفادور) text(was:still:in) text(أمريكا:الوسطى) +text(अल:साल्वाडोर) text(is:butted:against) text(غواتيمالا) +text(El:Salvador) text(was:butted:against) text(हॉण्डुरस) +text(Madagaskar) text(was:currently:in) text(East:Africa) +text(مدغشقر) text(is:currently:in) text(अफ्रीका) +text(Australië) text(is:placed:in) text(Australia:and:New:Zealand) +text(أستراليا) text(was:placed:in) text(Oceanía) +text(ناميبيا) text(can:be:found:in) text(दक्षिणी:अफ्रीका) +text(Namibia) text(was:situated:in) text(إفريقيا) +text(纳米比亚) text(was:adjacent:to) text(贊比亞) +text(Namibië) text(is:adjacent:to) text(أنغولا) +text(नामीबिया) text(neighbors) text(جنوب:إفريقيا) +text(Namibia) text(is:a:neighboring:country:of) text(बोत्सवाना) +text(توفالو) text(is:situated:in) text(Polynesië) +text(吐瓦魯) text(is:located:in) text(大洋洲) +text(Svalbard:and:Jan:Mayen) text(was:located:in) text(أوروبا:الشمالية) +text(Svalbard:y:Jan:Mayen) text(can:be:found:in) text(Europe) +text(Isla:de:Man) text(was:positioned:in) text(北歐) +text(جزيرة:مان) text(is:positioned:in) text(Europa) +text(Guyana) text(was:a:neighboring:country:of) text(Brazil) +text(Guyana) text(neighbors:with) text(सूरीनाम) +text(圭亚那) text(was:a:neighbor:of) text(委內瑞拉) +text(Vaticaanstad) text(was:sited:in) text(Europa:del:Sur) +text(Vatican:City) text(is:sited:in) text(欧洲) +text(الفاتيكان) text(is:a:neighbor:of) text(Italië) +text(British:Indian:Ocean:Territory) text(was:localized:in) text(África:Oriental) +text(ब्रिटिश:हिंद:महासागर:क्षेत्र) text(is:localized:in) text(非洲) +text(نيجيريا) text(was:present:in) text(West-Afrika) +text(Nigeria) text(is:present:in) text(Africa) +text(Nigeria) text(is:a:neighboring:state:to) text(चाड) +text(奈及利亞) text(was:a:neighboring:state:to) text(Níger) +text(नाइजीरिया) text(borders:with) text(الكاميرون) +text(Nigeria) text(borders) text(貝南) +text(Alemania) text(is:butted:against) text(丹麥) +text(德國) text(was:butted:against) text(Nederland) +text(ألمانيا) text(was:adjacent:to) text(Polen) +text(जर्मनी) text(is:adjacent:to) text(卢森堡) +text(Germany) text(neighbors) text(比利時) +text(Duitsland) text(is:a:neighboring:country:of) text(Switzerland) +text(Alemania) text(was:a:neighboring:country:of) text(Austria) +text(德國) text(neighbors:with) text(Frankrijk) +text(ألمانيا) text(was:a:neighbor:of) text(Czech:Republic) +text(Burkina:Faso) text(is:a:neighbor:of) text(Togo) +text(布吉納法索) text(is:a:neighboring:state:to) text(Benin) +text(बुर्किना:फासो) text(was:a:neighboring:state:to) text(Niger) +text(بوركينا:فاسو) text(borders:with) text(Ghana) +text(Burkina:Faso) text(borders) text(Mali) +text(Burkina:Faso) text(is:butted:against) text(Ivoorkust) +text(Tanzania) text(was:butted:against) text(Uganda) +text(Tanzania) text(was:adjacent:to) text(मोज़ाम्बीक) +text(坦桑尼亞) text(is:adjacent:to) text(Congo-Kinshasa) +text(तंज़ानिया) text(neighbors) text(Kenia) +text(Tanzania) text(is:a:neighboring:country:of) text(रवाण्डा) +text(تنزانيا) text(was:a:neighboring:country:of) text(Zambia) +text(Tanzania) text(neighbors:with) text(Malaui) +text(Tanzania) text(was:a:neighbor:of) text(Burundi) +text(Northern:Mariana:Islands) text(is:still:in) text(Micronesia) +text(جزر:ماريانا:الشمالية) text(was:still:in) text(Oceanië) +text(Belize) text(was:currently:in) text(América:Central) +text(伯利兹) text(is:a:neighbor:of) text(Guatemala) +text(بليز) text(is:a:neighboring:state:to) text(México) +text(Norway) text(was:a:neighboring:state:to) text(Suecia) +text(挪威) text(borders:with) text(فنلندا) +text(النرويج) text(borders) text(俄罗斯) +text(Cocos:(Keeling):Islands) text(is:currently:in) text(nan) +text(جزر:كوكوس) text(is:placed:in) text(Oceania) +text(Laos) text(was:placed:in) text(Southeast:Asia) +text(लाओस) text(is:butted:against) text(中华人民共和国) +text(老撾) text(was:butted:against) text(कम्बोडिया) +text(Laos) text(was:adjacent:to) text(म्यान्मार) +text(Laos) text(is:adjacent:to) text(越南) +text(لاوس) text(neighbors) text(泰國) +text(الجمهورية:العربية:الصحراوية:الديمقراطية) text(can:be:found:in) text(شمال:إفريقيا) +text(Sahrawi:Arabische:Democratische:Republiek) text(is:a:neighboring:country:of) text(阿爾及利亞) +text(撒拉威阿拉伯民主共和國) text(was:a:neighboring:country:of) text(Mauritania) +text(सहरावी:अरब:जनतांत्रिक:गणराज्य) text(neighbors:with) text(Morocco) +text(Suriname) text(was:situated:in) text(South:America) +text(Surinam) text(was:a:neighbor:of) text(ब्राज़ील) +text(蘇利南) text(is:a:neighbor:of) text(法屬圭亞那) +text(Suriname) text(is:a:neighboring:state:to) text(गयाना) +text(क्रिसमस:द्वीप) text(is:situated:in) text(Australië:en:Nieuw-Zeeland) +text(جزيرة:عيد:الميلاد) text(is:located:in) text(ओशिआनिया) +text(São:Tomé:and:Príncipe) text(was:located:in) text(Centraal-Afrika) +text(साओ:तोमे:और:प्रिन्सिपी) text(can:be:found:in) text(Afrika) +text(埃及) text(was:a:neighboring:state:to) text(Libië) +text(Egypte) text(borders:with) text(Israel) +text(مصر) text(borders) text(Sudán) +text(Bulgaria) text(is:butted:against) text(North:Macedonia) +text(保加利亚) text(was:butted:against) text(تركيا) +text(बुल्गारिया) text(was:adjacent:to) text(Grecia) +text(Bulgaria) text(is:adjacent:to) text(Serbia) +text(Bulgarije) text(neighbors) text(Rumania) +text(Guinea) text(was:positioned:in) text(पश्चिमी:अफ्रीका) +text(غينيا) text(is:a:neighboring:country:of) text(Guinea-Bissau) +text(Guinea) text(was:a:neighboring:country:of) text(सिएरा:लियोन) +text(गिनी) text(neighbors:with) text(Mali) +text(Guinee) text(was:a:neighbor:of) text(Liberia) +text(几内亚) text(is:a:neighbor:of) text(Senegal) +text(Guinea) text(is:a:neighboring:state:to) text(ساحل:العاج) +text(स्पेन) text(was:a:neighboring:state:to) text(मोरक्को) +text(España) text(borders:with) text(जिब्राल्टर) +text(إسبانيا) text(borders) text(أندورا) +text(Spanje) text(is:butted:against) text(فرنسا) +text(西班牙) text(was:butted:against) text(Portugal) +text(कोस्टा:रीका) text(is:positioned:in) text(中美洲) +text(哥斯达黎加) text(was:adjacent:to) text(Panama) +text(Costa:Rica) text(is:adjacent:to) text(निकारागुआ) +text(Malta) text(was:sited:in) text(दक्षिणी:यूरोप) +text(Malta) text(is:sited:in) text(Europa) +text(البرتغال) text(was:localized:in) text(南欧) +text(葡萄牙) text(neighbors) text(Spain) +text(Romania) text(is:localized:in) text(Oost-Europa) +text(रोमानिया) text(is:a:neighboring:country:of) text(烏克蘭) +text(Roemenië) text(was:a:neighboring:country:of) text(Hungary) +text(رومانيا) text(neighbors:with) text(Moldova) +text(羅馬尼亞) text(was:a:neighbor:of) text(بلغاريا) +text(Rumania) text(is:a:neighbor:of) text(सर्बिया) +text(سان:مارينو) text(was:present:in) text(Southern:Europe) +text(सान:मारिनो) text(is:present:in) text(यूरोप) +text(San:Marino) text(is:a:neighboring:state:to) text(Italia) +text(موريتانيا) text(is:still:in) text(西非) +text(Mauritanië) text(was:still:in) text(África) +text(Mauritania) text(was:a:neighboring:state:to) text(Algerije) +text(मॉरीतानिया) text(borders:with) text(马里) +text(毛里塔尼亞) text(borders) text(República:Árabe:Saharaui:Democrática) +text(Mauritania) text(is:butted:against) text(塞内加尔) +text(Trinidad:y:Tobago) text(was:currently:in) text(加勒比地区) +text(त्रिनिदाद:और:टोबैगो) text(is:currently:in) text(美洲) +text(बहरीन) text(is:placed:in) text(Asia:Occidental) +text(البحرين) text(was:placed:in) text(Asia) +text(Myanmar) text(was:butted:against) text(India) +text(ميانمار) text(was:adjacent:to) text(Bangladés) +text(緬甸) text(is:adjacent:to) text(चीनी:जनवादी:गणराज्य) +text(Birmania) text(neighbors) text(Laos) +text(Myanmar) text(is:a:neighboring:country:of) text(थाईलैंड) +text(العراق) text(was:a:neighboring:country:of) text(तुर्की) +text(इराक) text(neighbors:with) text(السعودية) +text(Iraq) text(was:a:neighbor:of) text(Iran) +text(Irak) text(is:a:neighbor:of) text(Jordanië) +text(Irak) text(is:a:neighboring:state:to) text(Kuwait) +text(伊拉克) text(was:a:neighboring:state:to) text(Siria) +text(Zuid-Georgia:en:de:Zuidelijke:Sandwicheilanden) text(can:be:found:in) text(أمريكا:الجنوبية) +text(جورجيا:الجنوبية:وجزر:ساندويتش:الجنوبية) text(was:situated:in) text(महाअमेरिका) +text(冰島) text(is:situated:in) text(Northern:Europe) +text(आइसलैण्ड) text(is:located:in) text(أوروبا) +text(Democratic:Republic:of:the:Congo) text(was:located:in) text(中部非洲) +text(República:Democrática:del:Congo) text(borders:with) text(Oeganda) +text(刚果民主共和国) text(borders) text(坦桑尼亞) +text(جمهورية:الكونغو:الديمقراطية) text(is:butted:against) text(剛果共和國) +text(कांगो:लोकतान्त्रिक:गणराज्य) text(was:butted:against) text(جمهورية:إفريقيا:الوسطى) +text(Congo-Kinshasa) text(was:adjacent:to) text(अंगोला) +text(Democratic:Republic:of:the:Congo) text(is:adjacent:to) text(رواندا) +text(República:Democrática:del:Congo) text(neighbors) text(Sudán:del:Sur) +text(刚果民主共和国) text(is:a:neighboring:country:of) text(Zambia) +text(جمهورية:الكونغو:الديمقراطية) text(was:a:neighboring:country:of) text(बुरुण्डी) +text(Seychellen) text(can:be:found:in) text(شرق:إفريقيا) +text(Seychelles) text(was:positioned:in) text(अफ्रीका) +text(قرغيزستان) text(neighbors:with) text(República:Popular:China) +text(किर्गिज़स्तान) text(was:a:neighbor:of) text(Kazajistán) +text(Kirgizië) text(is:a:neighbor:of) text(Tadzjikistan) +text(Kirguistán) text(is:a:neighboring:state:to) text(उज़्बेकिस्तान) +text(Botsuana) text(is:positioned:in) text(Zuidelijk:Afrika) +text(بوتسوانا) text(was:a:neighboring:state:to) text(ज़िम्बाब्वे) +text(Botswana) text(borders:with) text(ناميبيا) +text(Botswana) text(borders) text(زامبيا) +text(波札那) text(is:butted:against) text(दक्षिण:अफ़्रीका) +text(جزر:فارو) text(was:sited:in) text(Europa:del:Norte) +text(Faeröer) text(is:sited:in) text(Europe) +text(जमैका) text(was:localized:in) text(Caraïben) +text(牙買加) text(is:localized:in) text(Amerika) +text(Amerikaans-Samoa) text(was:present:in) text(Polinesia) +text(Samoa:Americana) text(is:present:in) text(أوقيانوسيا) +text(लेसोथो) text(is:still:in) text(África:austral) +text(Lesoto) text(was:still:in) text(إفريقيا) +text(莱索托) text(was:butted:against) text(南非) +text(श्रीलंका) text(was:adjacent:to) text(الهند) +text(बेल्जियम) text(was:currently:in) text(西欧) +text(Bélgica) text(is:adjacent:to) text(जर्मनी) +text(بلجيكا) text(neighbors) text(Luxemburgo) +text(Belgium) text(is:a:neighboring:country:of) text(Francia) +text(België) text(was:a:neighboring:country:of) text(荷蘭) +text(Qatar) text(is:currently:in) text(West:Asia) +text(Qatar) text(neighbors:with) text(沙特阿拉伯) +text(所罗门群岛) text(is:placed:in) text(Melanesië) +text(جزر:سليمان) text(was:placed:in) text(Oceanía) +text(सीरिया) text(can:be:found:in) text(غرب:آسيا) +text(敘利亞) text(was:a:neighbor:of) text(Israel) +text(Syrië) text(is:a:neighbor:of) text(Turquía) +text(سوريا) text(is:a:neighboring:state:to) text(जॉर्डन) +text(Syria) text(was:a:neighboring:state:to) text(लेबनॉन) +text(Siria) text(borders:with) text(العراق) +text(India) text(was:situated:in) text(جنوب:آسيا) +text(भारत) text(borders) text(阿富汗) +text(印度) text(is:butted:against) text(Bután) +text(India) text(was:butted:against) text(بنغلاديش) +text(India) text(was:adjacent:to) text(الصين) +text(الهند) text(is:adjacent:to) text(尼泊爾) +text(India) text(neighbors) text(म्यान्मार) +text(भारत) text(is:a:neighboring:country:of) text(Pakistan) +text(印度) text(was:a:neighboring:country:of) text(سريلانكا) +text(Marruecos) text(neighbors:with) text(Algeria) +text(المغرب) text(was:a:neighbor:of) text(स्पेन) +text(摩洛哥) text(is:a:neighbor:of) text(Sahrawi:Arab:Democratic:Republic) +text(Kenya) text(is:situated:in) text(Oost-Afrika) +text(肯尼亚) text(is:a:neighboring:state:to) text(युगाण्डा) +text(كينيا) text(was:a:neighboring:state:to) text(तंज़ानिया) +text(Kenia) text(borders:with) text(Somalië) +text(कीनिया) text(borders) text(جنوب:السودان) +text(Kenia) text(is:butted:against) text(Etiopía) +text(दक्षिण:सूडान) text(is:located:in) text(Central:Africa) +text(Zuid-Soedan) text(was:butted:against) text(Uganda) +text(南蘇丹) text(was:adjacent:to) text(कांगो:लोकतान्त्रिक:गणराज्य) +text(South:Sudan) text(is:adjacent:to) text(Kenya) +text(Sudán:del:Sur) text(neighbors) text(República:Centroafricana) +text(جنوب:السودان) text(is:a:neighboring:country:of) text(Sudan) +text(दक्षिण:सूडान) text(was:a:neighboring:country:of) text(Ethiopia) +text(घाना) text(neighbors:with) text(Burkina:Faso) +text(Ghana) text(was:a:neighbor:of) text(Ivory:Coast) +text(迦納) text(is:a:neighbor:of) text(توغو) +text(Tajikistan) text(was:located:in) text(آسيا:الوسطى) +text(Tayikistán) text(is:a:neighboring:state:to) text(People's:Republic:of:China) +text(طاجيكستان) text(was:a:neighboring:state:to) text(吉尔吉斯斯坦) +text(ताजीकिस्तान) text(borders:with) text(Afganistán) +text(塔吉克斯坦) text(borders) text(乌兹别克斯坦) +text(Marshall:Islands) text(can:be:found:in) text(Micronesia) +text(جزر:مارشال) text(was:positioned:in) text(大洋洲) +text(喀麦隆) text(is:positioned:in) text(मध्य:अफ्रीका) +text(Kameroen) text(is:butted:against) text(乍得) +text(कैमरुन) text(was:butted:against) text(कांगो:गणराज्य) +text(Camerún) text(was:adjacent:to) text(الغابون) +text(Cameroon) text(is:adjacent:to) text(भूमध्यरेखीय:गिनी) +text(الكاميرون) text(neighbors) text(Centraal-Afrikaanse:Republiek) +text(喀麦隆) text(is:a:neighboring:country:of) text(نيجيريا) +text(नौरु) text(was:sited:in) text(Micronesië) +text(Nauru) text(is:sited:in) text(Oceanië) +text(Thailand) text(was:a:neighboring:country:of) text(Camboya) +text(تايلاند) text(neighbors:with) text(Myanmar) +text(Thailand) text(was:a:neighbor:of) text(लाओस) +text(Tailandia) text(is:a:neighbor:of) text(Maleisië) +text(Soedan) text(is:a:neighboring:state:to) text(Chad) +text(السودان) text(was:a:neighboring:state:to) text(Libya) +text(सूडान) text(borders:with) text(Zuid-Soedan) +text(苏丹) text(borders) text(Eritrea) +text(Sudán) text(is:butted:against) text(मध्य:अफ़्रीकी:गणराज्य) +text(Sudan) text(was:butted:against) text(Egypt) +text(Soedan) text(was:adjacent:to) text(إثيوبيا) +text(Chad) text(was:localized:in) text(وسط:إفريقيا) +text(Tsjaad) text(is:adjacent:to) text(利比亞) +text(تشاد) text(neighbors) text(Niger) +text(चाड) text(is:a:neighboring:country:of) text(南蘇丹) +text(乍得) text(was:a:neighboring:country:of) text(Kameroen) +text(Chad) text(neighbors:with) text(中非共和國) +text(Chad) text(was:a:neighbor:of) text(Nigeria) +text(वानूआटू) text(is:localized:in) text(Melanesia) +text(Vanuatu) text(was:present:in) text(Oceania) +text(केप:वर्दे) text(is:present:in) text(West:Africa) +text(Cape:Verde) text(is:still:in) text(非洲) +text(Falkland:Islands) text(was:still:in) text(दक्षिण:अमेरिका) +text(جزر:فوكلاند) text(was:currently:in) text(América) +text(लाइबेरिया) text(is:currently:in) text(África:Occidental) +text(ليبيريا) text(is:a:neighbor:of) text(Costa:de:Marfil) +text(Liberia) text(is:a:neighboring:state:to) text(Sierra:Leone) +text(Liberia) text(was:a:neighboring:state:to) text(غينيا) +text(Cambodja) text(is:placed:in) text(Zuidoost-Azië) +text(Cambodia) text(borders:with) text(Vietnam) +text(柬埔寨) text(borders) text(泰國) +text(كمبوديا) text(is:butted:against) text(老撾) +text(Zimbabue) text(was:butted:against) text(Zambia) +text(Zimbabwe) text(was:adjacent:to) text(South:Africa) +text(زيمبابوي) text(is:adjacent:to) text(बोत्सवाना) +text(津巴布韦) text(neighbors) text(莫桑比克) +text(جزر:القمر) text(was:placed:in) text(पूर्वी:अफ्रीका) +text(葛摩) text(can:be:found:in) text(Africa) +text(Guam) text(was:situated:in) text(密克羅尼西亞群島) +text(Guam) text(is:situated:in) text(ओशिआनिया) +text(巴哈馬) text(is:located:in) text(कैरिबिया) +text(Bahamas) text(was:located:in) text(أمريكتان) +text(Lebanon) text(can:be:found:in) text(पश्चिमी:एशिया) +text(Líbano) text(was:positioned:in) text(亞洲) +text(لبنان) text(is:a:neighboring:country:of) text(以色列) +text(Libanon) text(was:a:neighboring:country:of) text(सीरिया) +text(سانت:مارتن) text(is:positioned:in) text(Caribe) +text(Sint:Maarten) text(was:sited:in) text(Americas) +text(Saint:Martin) text(neighbors:with) text(Saint-Martin) +text(Ethiopië) text(is:sited:in) text(东部非洲) +text(इथियोपिया) text(was:a:neighbor:of) text(索馬里) +text(埃塞俄比亚) text(is:a:neighbor:of) text(肯尼亚) +text(Etiopía) text(is:a:neighboring:state:to) text(Eritrea) +text(Ethiopia) text(was:a:neighboring:state:to) text(South:Sudan) +text(إثيوبيا) text(borders:with) text(Djibouti) +text(Ethiopië) text(borders) text(السودان) +text(Islas:Vírgenes:de:los:Estados:Unidos) text(was:localized:in) text(Caribbean) +text(جزر:العذراء:التابعة:الولايات:المتحدة) text(is:localized:in) text(美洲) +text(गिनी-बिसाऊ) text(was:present:in) text(غرب:إفريقيا) +text(Guinee-Bissau) text(is:present:in) text(Afrika) +text(畿內亞比紹) text(is:butted:against) text(Guinea) +text(غينيا:بيساو) text(was:butted:against) text(السنغال) +text(Libia) text(is:still:in) text(उत्तर:अफ़्रीका) +text(ليبيا) text(was:adjacent:to) text(Tsjaad) +text(लीबिया) text(is:adjacent:to) text(Túnez) +text(Libië) text(neighbors) text(尼日尔) +text(Libya) text(is:a:neighboring:country:of) text(Argelia) +text(利比亞) text(was:a:neighboring:country:of) text(मिस्र) +text(Libia) text(neighbors:with) text(सूडान) +text(भूटान) text(was:still:in) text(南亚) +text(بوتان) text(was:currently:in) text(آسيا) +text(Bhutan) text(was:a:neighbor:of) text(Volksrepubliek:China) +text(不丹) text(is:a:neighbor:of) text(India) +text(Macau) text(is:currently:in) text(Oost-Azië) +text(मकाउ) text(is:placed:in) text(एशिया) +text(ماكاو) text(is:a:neighboring:state:to) text(中华人民共和国) +text(फ़्रान्सीसी:पॉलिनेशिया) text(was:placed:in) text(玻里尼西亞) +text(Frans-Polynesië) text(can:be:found:in) text(أوقيانوسيا) +text(Somalia) text(was:situated:in) text(East:Africa) +text(सोमालिया) text(was:a:neighboring:state:to) text(Yibuti) +text(الصومال) text(borders:with) text(كينيا) +text(Somalia) text(borders) text(इथियोपिया) +text(सेंट:बार्थेलेमी) text(is:situated:in) text(الكاريبي) +text(San:Bartolomé) text(is:located:in) text(महाअमेरिका) +text(Rusia) text(was:located:in) text(أوروبا:الشرقية) +text(Russia) text(is:butted:against) text(Ucrania) +text(Rusland) text(was:butted:against) text(Belarus) +text(रूस) text(was:adjacent:to) text(चीनी:जनवादी:गणराज्य) +text(روسيا) text(is:adjacent:to) text(Kazachstan) +text(俄罗斯) text(neighbors) text(Noruega) +text(Rusia) text(is:a:neighboring:country:of) text(波蘭) +text(Russia) text(was:a:neighboring:country:of) text(Azerbaiyán) +text(Rusland) text(neighbors:with) text(ليتوانيا) +text(रूस) text(was:a:neighbor:of) text(إستونيا) +text(روسيا) text(is:a:neighbor:of) text(North:Korea) +text(俄罗斯) text(is:a:neighboring:state:to) text(Finlandia) +text(Rusia) text(was:a:neighboring:state:to) text(Mongolië) +text(Russia) text(borders:with) text(लातविया) +text(Rusland) text(borders) text(Georgië) +text(نيوزيلندا) text(can:be:found:in) text(nan) +text(New:Zealand) text(was:positioned:in) text(Oceanía) +text(पनामा) text(is:positioned:in) text(Centraal-Amerika) +text(بنما) text(was:sited:in) text(Amerika) +text(Panamá) text(is:butted:against) text(Costa:Rica) +text(巴拿馬) text(was:butted:against) text(Colombia) +text(巴布亚新几内亚) text(is:sited:in) text(Melanesia) +text(Papua:New:Guinea) text(was:adjacent:to) text(Indonesia) +text(朝鮮民主主義人民共和國) text(is:adjacent:to) text(República:Popular:China) +text(उत्तर:कोरिया) text(neighbors) text(Corea:del:Sur) +text(Noord-Korea) text(is:a:neighboring:country:of) text(रूस) +text(Latvia) text(was:localized:in) text(Noord-Europa) +text(Letonia) text(was:a:neighboring:country:of) text(立陶宛) +text(拉脫維亞) text(neighbors:with) text(Bielorrusia) +text(لاتفيا) text(was:a:neighbor:of) text(روسيا) +text(Letland) text(is:a:neighbor:of) text(愛沙尼亞) +text(سلطنة:عمان) text(is:localized:in) text(西亚) +text(阿曼) text(is:a:neighboring:state:to) text(Saudi:Arabia) +text(Oman) text(was:a:neighboring:state:to) text(اليمن) +text(Omán) text(borders:with) text(Emiratos:Árabes:Unidos) +text(San:Pedro:y:Miquelón) text(was:present:in) text(North:America) +text(Saint:Pierre:and:Miquelon) text(is:present:in) text(América) +text(Martinique) text(is:still:in) text(加勒比地区) +text(Martinica) text(was:still:in) text(أمريكتان) +text(Verenigd:Koninkrijk) text(was:currently:in) text(उत्तरी:यूरोप) +text(المملكة:المتحدة) text(is:currently:in) text(Europa) +text(United:Kingdom) text(borders) text(المملكة:المتحدة) +text(Israël) text(is:placed:in) text(Zuidwest-Azië) +text(इज़राइल) text(is:butted:against) text(黎巴嫩) +text(إسرائيل) text(was:butted:against) text(Egipto) +text(Israel) text(was:adjacent:to) text(約旦) +text(Israel) text(is:adjacent:to) text(敘利亞) +text(Jersey) text(was:placed:in) text(أوروبا:الشمالية) +text(जर्सी) text(can:be:found:in) text(欧洲) +text(Pitcairn:Islands) text(was:situated:in) text(بولنيزيا) +text(Pitcairneilanden) text(is:situated:in) text(大洋洲) +text(Togo) text(is:located:in) text(West-Afrika) +text(टोगो) text(neighbors) text(布吉納法索) +text(多哥) text(is:a:neighboring:country:of) text(غانا) +text(Togo) text(was:a:neighboring:country:of) text(بنين) +text(Kiribati) text(was:located:in) text(माइक्रोनीशिया) +text(Kiribati) text(can:be:found:in) text(Oceanië) +text(ईरान) text(was:positioned:in) text(दक्षिण:एशिया) +text(Iran) text(neighbors:with) text(Afghanistan) +text(伊朗) text(was:a:neighbor:of) text(तुर्कमेनिस्तान) +text(إيران) text(is:a:neighbor:of) text(土耳其) +text(Irán) text(is:a:neighboring:state:to) text(Armenië) +text(Iran) text(was:a:neighboring:state:to) text(Azerbaijan) +text(ईरान) text(borders:with) text(Pakistan) +text(Iran) text(borders) text(इराक) +text(تجمع:سان:مارتين) text(is:positioned:in) text(Caraïben) +text(San:Martín) text(was:sited:in) text(Americas) +text(सेंट:मार्टिन:की:सामूहिकता) text(is:butted:against) text(सेंट:मार्टिन) +text(República:Dominicana) text(is:sited:in) text(कैरिबिया) +text(डोमिनिकन:गणराज्य) text(was:localized:in) text(美洲) +text(多明尼加) text(was:butted:against) text(Haití) +text(Denmark) text(was:adjacent:to) text(Germany) +text(Bermuda) text(is:localized:in) text(北美洲) +text(برمودا) text(was:present:in) text(महाअमेरिका) +text(Chile) text(is:adjacent:to) text(阿根廷) +text(تشيلي) text(neighbors) text(Bolivia) +text(Chile) text(is:a:neighboring:country:of) text(Perú) +text(कोसोवो:गणराज्य) text(is:present:in) text(东欧) +text(Kosovo) text(was:a:neighboring:country:of) text(صربيا) +text(كوسوفو) text(neighbors:with) text(Albanië) +text(Kosovo) text(was:a:neighbor:of) text(مقدونيا:الشمالية) +text(科索沃) text(is:a:neighbor:of) text(मॉन्टेनीग्रो) +text(聖克里斯多福及尼維斯) text(is:still:in) text(Caribe) +text(Saint:Kitts:en:Nevis) text(was:still:in) text(Amerika) +text(Eritrea) text(is:a:neighboring:state:to) text(جيبوتي) +text(इरित्रिया) text(was:a:neighboring:state:to) text(苏丹) +text(إرتريا) text(borders:with) text(埃塞俄比亚) +text(赤道几内亚) text(was:currently:in) text(África:Central) +text(غينيا:الاستوائية) text(is:currently:in) text(África) +text(Equatorial:Guinea) text(borders) text(गबॉन) +text(Equatoriaal-Guinea) text(is:butted:against) text(कैमरुन) +text(नाइजर) text(is:placed:in) text(पश्चिमी:अफ्रीका) +text(النيجر) text(was:butted:against) text(تشاد) +text(Níger) text(was:adjacent:to) text(ليبيا) +text(Niger) text(is:adjacent:to) text(बुर्किना:फासो) +text(Niger) text(neighbors) text(Benín) +text(尼日尔) text(is:a:neighboring:country:of) text(Mali) +text(नाइजर) text(was:a:neighboring:country:of) text(अल्जीरिया) +text(النيجر) text(neighbors:with) text(Nigeria) +text(अंगुइला) text(was:placed:in) text(Caribbean) +text(أنغويلا) text(can:be:found:in) text(América) +text(Ruanda) text(was:situated:in) text(África:Oriental) +text(卢旺达) text(was:a:neighbor:of) text(بوروندي) +text(Rwanda) text(is:a:neighbor:of) text(Tanzania) +text(Rwanda) text(is:a:neighboring:state:to) text(烏干達) +text(रवाण्डा) text(was:a:neighboring:state:to) text(Congo-Kinshasa) +text(الإمارات:العربية:المتحدة) text(is:situated:in) text(Asia:Occidental) +text(阿拉伯联合酋长国) text(borders:with) text(Oman) +text(संयुक्त:अरब:अमीरात) text(borders) text(सउदी:अरब) +text(Estonia) text(is:located:in) text(北歐) +text(एस्टोनिया) text(was:located:in) text(Europa) +text(Estonia) text(is:butted:against) text(लातविया) +text(Estland) text(was:butted:against) text(俄罗斯) +text(اليونان) text(can:be:found:in) text(أوروبا:الجنوبية) +text(यूनान) text(was:adjacent:to) text(Bulgaria) +text(Greece) text(is:adjacent:to) text(阿爾巴尼亞) +text(希腊) text(neighbors) text(उत्तर:मैसिडोनिया) +text(Griekenland) text(is:a:neighboring:country:of) text(Turkije) +text(Senegal) text(was:positioned:in) text(西非) +text(Senegal) text(is:positioned:in) text(अफ्रीका) +text(सेनेगल) text(was:a:neighboring:country:of) text(Guinea-Bisáu) +text(Senegal) text(neighbors:with) text(موريتانيا) +text(塞内加尔) text(was:a:neighbor:of) text(مالي) +text(السنغال) text(is:a:neighbor:of) text(Gambia) +text(Senegal) text(is:a:neighboring:state:to) text(गिनी) +text(Guadeloupe) text(was:sited:in) text(الكاريبي) +text(غوادلوب) text(is:sited:in) text(أمريكتان) +text(मोनाको) text(was:a:neighboring:state:to) text(法國) +text(Djibouti) text(borders:with) text(厄立特里亞) +text(जिबूती) text(borders) text(Somalië) +text(吉布提) text(is:butted:against) text(Etiopía) +text(इंडोनेशिया) text(was:butted:against) text(Papúa:Nueva:Guinea) +text(إندونيسيا) text(was:adjacent:to) text(Oost-Timor) +text(Indonesië) text(is:adjacent:to) text(ماليزيا) +text(ब्रिटिश:वर्जिन:द्वीपसमूह) text(was:localized:in) text(加勒比地区) +text(英屬維爾京群島) text(is:localized:in) text(Americas) +text(جزر:كوك) text(was:present:in) text(पोलीनेशिया) +text(Islas:Cook) text(is:present:in) text(Oceania) +text(أوغندا) text(is:still:in) text(شرق:إفريقيا) +text(Uganda) text(neighbors) text(تنزانيا) +text(Oeganda) text(is:a:neighboring:country:of) text(Democratic:Republic:of:the:Congo) +text(युगाण्डा) text(was:a:neighboring:country:of) text(Kenia) +text(Uganda) text(neighbors:with) text(Sudán:del:Sur) +text(烏干達) text(was:a:neighbor:of) text(رواندا) +text(Noord-Macedonië) text(was:still:in) text(Zuid-Europa) +text(北马其顿) text(is:a:neighbor:of) text(Kosovo) +text(Macedonia:del:Norte) text(is:a:neighboring:state:to) text(Grecia) +text(North:Macedonia) text(was:a:neighboring:state:to) text(Albania) +text(مقدونيا:الشمالية) text(borders:with) text(Serbia) +text(उत्तर:मैसिडोनिया) text(borders) text(保加利亚) +text(ट्यूनिशिया) text(was:currently:in) text(North:Africa) +text(突尼西亞) text(is:currently:in) text(إفريقيا) +text(Tunesië) text(is:butted:against) text(लीबिया) +text(Tunisia) text(was:butted:against) text(الجزائر) +text(Ecuador) text(was:adjacent:to) text(पेरू) +text(ईक्वाडोर) text(is:adjacent:to) text(كولومبيا) +text(البرازيل) text(is:placed:in) text(Zuid-Amerika) +text(巴西) text(neighbors) text(Bolivia) +text(Brasil) text(is:a:neighboring:country:of) text(Colombia) +text(Brazilië) text(was:a:neighboring:country:of) text(पैराग्वे) +text(Brazil) text(neighbors:with) text(Uruguay) +text(ब्राज़ील) text(was:a:neighbor:of) text(French:Guiana) +text(البرازيل) text(is:a:neighbor:of) text(سورينام) +text(巴西) text(is:a:neighboring:state:to) text(वेनेज़ुएला) +text(Brasil) text(was:a:neighboring:state:to) text(Argentinië) +text(Brazilië) text(borders:with) text(غيانا) +text(Brazil) text(borders) text(Peru) +text(Paraguay) text(was:placed:in) text(南美洲) +text(Paraguay) text(can:be:found:in) text(美洲) +text(باراغواي) text(is:butted:against) text(अर्जेण्टीना) +text(巴拉圭) text(was:butted:against) text(ब्राज़ील) +text(Paraguay) text(was:adjacent:to) text(玻利維亞) +text(Finland) text(was:situated:in) text(Northern:Europe) +text(芬蘭) text(is:adjacent:to) text(Noorwegen) +text(Finland) text(neighbors) text(स्वीडन) +text(फ़िनलैण्ड) text(is:a:neighboring:country:of) text(Rusia) +text(Jordania) text(was:a:neighboring:country:of) text(Arabia:Saudí) +text(الأردن) text(neighbors:with) text(以色列) +text(Jordan) text(was:a:neighbor:of) text(Iraq) +text(Jordanië) text(is:a:neighbor:of) text(Syrië) +text(Timor:Oriental) text(is:a:neighboring:state:to) text(印度尼西亚) +text(Montenegro) text(is:situated:in) text(Europa:del:Sur) +text(Montenegro) text(was:a:neighboring:state:to) text(कोसोवो:गणराज्य) +text(الجبل:الأسود) text(borders:with) text(波斯尼亚和黑塞哥维那) +text(Montenegro) text(borders) text(Kroatië) +text(蒙特內哥羅) text(is:butted:against) text(塞爾維亞) +text(मॉन्टेनीग्रो) text(was:butted:against) text(Albania) +text(秘鲁) text(is:located:in) text(América:del:Sur) +text(بيرو) text(was:adjacent:to) text(الإكوادور) +text(Peru) text(is:adjacent:to) text(बोलिविया) +text(Perú) text(neighbors) text(चिली) +text(पेरू) text(is:a:neighboring:country:of) text(البرازيل) +text(Peru) text(was:a:neighboring:country:of) text(कोलम्बिया) +text(Montserrat) text(was:located:in) text(Caraïben) +text(Montserrat) text(can:be:found:in) text(महाअमेरिका) +text(Ukraine) text(was:positioned:in) text(Eastern:Europe) +text(युक्रेन) text(neighbors:with) text(سلوفاكيا) +text(Oekraïne) text(was:a:neighbor:of) text(Wit-Rusland) +text(أوكرانيا) text(is:a:neighbor:of) text(Poland) +text(烏克蘭) text(is:a:neighboring:state:to) text(Russia) +text(Ucrania) text(was:a:neighboring:state:to) text(匈牙利) +text(Ukraine) text(borders:with) text(摩爾多瓦) +text(युक्रेन) text(borders) text(Romania) +text(Dominica) text(is:positioned:in) text(कैरिबिया) +text(دومينيكا) text(was:sited:in) text(Amerika) +text(土庫曼斯坦) text(is:butted:against) text(哈萨克斯坦) +text(Turkmenistan) text(was:butted:against) text(अफ़्ग़ानिस्तान) +text(Turkmenistan) text(was:adjacent:to) text(Uzbekistan) +text(Turkmenistán) text(is:adjacent:to) text(伊朗) +text(根西) text(is:sited:in) text(Europa:del:Norte) +text(Guernsey) text(was:localized:in) text(यूरोप) +text(Gibraltar) text(is:localized:in) text(दक्षिणी:यूरोप) +text(جبل:طارق) text(neighbors) text(España) +text(स्विट्ज़रलैण्ड) text(was:present:in) text(Europa:Occidental) +text(瑞士) text(is:a:neighboring:country:of) text(Duitsland) +text(Zwitserland) text(was:a:neighboring:country:of) text(意大利) +text(سويسرا) text(neighbors:with) text(النمسا) +text(Suiza) text(was:a:neighbor:of) text(फ़्रान्स) +text(Switzerland) text(is:a:neighbor:of) text(列支敦斯登) +text(ऑस्ट्रिया) text(is:present:in) text(पश्चिमी:यूरोप) +text(Oostenrijk) text(is:a:neighboring:state:to) text(Alemania) +text(Austria) text(was:a:neighboring:state:to) text(Slowakije) +text(奧地利) text(borders:with) text(Slovenië) +text(Austria) text(borders) text(इटली) +text(النمسا) text(is:butted:against) text(स्विट्ज़रलैण्ड) +text(ऑस्ट्रिया) text(was:butted:against) text(हंगरी) +text(Oostenrijk) text(was:adjacent:to) text(Liechtenstein) +text(Austria) text(is:adjacent:to) text(चेक:गणराज्य) +text(Hongarije) text(neighbors) text(Oekraïne) +text(Hungría) text(is:a:neighboring:country:of) text(स्लोवाकिया) +text(المجر) text(was:a:neighboring:country:of) text(Slovenia) +text(Hungary) text(neighbors:with) text(Croatia) +text(匈牙利) text(was:a:neighbor:of) text(奧地利) +text(हंगरी) text(is:a:neighbor:of) text(Servië) +text(Hongarije) text(is:a:neighboring:state:to) text(रोमानिया) +text(Malawi) text(is:still:in) text(Oost-Afrika) +text(مالاوي) text(was:a:neighboring:state:to) text(ज़ाम्बिया) +text(मलावी) text(borders:with) text(Tanzania) +text(Malawi) text(borders) text(Mozambique) +text(Hongkong) text(is:butted:against) text(الصين) +text(Liechtenstein) text(was:still:in) text(Western:Europe) +text(Liechtenstein) text(was:currently:in) text(أوروبا) +text(ليختنشتاين) text(was:butted:against) text(瑞士) +text(लिक्टेन्स्टाइन) text(was:adjacent:to) text(Austria) +text(巴巴多斯) text(is:currently:in) text(Caribe) +text(Barbados) text(is:placed:in) text(América) +text(Georgia) text(was:placed:in) text(West:Asia) +text(جورجيا) text(is:adjacent:to) text(आर्मीनिया) +text(जॉर्जिया) text(neighbors) text(Azerbeidzjan) +text(Georgia) text(is:a:neighboring:country:of) text(Rusland) +text(格鲁吉亚) text(was:a:neighboring:country:of) text(Turkey) +text(अल्बानिया) text(can:be:found:in) text(南欧) +text(ألبانيا) text(was:situated:in) text(Europe) +text(Albanië) text(neighbors:with) text(Montenegro) +text(阿爾巴尼亞) text(was:a:neighbor:of) text(Noord-Macedonië) +text(Albania) text(is:a:neighbor:of) text(Kosovo) +text(Albania) text(is:a:neighboring:state:to) text(اليونان) +text(科威特) text(is:situated:in) text(غرب:آسيا) +text(الكويت) text(was:a:neighboring:state:to) text(Saoedi-Arabië) +text(Koeweit) text(borders:with) text(Irak) +text(Sudáfrica) text(is:located:in) text(إفريقيا:الجنوبية) +text(Zuid-Afrika) text(borders) text(Mozambique) +text(جنوب:إفريقيا) text(is:butted:against) text(Botsuana) +text(दक्षिण:अफ़्रीका) text(was:butted:against) text(Esuatini) +text(南非) text(was:adjacent:to) text(Zimbabwe) +text(South:Africa) text(is:adjacent:to) text(Namibia) +text(Sudáfrica) text(neighbors) text(Lesotho) +text(海地) text(was:located:in) text(Caribbean) +text(Haiti) text(can:be:found:in) text(أمريكتان) +text(هايتي) text(is:a:neighboring:country:of) text(Dominicaanse:Republiek) +text(أفغانستان) text(was:positioned:in) text(Asia:del:Sur) +text(Afghanistan) text(was:a:neighboring:country:of) text(تركمانستان) +text(阿富汗) text(neighbors:with) text(People's:Republic:of:China) +text(Afganistán) text(was:a:neighbor:of) text(Tadzjikistan) +text(Afghanistan) text(is:a:neighbor:of) text(أوزبكستان) +text(अफ़्ग़ानिस्तान) text(is:a:neighboring:state:to) text(إيران) +text(أفغانستان) text(was:a:neighboring:state:to) text(Pakistán) +text(Singapur) text(is:positioned:in) text(Sudeste:Asiático) +text(Singapore) text(was:sited:in) text(Asia) +text(Benin) text(is:sited:in) text(West:Africa) +text(बेनिन) text(borders:with) text(Níger) +text(貝南) text(borders) text(بوركينا:فاسو) +text(Benin) text(is:butted:against) text(Togo) +text(بنين) text(was:butted:against) text(奈及利亞) +text(Åland) text(was:localized:in) text(Noord-Europa) +text(جزر:أولاند) text(is:localized:in) text(Europa) +text(Croacia) text(was:present:in) text(Southern:Europe) +text(克羅地亞) text(was:adjacent:to) text(سلوفينيا) +text(क्रोएशिया) text(is:adjacent:to) text(Bosnië:en:Herzegovina) +text(كرواتيا) text(neighbors) text(Hungría) +text(Kroatië) text(is:a:neighboring:country:of) text(Serbia) +text(Croatia) text(was:a:neighboring:country:of) text(Montenegro) +text(Zweden) text(is:present:in) text(उत्तरी:यूरोप) +text(Sweden) text(neighbors:with) text(नॉर्वे) +text(السويد) text(was:a:neighbor:of) text(فنلندا) +text(मेक्सिको) text(is:a:neighbor:of) text(Belice) +text(墨西哥) text(is:a:neighboring:state:to) text(United:States) +text(المكسيك) text(was:a:neighboring:state:to) text(危地马拉) +text(Groenland) text(is:still:in) text(Noord-Amerika) +text(Groenlandia) text(was:still:in) text(Americas) +text(Pitcairn:Islands) text(was:currently:in) text(nan) +text(Pitcairneilanden) text(is:currently:in) text(ओशिआनिया) +text(Nepal) text(is:placed:in) text(Zuid-Azië) +text(Nepal) text(was:placed:in) text(Azië) +text(नेपाल) text(borders:with) text(Volksrepubliek:China) +text(نيبال) text(borders) text(India) +text(Guatemala) text(is:butted:against) text(Belize) +text(Guatemala) text(was:butted:against) text(El:Salvador) +text(ग्वाटेमाला) text(was:adjacent:to) text(Mexico) +text(غواتيمالا) text(is:adjacent:to) text(Honduras) +text(दक्षिण:कोरिया) text(can:be:found:in) text(पूर्वी:एशिया) +text(Zuid-Korea) text(neighbors) text(كوريا:الشمالية) +text(Moldavië) text(was:situated:in) text(पूर्वी:यूरोप) +text(Moldavia) text(is:situated:in) text(欧洲) +text(مولدوفا) text(is:a:neighboring:country:of) text(أوكرانيا) +text(मोल्डोवा) text(was:a:neighboring:country:of) text(Roemenië) +text(毛里求斯) text(is:located:in) text(पूर्वी:अफ्रीका) +text(मॉरिशस) text(was:located:in) text(非洲) +text(بيلاروس) text(neighbors:with) text(烏克蘭) +text(बेलारूस) text(was:a:neighbor:of) text(بولندا) +text(白俄羅斯) text(is:a:neighbor:of) text(Lithuania) +text(Belarus) text(is:a:neighboring:state:to) text(रूस) +text(Bielorrusia) text(was:a:neighboring:state:to) text(Latvia) +text(बांग्लादेश) text(borders:with) text(ميانمار) +text(Bangladesh) text(borders) text(الهند) +text(馬來西亞) text(can:be:found:in) text(جنوب:شرق:آسيا) +text(मलेशिया) text(is:butted:against) text(थाईलैंड) +text(Malaysia) text(was:butted:against) text(Indonesia) +text(Malasia) text(was:adjacent:to) text(Brunéi) +text(बोस्निया:और:हर्ज़ेगोविना) text(was:positioned:in) text(أوروبا:الجنوبية) +text(Bosnia:and:Herzegovina) text(is:adjacent:to) text(सर्बिया) +text(البوسنة:والهرسك) text(neighbors) text(Croacia) +text(Bosnia:y:Herzegovina) text(is:a:neighboring:country:of) text(الجبل:الأسود) +text(لوكسمبورغ) text(is:positioned:in) text(أوروبا:الغربية) +text(लक्ज़मबर्ग) text(was:a:neighboring:country:of) text(德國) +text(Luxembourg) text(neighbors:with) text(比利時) +text(Luxemburg) text(was:a:neighbor:of) text(France) +text(إيطاليا) text(was:sited:in) text(Zuid-Europa) +text(Italy) text(is:sited:in) text(Europa) +text(Italië) text(is:a:neighbor:of) text(斯洛文尼亞) +text(Italia) text(is:a:neighboring:state:to) text(Zwitserland) +text(意大利) text(was:a:neighboring:state:to) text(النمسا) +text(इटली) text(borders:with) text(Frankrijk) +text(إيطاليا) text(borders) text(梵蒂岡城國) +text(Italy) text(is:butted:against) text(San:Marino) +text(أذربيجان) text(was:localized:in) text(पश्चिमी:एशिया) +text(अज़रबैजान) text(was:butted:against) text(تركيا) +text(阿塞拜疆) text(was:adjacent:to) text(Armenia) +text(Azerbaiyán) text(is:adjacent:to) text(روسيا) +text(Azerbaijan) text(neighbors) text(Irán) +text(Azerbeidzjan) text(is:a:neighboring:country:of) text(Georgië) +text(هندوراس) text(is:localized:in) text(Central:America) +text(Honduras) text(was:a:neighboring:country:of) text(Guatemala) +text(Honduras) text(neighbors:with) text(Nicaragua) +text(洪都拉斯) text(was:a:neighbor:of) text(薩爾瓦多) +text(माली) text(was:present:in) text(África:Occidental) +text(Mali) text(is:a:neighbor:of) text(Burkina:Faso) +text(Mali) text(is:a:neighboring:state:to) text(Guinee) +text(马里) text(was:a:neighboring:state:to) text(Mauritanië) +text(Mali) text(borders:with) text(Niger) +text(مالي) text(borders) text(Senegal) +text(माली) text(is:butted:against) text(阿爾及利亞) +text(Mali) text(was:butted:against) text(कोत:दिव्वार) +text(تايوان) text(is:present:in) text(Asia:Oriental) +text(Taiwan) text(is:still:in) text(Asia) +text(Algerije) text(was:still:in) text(Noord-Afrika) +text(Algeria) text(was:adjacent:to) text(Libië) +text(Argelia) text(is:adjacent:to) text(تونس) +text(अल्जीरिया) text(neighbors) text(Mauritania) +text(الجزائر) text(is:a:neighboring:country:of) text(Marokko) +text(阿爾及利亞) text(was:a:neighboring:country:of) text(Niger) +text(Algerije) text(neighbors:with) text(Mali) +text(Algeria) text(was:a:neighbor:of) text(الجمهورية:العربية:الصحراوية:الديمقراطية) +text(Guayana:Francesa) text(is:a:neighbor:of) text(巴西) +text(غويانا:الفرنسية) text(is:a:neighboring:state:to) text(सूरीनाम) +text(Jemen) text(was:currently:in) text(西亚) +text(Yemen) text(was:a:neighboring:state:to) text(ओमान) +text(Yemen) text(borders:with) text(السعودية) +text(بورتوريكو) text(is:currently:in) text(الكاريبي) +text(Puerto:Rico) text(is:placed:in) text(美洲) +text(San:Vicente:y:las:Granadinas) text(was:placed:in) text(加勒比地区) +text(圣文森特和格林纳丁斯) text(can:be:found:in) text(महाअमेरिका) +text(Venezuela) text(borders) text(Brasil) +text(Venezuela) text(is:butted:against) text(Guyana) +text(فنزويلا) text(was:butted:against) text(哥伦比亚) +text(Grenada) text(was:situated:in) text(Caraïben) +text(غرينادا) text(is:situated:in) text(Amerika) +text(संयुक्त:राज्य:अमेरिका) text(was:adjacent:to) text(Canada) +text(Estados:Unidos) text(is:adjacent:to) text(Mexico) +text(托克劳) text(is:located:in) text(Polynesia) +text(Tokelau) text(was:located:in) text(أوقيانوسيا) +text(स्लोवेनिया) text(can:be:found:in) text(Europa:del:Sur) +text(Eslovenia) text(neighbors) text(ऑस्ट्रिया) +text(Slovenië) text(is:a:neighboring:country:of) text(克羅地亞) +text(Slovenia) text(was:a:neighboring:country:of) text(Italië) +text(سلوفينيا) text(neighbors:with) text(المجر) +text(Philippines) text(was:positioned:in) text(东南亚) +text(Filipijnen) text(is:positioned:in) text(亞洲) +text(ميكرونيسيا) text(was:sited:in) text(Micronesia) +text(Micronesia) text(is:sited:in) text(Oceanía) +text(中华人民共和国) text(was:localized:in) text(東亞) +text(चीनी:जनवादी:गणराज्य) text(was:a:neighbor:of) text(Afghanistan) +text(República:Popular:China) text(is:a:neighbor:of) text(Bhutan) +text(الصين) text(is:a:neighboring:state:to) text(Macao) +text(People's:Republic:of:China) text(was:a:neighboring:state:to) text(India) +text(Volksrepubliek:China) text(borders:with) text(كازاخستان) +text(中华人民共和国) text(borders) text(Kyrgyzstan) +text(चीनी:जनवादी:गणराज्य) text(is:butted:against) text(Tajikistan) +text(República:Popular:China) text(was:butted:against) text(Laos) +text(الصين) text(was:adjacent:to) text(俄罗斯) +text(People's:Republic:of:China) text(is:adjacent:to) text(Corea:del:Norte) +text(Volksrepubliek:China) text(neighbors) text(緬甸) +text(中华人民共和国) text(is:a:neighboring:country:of) text(巴基斯坦) +text(चीनी:जनवादी:गणराज्य) text(was:a:neighboring:country:of) text(मंगोलिया) +text(República:Popular:China) text(neighbors:with) text(香港) +text(الصين) text(was:a:neighbor:of) text(Vietnam) +text(Gabón) text(is:localized:in) text(Centraal-Afrika) +text(Gabon) text(is:a:neighbor:of) text(Guinea:Ecuatorial) +text(Gabon) text(is:a:neighboring:state:to) text(República:del:Congo) +text(加蓬) text(was:a:neighboring:state:to) text(Camerún) +text(Amerikaanse:Kleinere:Afgelegen:Eilanden) text(was:present:in) text(أمريكا:الشمالية) +text(美国本土外小岛屿) text(is:present:in) text(América) +text(Andorra) text(is:still:in) text(दक्षिणी:यूरोप) +text(Andorra) text(borders:with) text(إسبانيا) +text(安道尔) text(borders) text(فرنسا) +text(萨摩亚) text(was:still:in) text(Polynesië) +text(Samoa) text(was:currently:in) text(大洋洲) +text(Gambia) text(is:currently:in) text(غرب:إفريقيا) +text(岡比亞) text(is:placed:in) text(Africa) +text(The:Gambia) text(is:butted:against) text(सेनेगल) +text(nan) text(was:placed:in) text(Zuidwest-Azië) +text(Pedro:Miguel) text(can:be:found:in) text(آسيا) +text(nan) text(was:butted:against) text(जॉर्डन) +text(Pedro:Miguel) text(was:adjacent:to) text(埃及) +text(nan) text(is:adjacent:to) text(Israël) +text(留尼汪) text(was:situated:in) text(东部非洲) +text(Réunion) text(is:situated:in) text(Afrika) +text(Francia) text(is:located:in) text(West-Europa) +text(法國) text(neighbors) text(ألمانيا) +text(फ़्रान्स) text(is:a:neighboring:country:of) text(卢森堡) +text(France) text(was:a:neighboring:country:of) text(Italia) +text(Frankrijk) text(neighbors:with) text(Andorra) +text(فرنسا) text(was:a:neighbor:of) text(سويسرا) +text(Francia) text(is:a:neighbor:of) text(Mónaco) +text(法國) text(is:a:neighboring:state:to) text(बेल्जियम) +text(फ़्रान्स) text(was:a:neighboring:state:to) text(Spanje) +text(منغوليا) text(was:located:in) text(East:Asia) +text(Mongolia) text(can:be:found:in) text(एशिया) +text(蒙古國) text(borders:with) text(People's:Republic:of:China) +text(Mongolia) text(borders) text(Rusia) +text(Lituania) text(was:positioned:in) text(أوروبا:الشمالية) +text(Litouwen) text(is:butted:against) text(Polonia) +text(लिथुआनिया) text(was:butted:against) text(Letonia) +text(ليتوانيا) text(was:adjacent:to) text(Wit-Rusland) +text(立陶宛) text(is:adjacent:to) text(Russia) +text(Cayman:Islands) text(is:positioned:in) text(कैरिबिया) +text(केमन:द्वीपसमूह) text(was:sited:in) text(أمريكتان) +text(Saint:Lucia) text(is:sited:in) text(Caribe) +text(سانت:لوسيا) text(was:localized:in) text(Americas) +text(Curazao) text(is:localized:in) text(Caribbean) +text(Curaçao) text(was:present:in) text(美洲) +text(الكاريبي) text(is:present:in) text(महाअमेरिका) +text(South:Asia) text(is:still:in) text(Asia) +text(中部非洲) text(was:still:in) text(África) +text(北歐) text(was:currently:in) text(यूरोप) +text(南欧) text(is:currently:in) text(أوروبا) +text(Asia:Occidental) text(is:placed:in) text(Azië) +text(South:America) text(was:placed:in) text(Amerika) +text(Polinesia) text(can:be:found:in) text(Oceanië) +text(nan) text(was:situated:in) text(Oceania) +text(西欧) text(is:situated:in) text(Europe) +text(East:Africa) text(is:located:in) text(अफ्रीका) +text(West-Afrika) text(was:located:in) text(إفريقيا) +text(Europa:Oriental) text(can:be:found:in) text(Europa) +text(केंद्रीय:अमेरिका) text(was:positioned:in) text(América) +text(América:del:Norte) text(is:positioned:in) text(أمريكتان) +text(दक्षिण:पूर्व:एशिया) text(was:sited:in) text(Asia) +text(Southern:Africa) text(is:sited:in) text(非洲) +text(شرق:آسيا) text(was:localized:in) text(亞洲) +text(Norte:de:África) text(is:localized:in) text(Africa) +text(मॅलानिशिया) text(was:present:in) text(ओशिआनिया) +text(Micronesië) text(is:present:in) text(أوقيانوسيا) +text(Central:Asia) text(is:still:in) text(آسيا) +text(中欧) text(was:still:in) text(欧洲) \ No newline at end of file diff --git a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_relation2text.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_relation2text.tsv new file mode 100644 index 0000000..4b29673 --- /dev/null +++ b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_relation2text.tsv @@ -0,0 +1,979 @@ +palau text(can:be:found:in) micronesia +palau text(was:positioned:in) oceania +maldives text(is:positioned:in) southern_asia +maldives text(was:sited:in) asia +brunei text(is:sited:in) south-eastern_asia +brunei text(was:localized:in) asia +brunei text(is:butted:against) malaysia +japan text(is:localized:in) eastern_asia +japan text(was:present:in) asia +netherlands text(was:butted:against) germany +netherlands text(was:adjacent:to) belgium +turkey text(is:adjacent:to) armenia +turkey text(neighbors) azerbaijan +turkey text(is:a:neighboring:country:of) iran +turkey text(was:a:neighboring:country:of) greece +turkey text(neighbors:with) georgia +turkey text(was:a:neighbor:of) bulgaria +turkey text(is:a:neighbor:of) iraq +turkey text(is:a:neighboring:state:to) syria +angola text(is:present:in) middle_africa +angola text(was:a:neighboring:state:to) dr_congo +angola text(borders:with) namibia +angola text(borders) zambia +angola text(is:butted:against) republic_of_the_congo +armenia text(is:still:in) western_asia +armenia text(was:butted:against) georgia +armenia text(was:adjacent:to) azerbaijan +armenia text(is:adjacent:to) iran +armenia text(neighbors) turkey +antigua_and_barbuda text(was:still:in) caribbean +antigua_and_barbuda text(was:currently:in) americas +swaziland text(is:currently:in) southern_africa +swaziland text(is:a:neighboring:country:of) south_africa +swaziland text(was:a:neighboring:country:of) mozambique +wallis_and_futuna text(is:placed:in) polynesia +wallis_and_futuna text(was:placed:in) oceania +uruguay text(can:be:found:in) south_america +uruguay text(was:situated:in) americas +uruguay text(neighbors:with) argentina +uruguay text(was:a:neighbor:of) brazil +zambia text(is:situated:in) eastern_africa +zambia text(is:a:neighbor:of) tanzania +zambia text(is:a:neighboring:state:to) mozambique +zambia text(was:a:neighboring:state:to) dr_congo +zambia text(borders:with) angola +zambia text(borders) botswana +zambia text(is:butted:against) zimbabwe +zambia text(was:butted:against) namibia +zambia text(was:adjacent:to) malawi +cyprus text(is:located:in) eastern_europe +cyprus text(was:located:in) europe +cyprus text(is:adjacent:to) united_kingdom +ireland text(can:be:found:in) northern_europe +ireland text(was:positioned:in) europe +ireland text(neighbors) united_kingdom +burundi text(is:positioned:in) eastern_africa +burundi text(is:a:neighboring:country:of) dr_congo +burundi text(was:a:neighboring:country:of) rwanda +burundi text(neighbors:with) tanzania +central_african_republic text(was:sited:in) middle_africa +central_african_republic text(was:a:neighbor:of) chad +central_african_republic text(is:a:neighbor:of) republic_of_the_congo +central_african_republic text(is:a:neighboring:state:to) dr_congo +central_african_republic text(was:a:neighboring:state:to) south_sudan +central_african_republic text(borders:with) cameroon +central_african_republic text(borders) sudan +tonga text(is:sited:in) polynesia +tonga text(was:localized:in) oceania +ivory_coast text(is:localized:in) western_africa +ivory_coast text(is:butted:against) burkina_faso +ivory_coast text(was:butted:against) ghana +ivory_coast text(was:adjacent:to) liberia +ivory_coast text(is:adjacent:to) mali +ivory_coast text(neighbors) guinea +sierra_leone text(is:a:neighboring:country:of) liberia +sierra_leone text(was:a:neighboring:country:of) guinea +mayotte text(was:present:in) eastern_africa +mayotte text(is:present:in) africa +poland text(neighbors:with) germany +poland text(was:a:neighbor:of) ukraine +poland text(is:a:neighbor:of) slovakia +poland text(is:a:neighboring:state:to) belarus +poland text(was:a:neighboring:state:to) russia +poland text(borders:with) lithuania +poland text(borders) czechia +kazakhstan text(is:still:in) central_asia +kazakhstan text(is:butted:against) turkmenistan +kazakhstan text(was:butted:against) china +kazakhstan text(was:adjacent:to) kyrgyzstan +kazakhstan text(is:adjacent:to) uzbekistan +kazakhstan text(neighbors) russia +uzbekistan text(was:still:in) central_asia +uzbekistan text(is:a:neighboring:country:of) afghanistan +uzbekistan text(was:a:neighboring:country:of) turkmenistan +uzbekistan text(neighbors:with) kazakhstan +uzbekistan text(was:a:neighbor:of) kyrgyzstan +uzbekistan text(is:a:neighbor:of) tajikistan +turks_and_caicos_islands text(was:currently:in) caribbean +turks_and_caicos_islands text(is:currently:in) americas +new_caledonia text(is:placed:in) melanesia +new_caledonia text(was:placed:in) oceania +pakistan text(is:a:neighboring:state:to) china +pakistan text(was:a:neighboring:state:to) afghanistan +pakistan text(borders:with) iran +pakistan text(borders) india +argentina text(can:be:found:in) south_america +argentina text(is:butted:against) bolivia +argentina text(was:butted:against) chile +argentina text(was:adjacent:to) brazil +argentina text(is:adjacent:to) paraguay +argentina text(neighbors) uruguay +cuba text(was:situated:in) caribbean +cuba text(is:situated:in) americas +serbia text(is:a:neighboring:country:of) macedonia +serbia text(was:a:neighboring:country:of) montenegro +serbia text(neighbors:with) kosovo +serbia text(was:a:neighbor:of) bosnia_and_herzegovina +serbia text(is:a:neighbor:of) croatia +serbia text(is:a:neighboring:state:to) hungary +serbia text(was:a:neighboring:state:to) bulgaria +serbia text(borders:with) romania +czechia text(is:located:in) eastern_europe +czechia text(borders) germany +czechia text(is:butted:against) austria +czechia text(was:butted:against) poland +czechia text(was:adjacent:to) slovakia +nicaragua text(is:adjacent:to) honduras +nicaragua text(neighbors) costa_rica +vietnam text(was:located:in) south-eastern_asia +vietnam text(can:be:found:in) asia +vietnam text(is:a:neighboring:country:of) cambodia +vietnam text(was:a:neighboring:country:of) laos +vietnam text(neighbors:with) china +niue text(was:positioned:in) polynesia +niue text(is:positioned:in) oceania +canada text(was:sited:in) northern_america +canada text(was:a:neighbor:of) united_states +slovakia text(is:a:neighbor:of) ukraine +slovakia text(is:a:neighboring:state:to) poland +slovakia text(was:a:neighboring:state:to) austria +slovakia text(borders:with) hungary +slovakia text(borders) czechia +mozambique text(is:butted:against) tanzania +mozambique text(was:butted:against) swaziland +mozambique text(was:adjacent:to) zimbabwe +mozambique text(is:adjacent:to) zambia +mozambique text(neighbors) malawi +mozambique text(is:a:neighboring:country:of) south_africa +aruba text(is:sited:in) caribbean +aruba text(was:localized:in) americas +bolivia text(is:localized:in) south_america +bolivia text(was:a:neighboring:country:of) chile +bolivia text(neighbors:with) brazil +bolivia text(was:a:neighbor:of) paraguay +bolivia text(is:a:neighbor:of) argentina +bolivia text(is:a:neighboring:state:to) peru +colombia text(was:present:in) south_america +colombia text(was:a:neighboring:state:to) ecuador +colombia text(borders:with) brazil +colombia text(borders) panama +colombia text(is:butted:against) venezuela +colombia text(was:butted:against) peru +fiji text(is:present:in) melanesia +fiji text(is:still:in) oceania +republic_of_the_congo text(was:adjacent:to) gabon +republic_of_the_congo text(is:adjacent:to) dr_congo +republic_of_the_congo text(neighbors) angola +republic_of_the_congo text(is:a:neighboring:country:of) cameroon +republic_of_the_congo text(was:a:neighboring:country:of) central_african_republic +saudi_arabia text(neighbors:with) qatar +saudi_arabia text(was:a:neighbor:of) united_arab_emirates +saudi_arabia text(is:a:neighbor:of) jordan +saudi_arabia text(is:a:neighboring:state:to) yemen +saudi_arabia text(was:a:neighboring:state:to) oman +saudi_arabia text(borders:with) kuwait +saudi_arabia text(borders) iraq +el_salvador text(was:still:in) central_america +el_salvador text(is:butted:against) guatemala +el_salvador text(was:butted:against) honduras +madagascar text(was:currently:in) eastern_africa +madagascar text(is:currently:in) africa +australia text(is:placed:in) australia_and_new_zealand +australia text(was:placed:in) oceania +namibia text(can:be:found:in) southern_africa +namibia text(was:situated:in) africa +namibia text(was:adjacent:to) zambia +namibia text(is:adjacent:to) angola +namibia text(neighbors) south_africa +namibia text(is:a:neighboring:country:of) botswana +tuvalu text(is:situated:in) polynesia +tuvalu text(is:located:in) oceania +svalbard_and_jan_mayen text(was:located:in) northern_europe +svalbard_and_jan_mayen text(can:be:found:in) europe +isle_of_man text(was:positioned:in) northern_europe +isle_of_man text(is:positioned:in) europe +guyana text(was:a:neighboring:country:of) brazil +guyana text(neighbors:with) suriname +guyana text(was:a:neighbor:of) venezuela +vatican_city text(was:sited:in) southern_europe +vatican_city text(is:sited:in) europe +vatican_city text(is:a:neighbor:of) italy +british_indian_ocean_territory text(was:localized:in) eastern_africa +british_indian_ocean_territory text(is:localized:in) africa +nigeria text(was:present:in) western_africa +nigeria text(is:present:in) africa +nigeria text(is:a:neighboring:state:to) chad +nigeria text(was:a:neighboring:state:to) niger +nigeria text(borders:with) cameroon +nigeria text(borders) benin +germany text(is:butted:against) denmark +germany text(was:butted:against) netherlands +germany text(was:adjacent:to) poland +germany text(is:adjacent:to) luxembourg +germany text(neighbors) belgium +germany text(is:a:neighboring:country:of) switzerland +germany text(was:a:neighboring:country:of) austria +germany text(neighbors:with) france +germany text(was:a:neighbor:of) czechia +burkina_faso text(is:a:neighbor:of) togo +burkina_faso text(is:a:neighboring:state:to) benin +burkina_faso text(was:a:neighboring:state:to) niger +burkina_faso text(borders:with) ghana +burkina_faso text(borders) mali +burkina_faso text(is:butted:against) ivory_coast +tanzania text(was:butted:against) uganda +tanzania text(was:adjacent:to) mozambique +tanzania text(is:adjacent:to) dr_congo +tanzania text(neighbors) kenya +tanzania text(is:a:neighboring:country:of) rwanda +tanzania text(was:a:neighboring:country:of) zambia +tanzania text(neighbors:with) malawi +tanzania text(was:a:neighbor:of) burundi +northern_mariana_islands text(is:still:in) micronesia +northern_mariana_islands text(was:still:in) oceania +belize text(was:currently:in) central_america +belize text(is:a:neighbor:of) guatemala +belize text(is:a:neighboring:state:to) mexico +norway text(was:a:neighboring:state:to) sweden +norway text(borders:with) finland +norway text(borders) russia +cocos_keeling_islands text(is:currently:in) australia_and_new_zealand +cocos_keeling_islands text(is:placed:in) oceania +laos text(was:placed:in) south-eastern_asia +laos text(is:butted:against) china +laos text(was:butted:against) cambodia +laos text(was:adjacent:to) myanmar +laos text(is:adjacent:to) vietnam +laos text(neighbors) thailand +western_sahara text(can:be:found:in) northern_africa +western_sahara text(is:a:neighboring:country:of) algeria +western_sahara text(was:a:neighboring:country:of) mauritania +western_sahara text(neighbors:with) morocco +suriname text(was:situated:in) south_america +suriname text(was:a:neighbor:of) brazil +suriname text(is:a:neighbor:of) french_guiana +suriname text(is:a:neighboring:state:to) guyana +christmas_island text(is:situated:in) australia_and_new_zealand +christmas_island text(is:located:in) oceania +são_tomé_and_príncipe text(was:located:in) middle_africa +são_tomé_and_príncipe text(can:be:found:in) africa +egypt text(was:a:neighboring:state:to) libya +egypt text(borders:with) israel +egypt text(borders) sudan +bulgaria text(is:butted:against) macedonia +bulgaria text(was:butted:against) turkey +bulgaria text(was:adjacent:to) greece +bulgaria text(is:adjacent:to) serbia +bulgaria text(neighbors) romania +guinea text(was:positioned:in) western_africa +guinea text(is:a:neighboring:country:of) guinea-bissau +guinea text(was:a:neighboring:country:of) sierra_leone +guinea text(neighbors:with) mali +guinea text(was:a:neighbor:of) liberia +guinea text(is:a:neighbor:of) senegal +guinea text(is:a:neighboring:state:to) ivory_coast +spain text(was:a:neighboring:state:to) morocco +spain text(borders:with) gibraltar +spain text(borders) andorra +spain text(is:butted:against) france +spain text(was:butted:against) portugal +costa_rica text(is:positioned:in) central_america +costa_rica text(was:adjacent:to) panama +costa_rica text(is:adjacent:to) nicaragua +malta text(was:sited:in) southern_europe +malta text(is:sited:in) europe +portugal text(was:localized:in) southern_europe +portugal text(neighbors) spain +romania text(is:localized:in) eastern_europe +romania text(is:a:neighboring:country:of) ukraine +romania text(was:a:neighboring:country:of) hungary +romania text(neighbors:with) moldova +romania text(was:a:neighbor:of) bulgaria +romania text(is:a:neighbor:of) serbia +san_marino text(was:present:in) southern_europe +san_marino text(is:present:in) europe +san_marino text(is:a:neighboring:state:to) italy +mauritania text(is:still:in) western_africa +mauritania text(was:still:in) africa +mauritania text(was:a:neighboring:state:to) algeria +mauritania text(borders:with) mali +mauritania text(borders) western_sahara +mauritania text(is:butted:against) senegal +trinidad_and_tobago text(was:currently:in) caribbean +trinidad_and_tobago text(is:currently:in) americas +bahrain text(is:placed:in) western_asia +bahrain text(was:placed:in) asia +myanmar text(was:butted:against) india +myanmar text(was:adjacent:to) bangladesh +myanmar text(is:adjacent:to) china +myanmar text(neighbors) laos +myanmar text(is:a:neighboring:country:of) thailand +iraq text(was:a:neighboring:country:of) turkey +iraq text(neighbors:with) saudi_arabia +iraq text(was:a:neighbor:of) iran +iraq text(is:a:neighbor:of) jordan +iraq text(is:a:neighboring:state:to) kuwait +iraq text(was:a:neighboring:state:to) syria +south_georgia text(can:be:found:in) south_america +south_georgia text(was:situated:in) americas +iceland text(is:situated:in) northern_europe +iceland text(is:located:in) europe +dr_congo text(was:located:in) middle_africa +dr_congo text(borders:with) uganda +dr_congo text(borders) tanzania +dr_congo text(is:butted:against) republic_of_the_congo +dr_congo text(was:butted:against) central_african_republic +dr_congo text(was:adjacent:to) angola +dr_congo text(is:adjacent:to) rwanda +dr_congo text(neighbors) south_sudan +dr_congo text(is:a:neighboring:country:of) zambia +dr_congo text(was:a:neighboring:country:of) burundi +seychelles text(can:be:found:in) eastern_africa +seychelles text(was:positioned:in) africa +kyrgyzstan text(neighbors:with) china +kyrgyzstan text(was:a:neighbor:of) kazakhstan +kyrgyzstan text(is:a:neighbor:of) tajikistan +kyrgyzstan text(is:a:neighboring:state:to) uzbekistan +botswana text(is:positioned:in) southern_africa +botswana text(was:a:neighboring:state:to) zimbabwe +botswana text(borders:with) namibia +botswana text(borders) zambia +botswana text(is:butted:against) south_africa +faroe_islands text(was:sited:in) northern_europe +faroe_islands text(is:sited:in) europe +jamaica text(was:localized:in) caribbean +jamaica text(is:localized:in) americas +american_samoa text(was:present:in) polynesia +american_samoa text(is:present:in) oceania +lesotho text(is:still:in) southern_africa +lesotho text(was:still:in) africa +lesotho text(was:butted:against) south_africa +sri_lanka text(was:adjacent:to) india +belgium text(was:currently:in) western_europe +belgium text(is:adjacent:to) germany +belgium text(neighbors) luxembourg +belgium text(is:a:neighboring:country:of) france +belgium text(was:a:neighboring:country:of) netherlands +qatar text(is:currently:in) western_asia +qatar text(neighbors:with) saudi_arabia +solomon_islands text(is:placed:in) melanesia +solomon_islands text(was:placed:in) oceania +syria text(can:be:found:in) western_asia +syria text(was:a:neighbor:of) israel +syria text(is:a:neighbor:of) turkey +syria text(is:a:neighboring:state:to) jordan +syria text(was:a:neighboring:state:to) lebanon +syria text(borders:with) iraq +india text(was:situated:in) southern_asia +india text(borders) afghanistan +india text(is:butted:against) bhutan +india text(was:butted:against) bangladesh +india text(was:adjacent:to) china +india text(is:adjacent:to) nepal +india text(neighbors) myanmar +india text(is:a:neighboring:country:of) pakistan +india text(was:a:neighboring:country:of) sri_lanka +morocco text(neighbors:with) algeria +morocco text(was:a:neighbor:of) spain +morocco text(is:a:neighbor:of) western_sahara +kenya text(is:situated:in) eastern_africa +kenya text(is:a:neighboring:state:to) uganda +kenya text(was:a:neighboring:state:to) tanzania +kenya text(borders:with) somalia +kenya text(borders) south_sudan +kenya text(is:butted:against) ethiopia +south_sudan text(is:located:in) middle_africa +south_sudan text(was:butted:against) uganda +south_sudan text(was:adjacent:to) dr_congo +south_sudan text(is:adjacent:to) kenya +south_sudan text(neighbors) central_african_republic +south_sudan text(is:a:neighboring:country:of) sudan +south_sudan text(was:a:neighboring:country:of) ethiopia +ghana text(neighbors:with) burkina_faso +ghana text(was:a:neighbor:of) ivory_coast +ghana text(is:a:neighbor:of) togo +tajikistan text(was:located:in) central_asia +tajikistan text(is:a:neighboring:state:to) china +tajikistan text(was:a:neighboring:state:to) kyrgyzstan +tajikistan text(borders:with) afghanistan +tajikistan text(borders) uzbekistan +marshall_islands text(can:be:found:in) micronesia +marshall_islands text(was:positioned:in) oceania +cameroon text(is:positioned:in) middle_africa +cameroon text(is:butted:against) chad +cameroon text(was:butted:against) republic_of_the_congo +cameroon text(was:adjacent:to) gabon +cameroon text(is:adjacent:to) equatorial_guinea +cameroon text(neighbors) central_african_republic +cameroon text(is:a:neighboring:country:of) nigeria +nauru text(was:sited:in) micronesia +nauru text(is:sited:in) oceania +thailand text(was:a:neighboring:country:of) cambodia +thailand text(neighbors:with) myanmar +thailand text(was:a:neighbor:of) laos +thailand text(is:a:neighbor:of) malaysia +sudan text(is:a:neighboring:state:to) chad +sudan text(was:a:neighboring:state:to) libya +sudan text(borders:with) south_sudan +sudan text(borders) eritrea +sudan text(is:butted:against) central_african_republic +sudan text(was:butted:against) egypt +sudan text(was:adjacent:to) ethiopia +chad text(was:localized:in) middle_africa +chad text(is:adjacent:to) libya +chad text(neighbors) niger +chad text(is:a:neighboring:country:of) south_sudan +chad text(was:a:neighboring:country:of) cameroon +chad text(neighbors:with) central_african_republic +chad text(was:a:neighbor:of) nigeria +vanuatu text(is:localized:in) melanesia +vanuatu text(was:present:in) oceania +cape_verde text(is:present:in) western_africa +cape_verde text(is:still:in) africa +falkland_islands text(was:still:in) south_america +falkland_islands text(was:currently:in) americas +liberia text(is:currently:in) western_africa +liberia text(is:a:neighbor:of) ivory_coast +liberia text(is:a:neighboring:state:to) sierra_leone +liberia text(was:a:neighboring:state:to) guinea +cambodia text(is:placed:in) south-eastern_asia +cambodia text(borders:with) vietnam +cambodia text(borders) thailand +cambodia text(is:butted:against) laos +zimbabwe text(was:butted:against) zambia +zimbabwe text(was:adjacent:to) south_africa +zimbabwe text(is:adjacent:to) botswana +zimbabwe text(neighbors) mozambique +comoros text(was:placed:in) eastern_africa +comoros text(can:be:found:in) africa +guam text(was:situated:in) micronesia +guam text(is:situated:in) oceania +bahamas text(is:located:in) caribbean +bahamas text(was:located:in) americas +lebanon text(can:be:found:in) western_asia +lebanon text(was:positioned:in) asia +lebanon text(is:a:neighboring:country:of) israel +lebanon text(was:a:neighboring:country:of) syria +sint_maarten text(is:positioned:in) caribbean +sint_maarten text(was:sited:in) americas +sint_maarten text(neighbors:with) saint_martin +ethiopia text(is:sited:in) eastern_africa +ethiopia text(was:a:neighbor:of) somalia +ethiopia text(is:a:neighbor:of) kenya +ethiopia text(is:a:neighboring:state:to) eritrea +ethiopia text(was:a:neighboring:state:to) south_sudan +ethiopia text(borders:with) djibouti +ethiopia text(borders) sudan +united_states_virgin_islands text(was:localized:in) caribbean +united_states_virgin_islands text(is:localized:in) americas +guinea-bissau text(was:present:in) western_africa +guinea-bissau text(is:present:in) africa +guinea-bissau text(is:butted:against) guinea +guinea-bissau text(was:butted:against) senegal +libya text(is:still:in) northern_africa +libya text(was:adjacent:to) chad +libya text(is:adjacent:to) tunisia +libya text(neighbors) niger +libya text(is:a:neighboring:country:of) algeria +libya text(was:a:neighboring:country:of) egypt +libya text(neighbors:with) sudan +bhutan text(was:still:in) southern_asia +bhutan text(was:currently:in) asia +bhutan text(was:a:neighbor:of) china +bhutan text(is:a:neighbor:of) india +macau text(is:currently:in) eastern_asia +macau text(is:placed:in) asia +macau text(is:a:neighboring:state:to) china +french_polynesia text(was:placed:in) polynesia +french_polynesia text(can:be:found:in) oceania +somalia text(was:situated:in) eastern_africa +somalia text(was:a:neighboring:state:to) djibouti +somalia text(borders:with) kenya +somalia text(borders) ethiopia +saint_barthélemy text(is:situated:in) caribbean +saint_barthélemy text(is:located:in) americas +russia text(was:located:in) eastern_europe +russia text(is:butted:against) ukraine +russia text(was:butted:against) belarus +russia text(was:adjacent:to) china +russia text(is:adjacent:to) kazakhstan +russia text(neighbors) norway +russia text(is:a:neighboring:country:of) poland +russia text(was:a:neighboring:country:of) azerbaijan +russia text(neighbors:with) lithuania +russia text(was:a:neighbor:of) estonia +russia text(is:a:neighbor:of) north_korea +russia text(is:a:neighboring:state:to) finland +russia text(was:a:neighboring:state:to) mongolia +russia text(borders:with) latvia +russia text(borders) georgia +new_zealand text(can:be:found:in) australia_and_new_zealand +new_zealand text(was:positioned:in) oceania +panama text(is:positioned:in) central_america +panama text(was:sited:in) americas +panama text(is:butted:against) costa_rica +panama text(was:butted:against) colombia +papua_new_guinea text(is:sited:in) melanesia +papua_new_guinea text(was:adjacent:to) indonesia +north_korea text(is:adjacent:to) china +north_korea text(neighbors) south_korea +north_korea text(is:a:neighboring:country:of) russia +latvia text(was:localized:in) northern_europe +latvia text(was:a:neighboring:country:of) lithuania +latvia text(neighbors:with) belarus +latvia text(was:a:neighbor:of) russia +latvia text(is:a:neighbor:of) estonia +oman text(is:localized:in) western_asia +oman text(is:a:neighboring:state:to) saudi_arabia +oman text(was:a:neighboring:state:to) yemen +oman text(borders:with) united_arab_emirates +saint_pierre_and_miquelon text(was:present:in) northern_america +saint_pierre_and_miquelon text(is:present:in) americas +martinique text(is:still:in) caribbean +martinique text(was:still:in) americas +united_kingdom text(was:currently:in) northern_europe +united_kingdom text(is:currently:in) europe +united_kingdom text(borders) ireland +israel text(is:placed:in) western_asia +israel text(is:butted:against) lebanon +israel text(was:butted:against) egypt +israel text(was:adjacent:to) jordan +israel text(is:adjacent:to) syria +jersey text(was:placed:in) northern_europe +jersey text(can:be:found:in) europe +pitcairn_islands text(was:situated:in) polynesia +pitcairn_islands text(is:situated:in) oceania +togo text(is:located:in) western_africa +togo text(neighbors) burkina_faso +togo text(is:a:neighboring:country:of) ghana +togo text(was:a:neighboring:country:of) benin +kiribati text(was:located:in) micronesia +kiribati text(can:be:found:in) oceania +iran text(was:positioned:in) southern_asia +iran text(neighbors:with) afghanistan +iran text(was:a:neighbor:of) turkmenistan +iran text(is:a:neighbor:of) turkey +iran text(is:a:neighboring:state:to) armenia +iran text(was:a:neighboring:state:to) azerbaijan +iran text(borders:with) pakistan +iran text(borders) iraq +saint_martin text(is:positioned:in) caribbean +saint_martin text(was:sited:in) americas +saint_martin text(is:butted:against) sint_maarten +dominican_republic text(is:sited:in) caribbean +dominican_republic text(was:localized:in) americas +dominican_republic text(was:butted:against) haiti +denmark text(was:adjacent:to) germany +bermuda text(is:localized:in) northern_america +bermuda text(was:present:in) americas +chile text(is:adjacent:to) argentina +chile text(neighbors) bolivia +chile text(is:a:neighboring:country:of) peru +kosovo text(is:present:in) eastern_europe +kosovo text(was:a:neighboring:country:of) serbia +kosovo text(neighbors:with) albania +kosovo text(was:a:neighbor:of) macedonia +kosovo text(is:a:neighbor:of) montenegro +saint_kitts_and_nevis text(is:still:in) caribbean +saint_kitts_and_nevis text(was:still:in) americas +eritrea text(is:a:neighboring:state:to) djibouti +eritrea text(was:a:neighboring:state:to) sudan +eritrea text(borders:with) ethiopia +equatorial_guinea text(was:currently:in) middle_africa +equatorial_guinea text(is:currently:in) africa +equatorial_guinea text(borders) gabon +equatorial_guinea text(is:butted:against) cameroon +niger text(is:placed:in) western_africa +niger text(was:butted:against) chad +niger text(was:adjacent:to) libya +niger text(is:adjacent:to) burkina_faso +niger text(neighbors) benin +niger text(is:a:neighboring:country:of) mali +niger text(was:a:neighboring:country:of) algeria +niger text(neighbors:with) nigeria +anguilla text(was:placed:in) caribbean +anguilla text(can:be:found:in) americas +rwanda text(was:situated:in) eastern_africa +rwanda text(was:a:neighbor:of) burundi +rwanda text(is:a:neighbor:of) tanzania +rwanda text(is:a:neighboring:state:to) uganda +rwanda text(was:a:neighboring:state:to) dr_congo +united_arab_emirates text(is:situated:in) western_asia +united_arab_emirates text(borders:with) oman +united_arab_emirates text(borders) saudi_arabia +estonia text(is:located:in) northern_europe +estonia text(was:located:in) europe +estonia text(is:butted:against) latvia +estonia text(was:butted:against) russia +greece text(can:be:found:in) southern_europe +greece text(was:adjacent:to) bulgaria +greece text(is:adjacent:to) albania +greece text(neighbors) macedonia +greece text(is:a:neighboring:country:of) turkey +senegal text(was:positioned:in) western_africa +senegal text(is:positioned:in) africa +senegal text(was:a:neighboring:country:of) guinea-bissau +senegal text(neighbors:with) mauritania +senegal text(was:a:neighbor:of) mali +senegal text(is:a:neighbor:of) gambia +senegal text(is:a:neighboring:state:to) guinea +guadeloupe text(was:sited:in) caribbean +guadeloupe text(is:sited:in) americas +monaco text(was:a:neighboring:state:to) france +djibouti text(borders:with) eritrea +djibouti text(borders) somalia +djibouti text(is:butted:against) ethiopia +indonesia text(was:butted:against) papua_new_guinea +indonesia text(was:adjacent:to) timor-leste +indonesia text(is:adjacent:to) malaysia +british_virgin_islands text(was:localized:in) caribbean +british_virgin_islands text(is:localized:in) americas +cook_islands text(was:present:in) polynesia +cook_islands text(is:present:in) oceania +uganda text(is:still:in) eastern_africa +uganda text(neighbors) tanzania +uganda text(is:a:neighboring:country:of) dr_congo +uganda text(was:a:neighboring:country:of) kenya +uganda text(neighbors:with) south_sudan +uganda text(was:a:neighbor:of) rwanda +macedonia text(was:still:in) southern_europe +macedonia text(is:a:neighbor:of) kosovo +macedonia text(is:a:neighboring:state:to) greece +macedonia text(was:a:neighboring:state:to) albania +macedonia text(borders:with) serbia +macedonia text(borders) bulgaria +tunisia text(was:currently:in) northern_africa +tunisia text(is:currently:in) africa +tunisia text(is:butted:against) libya +tunisia text(was:butted:against) algeria +ecuador text(was:adjacent:to) peru +ecuador text(is:adjacent:to) colombia +brazil text(is:placed:in) south_america +brazil text(neighbors) bolivia +brazil text(is:a:neighboring:country:of) colombia +brazil text(was:a:neighboring:country:of) paraguay +brazil text(neighbors:with) uruguay +brazil text(was:a:neighbor:of) french_guiana +brazil text(is:a:neighbor:of) suriname +brazil text(is:a:neighboring:state:to) venezuela +brazil text(was:a:neighboring:state:to) argentina +brazil text(borders:with) guyana +brazil text(borders) peru +paraguay text(was:placed:in) south_america +paraguay text(can:be:found:in) americas +paraguay text(is:butted:against) argentina +paraguay text(was:butted:against) brazil +paraguay text(was:adjacent:to) bolivia +finland text(was:situated:in) northern_europe +finland text(is:adjacent:to) norway +finland text(neighbors) sweden +finland text(is:a:neighboring:country:of) russia +jordan text(was:a:neighboring:country:of) saudi_arabia +jordan text(neighbors:with) israel +jordan text(was:a:neighbor:of) iraq +jordan text(is:a:neighbor:of) syria +timor-leste text(is:a:neighboring:state:to) indonesia +montenegro text(is:situated:in) southern_europe +montenegro text(was:a:neighboring:state:to) kosovo +montenegro text(borders:with) bosnia_and_herzegovina +montenegro text(borders) croatia +montenegro text(is:butted:against) serbia +montenegro text(was:butted:against) albania +peru text(is:located:in) south_america +peru text(was:adjacent:to) ecuador +peru text(is:adjacent:to) bolivia +peru text(neighbors) chile +peru text(is:a:neighboring:country:of) brazil +peru text(was:a:neighboring:country:of) colombia +montserrat text(was:located:in) caribbean +montserrat text(can:be:found:in) americas +ukraine text(was:positioned:in) eastern_europe +ukraine text(neighbors:with) slovakia +ukraine text(was:a:neighbor:of) belarus +ukraine text(is:a:neighbor:of) poland +ukraine text(is:a:neighboring:state:to) russia +ukraine text(was:a:neighboring:state:to) hungary +ukraine text(borders:with) moldova +ukraine text(borders) romania +dominica text(is:positioned:in) caribbean +dominica text(was:sited:in) americas +turkmenistan text(is:butted:against) kazakhstan +turkmenistan text(was:butted:against) afghanistan +turkmenistan text(was:adjacent:to) uzbekistan +turkmenistan text(is:adjacent:to) iran +guernsey text(is:sited:in) northern_europe +guernsey text(was:localized:in) europe +gibraltar text(is:localized:in) southern_europe +gibraltar text(neighbors) spain +switzerland text(was:present:in) western_europe +switzerland text(is:a:neighboring:country:of) germany +switzerland text(was:a:neighboring:country:of) italy +switzerland text(neighbors:with) austria +switzerland text(was:a:neighbor:of) france +switzerland text(is:a:neighbor:of) liechtenstein +austria text(is:present:in) western_europe +austria text(is:a:neighboring:state:to) germany +austria text(was:a:neighboring:state:to) slovakia +austria text(borders:with) slovenia +austria text(borders) italy +austria text(is:butted:against) switzerland +austria text(was:butted:against) hungary +austria text(was:adjacent:to) liechtenstein +austria text(is:adjacent:to) czechia +hungary text(neighbors) ukraine +hungary text(is:a:neighboring:country:of) slovakia +hungary text(was:a:neighboring:country:of) slovenia +hungary text(neighbors:with) croatia +hungary text(was:a:neighbor:of) austria +hungary text(is:a:neighbor:of) serbia +hungary text(is:a:neighboring:state:to) romania +malawi text(is:still:in) eastern_africa +malawi text(was:a:neighboring:state:to) zambia +malawi text(borders:with) tanzania +malawi text(borders) mozambique +hong_kong text(is:butted:against) china +liechtenstein text(was:still:in) western_europe +liechtenstein text(was:currently:in) europe +liechtenstein text(was:butted:against) switzerland +liechtenstein text(was:adjacent:to) austria +barbados text(is:currently:in) caribbean +barbados text(is:placed:in) americas +georgia text(was:placed:in) western_asia +georgia text(is:adjacent:to) armenia +georgia text(neighbors) azerbaijan +georgia text(is:a:neighboring:country:of) russia +georgia text(was:a:neighboring:country:of) turkey +albania text(can:be:found:in) southern_europe +albania text(was:situated:in) europe +albania text(neighbors:with) montenegro +albania text(was:a:neighbor:of) macedonia +albania text(is:a:neighbor:of) kosovo +albania text(is:a:neighboring:state:to) greece +kuwait text(is:situated:in) western_asia +kuwait text(was:a:neighboring:state:to) saudi_arabia +kuwait text(borders:with) iraq +south_africa text(is:located:in) southern_africa +south_africa text(borders) mozambique +south_africa text(is:butted:against) botswana +south_africa text(was:butted:against) swaziland +south_africa text(was:adjacent:to) zimbabwe +south_africa text(is:adjacent:to) namibia +south_africa text(neighbors) lesotho +haiti text(was:located:in) caribbean +haiti text(can:be:found:in) americas +haiti text(is:a:neighboring:country:of) dominican_republic +afghanistan text(was:positioned:in) southern_asia +afghanistan text(was:a:neighboring:country:of) turkmenistan +afghanistan text(neighbors:with) china +afghanistan text(was:a:neighbor:of) tajikistan +afghanistan text(is:a:neighbor:of) uzbekistan +afghanistan text(is:a:neighboring:state:to) iran +afghanistan text(was:a:neighboring:state:to) pakistan +singapore text(is:positioned:in) south-eastern_asia +singapore text(was:sited:in) asia +benin text(is:sited:in) western_africa +benin text(borders:with) niger +benin text(borders) burkina_faso +benin text(is:butted:against) togo +benin text(was:butted:against) nigeria +åland_islands text(was:localized:in) northern_europe +åland_islands text(is:localized:in) europe +croatia text(was:present:in) southern_europe +croatia text(was:adjacent:to) slovenia +croatia text(is:adjacent:to) bosnia_and_herzegovina +croatia text(neighbors) hungary +croatia text(is:a:neighboring:country:of) serbia +croatia text(was:a:neighboring:country:of) montenegro +sweden text(is:present:in) northern_europe +sweden text(neighbors:with) norway +sweden text(was:a:neighbor:of) finland +mexico text(is:a:neighbor:of) belize +mexico text(is:a:neighboring:state:to) united_states +mexico text(was:a:neighboring:state:to) guatemala +greenland text(is:still:in) northern_america +greenland text(was:still:in) americas +norfolk_island text(was:currently:in) australia_and_new_zealand +norfolk_island text(is:currently:in) oceania +nepal text(is:placed:in) southern_asia +nepal text(was:placed:in) asia +nepal text(borders:with) china +nepal text(borders) india +guatemala text(is:butted:against) belize +guatemala text(was:butted:against) el_salvador +guatemala text(was:adjacent:to) mexico +guatemala text(is:adjacent:to) honduras +south_korea text(can:be:found:in) eastern_asia +south_korea text(neighbors) north_korea +moldova text(was:situated:in) eastern_europe +moldova text(is:situated:in) europe +moldova text(is:a:neighboring:country:of) ukraine +moldova text(was:a:neighboring:country:of) romania +mauritius text(is:located:in) eastern_africa +mauritius text(was:located:in) africa +belarus text(neighbors:with) ukraine +belarus text(was:a:neighbor:of) poland +belarus text(is:a:neighbor:of) lithuania +belarus text(is:a:neighboring:state:to) russia +belarus text(was:a:neighboring:state:to) latvia +bangladesh text(borders:with) myanmar +bangladesh text(borders) india +malaysia text(can:be:found:in) south-eastern_asia +malaysia text(is:butted:against) thailand +malaysia text(was:butted:against) indonesia +malaysia text(was:adjacent:to) brunei +bosnia_and_herzegovina text(was:positioned:in) southern_europe +bosnia_and_herzegovina text(is:adjacent:to) serbia +bosnia_and_herzegovina text(neighbors) croatia +bosnia_and_herzegovina text(is:a:neighboring:country:of) montenegro +luxembourg text(is:positioned:in) western_europe +luxembourg text(was:a:neighboring:country:of) germany +luxembourg text(neighbors:with) belgium +luxembourg text(was:a:neighbor:of) france +italy text(was:sited:in) southern_europe +italy text(is:sited:in) europe +italy text(is:a:neighbor:of) slovenia +italy text(is:a:neighboring:state:to) switzerland +italy text(was:a:neighboring:state:to) austria +italy text(borders:with) france +italy text(borders) vatican_city +italy text(is:butted:against) san_marino +azerbaijan text(was:localized:in) western_asia +azerbaijan text(was:butted:against) turkey +azerbaijan text(was:adjacent:to) armenia +azerbaijan text(is:adjacent:to) russia +azerbaijan text(neighbors) iran +azerbaijan text(is:a:neighboring:country:of) georgia +honduras text(is:localized:in) central_america +honduras text(was:a:neighboring:country:of) guatemala +honduras text(neighbors:with) nicaragua +honduras text(was:a:neighbor:of) el_salvador +mali text(was:present:in) western_africa +mali text(is:a:neighbor:of) burkina_faso +mali text(is:a:neighboring:state:to) guinea +mali text(was:a:neighboring:state:to) mauritania +mali text(borders:with) niger +mali text(borders) senegal +mali text(is:butted:against) algeria +mali text(was:butted:against) ivory_coast +taiwan text(is:present:in) eastern_asia +taiwan text(is:still:in) asia +algeria text(was:still:in) northern_africa +algeria text(was:adjacent:to) libya +algeria text(is:adjacent:to) tunisia +algeria text(neighbors) mauritania +algeria text(is:a:neighboring:country:of) morocco +algeria text(was:a:neighboring:country:of) niger +algeria text(neighbors:with) mali +algeria text(was:a:neighbor:of) western_sahara +french_guiana text(is:a:neighbor:of) brazil +french_guiana text(is:a:neighboring:state:to) suriname +yemen text(was:currently:in) western_asia +yemen text(was:a:neighboring:state:to) oman +yemen text(borders:with) saudi_arabia +puerto_rico text(is:currently:in) caribbean +puerto_rico text(is:placed:in) americas +saint_vincent_and_the_grenadines text(was:placed:in) caribbean +saint_vincent_and_the_grenadines text(can:be:found:in) americas +venezuela text(borders) brazil +venezuela text(is:butted:against) guyana +venezuela text(was:butted:against) colombia +grenada text(was:situated:in) caribbean +grenada text(is:situated:in) americas +united_states text(was:adjacent:to) canada +united_states text(is:adjacent:to) mexico +tokelau text(is:located:in) polynesia +tokelau text(was:located:in) oceania +slovenia text(can:be:found:in) southern_europe +slovenia text(neighbors) austria +slovenia text(is:a:neighboring:country:of) croatia +slovenia text(was:a:neighboring:country:of) italy +slovenia text(neighbors:with) hungary +philippines text(was:positioned:in) south-eastern_asia +philippines text(is:positioned:in) asia +micronesia text(was:sited:in) micronesia +micronesia text(is:sited:in) oceania +china text(was:localized:in) eastern_asia +china text(was:a:neighbor:of) afghanistan +china text(is:a:neighbor:of) bhutan +china text(is:a:neighboring:state:to) macau +china text(was:a:neighboring:state:to) india +china text(borders:with) kazakhstan +china text(borders) kyrgyzstan +china text(is:butted:against) tajikistan +china text(was:butted:against) laos +china text(was:adjacent:to) russia +china text(is:adjacent:to) north_korea +china text(neighbors) myanmar +china text(is:a:neighboring:country:of) pakistan +china text(was:a:neighboring:country:of) mongolia +china text(neighbors:with) hong_kong +china text(was:a:neighbor:of) vietnam +gabon text(is:localized:in) middle_africa +gabon text(is:a:neighbor:of) equatorial_guinea +gabon text(is:a:neighboring:state:to) republic_of_the_congo +gabon text(was:a:neighboring:state:to) cameroon +united_states_minor_outlying_islands text(was:present:in) northern_america +united_states_minor_outlying_islands text(is:present:in) americas +andorra text(is:still:in) southern_europe +andorra text(borders:with) spain +andorra text(borders) france +samoa text(was:still:in) polynesia +samoa text(was:currently:in) oceania +gambia text(is:currently:in) western_africa +gambia text(is:placed:in) africa +gambia text(is:butted:against) senegal +palestine text(was:placed:in) western_asia +palestine text(can:be:found:in) asia +palestine text(was:butted:against) jordan +palestine text(was:adjacent:to) egypt +palestine text(is:adjacent:to) israel +réunion text(was:situated:in) eastern_africa +réunion text(is:situated:in) africa +france text(is:located:in) western_europe +france text(neighbors) germany +france text(is:a:neighboring:country:of) luxembourg +france text(was:a:neighboring:country:of) italy +france text(neighbors:with) andorra +france text(was:a:neighbor:of) switzerland +france text(is:a:neighbor:of) monaco +france text(is:a:neighboring:state:to) belgium +france text(was:a:neighboring:state:to) spain +mongolia text(was:located:in) eastern_asia +mongolia text(can:be:found:in) asia +mongolia text(borders:with) china +mongolia text(borders) russia +lithuania text(was:positioned:in) northern_europe +lithuania text(is:butted:against) poland +lithuania text(was:butted:against) latvia +lithuania text(was:adjacent:to) belarus +lithuania text(is:adjacent:to) russia +cayman_islands text(is:positioned:in) caribbean +cayman_islands text(was:sited:in) americas +saint_lucia text(is:sited:in) caribbean +saint_lucia text(was:localized:in) americas +curaçao text(is:localized:in) caribbean +curaçao text(was:present:in) americas +caribbean text(is:present:in) americas +southern_asia text(is:still:in) asia +middle_africa text(was:still:in) africa +northern_europe text(was:currently:in) europe +southern_europe text(is:currently:in) europe +western_asia text(is:placed:in) asia +south_america text(was:placed:in) americas +polynesia text(can:be:found:in) oceania +australia_and_new_zealand text(was:situated:in) oceania +western_europe text(is:situated:in) europe +eastern_africa text(is:located:in) africa +western_africa text(was:located:in) africa +eastern_europe text(can:be:found:in) europe +central_america text(was:positioned:in) americas +northern_america text(is:positioned:in) americas +south-eastern_asia text(was:sited:in) asia +southern_africa text(is:sited:in) africa +eastern_asia text(was:localized:in) asia +northern_africa text(is:localized:in) africa +melanesia text(was:present:in) oceania +micronesia text(is:present:in) oceania +central_asia text(is:still:in) asia +central_europe text(was:still:in) europe \ No newline at end of file diff --git a/deepsoftlog/experiments/mentions_countries/data/raw/country2text.csv b/deepsoftlog/experiments/mentions_countries/data/raw/country2text.csv new file mode 100644 index 0000000..b430889 --- /dev/null +++ b/deepsoftlog/experiments/mentions_countries/data/raw/country2text.csv @@ -0,0 +1,272 @@ +Country,ID,nl,en,zh,es,hi,ar +vanuatu,Q686,Vanuatu,Vanuatu,萬那杜,Vanuatu,वानूआटू,فانواتو +isle_of_man,Q9676,Man,Isle of Man,马恩岛,Isla de Man,आइल ऑफ़ मैन,جزيرة مان +laos,Q819,Laos,Laos,老撾,Laos,लाओस,لاوس +china,Q148,Volksrepubliek China,People's Republic of China,中华人民共和国,República Popular China,चीनी जनवादी गणराज्य,الصين +aruba,Q21203,Aruba,Aruba,阿魯巴,Aruba,अरूबा,أروبا +papua_new_guinea,Q691,Papoea-Nieuw-Guinea,Papua New Guinea,巴布亚新几内亚,Papúa Nueva Guinea,पापुआ न्यू गिनी,بابوا غينيا الجديدة +comoros,Q970,Comoren,Comoros,葛摩,Comoras,कोमोरोस,جزر القمر +gambia,Q1005,Gambia,The Gambia,岡比亞,Gambia,गाम्बिया,غامبيا +bermuda,Q23635,Bermuda,Bermuda,百慕大,Bermudas,बरमूडा,برمودا +bangladesh,Q902,Bangladesh,Bangladesh,孟加拉國,Bangladés,बांग्लादेश,بنغلاديش +tonga,Q678,Tonga,Tonga,東加,Tonga,टोंगा,تونغا +paraguay,Q733,Paraguay,Paraguay,巴拉圭,Paraguay,पैराग्वे,باراغواي +tokelau,Q36823,Tokelau,Tokelau,托克劳,Tokelau,टोकेलाऊ,توكيلاو +gabon,Q1000,Gabon,Gabon,加蓬,Gabón,गबॉन,الغابون +bahrain,Q398,Bahrein,Bahrain,巴林,Baréin,बहरीन,البحرين +azerbaijan,Q227,Azerbeidzjan,Azerbaijan,阿塞拜疆,Azerbaiyán,अज़रबैजान,أذربيجان +uzbekistan,Q265,Oezbekistan,Uzbekistan,乌兹别克斯坦,Uzbekistán,उज़्बेकिस्तान,أوزبكستان +northern_mariana_islands,Q16644,Noordelijke Marianen,Northern Mariana Islands,北马里亚纳群岛,Islas Marianas del Norte,उत्तरी मारियाना द्वीप,جزر ماريانا الشمالية +saudi_arabia,Q851,Saoedi-Arabië,Saudi Arabia,沙特阿拉伯,Arabia Saudí,सउदी अरब,السعودية +belize,Q242,Belize,Belize,伯利兹,Belice,बेलीज़,بليز +niue,Q34020,Niue,Niue,紐埃,Niue,निउए,نييوي +iraq,Q796,Irak,Iraq,伊拉克,Irak,इराक,العراق +réunion,Q17070,Réunion,Réunion,留尼汪,Reunión,रेयूनियों,ريونيون +mozambique,Q1029,Mozambique,Mozambique,莫桑比克,Mozambique,मोज़ाम्बीक,موزمبيق +kuwait,Q817,Koeweit,Kuwait,科威特,Kuwait,कुवैत,الكويت +nicaragua,Q811,Nicaragua,Nicaragua,尼加拉瓜,Nicaragua,निकारागुआ,نيكاراغوا +cocos_keeling_islands,Q36004,Cocoseilanden,Cocos (Keeling) Islands,科科斯(基林)群島,islas Cocos,कोकोस (कीलिंग) द्वीपसमूह,جزر كوكوس +seychelles,Q1042,Seychellen,Seychelles,塞舌尔,Seychelles,सेशेल्स,سيشل +mauritania,Q1025,Mauritanië,Mauritania,毛里塔尼亞,Mauritania,मॉरीतानिया,موريتانيا +belgium,Q31,België,Belgium,比利時,Bélgica,बेल्जियम,بلجيكا +el_salvador,Q792,El Salvador,El Salvador,薩爾瓦多,El Salvador,अल साल्वाडोर,السلفادور +western_sahara,Q40362,Sahrawi Arabische Democratische Republiek,Sahrawi Arab Democratic Republic,撒拉威阿拉伯民主共和國,República Árabe Saharaui Democrática,सहरावी अरब जनतांत्रिक गणराज्य,الجمهورية العربية الصحراوية الديمقراطية +latvia,Q211,Letland,Latvia,拉脫維亞,Letonia,लातविया,لاتفيا +saint_martin,Q126125,Sint-Maarten,Saint-Martin,法屬聖馬丁,San Martín,सेंट मार्टिन की सामूहिकता,تجمع سان مارتين +sweden,Q34,Zweden,Sweden,瑞典,Suecia,स्वीडन,السويد +vatican_city,Q237,Vaticaanstad,Vatican City,梵蒂岡城國,Ciudad del Vaticano,वैटिकन नगर,الفاتيكان +ethiopia,Q115,Ethiopië,Ethiopia,埃塞俄比亚,Etiopía,इथियोपिया,إثيوبيا +montserrat,Q13353,Montserrat,Montserrat,蒙塞拉特島,Montserrat,मॉण्टसेराट,مونتسيرات +swaziland,Q1050,Swaziland,Eswatini,斯威士兰,Esuatini,एस्वातीनी,إسواتيني +switzerland,Q39,Zwitserland,Switzerland,瑞士,Suiza,स्विट्ज़रलैण्ड,سويسرا +venezuela,Q717,Venezuela,Venezuela,委內瑞拉,Venezuela,वेनेज़ुएला,فنزويلا +turkey,Q43,Turkije,Turkey,土耳其,Turquía,तुर्की,تركيا +algeria,Q262,Algerije,Algeria,阿爾及利亞,Argelia,अल्जीरिया,الجزائر +macedonia,Q221,Noord-Macedonië,North Macedonia,北马其顿,Macedonia del Norte,उत्तर मैसिडोनिया,مقدونيا الشمالية +france,Q142,Frankrijk,France,法國,Francia,फ़्रान्स,فرنسا +guinea-bissau,Q1007,Guinee-Bissau,Guinea-Bissau,畿內亞比紹,Guinea-Bisáu,गिनी-बिसाऊ,غينيا بيساو +angola,Q916,Angola,Angola,安哥拉,Angola,अंगोला,أنغولا +pitcairn_islands,Q35672,Pitcairneilanden,Pitcairn Islands,皮特凯恩群岛,Islas Pitcairn,पिटकेर्न द्वीपसमूह,جزر بيتكيرن +bosnia_and_herzegovina,Q225,Bosnië en Herzegovina,Bosnia and Herzegovina,波斯尼亚和黑塞哥维那,Bosnia y Herzegovina,बोस्निया और हर्ज़ेगोविना,البوسنة والهرسك +trinidad_and_tobago,Q754,Trinidad en Tobago,Trinidad and Tobago,千里達及托巴哥,Trinidad y Tobago,त्रिनिदाद और टोबैगो,ترينيداد وتوباغو +tuvalu,Q672,Tuvalu,Tuvalu,吐瓦魯,Tuvalu,तुवालू,توفالو +united_kingdom,Q145,Verenigd Koninkrijk,United Kingdom,英国,Reino Unido,यूनाइटेड किंगडम,المملكة المتحدة +syria,Q858,Syrië,Syria,敘利亞,Siria,सीरिया,سوريا +central_african_republic,Q929,Centraal-Afrikaanse Republiek,Central African Republic,中非共和國,República Centroafricana,मध्य अफ़्रीकी गणराज्य,جمهورية إفريقيا الوسطى +malawi,Q1020,Malawi,Malawi,馬拉威,Malaui,मलावी,مالاوي +falkland_islands,Q9648,Falklandeilanden,Falkland Islands,福克蘭群島,Islas Malvinas,फ़ॉकलैंड द्वीपसमूह,جزر فوكلاند +ecuador,Q736,Ecuador,Ecuador,厄瓜多尔,Ecuador,ईक्वाडोर,الإكوادور +tunisia,Q948,Tunesië,Tunisia,突尼西亞,Túnez,ट्यूनिशिया,تونس +curaçao,Q25279,Curaçao,Curaçao,库拉索,Curazao,कुराकाओ,كوراساو +canada,Q16,Canada,Canada,加拿大,Canadá,कनाडा,كندا +greenland,Q223,Groenland,Greenland,格陵兰,Groenlandia,ग्रीनलैण्ड,جرينلاند +dominica,Q784,Dominica,Dominica,多米尼克,Dominica,डोमिनिका,دومينيكا +egypt,Q79,Egypte,Egypt,埃及,Egipto,मिस्र,مصر +indonesia,Q252,Indonesië,Indonesia,印度尼西亚,Indonesia,इंडोनेशिया,إندونيسيا +solomon_islands,Q685,Salomonseilanden,Solomon Islands,所罗门群岛,Islas Salomón,सोलोमन द्वीपसमूह,جزر سليمان +india,Q668,India,India,印度,India,भारत,الهند +panama,Q804,Panama,Panama,巴拿馬,Panamá,पनामा,بنما +oman,Q842,Oman,Oman,阿曼,Omán,ओमान,سلطنة عمان +saint_pierre_and_miquelon,Q34617,Saint-Pierre en Miquelon,Saint Pierre and Miquelon,圣皮埃尔和密克隆,San Pedro y Miquelón,सन्त पियर और मिकलान,سان بيير وميكلون +japan,Q17,Japan,Japan,日本,Japón,जापान,اليابان +south_africa,Q258,Zuid-Afrika,South Africa,南非,Sudáfrica,दक्षिण अफ़्रीका,جنوب إفريقيا +uganda,Q1036,Oeganda,Uganda,烏干達,Uganda,युगाण्डा,أوغندا +kyrgyzstan,Q813,Kirgizië,Kyrgyzstan,吉尔吉斯斯坦,Kirguistán,किर्गिज़स्तान,قرغيزستان +liberia,Q1014,Liberia,Liberia,利比里亞,Liberia,लाइबेरिया,ليبيريا +republic_of_the_congo,Q971,Congo-Brazzaville,Republic of the Congo,剛果共和國,República del Congo,कांगो गणराज्य,جمهورية الكونغو +mali,Q912,Mali,Mali,马里,Mali,माली,مالي +montenegro,Q236,Montenegro,Montenegro,蒙特內哥羅,Montenegro,मॉन्टेनीग्रो,الجبل الأسود +palestine,Q2190609,Pedro Miguel,Pedro Miguel,,Pedro Miguel,, +brazil,Q155,Brazilië,Brazil,巴西,Brasil,ब्राज़ील,البرازيل +guam,Q16635,Guam,Guam,關島,Guam,गुआम,غوام +norway,Q20,Noorwegen,Norway,挪威,Noruega,नॉर्वे,النرويج +united_arab_emirates,Q878,Verenigde Arabische Emiraten,United Arab Emirates,阿拉伯联合酋长国,Emiratos Árabes Unidos,संयुक्त अरब अमीरात,الإمارات العربية المتحدة +thailand,Q869,Thailand,Thailand,泰國,Tailandia,थाईलैंड,تايلاند +tanzania,Q924,Tanzania,Tanzania,坦桑尼亞,Tanzania,तंज़ानिया,تنزانيا +british_virgin_islands,Q25305,Britse Maagdeneilanden,British Virgin Islands,英屬維爾京群島,Islas Vírgenes Británicas,ब्रिटिश वर्जिन द्वीपसमूह,جزر عذراء بريطانية +croatia,Q224,Kroatië,Croatia,克羅地亞,Croacia,क्रोएशिया,كرواتيا +bhutan,Q917,Bhutan,Bhutan,不丹,Bután,भूटान,بوتان +finland,Q33,Finland,Finland,芬蘭,Finlandia,फ़िनलैण्ड,فنلندا +united_states_minor_outlying_islands,Q16645,Amerikaanse Kleinere Afgelegen Eilanden,United States Minor Outlying Islands,美国本土外小岛屿,Islas ultramarinas de Estados Unidos,संयुक्त राज्य अमेरिका के छोटे दूरस्थ द्वीपसमूह,جزر الولايات المتحدة الصغيرة النائية +cuba,Q241,Cuba,Cuba,古巴,Cuba,क्यूबा,كوبا +turkmenistan,Q874,Turkmenistan,Turkmenistan,土庫曼斯坦,Turkmenistán,तुर्कमेनिस्तान,تركمانستان +brunei,Q921,Brunei,Brunei,汶莱,Brunéi,ब्रुनेई,بروناي +germany,Q183,Duitsland,Germany,德國,Alemania,जर्मनी,ألمانيا +mongolia,Q711,Mongolië,Mongolia,蒙古國,Mongolia,मंगोलिया,منغوليا +myanmar,Q836,Myanmar,Myanmar,緬甸,Birmania,म्यान्मार,ميانمار +sierra_leone,Q1044,Sierra Leone,Sierra Leone,塞拉利昂,Sierra Leona,सिएरा लियोन,سيراليون +madagascar,Q1019,Madagaskar,Madagascar,馬達加斯加,Madagascar,मेडागास्कर,مدغشقر +puerto_rico,Q1183,Puerto Rico,Puerto Rico,波多黎各,Puerto Rico,पोर्टो रीको,بورتوريكو +cayman_islands,Q5785,Kaaimaneilanden,Cayman Islands,開曼群島,Islas Caimán,केमन द्वीपसमूह,جزر كايمان +lesotho,Q1013,Lesotho,Lesotho,莱索托,Lesoto,लेसोथो,ليسوتو +kenya,Q114,Kenia,Kenya,肯尼亚,Kenia,कीनिया,كينيا +cameroon,Q1009,Kameroen,Cameroon,喀麦隆,Camerún,कैमरुन,الكاميرون +singapore,Q334,Singapore,Singapore,新加坡,Singapur,सिंगापुर,سنغافورة +costa_rica,Q800,Costa Rica,Costa Rica,哥斯达黎加,Costa Rica,कोस्टा रीका,كوستاريكا +christmas_island,Q31063,Christmaseiland,Christmas Island,聖誕島,Isla de Navidad,क्रिसमस द्वीप,جزيرة عيد الميلاد +iceland,Q189,IJsland,Iceland,冰島,Islandia,आइसलैण्ड,آيسلندا +afghanistan,Q889,Afghanistan,Afghanistan,阿富汗,Afganistán,अफ़्ग़ानिस्तान,أفغانستان +yemen,Q805,Jemen,Yemen,也门,Yemen,यमन,اليمن +nigeria,Q1033,Nigeria,Nigeria,奈及利亞,Nigeria,नाइजीरिया,نيجيريا +zimbabwe,Q954,Zimbabwe,Zimbabwe,津巴布韦,Zimbabue,ज़िम्बाब्वे,زيمبابوي +north_korea,Q423,Noord-Korea,North Korea,朝鮮民主主義人民共和國,Corea del Norte,उत्तर कोरिया,كوريا الشمالية +russia,Q159,Rusland,Russia,俄罗斯,Rusia,रूस,روسيا +vietnam,Q881,Vietnam,Vietnam,越南,Vietnam,वियतनाम,فيتنام +georgia,Q230,Georgië,Georgia,格鲁吉亚,Georgia,जॉर्जिया,جورجيا +french_polynesia,Q30971,Frans-Polynesië,French Polynesia,法屬玻里尼西亞,Polinesia Francesa,फ़्रान्सीसी पॉलिनेशिया,بولنيزيا الفرنسية +åland_islands,Q5689,Åland,Åland,奥兰,Åland,ऑलैण्ड द्वीपसमूह,جزر أولاند +lithuania,Q37,Litouwen,Lithuania,立陶宛,Lituania,लिथुआनिया,ليتوانيا +hong_kong,Q8646,Hongkong,Hong Kong,香港,Hong Kong,हांगकांग,هونغ كونغ +niger,Q1032,Niger,Niger,尼日尔,Níger,नाइजर,النيجر +guadeloupe,Q17012,Guadeloupe,Guadeloupe,瓜德羅普,Guadalupe,गुआदेलूप,غوادلوب +zambia,Q953,Zambia,Zambia,贊比亞,Zambia,ज़ाम्बिया,زامبيا +philippines,Q928,Filipijnen,Philippines,菲律賓,Filipinas,फ़िलीपीन्स,الفلبين +saint_barthélemy,Q25362,Saint-Barthélemy,Saint Barthélemy,聖巴泰勒米,San Bartolomé,सेंट बार्थेलेमी,سان بارتيلمي +morocco,Q1028,Marokko,Morocco,摩洛哥,Marruecos,मोरक्को,المغرب +guatemala,Q774,Guatemala,Guatemala,危地马拉,Guatemala,ग्वाटेमाला,غواتيمالا +dr_congo,Q974,Congo-Kinshasa,Democratic Republic of the Congo,刚果民主共和国,República Democrática del Congo,कांगो लोकतान्त्रिक गणराज्य,جمهورية الكونغو الديمقراطية +sudan,Q1049,Soedan,Sudan,苏丹,Sudán,सूडान,السودان +monaco,Q235,Monaco,Monaco,摩納哥,Mónaco,मोनाको,موناكو +cook_islands,Q26988,Cookeilanden,Cook Islands,库克群岛,Islas Cook,कुक द्वीपसमूह,جزر كوك +portugal,Q45,Portugal,Portugal,葡萄牙,Portugal,पुर्तगाल,البرتغال +united_states,Q30,Verenigde Staten,United States,美國,Estados Unidos,संयुक्त राज्य अमेरिका,الولايات المتحدة +malta,Q233,Malta,Malta,馬耳他,Malta,माल्टा,مالطا +poland,Q36,Polen,Poland,波蘭,Polonia,पोलैंड,بولندا +djibouti,Q977,Djibouti,Djibouti,吉布提,Yibuti,जिबूती,جيبوتي +cambodia,Q424,Cambodja,Cambodia,柬埔寨,Camboya,कम्बोडिया,كمبوديا +argentina,Q414,Argentinië,Argentina,阿根廷,Argentina,अर्जेण्टीना,الأرجنتين +denmark,Q35,Denemarken,Denmark,丹麥,Dinamarca,डेनमार्क,الدنمارك +taiwan,Q865,Taiwan,Taiwan,中華民國,República de China,चीनी गणराज्य,تايوان +french_guiana,Q3769,Frans-Guyana,French Guiana,法屬圭亞那,Guayana Francesa,फ़्रान्सीसी गुयाना,غويانا الفرنسية +slovenia,Q215,Slovenië,Slovenia,斯洛文尼亞,Eslovenia,स्लोवेनिया,سلوفينيا +peru,Q419,Peru,Peru,秘鲁,Perú,पेरू,بيرو +maldives,Q826,Malediven,Maldives,馬爾代夫,Maldivas,मालदीव,المالديف +united_states_virgin_islands,Q11703,Amerikaanse Maagdeneilanden,United States Virgin Islands,美屬維爾京群島,Islas Vírgenes de los Estados Unidos,संयुक्त राज्य वर्जिन द्वीपसमूह,جزر العذراء التابعة الولايات المتحدة +south_korea,Q884,Zuid-Korea,South Korea,大韩民国,Corea del Sur,दक्षिण कोरिया,كوريا الجنوبية +tajikistan,Q863,Tadzjikistan,Tajikistan,塔吉克斯坦,Tayikistán,ताजीकिस्तान,طاجيكستان +togo,Q945,Togo,Togo,多哥,Togo,टोगो,توغو +samoa,Q683,Samoa,Samoa,萨摩亚,Samoa,समोआ,ساموا +faroe_islands,Q4628,Faeröer,Faroe Islands,法罗群岛,Islas Feroe,फ़रो द्वीपसमूह,جزر فارو +israel,Q801,Israël,Israel,以色列,Israel,इज़राइल,إسرائيل +rwanda,Q1037,Rwanda,Rwanda,卢旺达,Ruanda,रवाण्डा,رواندا +slovakia,Q214,Slowakije,Slovakia,斯洛伐克,Eslovaquia,स्लोवाकिया,سلوفاكيا +liechtenstein,Q347,Liechtenstein,Liechtenstein,列支敦斯登,Liechtenstein,लिक्टेन्स्टाइन,ليختنشتاين +moldova,Q217,Moldavië,Moldova,摩爾多瓦,Moldavia,मोल्डोवा,مولدوفا +libya,Q1016,Libië,Libya,利比亞,Libia,लीबिया,ليبيا +guernsey,Q25230,Guernsey,Guernsey,根西,Guernsey,ग्वेर्नसे,غيرنزي +mexico,Q96,Mexico,Mexico,墨西哥,México,मेक्सिको,المكسيك +ireland,Q145,Verenigd Koninkrijk,United Kingdom,英国,Reino Unido,यूनाइटेड किंगडम,المملكة المتحدة +marshall_islands,Q709,Marshalleilanden,Marshall Islands,馬紹爾群島,Islas Marshall,मार्शल द्वीपसमूह,جزر مارشال +fiji,Q712,Fiji,Fiji,斐濟,Fiyi,फ़िजी,فيجي +sri_lanka,Q854,Sri Lanka,Sri Lanka,斯里蘭卡,Sri Lanka,श्रीलंका,سريلانكا +south_sudan,Q958,Zuid-Soedan,South Sudan,南蘇丹,Sudán del Sur,दक्षिण सूडान,جنوب السودان +chad,Q657,Tsjaad,Chad,乍得,Chad,चाड,تشاد +norfolk_island,Q35672,Pitcairneilanden,Pitcairn Islands,皮特凯恩群岛,Islas Pitcairn,पिटकेर्न द्वीपसमूह,جزر بيتكيرن +uruguay,Q77,Uruguay,Uruguay,烏拉圭,Uruguay,उरुग्वे,الأوروغواي +cape_verde,Q1011,Kaapverdië,Cape Verde,佛得角,Cabo Verde,केप वर्दे,الرأس الأخضر +lebanon,Q822,Libanon,Lebanon,黎巴嫩,Líbano,लेबनॉन,لبنان +albania,Q222,Albanië,Albania,阿爾巴尼亞,Albania,अल्बानिया,ألبانيا +ivory_coast,Q1008,Ivoorkust,Ivory Coast,科特迪瓦,Costa de Marfil,कोत दिव्वार,ساحل العاج +spain,Q29,Spanje,Spain,西班牙,España,स्पेन,إسبانيا +san_marino,Q238,San Marino,San Marino,圣马力诺,San Marino,सान मारिनो,سان مارينو +iran,Q794,Iran,Iran,伊朗,Irán,ईरान,إيران +senegal,Q1041,Senegal,Senegal,塞内加尔,Senegal,सेनेगल,السنغال +anguilla,Q25228,Anguilla,Anguilla,安圭拉,Anguila,अंगुइला,أنغويلا +palau,Q695,Palau,Palau,帛琉,Palaos,पलाउ,بالاو +mayotte,Q17063,Mayotte,Mayotte,马约特,Mayotte,मेयोट,مايوت +bolivia,Q750,Bolivia,Bolivia,玻利維亞,Bolivia,बोलिविया,بوليفيا +jersey,Q785,Jersey,Jersey,澤西,Jersey,जर्सी,جيرزي +grenada,Q769,Grenada,Grenada,格瑞那達,Granada,ग्रेनाडा,غرينادا +saint_lucia,Q760,Saint Lucia,Saint Lucia,圣卢西亚,Santa Lucía,सेंट लूसिया,سانت لوسيا +namibia,Q1030,Namibië,Namibia,纳米比亚,Namibia,नामीबिया,ناميبيا +kosovo,Q1246,Kosovo,Kosovo,科索沃,Kosovo,कोसोवो गणराज्य,كوسوفو +new_zealand,Q664,Nieuw-Zeeland,New Zealand,新西兰,Nueva Zelanda,न्यूज़ीलैंड,نيوزيلندا +svalbard_and_jan_mayen,Q842829,Spitsbergen en Jan Mayen,Svalbard and Jan Mayen,斯瓦巴和扬马延,Svalbard y Jan Mayen,,سفالبارد ويان ماين +wallis_and_futuna,Q35555,Wallis en Futuna,Wallis and Futuna,瓦利斯和富圖納,Wallis y Futuna,वालिस और फ़्यूचूना,واليس وفوتونا +botswana,Q963,Botswana,Botswana,波札那,Botsuana,बोत्सवाना,بوتسوانا +andorra,Q228,Andorra,Andorra,安道尔,Andorra,अण्डोरा,أندورا +estonia,Q191,Estland,Estonia,愛沙尼亞,Estonia,एस्टोनिया,إستونيا +new_caledonia,Q33788,Nieuw-Caledonië,New Caledonia,新喀里多尼亞,Nueva Caledonia,नया कैलेडोनिया,كاليدونيا الجديدة +honduras,Q783,Honduras,Honduras,洪都拉斯,Honduras,हॉण्डुरस,هندوراس +antigua_and_barbuda,Q781,Antigua en Barbuda,Antigua and Barbuda,安提瓜和巴布达,Antigua y Barbuda,अण्टीगुआ और बारबूडा,أنتيغوا وباربودا +macau,Q14773,Macau,Macau,澳門,Macao,मकाउ,ماكاو +belarus,Q184,Wit-Rusland,Belarus,白俄羅斯,Bielorrusia,बेलारूस,بيلاروس +dominican_republic,Q786,Dominicaanse Republiek,Dominican Republic,多明尼加,República Dominicana,डोमिनिकन गणराज्य,جمهورية الدومينيكان +eritrea,Q986,Eritrea,Eritrea,厄立特里亞,Eritrea,इरित्रिया,إرتريا +greece,Q41,Griekenland,Greece,希腊,Grecia,यूनान,اليونان +kazakhstan,Q232,Kazachstan,Kazakhstan,哈萨克斯坦,Kazajistán,कज़ाख़िस्तान,كازاخستان +mauritius,Q1027,Mauritius,Mauritius,毛里求斯,Mauricio,मॉरिशस,موريشيوس +ukraine,Q212,Oekraïne,Ukraine,烏克蘭,Ucrania,युक्रेन,أوكرانيا +burundi,Q967,Burundi,Burundi,蒲隆地,Burundi,बुरुण्डी,بوروندي +south_georgia,Q35086,Zuid-Georgia en de Zuidelijke Sandwicheilanden,South Georgia and the South Sandwich Islands,南乔治亚和南桑威奇群岛,Islas Georgias del Sur y Sandwich del Sur,दक्षिण जॉर्जिया एवं दक्षिण सैंडविच द्वीप समूह,جورجيا الجنوبية وجزر ساندويتش الجنوبية +sint_maarten,Q25596,Sint Maarten,Saint Martin,圣马丁岛,San Martín,सेंट मार्टिन,سانت مارتن +são_tomé_and_príncipe,Q1039,Sao Tomé en Principe,São Tomé and Príncipe,圣多美和普林西比,Santo Tomé y Príncipe,साओ तोमे और प्रिन्सिपी,ساو تومي وبرينسيب +benin,Q962,Benin,Benin,貝南,Benín,बेनिन,بنين +suriname,Q730,Suriname,Suriname,蘇利南,Surinam,सूरीनाम,سورينام +guinea,Q1006,Guinee,Guinea,几内亚,Guinea,गिनी,غينيا +kiribati,Q710,Kiribati,Kiribati,吉里巴斯,Kiribati,किरिबाती,كيريباتي +czechia,Q213,Tsjechië,Czech Republic,捷克,República Checa,चेक गणराज्य,جمهورية التشيك +romania,Q218,Roemenië,Romania,羅馬尼亞,Rumania,रोमानिया,رومانيا +malaysia,Q833,Maleisië,Malaysia,馬來西亞,Malasia,मलेशिया,ماليزيا +turks_and_caicos_islands,Q18221,Turks- en Caicoseilanden,Turks and Caicos Islands,特克斯和凯科斯群岛,Islas Turcas y Caicos,तुर्क और केकोस द्वीपसमूह,جزر توركس وكايكوس +pakistan,Q843,Pakistan,Pakistan,巴基斯坦,Pakistán,पाकिस्तान,باكستان +burkina_faso,Q965,Burkina Faso,Burkina Faso,布吉納法索,Burkina Faso,बुर्किना फासो,بوركينا فاسو +chile,Q298,Chili,Chile,智利,Chile,चिली,تشيلي +bahamas,Q778,Bahama's,The Bahamas,巴哈馬,Bahamas,बहामास,جزر البهاما +jordan,Q810,Jordanië,Jordan,約旦,Jordania,जॉर्डन,الأردن +saint_vincent_and_the_grenadines,Q757,Saint Vincent en de Grenadines,Saint Vincent and the Grenadines,圣文森特和格林纳丁斯,San Vicente y las Granadinas,सन्त विन्सेण्ट और ग्रेनाडाइन्स,سانت فينسنت والغرينادين +bulgaria,Q219,Bulgarije,Bulgaria,保加利亚,Bulgaria,बुल्गारिया,بلغاريا +cyprus,Q229,Cyprus,Cyprus,塞浦路斯,Chipre,साइप्रस,قبرص +timor-leste,Q574,Oost-Timor,Timor-Leste,東帝汶,Timor Oriental,पूर्वी तिमोर,تيمور الشرقية +american_samoa,Q16641,Amerikaans-Samoa,American Samoa,美屬薩摩亞,Samoa Americana,अमेरिकी समोआ,ساموا الأمريكية +saint_kitts_and_nevis,Q763,Saint Kitts en Nevis,Saint Kitts and Nevis,聖克里斯多福及尼維斯,San Cristóbal y Nieves,सन्त किट्स और नेविस,سانت كيتس ونيفيس +jamaica,Q766,Jamaica,Jamaica,牙買加,Jamaica,जमैका,جامايكا +nepal,Q837,Nepal,Nepal,尼泊爾,Nepal,नेपाल,نيبال +haiti,Q790,Haïti,Haiti,海地,Haití,हैती,هايتي +british_indian_ocean_territory,Q43448,Brits Indische Oceaanterritorium,British Indian Ocean Territory,英屬印度洋領地,Territorio Británico del Océano Índico,ब्रिटिश हिंद महासागर क्षेत्र,إقليم المحيط الهندي البريطاني +serbia,Q403,Servië,Serbia,塞爾維亞,Serbia,सर्बिया,صربيا +gibraltar,Q1410,Gibraltar,Gibraltar,直布羅陀,Gibraltar,जिब्राल्टर,جبل طارق +colombia,Q739,Colombia,Colombia,哥伦比亚,Colombia,कोलम्बिया,كولومبيا +nauru,Q697,Nauru,Nauru,瑙鲁,Nauru,नौरु,ناورو +armenia,Q399,Armenië,Armenia,亞美尼亞,Armenia,आर्मीनिया,أرمينيا +barbados,Q244,Barbados,Barbados,巴巴多斯,Barbados,बारबाडोस,باربادوس +qatar,Q846,Qatar,Qatar,卡塔尔,Catar,क़तर,قطر +guyana,Q734,Guyana,Guyana,圭亚那,Guyana,गयाना,غيانا +netherlands,Q55,Nederland,Netherlands,荷蘭,Países Bajos,नीदरलैण्ड,هولندا +italy,Q38,Italië,Italy,意大利,Italia,इटली,إيطاليا +martinique,Q17054,Martinique,Martinique,馬提尼克,Martinica,मार्टीनिक,مارتينيك +somalia,Q1045,Somalië,Somalia,索馬里,Somalia,सोमालिया,الصومال +equatorial_guinea,Q983,Equatoriaal-Guinea,Equatorial Guinea,赤道几内亚,Guinea Ecuatorial,भूमध्यरेखीय गिनी,غينيا الاستوائية +ghana,Q117,Ghana,Ghana,迦納,Ghana,घाना,غانا +australia,Q408,Australië,Australia,澳大利亚,Australia,ऑस्ट्रेलिया,أستراليا +hungary,Q28,Hongarije,Hungary,匈牙利,Hungría,हंगरी,المجر +luxembourg,Q32,Luxemburg,Luxembourg,卢森堡,Luxemburgo,लक्ज़मबर्ग,لوكسمبورغ +austria,Q40,Oostenrijk,Austria,奧地利,Austria,ऑस्ट्रिया,النمسا +southern_asia, Q771405,Zuid-Azië,South Asia,南亚,Asia del Sur,दक्षिण एशिया,جنوب آسيا +south-eastern_asia, Q11708,Zuidoost-Azië,Southeast Asia,东南亚,Sudeste Asiático,दक्षिण पूर्व एशिया,جنوب شرق آسيا +eastern_asia, Q27231,Oost-Azië,East Asia,東亞,Asia Oriental,पूर्वी एशिया,شرق آسيا +central_asia, Q27275,Centraal-Azië,Central Asia,中亚,Asia Central,मध्य एशिया,آسيا الوسطى +western_asia, Q27293,Zuidwest-Azië,West Asia,西亚,Asia Occidental,पश्चिमी एशिया,غرب آسيا +northern_africa, Q27381,Noord-Afrika,North Africa,北部非洲,Norte de África,उत्तर अफ़्रीका,شمال إفريقيا +middle_africa, Q27433,Centraal-Afrika,Central Africa,中部非洲,África Central,मध्य अफ्रीका,وسط إفريقيا +western_africa, Q4412,West-Afrika,West Africa,西非,África Occidental,पश्चिमी अफ्रीका,غرب إفريقيا +eastern_africa, Q27407,Oost-Afrika,East Africa,东部非洲,África Oriental,पूर्वी अफ्रीका,شرق إفريقيا +southern_africa, Q27394,Zuidelijk Afrika,Southern Africa,南部非洲,África austral,दक्षिणी अफ्रीका,إفريقيا الجنوبية +northern_europe, Q27479,Noord-Europa,Northern Europe,北歐,Europa del Norte,उत्तरी यूरोप,أوروبا الشمالية +western_europe, Q27496,West-Europa,Western Europe,西欧,Europa Occidental,पश्चिमी यूरोप,أوروبا الغربية +central_europe, Q27509,Centraal-Europa,Central Europe,中欧,Europa Central,मध्य यूरोप,أوروبا الوسطى +eastern_europe, Q27468,Oost-Europa,Eastern Europe,东欧,Europa Oriental,पूर्वी यूरोप,أوروبا الشرقية +southern_europe, Q27449,Zuid-Europa,Southern Europe,南欧,Europa del Sur,दक्षिणी यूरोप,أوروبا الجنوبية +caribbean, Q664609,Caraïben,Caribbean,加勒比地区,Caribe,कैरिबिया,الكاريبي +northern_america, Q49,Noord-Amerika,North America,北美洲,América del Norte,उत्तर अमेरिका,أمريكا الشمالية +central_america, Q27611,Centraal-Amerika,Central America,中美洲,América Central,केंद्रीय अमेरिका,أمريكا الوسطى +south_america, Q18,Zuid-Amerika,South America,南美洲,América del Sur,दक्षिण अमेरिका,أمريكا الجنوبية +polynesia, Q35942,Polynesië,Polynesia,玻里尼西亞,Polinesia,पोलीनेशिया,بولنيزيا +australia_and_new_zealand, Q107323313,Australië en Nieuw-Zeeland,Australia and New Zealand,,,, +melanesia, Q37394,Melanesië,Melanesia,美拉尼西亞,Melanesia,मॅलानिशिया,ميلانيزيا +micronesia, Q3359409,Micronesië,Micronesia,密克羅尼西亞群島,Micronesia,माइक्रोनीशिया,ميكرونيسيا +africa, Q15,Afrika,Africa,非洲,África,अफ्रीका,إفريقيا +americas, Q828,Amerika,Americas,美洲,América,महाअमेरिका,أمريكتان +asia, Q48,Azië,Asia,亞洲,Asia,एशिया,آسيا +europe, Q46,Europa,Europe,欧洲,Europa,यूरोप,أوروبا +oceania, Q55643,Oceanië,Oceania,大洋洲,Oceanía,ओशिआनिया,أوقيانوسيا diff --git a/deepsoftlog/experiments/wiki_countries/data/raw/test.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/test.tsv similarity index 100% rename from deepsoftlog/experiments/wiki_countries/data/raw/test.tsv rename to deepsoftlog/experiments/mentions_countries/data/raw/test.tsv diff --git a/deepsoftlog/experiments/wiki_countries/data/raw/train.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/train.tsv similarity index 100% rename from deepsoftlog/experiments/wiki_countries/data/raw/train.tsv rename to deepsoftlog/experiments/mentions_countries/data/raw/train.tsv diff --git a/deepsoftlog/experiments/wiki_countries/data/raw/val.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/val.tsv similarity index 100% rename from deepsoftlog/experiments/wiki_countries/data/raw/val.tsv rename to deepsoftlog/experiments/mentions_countries/data/raw/val.tsv diff --git a/deepsoftlog/experiments/wiki_countries/data/templates/countries_S0_templates.pl b/deepsoftlog/experiments/mentions_countries/data/templates/countries_S0_templates.pl similarity index 100% rename from deepsoftlog/experiments/wiki_countries/data/templates/countries_S0_templates.pl rename to deepsoftlog/experiments/mentions_countries/data/templates/countries_S0_templates.pl diff --git a/deepsoftlog/experiments/wiki_countries/data/templates/countries_S1_templates.pl b/deepsoftlog/experiments/mentions_countries/data/templates/countries_S1_templates.pl similarity index 100% rename from deepsoftlog/experiments/wiki_countries/data/templates/countries_S1_templates.pl rename to deepsoftlog/experiments/mentions_countries/data/templates/countries_S1_templates.pl diff --git a/deepsoftlog/experiments/wiki_countries/data/templates/countries_S2_templates.pl b/deepsoftlog/experiments/mentions_countries/data/templates/countries_S2_templates.pl similarity index 100% rename from deepsoftlog/experiments/wiki_countries/data/templates/countries_S2_templates.pl rename to deepsoftlog/experiments/mentions_countries/data/templates/countries_S2_templates.pl diff --git a/deepsoftlog/experiments/wiki_countries/data/templates/countries_S3_templates.pl b/deepsoftlog/experiments/mentions_countries/data/templates/countries_S3_templates.pl similarity index 100% rename from deepsoftlog/experiments/wiki_countries/data/templates/countries_S3_templates.pl rename to deepsoftlog/experiments/mentions_countries/data/templates/countries_S3_templates.pl diff --git a/deepsoftlog/experiments/mentions_countries/dataset.py b/deepsoftlog/experiments/mentions_countries/dataset.py new file mode 100644 index 0000000..0b08599 --- /dev/null +++ b/deepsoftlog/experiments/mentions_countries/dataset.py @@ -0,0 +1,100 @@ +import pandas as pd +import numpy as np + +from pathlib import Path + +from deepsoftlog.data import load_tsv_file, data_to_prolog +from deepsoftlog.algebraic_prover.terms.expression import Constant +from deepsoftlog.data.dataloader import DataLoader +from deepsoftlog.data.dataset import StaticDataset +from deepsoftlog.logic.soft_term import SoftTerm + +_DATA_ROOT = str(Path(__file__).parent / "tmp") + +def generate_tsvs(country_to_text: bool, relation_to_text: bool): + base_path = Path(__file__).parent / 'data' / 'raw' + + country_entity_text = pd.read_csv(base_path / 'country2text.csv', dtype=str).set_index('Country') + country2text = {e[0]: np.random.permutation(e[2:]) for e in country_entity_text.itertuples()} + relation2text = { + 'locatedIn': ['is positioned in', 'was positioned in', 'can be found in', 'was located in', 'is located in', + 'is situated in', 'was situated in', 'can be found in', 'was placed in', 'is placed in', + 'is currently in', 'was currently in', 'was still in', 'is still in', 'is present in', + 'was present in', 'is localized in', 'was localized in', 'is sited in', 'was sited in'], + 'neighborOf': ['was a neighboring country of', 'is a neighboring country of', 'neighbors', 'is adjacent to', + 'was adjacent to', 'was butted against', 'is butted against', 'borders', 'borders with', + 'was a neighboring state to', 'is a neighboring state to', 'is a neighbor of', + 'was a neighbor of', 'neighbors with']} + + for task in ["S1", "S2", "S3"]: + # load symbolic facts + symbolic_facts = load_tsv_file(base_path / f"countries_{task}.tsv") + + for i, fact in enumerate(symbolic_facts): + if country2text: + text_1 = "text({})".format(country2text[fact[0]][0].replace(" ", ":")) + country2text[fact[0]] = np.roll(country2text[fact[0]], 1) + text_2 = "text({})".format(country2text[fact[2]][0].replace(" ", ":")) + country2text[fact[2]] = np.roll(country2text[fact[2]], 1) + else: + text_1 = fact[0] + text_2 = fact[2] + + if relation2text: + text_r = "text({})".format(relation2text[fact[1]][0].replace(" ", ":")) + relation2text[fact[1]] = np.roll(relation2text[fact[1]], 1) + else: + text_r = fact[1] + + symbolic_facts[i] = (text_1, text_r, text_2) + + with open(base_path / Path(f"countries_{task}" + ('_country2text' if country_to_text else '') + ( + '_relation2text' if relation_to_text else '') + ".tsv"), "w") as f: + f.write("\n".join(["\t".join(fact) for fact in symbolic_facts])) + + +def get_train_dataloader(cfg: dict): + train_dataset = MentionsCountriesDataset("train").subset(cfg['data_subset']) + train_dataset = train_dataset.mutate_all_output() + return DataLoader(train_dataset, batch_size=cfg['batch_size'], shuffle=True, seed=cfg['seed']) + + +def get_test_dataloader(): + regions = ["africa", "americas", "asia", "europe", "oceania"] + domain = {-1: [SoftTerm(Constant(r)) for r in regions]} + eval_dataset = MentionsCountriesDataset("test").mutate_all_output(domain) + return DataLoader(eval_dataset, batch_size=1, shuffle=False) + + +def get_val_dataloader(): + regions = ["africa", "americas", "asia", "europe", "oceania"] + domain = {-1: [SoftTerm(Constant(r)) for r in regions]} + eval_dataset = MentionsCountriesDataset("val").mutate_all_output(domain) + return DataLoader(eval_dataset, batch_size=1, shuffle=False) + +class MentionsCountriesDataset(StaticDataset): + def __init__(self, split_name: str = "val"): + base_path = Path(__file__).parent / 'data' / 'raw' + data = load_tsv_file(base_path / f"{split_name}.tsv") + data = data_to_prolog(data, name="countries") + super().__init__(tuple(data)) + +def generate_prolog_files(): + base_path = Path(__file__).parent / 'data' + (base_path / 'tmp').mkdir(exist_ok=True) + for setting in ['', '_country2text', '_relation2text', '_country2text_relation2text']: + for problem in (f'S{i}' for i in range(1,4)): + data = load_tsv_file(base_path / f"raw/countries_{problem}{setting}.tsv") + data = data_to_prolog(data, name="countries") + file_str = [f"{query.query}." for query in data] + # add template stuff + with open(base_path / f"templates/countries_{problem}_templates.pl", "r") as f: + templates = f.read() + with open(base_path / f"tmp/countries_{problem}{setting}.pl", "w") as f: + f.write("\n".join(file_str) + "\n") + f.write(templates) + +if __name__ == "__main__": + d = MentionsCountriesDataset() + print(d) + generate_prolog_files() \ No newline at end of file diff --git a/deepsoftlog/experiments/wiki_countries/wiki_countries.py b/deepsoftlog/experiments/mentions_countries/mentions_countries.py similarity index 52% rename from deepsoftlog/experiments/wiki_countries/wiki_countries.py rename to deepsoftlog/experiments/mentions_countries/mentions_countries.py index 2d23344..c5de15b 100644 --- a/deepsoftlog/experiments/wiki_countries/wiki_countries.py +++ b/deepsoftlog/experiments/mentions_countries/mentions_countries.py @@ -2,21 +2,36 @@ import torch -from deepsoftlog.experiments.wiki_countries.dataset import generate_prolog_files, get_val_dataloader, \ +from deepsoftlog.experiments.mentions_countries.dataset import generate_prolog_files, get_val_dataloader, \ get_train_dataloader, get_test_dataloader from deepsoftlog.training import load_program, load_config -from deepsoftlog.training.logger import WandbLogger +from deepsoftlog.training.logger import WandbLogger, PrintLogger from deepsoftlog.training.loss import nll_loss, get_optimizer from deepsoftlog.training.trainer import Trainer -def train(cfg): - cfg = load_config(cfg) +def train(cfg_path, name, seed, program, text_embedding_mode, + device='cpu', device_nb=0): + cfg = load_config(cfg_path) + + cfg.update({ + "name": name, + "program": program, + "seed": int(seed), + "device": device, + "device_nb": int(device_nb), + "text_embedding_mode": text_embedding_mode, + }) + _train(cfg) + +def _train(cfg): os.environ["CUDA_VISIBLE_DEVICES"] = str(cfg.device_nb) generate_prolog_files() - eval_dataloader = get_val_dataloader(cfg) - program = load_program(cfg, eval_dataloader) + eval_dataloader = get_val_dataloader() + test_dataloader = get_test_dataloader() + program = load_program(cfg, [get_train_dataloader(cfg), eval_dataloader, test_dataloader]) optimizer = get_optimizer(program.get_store(), cfg) logger = WandbLogger(cfg) + #logger = PrintLogger() trainer = Trainer( program, get_train_dataloader, nll_loss, optimizer, logger=logger, @@ -26,12 +41,13 @@ def train(cfg): ) trainer.val_dataloader = eval_dataloader trainer.train(cfg) - trainer.eval(get_test_dataloader()) + trainer.eval(test_dataloader) + logger.finish() def eval(folder: str): cfg = load_config(f"results/{folder}/config.yaml") - eval_dataloader = get_test_dataloader(cfg) + eval_dataloader = get_test_dataloader() program = load_program(cfg, eval_dataloader) state_dict = torch.load(f"results/{folder}/store.pt") program.store.load_state_dict(state_dict, strict=False) @@ -42,4 +58,4 @@ def eval(folder: str): if __name__ == "__main__": - train("deepsoftlog/experiments/wiki_countries/config.yaml") \ No newline at end of file + train("deepsoftlog/experiments/mentions_countries/config.yaml", 'test', 0, 'deepsoftlog/experiments/mentions_countries/data/tmp/countries_S1_relation2text.pl', 'LM') \ No newline at end of file diff --git a/deepsoftlog/experiments/mnist_addition/config.yaml b/deepsoftlog/experiments/mnist_addition/config.yaml index 9e5d349..c681dbe 100644 --- a/deepsoftlog/experiments/mnist_addition/config.yaml +++ b/deepsoftlog/experiments/mnist_addition/config.yaml @@ -1,4 +1,4 @@ -project: dsl_mnist_addition +project: mnist_addition name: 1 digit program: "deepsoftlog/experiments/mnist_addition/programs/addition_embeddings.pl" semantics: sdd2 @@ -18,7 +18,7 @@ optimizer: AdamW functor_learning_rate: 0.0003 embedding_learning_rate: 0 batch_size: 4 -nb_epochs: 1 +nb_epochs: 3 weight_decay: 1.0e-05 grad_clip: null diff --git a/deepsoftlog/experiments/wiki_countries/config.yaml b/deepsoftlog/experiments/wiki_countries/config.yaml deleted file mode 100644 index 4910f58..0000000 --- a/deepsoftlog/experiments/wiki_countries/config.yaml +++ /dev/null @@ -1,26 +0,0 @@ -project: wiki_countries -name: S0 -program: deepsoftlog/experiments/wiki_countries/data/tmp/countries_S0.pl -seed: 1337 -verbose: true -data_subset: null -device: cuda -device_nb: 1 -semantics: sdd2 - -# optimization -optimizer: AdamW -embedding_learning_rate: 0.001 -functor_learning_rate: 0.0001 -weight_decay: 0 -nb_epochs: 5 -batch_size: 1 -grad_clip: null -max_proofs: null -max_depth: 2 -max_branching: 4 - -# embeddings -embedding_dimensions: 1024 -embedding_initialization: sphere -embedding_metric: angle \ No newline at end of file diff --git a/deepsoftlog/experiments/wiki_countries/data/raw/tokens_tensor_list.pt b/deepsoftlog/experiments/wiki_countries/data/raw/tokens_tensor_list.pt deleted file mode 100644 index 0559c234395719ed9ee2173456e741ac6a2bd2b3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 537512 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 diff --git a/deepsoftlog/experiments/wiki_countries/data/raw/wikicountries_test.tsv b/deepsoftlog/experiments/wiki_countries/data/raw/wikicountries_test.tsv deleted file mode 100644 index 4cbea99..0000000 --- a/deepsoftlog/experiments/wiki_countries/data/raw/wikicountries_test.tsv +++ /dev/null @@ -1,24 +0,0 @@ -202 locatedIn asia -203 locatedIn asia -204 locatedIn asia -205 locatedIn europe -206 locatedIn asia -207 locatedIn europe -208 locatedIn africa -209 locatedIn americas -210 locatedIn europe -211 locatedIn africa -212 locatedIn europe -213 locatedIn africa -214 locatedIn africa -215 locatedIn americas -216 locatedIn europe -217 locatedIn americas -218 locatedIn europe -219 locatedIn americas -220 locatedIn asia -221 locatedIn americas -222 locatedIn asia -223 locatedIn africa -224 locatedIn asia -225 locatedIn asia diff --git a/deepsoftlog/experiments/wiki_countries/data/raw/wikicountries_train.tsv b/deepsoftlog/experiments/wiki_countries/data/raw/wikicountries_train.tsv deleted file mode 100644 index 9eb5b77..0000000 --- a/deepsoftlog/experiments/wiki_countries/data/raw/wikicountries_train.tsv +++ /dev/null @@ -1,202 +0,0 @@ -0 locatedIn oceania -1 locatedIn asia -2 locatedIn africa -3 locatedIn europe -4 locatedIn americas -5 locatedIn africa -6 locatedIn asia -7 locatedIn americas -8 locatedIn americas -9 locatedIn americas -10 locatedIn africa -11 locatedIn europe -12 locatedIn africa -13 locatedIn europe -14 locatedIn europe -15 locatedIn africa -16 locatedIn africa -17 locatedIn africa -18 locatedIn asia -19 locatedIn americas -20 locatedIn americas -21 locatedIn asia -22 locatedIn americas -23 locatedIn europe -24 locatedIn africa -25 locatedIn europe -26 locatedIn americas -27 locatedIn europe -28 locatedIn africa -29 locatedIn africa -30 locatedIn africa -31 locatedIn americas -32 locatedIn americas -33 locatedIn africa -34 locatedIn oceania -35 locatedIn americas -36 locatedIn asia -37 locatedIn asia -38 locatedIn europe -39 locatedIn africa -40 locatedIn oceania -41 locatedIn africa -42 locatedIn europe -43 locatedIn americas -44 locatedIn oceania -45 locatedIn africa -46 locatedIn africa -47 locatedIn americas -48 locatedIn africa -49 locatedIn americas -50 locatedIn africa -51 locatedIn americas -52 locatedIn africa -53 locatedIn americas -54 locatedIn europe -55 locatedIn africa -56 locatedIn asia -57 locatedIn americas -58 locatedIn asia -59 locatedIn africa -60 locatedIn europe -61 locatedIn americas -62 locatedIn africa -63 locatedIn americas -64 locatedIn europe -65 locatedIn americas -66 locatedIn africa -67 locatedIn africa -68 locatedIn africa -69 locatedIn europe -70 locatedIn europe -71 locatedIn africa -72 locatedIn asia -73 locatedIn oceania -74 locatedIn africa -75 locatedIn oceania -76 locatedIn europe -77 locatedIn africa -78 locatedIn oceania -79 locatedIn africa -80 locatedIn europe -81 locatedIn oceania -82 locatedIn oceania -83 locatedIn asia -84 locatedIn africa -85 locatedIn europe -86 locatedIn europe -87 locatedIn oceania -88 locatedIn americas -89 locatedIn asia -90 locatedIn asia -91 locatedIn asia -92 locatedIn americas -93 locatedIn europe -94 locatedIn africa -95 locatedIn africa -96 locatedIn oceania -97 locatedIn americas -98 locatedIn asia -99 locatedIn europe -100 locatedIn americas -101 locatedIn africa -102 locatedIn asia -103 locatedIn americas -104 locatedIn europe -105 locatedIn asia -106 locatedIn europe -107 locatedIn americas -108 locatedIn oceania -109 locatedIn oceania -110 locatedIn europe -111 locatedIn americas -112 locatedIn asia -113 locatedIn europe -114 locatedIn asia -115 locatedIn americas -116 locatedIn europe -117 locatedIn americas -118 locatedIn africa -119 locatedIn asia -120 locatedIn americas -121 locatedIn asia -122 locatedIn americas -123 locatedIn oceania -124 locatedIn oceania -125 locatedIn americas -126 locatedIn europe -127 locatedIn americas -128 locatedIn americas -129 locatedIn europe -130 locatedIn asia -131 locatedIn europe -132 locatedIn europe -133 locatedIn europe -134 locatedIn africa -135 locatedIn asia -136 locatedIn oceania -137 locatedIn asia -138 locatedIn oceania -139 locatedIn africa -140 locatedIn asia -141 locatedIn oceania -142 locatedIn oceania -143 locatedIn africa -144 locatedIn europe -145 locatedIn asia -146 locatedIn oceania -147 locatedIn africa -148 locatedIn oceania -149 locatedIn africa -150 locatedIn americas -151 locatedIn africa -152 locatedIn asia -153 locatedIn europe -154 locatedIn oceania -155 locatedIn asia -156 locatedIn africa -157 locatedIn asia -158 locatedIn oceania -159 locatedIn americas -160 locatedIn asia -161 locatedIn americas -162 locatedIn europe -163 locatedIn europe -164 locatedIn europe -165 locatedIn americas -166 locatedIn europe -167 locatedIn oceania -168 locatedIn americas -169 locatedIn africa -170 locatedIn africa -171 locatedIn oceania -172 locatedIn africa -173 locatedIn asia -174 locatedIn asia -175 locatedIn americas -176 locatedIn americas -177 locatedIn asia -178 locatedIn asia -179 locatedIn americas -180 locatedIn asia -181 locatedIn asia -182 locatedIn americas -183 locatedIn europe -184 locatedIn europe -185 locatedIn europe -186 locatedIn asia -187 locatedIn africa -188 locatedIn americas -189 locatedIn africa -190 locatedIn europe -191 locatedIn asia -192 locatedIn europe -193 locatedIn americas -194 locatedIn asia -195 locatedIn americas -196 locatedIn americas -197 locatedIn europe -198 locatedIn oceania -199 locatedIn africa -200 locatedIn europe -201 locatedIn europe diff --git a/deepsoftlog/experiments/wiki_countries/data/raw/wikicountries_val.tsv b/deepsoftlog/experiments/wiki_countries/data/raw/wikicountries_val.tsv deleted file mode 100644 index 3039741..0000000 --- a/deepsoftlog/experiments/wiki_countries/data/raw/wikicountries_val.tsv +++ /dev/null @@ -1,24 +0,0 @@ -226 locatedIn asia -227 locatedIn europe -228 locatedIn americas -229 locatedIn africa -230 locatedIn asia -231 locatedIn americas -232 locatedIn americas -233 locatedIn europe -234 locatedIn africa -235 locatedIn americas -236 locatedIn africa -237 locatedIn europe -238 locatedIn africa -239 locatedIn europe -240 locatedIn asia -241 locatedIn africa -242 locatedIn europe -243 locatedIn americas -244 locatedIn africa -245 locatedIn asia -246 locatedIn asia -247 locatedIn africa -248 locatedIn asia -249 locatedIn africa diff --git a/deepsoftlog/experiments/wiki_countries/dataset.py b/deepsoftlog/experiments/wiki_countries/dataset.py deleted file mode 100644 index fb64426..0000000 --- a/deepsoftlog/experiments/wiki_countries/dataset.py +++ /dev/null @@ -1,121 +0,0 @@ -from pathlib import Path -import random - -import torch -from torch.utils.data import Dataset as TorchDataset - -from deepsoftlog.data import load_tsv_file, data_to_prolog, Query, to_prolog_text, load_txt_file, load_lines -from deepsoftlog.algebraic_prover.terms.expression import Constant, Expr -from deepsoftlog.data.dataloader import DataLoader -from deepsoftlog.data.dataset import StaticDataset, Dataset -from deepsoftlog.logic.soft_term import SoftTerm - -_DATA_ROOT = str(Path(__file__).parent / "tmp") - -class WikiDataset(TorchDataset): - def __init__(self): - base_path = Path(__file__).parent / 'data' / 'raw' - self.data = torch.load(base_path / f"tokens_tensor_list.pt") - - super().__init__() - - def __getitem__(self, idx): - return self.data[idx] - - def __len__(self): - return len(self.data) - -class CountriesDataset(StaticDataset): - def __init__(self, split_name: str = "val"): - base_path = Path(__file__).parent / 'data' / 'raw' - data = load_tsv_file(base_path / f"wikicountries_{split_name}.tsv") - super().__init__(tuple(data)) - -class CountriesOperator(Dataset, TorchDataset): - def __init__( - self, - split_name: str, - function_name: str, - seed=None, - ): - """Generic data for operator(img, img) style datasets. - :param split_name: Dataset to use (training, val, test) - :param function_name: Name of Problog function to query. - :param operator: Operator to generate correct examples - :param size: Size of numbers (number of digits) - :param arity: Number of arguments for the operator - :param seed: Seed for RNG - """ - super(CountriesOperator, self).__init__() - self.split_name = split_name - self.text_dataset = WikiDataset() - self.countries_dataset = CountriesDataset(split_name) - self.function_name = function_name - self.seed = seed - - indices = list(range(len(self.countries_dataset))) - if seed is not None: - rng = random.Random(seed) - rng.shuffle(indices) - - self.data_indices = indices - - def __getitem__(self, i: int) -> Query: - """Generate queries""" - country_fact = self.countries_dataset[self.data_indices[i]] - - relation = SoftTerm(Constant(country_fact[1])) - first_entity = to_prolog_text(self.text_dataset[int(country_fact[0])]) if country_fact[0].isdigit() else SoftTerm(Constant(country_fact[0])) - second_entity = to_prolog_text(self.text_dataset[int(country_fact[2])]) if country_fact[2].isdigit() else SoftTerm(Constant(country_fact[2])) - - return Query(Expr(self.function_name, relation, first_entity, second_entity)) - - def __len__(self): - return len(self.data_indices) - -def get_train_dataloader(cfg): - dataset = CountriesOperator( - split_name="train", - function_name="countries", - seed=cfg.seed - ) - return DataLoader(dataset, batch_size=cfg['batch_size'], shuffle=True) - -def get_val_dataloader(cfg): - dataset = CountriesOperator( - split_name="val", - function_name="countries", - seed=cfg.seed - ) - return DataLoader(dataset, batch_size=cfg['batch_size'], shuffle=True) - -def get_test_dataloader(cfg): - dataset = CountriesOperator( - split_name="test", - function_name="countries", - seed=cfg.seed - ) - return DataLoader(dataset, batch_size=cfg['batch_size'], shuffle=True) - -def generate_prolog_files(): - base_path = Path(__file__).parent / 'data' - (base_path / 'tmp').mkdir(exist_ok=True) - for problem in (f'S{i}' for i in range(4)): - data = load_tsv_file(base_path / f"raw/countries_{problem}.tsv") - data = data_to_prolog(data, name="countries") - file_str = [f"{query.query}." for query in data] - with open(base_path / f"tmp/countries_{problem}.pl", "w+") as f: - f.write("\n".join(file_str)) - - # add template stuff - with open(base_path / f"templates/countries_{problem}_templates.pl", "r") as f: - templates = f.read() - with open(base_path / f"tmp/countries_{problem}.pl", "a+") as f: - f.write("\n" + templates) - - - -if __name__ == "__main__": - d = CountriesOperator("train", "countries") - print(d) - #generate_prolog_files() diff --git a/deepsoftlog/experiments/wiki_countries/preprocess_wikidata5m.py b/deepsoftlog/experiments/wiki_countries/preprocess_wikidata5m.py deleted file mode 100644 index cf262e2..0000000 --- a/deepsoftlog/experiments/wiki_countries/preprocess_wikidata5m.py +++ /dev/null @@ -1,207 +0,0 @@ -from pathlib import Path - -import torch -from transformers import AutoTokenizer - -from deepsoftlog.data import load_tsv_file - -KEYWORDS = ['history', 'city', 'capital', 'country', 'province', 'island'] -SUBCONTINENTS = ['southern_asia', 'south-eastern_asia', 'eastern_asia', 'central_asia', 'western_asia', 'northern_africa', 'middle_africa', 'western_africa', 'eastern_africa', 'southern_africa', 'northern_europe', 'western_europe', 'central_europe', 'eastern_europe', 'southern_europe', 'caribbean', 'northern_americas', 'central_america', 'south_america', 'polynesia', 'australia_and_new_zealand', 'melanesia', 'micronesia'] -CONTINENTS = ['africa', 'americas', 'asia', 'europe', 'oceania'] - -def get_regions(): - base_path = Path(__file__).parent / 'data' / 'raw' - data = load_tsv_file(base_path / f"countries_S0.tsv") - lst = [a[0] for a in data] + [a[2] for a in data] - return set([l.lower().replace("_", " ") for l in lst]) - -def convert_name(name): - return name.lower().replace("_", " ") - -def get_countries(): - regions = get_regions() - return {r for r in regions if r not in [c.lower().replace("_", " ") for c in SUBCONTINENTS] - + [c.lower().replace("_", " ") for c in CONTINENTS]} - -def get_entities(): - base_path = Path(__file__).parent / 'data' / 'raw' - data = load_tsv_file(base_path / f"wikidata5m_entity.tsv") - return {a[0]: [s.lower() for s in a[1:]] for a in data} - -def get_text(): - base_path = Path(__file__).parent / 'data' / 'raw' - data = load_tsv_file(base_path / f"wikidata5m_text.tsv") - return {a[0]: a[1] for a in data} - -def get_text2(): - base_path = Path(__file__).parent / 'data' / 'raw' - data = load_tsv_file(base_path / f"text_all_country_entities.tsv") - return {a[0]: a[1] for a in data} - - -def get_country_entities(): - base_path = Path(__file__).parent / 'data' / 'raw' - data = load_tsv_file(base_path / f"country_entities3.tsv") - return {a[0]: [s for s in a[1:]] for a in data} - -def get_full_kg(): - base_path = Path(__file__).parent / 'data' / 'raw' - data = load_tsv_file(base_path / f"wikidata5m_inductive_test.tsv") + load_tsv_file(base_path / f"wikidata5m_inductive_train.tsv") + load_tsv_file(base_path / f"wikidata5m_inductive_valid.tsv") - return data - -def get_all_country_entities(): - base_path = Path(__file__).parent / 'data' / 'raw' - data = load_tsv_file(base_path / f"all_country_entities.tsv") - return {a[0]: [s for s in a[1:]] for a in data} - -def get_new_id(entity_dict, old_id): - if old_id in entity_dict: - return min(entity_dict[convert_name(old_id)]) - return old_id - - -CONTEXT_SIZE = 128 -def generate_datasets_split_entities(entity_dict, text_dict): - base_path = Path(__file__).parent / 'data' / 'raw' - - train_relations = load_tsv_file(base_path / "train.tsv") - test_relations = load_tsv_file(base_path / "val.tsv") - val_relations = load_tsv_file(base_path / "test.tsv") - - countries_S0 = load_tsv_file(base_path / "countries_S0.tsv") - countries_S1 = load_tsv_file(base_path / "countries_S1.tsv") - countries_S2 = load_tsv_file(base_path / "countries_S2.tsv") - countries_S3 = load_tsv_file(base_path / "countries_S3.tsv") - - train_q_relations = [(min(entity_dict[convert_name(a[0])]), a[1], a[2]) for a in train_relations] - test_q_relations = [(min(entity_dict[convert_name(a[0])]), a[1], a[2]) for a in test_relations] - val_q_relations = [(min(entity_dict[convert_name(a[0])]), a[1], a[2]) for a in val_relations] - - countries_S0_relations = [(get_new_id(entity_dict, a[0]), a[1], a[2]) for a in countries_S0] - countries_S1_relations = [(get_new_id(entity_dict, a[0]), a[1], a[2]) for a in countries_S1] - countries_S2_relations = [(get_new_id(entity_dict, a[0]), a[1], a[2]) for a in countries_S2] - countries_S3_relations = [(get_new_id(entity_dict, a[0]), a[1], a[2]) for a in countries_S3] - - text_data = [] - for i,a in enumerate(train_q_relations): - text_data.append(text_dict[a[0]]) - train_q_relations[i] = (i, a[1], a[2]) - for i,c in enumerate(countries_S0_relations): - if c[0] == a[0]: - countries_S0_relations[i] = (i, c[1], c[2]) - for i,c in enumerate(countries_S1_relations): - if c[0] == a[0]: - countries_S1_relations[i] = (i, c[1], c[2]) - for i,c in enumerate(countries_S2_relations): - if c[0] == a[0]: - countries_S2_relations[i] = (i, c[1], c[2]) - for i,c in enumerate(countries_S3_relations): - if c[0] == a[0]: - countries_S3_relations[i] = (i, c[1], c[2]) - n = len(text_data) - for i,a in enumerate(test_q_relations): - text_data.append(text_dict[a[0]]) - test_q_relations[i] = (n+i, a[1], a[2]) - for i,c in enumerate(countries_S0_relations): - if c[0] == a[0]: - countries_S0_relations[i] = (i, c[1], c[2]) - for i,c in enumerate(countries_S1_relations): - if c[0] == a[0]: - countries_S1_relations[i] = (i, c[1], c[2]) - for i,c in enumerate(countries_S2_relations): - if c[0] == a[0]: - countries_S2_relations[i] = (i, c[1], c[2]) - for i,c in enumerate(countries_S3_relations): - if c[0] == a[0]: - countries_S3_relations[i] = (i, c[1], c[2]) - n = len(text_data) - for i,a in enumerate(val_q_relations): - text_data.append(text_dict[a[0]]) - val_q_relations[i] = (n+i, a[1], a[2]) - for i,c in enumerate(countries_S0_relations): - if c[0] == a[0]: - countries_S0_relations[i] = (i, c[1], c[2]) - for i,c in enumerate(countries_S1_relations): - if c[0] == a[0]: - countries_S1_relations[i] = (i, c[1], c[2]) - for i,c in enumerate(countries_S2_relations): - if c[0] == a[0]: - countries_S2_relations[i] = (i, c[1], c[2]) - for i,c in enumerate(countries_S3_relations): - if c[0] == a[0]: - countries_S3_relations[i] = (i, c[1], c[2]) - - with open("data/raw/wikicountries_train.tsv", "w+") as f: - for a in train_q_relations: - f.write(str(a[0]) + "\t" + a[1] + "\t" + a[2] + "\n") - with open("data/raw/wikicountries_test.tsv", "w+") as f: - for a in test_q_relations: - f.write(str(a[0]) + "\t" + a[1] + "\t" + a[2] + "\n") - with open("data/raw/wikicountries_val.tsv", "w+") as f: - for a in val_q_relations: - f.write(str(a[0]) + "\t" + a[1] + "\t" + a[2] + "\n") - with open("data/raw/wikicountries_S0.tsv", "w+") as f: - for a in countries_S0_relations: - f.write(str(a[0]) + "\t" + a[1] + "\t" + a[2] + "\n") - with open("data/raw/wikicountries_S1.tsv", "w+") as f: - for a in countries_S1_relations: - f.write(str(a[0]) + "\t" + a[1] + "\t" + a[2] + "\n") - with open("data/raw/wikicountries_S2.tsv", "w+") as f: - for a in countries_S2_relations: - f.write(str(a[0]) + "\t" + a[1] + "\t" + a[2] + "\n") - with open("data/raw/wikicountries_S3.tsv", "w+") as f: - for a in countries_S3_relations: - f.write(str(a[0]) + "\t" + a[1] + "\t" + a[2] + "\n") - - tokenizer = AutoTokenizer.from_pretrained('roberta-base') - - token_dict = tokenizer(text_data) - input_list = token_dict['input_ids'] - attention_mask_list = token_dict['attention_mask'] - - tokens_tensor_list = [torch.tensor(x) for x in zip(input_list, attention_mask_list)] - tokens_tensor_list = [torch.cat((x[:, 0:CONTEXT_SIZE],x[:, -1:]), dim=1) for x in tokens_tensor_list] # truncate to CONTEXT SIZE but keep eos token - - torch.save(tokens_tensor_list, 'data/raw/tokens_tensor_list.pt') - - -if __name__ == "__main__": - all_country_entities = get_all_country_entities() - text_dict = get_text() - text_dict.update(get_text2()) - - generate_datasets_split_entities(all_country_entities, text_dict) - - # country_entities = get_country_entities() - # - # kg = get_full_kg() - # - # captial_relations = [a for a in kg if a[1] == 'P1376'] - # history_relations = [a for a in kg if a[1] == 'P2184'] - # flag_relations = [a for a in kg if a[1] == 'P163'] - # - # result_dict = {c : [] for c in country_entities} - # for c in country_entities: - # result_dict[c] += [a[0] for a in captial_relations if a[2] in country_entities[c]] + [a[2] for a in captial_relations if a[0] in country_entities[c]] - # result_dict[c] += [a[0] for a in history_relations if a[2] in country_entities[c]] + [a[2] for a in history_relations if a[0] in country_entities[c]] - # result_dict[c] += [a[0] for a in flag_relations if a[2] in country_entities[c]] + [a[2] for a in flag_relations if a[0] in country_entities[c]] - # - # with open("data/raw/country_entities4.tsv", "w+") as f: - # for c in country_entities: - # f.write(c + "\t") - # for r in result_dict[c]: - # f.write(r + "\t") - # f.write("\n") - - # all_entities = sum(get_all_country_entities().values(), []) - # - # text = get_text() - # text_new = {} - # - # for e in all_entities: - # text_new[e] = text[e] - # - # with open("data/raw/text_all_country_entities.tsv", "w+") as f: - # for e in all_entities: - # f.write(e + "\t") - # f.write(text_new[e] + "\n") \ No newline at end of file diff --git a/deepsoftlog/logic/soft_term.py b/deepsoftlog/logic/soft_term.py index 5d1ef07..e5b572c 100644 --- a/deepsoftlog/logic/soft_term.py +++ b/deepsoftlog/logic/soft_term.py @@ -1,7 +1,9 @@ +import os import pickle import torch from torch import Tensor +from transformers import AutoTokenizer from deepsoftlog.algebraic_prover.terms.expression import Expr @@ -39,11 +41,44 @@ def get_soft_term(self): def __getitem__(self, item): return SoftTerm(self.arguments[item]) +os.environ["TOKENIZERS_PARALLELISM"] = "false" +TOKENIZER = AutoTokenizer.from_pretrained("xlm-roberta-base") # monkey-patching on Expr for convenience # Expr.__invert__ = lambda self: SoftTerm(self) # Expr.is_soft = lambda self: self.functor == "~" +class TextTerm(Expr): + def __init__(self, text: str): + super().__init__(f"text{len(text)}") + text = text.replace(":", " ") + tokens = TOKENIZER(text, return_tensors="pt") + self.tensor = torch.cat((tokens["input_ids"], tokens["attention_mask"])) + def get_tensor(self): + return self.tensor + + def with_args(self, arguments): + assert len(arguments) == 0 + return self + + def __repr__(self): + return f"t{str(hash(self))[-3:]}" + + def __str__(self): + return repr(self) + + def __eq__(self, other): + return isinstance(other, TensorTerm) \ + and self.tensor.shape == other.tensor.shape \ + and torch.all(self.tensor == other.tensor) + + def __hash__(self): + return hash(pickle.dumps(self.tensor)) + + def show(self): + from matplotlib import pyplot as plt + plt.imshow(self.tensor[0], cmap='gray') + plt.show() class TensorTerm(Expr): def __init__(self, tensor: Tensor): diff --git a/deepsoftlog/logic/spl_module.py b/deepsoftlog/logic/spl_module.py index 4996783..460b420 100644 --- a/deepsoftlog/logic/spl_module.py +++ b/deepsoftlog/logic/spl_module.py @@ -50,7 +50,7 @@ def get_store(self): def get_soft_unification_matrix(self): names = self.store.constant_embeddings.keys() - return names, self.store.get_soft_unification_matrix(self.embedding_metric) + return names, self.store.get_soft_unification_matrix(self.embedding_metric, names) def get_constant_embedding_matrix(self): names = self.store.constant_embeddings.keys() diff --git a/deepsoftlog/parser/problog_parser.py b/deepsoftlog/parser/problog_parser.py index 42dec77..442e415 100644 --- a/deepsoftlog/parser/problog_parser.py +++ b/deepsoftlog/parser/problog_parser.py @@ -14,6 +14,7 @@ from deepsoftlog.algebraic_prover.terms.expression import * from deepsoftlog.algebraic_prover.terms.transformations import normalize_clauses from deepsoftlog.algebraic_prover.terms.variable import Variable +from deepsoftlog.logic.soft_term import TextTerm def split( @@ -80,7 +81,9 @@ def parse_term(self, term_str: str) -> Expr: start_bracket = term_str.find("(") if start_bracket != -1: functor = term_str[:start_bracket] - arguments = split(term_str[start_bracket + 1 : -1], ",") + if functor == "text": + return Expr(functor, TextTerm(term_str[start_bracket + 1 : -1])) + arguments = split(term_str[start_bracket + 1: -1], ",") return Expr( functor, *(self.parse_termvar(argument) for argument in arguments) ) diff --git a/deepsoftlog/training/__init__.py b/deepsoftlog/training/__init__.py index bbe4feb..cb84114 100644 --- a/deepsoftlog/training/__init__.py +++ b/deepsoftlog/training/__init__.py @@ -1,6 +1,9 @@ +import itertools +from collections.abc import Iterator from pathlib import Path import os import random +from typing import Union, List import numpy as np import torch @@ -31,8 +34,10 @@ def save(self, file_name: str | Path): with open(file_name, "w+") as f: yaml.dump(dict(self), f) + def copy(self): + return ConfigDict(self) -def load_program(config, init_dataloader: "DataLoader") -> "Program": +def load_program(config, init_dataloader: Union["DataLoader", List["DataLoader"]]) -> "Program": config = load_config(config) set_seed(config['seed']) @@ -41,7 +46,8 @@ def load_program(config, init_dataloader: "DataLoader") -> "Program": embedding_metric=config['embedding_metric'], semantics=config['semantics'], ) - vocab = [program, init_dataloader.dataset] + init_dataloader = [init_dataloader] if not isinstance(init_dataloader, list) else init_dataloader + vocab = [program] + [dataloader.dataset for dataloader in init_dataloader] program.store = create_embedding_store(config, vocab_sources=vocab) return program diff --git a/deepsoftlog/training/logger.py b/deepsoftlog/training/logger.py index 0c70f32..709d7c5 100644 --- a/deepsoftlog/training/logger.py +++ b/deepsoftlog/training/logger.py @@ -59,4 +59,7 @@ def _init_wandb(self): def log_fig(self, fig, name): self._init_wandb() - wandb.log({name: wandb.Image(fig)}) \ No newline at end of file + wandb.log({name: wandb.Image(fig)}) + + def finish(self): + wandb.finish() \ No newline at end of file diff --git a/deepsoftlog/training/trainer.py b/deepsoftlog/training/trainer.py index cf34416..68a11c1 100644 --- a/deepsoftlog/training/trainer.py +++ b/deepsoftlog/training/trainer.py @@ -124,6 +124,7 @@ def eval(self, dataloader: DataLoader, name='test'): new_metrics = [get_metrics(query, result, dataloader.dataset) for query, result in results] metrics += new_metrics self.logger.log_eval(aggregate_metrics(metrics), name=name) + return aggregate_metrics(metrics) def _query(self, queries: Iterable[Query]): for query in queries: @@ -155,10 +156,6 @@ def get_loss(self, queries: Iterable[Query]) -> tuple[float, float, float, float errors = [query.error_with(result) for result, query in zip(results, queries)] if loss.requires_grad: loss.backward() - try: - self.get_store().functor_embeddings["('roberta', 1)"].reset_cache() - except: - pass proof_steps, nb_proofs = float(np.mean(proof_steps)), float(np.mean(nb_proofs)) return float(loss), float(np.mean(errors)), proof_steps, nb_proofs @@ -177,7 +174,7 @@ def save(self, config: ConfigDict): save_folder = Path(save_folder) if save_folder.exists(): shutil.rmtree(save_folder, ignore_errors=True) - save_folder.mkdir(parents=True) + save_folder.mkdir(parents=True, exist_ok=True) config.save(save_folder / "config.yaml") torch.save(self.get_store().state_dict(), save_folder / "store.pt") diff --git a/mentions_countries.sh b/mentions_countries.sh new file mode 100755 index 0000000..aa9c75a --- /dev/null +++ b/mentions_countries.sh @@ -0,0 +1,3 @@ +#!/bin/bash +python run_experiments.py mentions_countries deepsoftlog/experiments/mentions_countries/config_LM.yaml +python run_experiments.py mentions_countries deepsoftlog/experiments/mentions_countries/config_baseline.yaml \ No newline at end of file diff --git a/run_experiments.py b/run_experiments.py index fdad161..77f1409 100644 --- a/run_experiments.py +++ b/run_experiments.py @@ -2,15 +2,16 @@ from deepsoftlog.experiments.mnist_addition.addition import train as train_addition from deepsoftlog.experiments.countries.countries import train as train_countries -from deepsoftlog.experiments.wiki_countries.wiki_countries import train as train_wiki_countries +from deepsoftlog.experiments.mentions_countries.mentions_countries import train as train_mentions_countries from deepsoftlog.experiments.fsm.fsm import train as train_fsm -def main(experiment_name, config_file): - train_functions = {'mnist_addition': train_addition, 'countries': train_countries, 'wiki_countries': train_wiki_countries, 'fsm': train_fsm} +def main(experiment_name, *args): + train_functions = {'mnist_addition': train_addition, 'countries': train_countries, 'mentions_countries': train_mentions_countries, 'fsm': train_fsm} assert experiment_name in train_functions.keys(), f"Experiment name must be one of {tuple(train_functions.keys())}" - return train_functions[experiment_name](config_file) + return train_functions[experiment_name](*args) if __name__ == "__main__": - main(*sys.argv[1:]) \ No newline at end of file + main(*sys.argv[1:]) + #main("wiki_countries", "deepsoftlog/experiments/wiki_countries/config_baseline.yaml") \ No newline at end of file diff --git a/wiki_countries.sh b/wiki_countries.sh new file mode 100755 index 0000000..64ee01f --- /dev/null +++ b/wiki_countries.sh @@ -0,0 +1,4 @@ +#!/bin/bash +python run_experiments.py wiki_countries deepsoftlog/experiments/wiki_countries/config_S1.yaml +python run_experiments.py wiki_countries deepsoftlog/experiments/wiki_countries/config_S2.yaml +python run_experiments.py wiki_countries deepsoftlog/experiments/wiki_countries/config_S3.yaml \ No newline at end of file From 0c20546ddb139104be09b4095d348c94646b0c19 Mon Sep 17 00:00:00 2001 From: Rik Adriaensen Date: Thu, 7 Aug 2025 09:49:15 +0200 Subject: [PATCH 05/15] turn freezing off --- deepsoftlog/embeddings/nn_models.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/deepsoftlog/embeddings/nn_models.py b/deepsoftlog/embeddings/nn_models.py index 9e9fc65..888b70c 100644 --- a/deepsoftlog/embeddings/nn_models.py +++ b/deepsoftlog/embeddings/nn_models.py @@ -124,9 +124,9 @@ def __init__(self, ndims=100): super().__init__() self._tokenizer = AutoTokenizer.from_pretrained("xlm-roberta-base") self.model = AutoModel.from_pretrained("xlm-roberta-base") - for name,param in self.model.encoder.named_parameters(): - if int(name.split(".")[1]) < 11: # All but the last layer - param.requires_grad = False + # for name,param in self.model.encoder.named_parameters(): + # if int(name.split(".")[1]) < 11: # All but the last layer + # param.requires_grad = False self.output_layer = nn.Linear(768, ndims) self.embedding_cache = {} self.half_precision = True From 664fe7746915dcd32dc35d2102477fdbe40c646c Mon Sep 17 00:00:00 2001 From: Rik Adriaensen Date: Thu, 7 Aug 2025 13:15:13 +0200 Subject: [PATCH 06/15] add results_dir to config small fix --- deepsoftlog/training/trainer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deepsoftlog/training/trainer.py b/deepsoftlog/training/trainer.py index 68a11c1..ef820aa 100644 --- a/deepsoftlog/training/trainer.py +++ b/deepsoftlog/training/trainer.py @@ -170,7 +170,7 @@ def step_optimizer(self): return float(grad_norm) def save(self, config: ConfigDict): - save_folder = f"results/{config['name']}" + save_folder = f"{config.get('results_dir', 'results')}/{config['name']}" save_folder = Path(save_folder) if save_folder.exists(): shutil.rmtree(save_folder, ignore_errors=True) From 5345bb4d00555be83c61ca3e220f952834d91a4b Mon Sep 17 00:00:00 2001 From: Rik Adriaensen Date: Thu, 18 Sep 2025 11:38:10 +0200 Subject: [PATCH 07/15] add freeze_layers to config add freeze_layers to config --- deepsoftlog/embeddings/embedding_store.py | 2 +- deepsoftlog/embeddings/initialize_vector.py | 7 ++++++- deepsoftlog/embeddings/nn_models.py | 12 +++++------- .../experiments/mentions_countries/dataset.py | 1 - .../mentions_countries/mentions_countries.py | 8 +++++++- 5 files changed, 19 insertions(+), 11 deletions(-) diff --git a/deepsoftlog/embeddings/embedding_store.py b/deepsoftlog/embeddings/embedding_store.py index d0adbe9..28a4f54 100644 --- a/deepsoftlog/embeddings/embedding_store.py +++ b/deepsoftlog/embeddings/embedding_store.py @@ -91,7 +91,7 @@ def get_soft_unification_matrix(self, distance_metric: str, names): def create_embedding_store(config, vocab_sources: Iterable) -> EmbeddingStore: ndim = config['embedding_dimensions'] vocabulary = create_vocabulary(vocab_sources) - initializer = Initializer(EmbeddingFunctor, config['embedding_initialization'], ndim, config.get("text_embedding_mode")) + initializer = Initializer(EmbeddingFunctor, config['embedding_initialization'], ndim, config.get("text_embedding_mode"), config.get("freeze_layers")) store = EmbeddingStore(ndim, initializer, vocabulary) return store diff --git a/deepsoftlog/embeddings/initialize_vector.py b/deepsoftlog/embeddings/initialize_vector.py index 01c3040..a521e72 100644 --- a/deepsoftlog/embeddings/initialize_vector.py +++ b/deepsoftlog/embeddings/initialize_vector.py @@ -7,15 +7,18 @@ SPECIAL_MODELS = { ("lenet5", 1): LeNet5, +} +SPECIAL_PRETRAINED_MODELS = { ("roberta", 1): RobertaBase, } class Initializer: - def __init__(self, model: nn.Module, init_mode: str, ndim: int, text_embedding_mode: str = None): + def __init__(self, model: nn.Module, init_mode: str, ndim: int, text_embedding_mode: str = None, freeze_layers: int = 12): self.ndim = ndim self.init_mode = init_mode self.model = model self.text_embedding_mode = text_embedding_mode + self.freeze_layers = freeze_layers def __call__(self, x) -> Tensor | nn.Module: if isinstance(x, str): @@ -41,6 +44,8 @@ def _initialize_functor(self, name: str, arity: int) -> nn.Module: return RobertaBase(self.ndim) if self.text_embedding_mode == "LM" else BaselineTextEmbedder(self.ndim) if (name, arity) in SPECIAL_MODELS: return SPECIAL_MODELS[(name, arity)](self.ndim) + if (name, arity) in SPECIAL_PRETRAINED_MODELS: # Pretrained models have the freeze_layers argument + return SPECIAL_PRETRAINED_MODELS[(name, arity)](self.ndim, freeze_layers=self.freeze_layers) return self.model(arity, self.ndim) diff --git a/deepsoftlog/embeddings/nn_models.py b/deepsoftlog/embeddings/nn_models.py index 888b70c..5257563 100644 --- a/deepsoftlog/embeddings/nn_models.py +++ b/deepsoftlog/embeddings/nn_models.py @@ -120,19 +120,18 @@ class RobertaBase(nn.Module): https://huggingface.co/FacebookAI/roberta-base """ - def __init__(self, ndims=100): + def __init__(self, ndims=100, freeze_layers=12): super().__init__() self._tokenizer = AutoTokenizer.from_pretrained("xlm-roberta-base") self.model = AutoModel.from_pretrained("xlm-roberta-base") - # for name,param in self.model.encoder.named_parameters(): - # if int(name.split(".")[1]) < 11: # All but the last layer - # param.requires_grad = False + for name,param in self.model.encoder.named_parameters(): + if int(name.split(".")[1]) < freeze_layers: # Roberta-XLM has layers 0-11 + param.requires_grad = False self.output_layer = nn.Linear(768, ndims) self.embedding_cache = {} - self.half_precision = True self.counter = 0 - def half_precision(self): + def half_precision(self): # not used self.model.half() for layer in self.model.modules(): @@ -148,7 +147,6 @@ def forward(self, x): return self.embedding_cache[hash_tensor(x)] def _forward(self, x): - tokens = x[:, 0, :] attention_mask = x[:, 1, :] diff --git a/deepsoftlog/experiments/mentions_countries/dataset.py b/deepsoftlog/experiments/mentions_countries/dataset.py index 0b08599..7d62d63 100644 --- a/deepsoftlog/experiments/mentions_countries/dataset.py +++ b/deepsoftlog/experiments/mentions_countries/dataset.py @@ -65,7 +65,6 @@ def get_test_dataloader(): eval_dataset = MentionsCountriesDataset("test").mutate_all_output(domain) return DataLoader(eval_dataset, batch_size=1, shuffle=False) - def get_val_dataloader(): regions = ["africa", "americas", "asia", "europe", "oceania"] domain = {-1: [SoftTerm(Constant(r)) for r in regions]} diff --git a/deepsoftlog/experiments/mentions_countries/mentions_countries.py b/deepsoftlog/experiments/mentions_countries/mentions_countries.py index c5de15b..c557257 100644 --- a/deepsoftlog/experiments/mentions_countries/mentions_countries.py +++ b/deepsoftlog/experiments/mentions_countries/mentions_countries.py @@ -10,7 +10,12 @@ from deepsoftlog.training.trainer import Trainer def train(cfg_path, name, seed, program, text_embedding_mode, - device='cpu', device_nb=0): + device='cpu', device_nb=0, freeze_layers=12): + """ + Train a model for the mentions_countries task. + :param text_embedding_mode: text embedding mode (boe, LM) + :param freeze_layers: number of layers to freeze if using LM + """ cfg = load_config(cfg_path) cfg.update({ @@ -20,6 +25,7 @@ def train(cfg_path, name, seed, program, text_embedding_mode, "device": device, "device_nb": int(device_nb), "text_embedding_mode": text_embedding_mode, + "freeze_layers": freeze_layers, }) _train(cfg) From 4983009f4f72feefa5222b2e38b99aa037d43540 Mon Sep 17 00:00:00 2001 From: Rik Adriaensen Date: Thu, 18 Sep 2025 12:07:05 +0200 Subject: [PATCH 08/15] clean mentions_countries/config.yaml --- deepsoftlog/experiments/mentions_countries/config.yaml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/deepsoftlog/experiments/mentions_countries/config.yaml b/deepsoftlog/experiments/mentions_countries/config.yaml index c8bf8e7..f582077 100644 --- a/deepsoftlog/experiments/mentions_countries/config.yaml +++ b/deepsoftlog/experiments/mentions_countries/config.yaml @@ -1,8 +1,6 @@ project: mentions_countries verbose: true data_subset: null -device: cuda -device_nb: 2 semantics: sdd2 # optimization @@ -19,5 +17,4 @@ max_branching: 4 # embeddings embedding_dimensions: 100 embedding_initialization: sphere -embedding_metric: angle -text_embedding_mode: baseline \ No newline at end of file +embedding_metric: angle \ No newline at end of file From c3d7642da8234d7af53561fc06ff2a3bc151e9d2 Mon Sep 17 00:00:00 2001 From: Rik Adriaensen Date: Mon, 22 Sep 2025 14:29:01 +0200 Subject: [PATCH 09/15] change mentions_countries: different mentions set for test entities --- .../data/raw/countries_S1_country2text.tsv | 1111 --------- ...ountries_S1_country2text_relation2text.tsv | 1111 --------- .../data/raw/countries_S1_relation2text.tsv | 1894 +++++++-------- .../countries_S1_relation2text_traintest.tsv | 1111 +++++++++ .../data/raw/countries_S2_country2text.tsv | 1063 --------- ...ountries_S2_country2text_relation2text.tsv | 1063 --------- .../data/raw/countries_S2_relation2text.tsv | 2034 ++++++++--------- .../countries_S2_relation2text_traintest.tsv | 1063 +++++++++ .../data/raw/countries_S3_country2text.tsv | 979 -------- ...ountries_S3_country2text_relation2text.tsv | 979 -------- .../data/raw/countries_S3_relation2text.tsv | 1616 ++++++------- .../countries_S3_relation2text_traintest.tsv | 979 ++++++++ .../experiments/mentions_countries/dataset.py | 102 +- .../mentions_countries/mentions_countries.py | 2 +- 14 files changed, 5991 insertions(+), 9116 deletions(-) delete mode 100644 deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_country2text.tsv delete mode 100644 deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_country2text_relation2text.tsv create mode 100644 deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_relation2text_traintest.tsv delete mode 100644 deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_country2text.tsv delete mode 100644 deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_country2text_relation2text.tsv create mode 100644 deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_relation2text_traintest.tsv delete mode 100644 deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_country2text.tsv delete mode 100644 deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_country2text_relation2text.tsv create mode 100644 deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_relation2text_traintest.tsv diff --git a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_country2text.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_country2text.tsv deleted file mode 100644 index 61ad124..0000000 --- a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_country2text.tsv +++ /dev/null @@ -1,1111 +0,0 @@ -text(पलाउ) locatedIn text(Micronesië) -text(Palaos) locatedIn text(Oceania) -text(Maldives) locatedIn text(Asia:del:Sur) -text(Malediven) locatedIn text(Asia) -text(Brunei) locatedIn text(Sudeste:Asiático) -text(汶莱) locatedIn text(亞洲) -text(ब्रुनेई) neighborOf text(Malasia) -text(जापान) locatedIn text(Oost-Azië) -text(اليابان) locatedIn text(آسيا) -text(荷蘭) locatedIn text(西欧) -text(Netherlands) neighborOf text(Germany) -text(هولندا) neighborOf text(Belgium) -text(Turquía) locatedIn text(पश्चिमी:एशिया) -text(Turkey) neighborOf text(亞美尼亞) -text(तुर्की) neighborOf text(أذربيجان) -text(Turkije) neighborOf text(ईरान) -text(土耳其) neighborOf text(希腊) -text(تركيا) neighborOf text(格鲁吉亚) -text(Turquía) neighborOf text(Bulgarije) -text(Turkey) neighborOf text(Iraq) -text(तुर्की) neighborOf text(Syrië) -text(أنغولا) locatedIn text(Central:Africa) -text(Angola) locatedIn text(अफ्रीका) -text(अंगोला) neighborOf text(कांगो:लोकतान्त्रिक:गणराज्य) -text(Angola) neighborOf text(纳米比亚) -text(Angola) neighborOf text(贊比亞) -text(安哥拉) neighborOf text(剛果共和國) -text(Armenia) locatedIn text(Zuidwest-Azië) -text(أرمينيا) locatedIn text(एशिया) -text(Armenië) neighborOf text(Georgia) -text(Armenia) neighborOf text(Azerbeidzjan) -text(आर्मीनिया) neighborOf text(Irán) -text(亞美尼亞) neighborOf text(Turkije) -text(अण्टीगुआ:और:बारबूडा) locatedIn text(Caribe) -text(Antigua:y:Barbuda) locatedIn text(美洲) -text(Esuatini) locatedIn text(إفريقيا:الجنوبية) -text(Swaziland) locatedIn text(非洲) -text(एस्वातीनी) neighborOf text(Zuid-Afrika) -text(Eswatini) neighborOf text(Mozambique) -text(Wallis:and:Futuna) locatedIn text(पोलीनेशिया) -text(वालिस:और:फ़्यूचूना) locatedIn text(Oceanië) -text(उरुग्वे) locatedIn text(América:del:Sur) -text(Uruguay) locatedIn text(महाअमेरिका) -text(Uruguay) neighborOf text(阿根廷) -text(Uruguay) neighborOf text(ब्राज़ील) -text(Zambia) locatedIn text(东部非洲) -text(Zambia) locatedIn text(إفريقيا) -text(زامبيا) neighborOf text(تنزانيا) -text(ज़ाम्बिया) neighborOf text(موزمبيق) -text(Zambia) neighborOf text(República:Democrática:del:Congo) -text(贊比亞) neighborOf text(أنغولا) -text(Zambia) neighborOf text(بوتسوانا) -text(Zambia) neighborOf text(زيمبابوي) -text(زامبيا) neighborOf text(Namibia) -text(ज़ाम्बिया) neighborOf text(馬拉威) -text(塞浦路斯) locatedIn text(पूर्वी:यूरोप) -text(Chipre) locatedIn text(أوروبا) -text(Cyprus) neighborOf text(英国) -text(Reino:Unido) locatedIn text(Northern:Europe) -text(英国) locatedIn text(欧洲) -text(Verenigd:Koninkrijk) neighborOf text(Verenigd:Koninkrijk) -text(蒲隆地) locatedIn text(África:Oriental) -text(Burundi) locatedIn text(Africa) -text(बुरुण्डी) neighborOf text(Congo-Kinshasa) -text(Burundi) neighborOf text(卢旺达) -text(Burundi) neighborOf text(Tanzania) -text(República:Centroafricana) locatedIn text(मध्य:अफ्रीका) -text(मध्य:अफ़्रीकी:गणराज्य) locatedIn text(África) -text(中非共和國) neighborOf text(Tsjaad) -text(جمهورية:إفريقيا:الوسطى) neighborOf text(Congo-Brazzaville) -text(Central:African:Republic) neighborOf text(Democratic:Republic:of:the:Congo) -text(Centraal-Afrikaanse:Republiek) neighborOf text(दक्षिण:सूडान) -text(República:Centroafricana) neighborOf text(Kameroen) -text(मध्य:अफ़्रीकी:गणराज्य) neighborOf text(सूडान) -text(Tonga) locatedIn text(玻里尼西亞) -text(टोंगा) locatedIn text(大洋洲) -text(कोत:दिव्वार) locatedIn text(غرب:إفريقيا) -text(科特迪瓦) locatedIn text(Afrika) -text(Ivoorkust) neighborOf text(布吉納法索) -text(Costa:de:Marfil) neighborOf text(Ghana) -text(Ivory:Coast) neighborOf text(Liberia) -text(ساحل:العاج) neighborOf text(Mali) -text(कोत:दिव्वार) neighborOf text(गिनी) -text(سيراليون) locatedIn text(पश्चिमी:अफ्रीका) -text(Sierra:Leone) neighborOf text(Liberia) -text(Sierra:Leone) neighborOf text(Guinee) -text(مايوت) locatedIn text(पूर्वी:अफ्रीका) -text(Mayotte) locatedIn text(अफ्रीका) -text(波蘭) locatedIn text(Oost-Europa) -text(Poland) neighborOf text(ألمانيا) -text(पोलैंड) neighborOf text(Ucrania) -text(بولندا) neighborOf text(स्लोवाकिया) -text(Polonia) neighborOf text(Belarus) -text(Polen) neighborOf text(Russia) -text(波蘭) neighborOf text(立陶宛) -text(Poland) neighborOf text(चेक:गणराज्य) -text(कज़ाख़िस्तान) locatedIn text(Centraal-Azië) -text(Kazachstan) locatedIn text(Azië) -text(Kazajistán) neighborOf text(तुर्कमेनिस्तान) -text(哈萨克斯坦) neighborOf text(República:Popular:China) -text(Kazakhstan) neighborOf text(Kyrgyzstan) -text(كازاخستان) neighborOf text(उज़्बेकिस्तान) -text(कज़ाख़िस्तान) neighborOf text(रूस) -text(Uzbekistan) locatedIn text(中亚) -text(أوزبكستان) locatedIn text(Asia) -text(乌兹别克斯坦) neighborOf text(أفغانستان) -text(Uzbekistán) neighborOf text(Turkmenistán) -text(Oezbekistan) neighborOf text(Kazachstan) -text(उज़्बेकिस्तान) neighborOf text(किर्गिज़स्तान) -text(Uzbekistan) neighborOf text(塔吉克斯坦) -text(तुर्क:और:केकोस:द्वीपसमूह) locatedIn text(الكاريبي) -text(Turks-:en:Caicoseilanden) locatedIn text(Amerika) -text(Nueva:Caledonia) locatedIn text(Melanesia) -text(كاليدونيا:الجديدة) locatedIn text(أوقيانوسيا) -text(पाकिस्तान) locatedIn text(Zuid-Azië) -text(Pakistan) neighborOf text(चीनी:जनवादी:गणराज्य) -text(باكستان) neighborOf text(阿富汗) -text(巴基斯坦) neighborOf text(伊朗) -text(Pakistan) neighborOf text(भारत) -text(अर्जेण्टीना) locatedIn text(दक्षिण:अमेरिका) -text(Argentinië) locatedIn text(América) -text(الأرجنتين) neighborOf text(Bolivia) -text(Argentina) neighborOf text(Chile) -text(Argentina) neighborOf text(البرازيل) -text(阿根廷) neighborOf text(巴拉圭) -text(अर्जेण्टीना) neighborOf text(烏拉圭) -text(Cuba) locatedIn text(加勒比地区) -text(Cuba) locatedIn text(Americas) -text(Servië) locatedIn text(Europa:del:Sur) -text(सर्बिया) neighborOf text(Macedonia:del:Norte) -text(Serbia) neighborOf text(मॉन्टेनीग्रो) -text(صربيا) neighborOf text(Kosovo) -text(Serbia) neighborOf text(Bosnië:en:Herzegovina) -text(塞爾維亞) neighborOf text(क्रोएशिया) -text(Servië) neighborOf text(المجر) -text(सर्बिया) neighborOf text(बुल्गारिया) -text(Serbia) neighborOf text(Romania) -text(捷克) locatedIn text(Eastern:Europe) -text(Czech:Republic) locatedIn text(Europa) -text(Tsjechië) neighborOf text(德國) -text(جمهورية:التشيك) neighborOf text(ऑस्ट्रिया) -text(República:Checa) neighborOf text(पोलैंड) -text(चेक:गणराज्य) neighborOf text(سلوفاكيا) -text(निकारागुआ) locatedIn text(中美洲) -text(Nicaragua) neighborOf text(Honduras) -text(尼加拉瓜) neighborOf text(Costa:Rica) -text(فيتنام) locatedIn text(दक्षिण:पूर्व:एशिया) -text(वियतनाम) locatedIn text(Asia) -text(Vietnam) neighborOf text(Cambodja) -text(Vietnam) neighborOf text(Laos) -text(Vietnam) neighborOf text(Volksrepubliek:China) -text(紐埃) locatedIn text(Polynesië) -text(Niue) locatedIn text(Oceanía) -text(Canada) locatedIn text(North:America) -text(Canada) locatedIn text(أمريكتان) -text(कनाडा) neighborOf text(संयुक्त:राज्य:अमेरिका) -text(Slowakije) locatedIn text(मध्य:यूरोप) -text(Slovakia) neighborOf text(烏克蘭) -text(Eslovaquia) neighborOf text(بولندا) -text(斯洛伐克) neighborOf text(奧地利) -text(स्लोवाकिया) neighborOf text(Hungary) -text(سلوفاكيا) neighborOf text(捷克) -text(Mozambique) locatedIn text(East:Africa) -text(Mozambique) neighborOf text(Tanzania) -text(मोज़ाम्बीक) neighborOf text(斯威士兰) -text(莫桑比克) neighborOf text(津巴布韦) -text(Mozambique) neighborOf text(Zambia) -text(موزمبيق) neighborOf text(مالاوي) -text(Mozambique) neighborOf text(South:Africa) -text(Aruba) locatedIn text(कैरिबिया) -text(阿魯巴) locatedIn text(美洲) -text(Bolivia) locatedIn text(Zuid-Amerika) -text(Bolivia) locatedIn text(महाअमेरिका) -text(बोलिविया) neighborOf text(Chili) -text(بوليفيا) neighborOf text(Brasil) -text(玻利維亞) neighborOf text(पैराग्वे) -text(Bolivia) neighborOf text(Argentinië) -text(Bolivia) neighborOf text(Perú) -text(Colombia) locatedIn text(South:America) -text(哥伦比亚) locatedIn text(Amerika) -text(Colombia) neighborOf text(الإكوادور) -text(कोलम्बिया) neighborOf text(Brazil) -text(كولومبيا) neighborOf text(Panama) -text(Colombia) neighborOf text(Venezuela) -text(Colombia) neighborOf text(بيرو) -text(فيجي) locatedIn text(Melanesia) -text(Fiyi) locatedIn text(ओशिआनिया) -text(Republic:of:the:Congo) locatedIn text(中部非洲) -text(कांगो:गणराज्य) neighborOf text(Gabon) -text(República:del:Congo) neighborOf text(刚果民主共和国) -text(جمهورية:الكونغو) neighborOf text(Angola) -text(剛果共和國) neighborOf text(Cameroon) -text(Congo-Brazzaville) neighborOf text(中非共和國) -text(सउदी:अरब) locatedIn text(Asia:Occidental) -text(Saudi:Arabia) neighborOf text(卡塔尔) -text(Saoedi-Arabië) neighborOf text(संयुक्त:अरब:अमीरात) -text(Arabia:Saudí) neighborOf text(जॉर्डन) -text(沙特阿拉伯) neighborOf text(اليمن) -text(السعودية) neighborOf text(ओमान) -text(सउदी:अरब) neighborOf text(科威特) -text(Saudi:Arabia) neighborOf text(Irak) -text(El:Salvador) locatedIn text(केंद्रीय:अमेरिका) -text(अल:साल्वाडोर) locatedIn text(América) -text(السلفادور) neighborOf text(Guatemala) -text(薩爾瓦多) neighborOf text(हॉण्डुरस) -text(مدغشقر) locatedIn text(شرق:إفريقيا) -text(馬達加斯加) locatedIn text(非洲) -text(أستراليا) locatedIn text(nan) -text(ऑस्ट्रेलिया) locatedIn text(Oceania) -text(Namibia) locatedIn text(Zuidelijk:Afrika) -text(ناميبيا) locatedIn text(إفريقيا) -text(नामीबिया) neighborOf text(贊比亞) -text(Namibië) neighborOf text(अंगोला) -text(纳米比亚) neighborOf text(Sudáfrica) -text(Namibia) neighborOf text(Botswana) -text(توفالو) locatedIn text(Polinesia) -text(Tuvalu) locatedIn text(Oceanië) -text(nan) locatedIn text(उत्तरी:यूरोप) -text(Svalbard:y:Jan:Mayen) locatedIn text(यूरोप) -text(Isle:of:Man) locatedIn text(Noord-Europa) -text(Isla:de:Man) locatedIn text(Europe) -text(गयाना) locatedIn text(أمريكا:الجنوبية) -text(圭亚那) neighborOf text(巴西) -text(Guyana) neighborOf text(सूरीनाम) -text(غيانا) neighborOf text(فنزويلا) -text(Vaticaanstad) locatedIn text(南欧) -text(Ciudad:del:Vaticano) locatedIn text(Europa) -text(الفاتيكان) neighborOf text(Italy) -text(英屬印度洋領地) locatedIn text(Oost-Afrika) -text(Brits:Indische:Oceaanterritorium) locatedIn text(Africa) -text(نيجيريا) locatedIn text(West:Africa) -text(Nigeria) locatedIn text(África) -text(Nigeria) neighborOf text(Chad) -text(Nigeria) neighborOf text(Niger) -text(नाइजीरिया) neighborOf text(Camerún) -text(奈及利亞) neighborOf text(Benin) -text(जर्मनी) locatedIn text(पश्चिमी:यूरोप) -text(Duitsland) neighborOf text(डेनमार्क) -text(Alemania) neighborOf text(Nederland) -text(Germany) neighborOf text(Polonia) -text(ألمانيا) neighborOf text(लक्ज़मबर्ग) -text(德國) neighborOf text(比利時) -text(जर्मनी) neighborOf text(Suiza) -text(Duitsland) neighborOf text(Austria) -text(Alemania) neighborOf text(France) -text(Germany) neighborOf text(Czech:Republic) -text(Burkina:Faso) locatedIn text(西非) -text(Burkina:Faso) neighborOf text(टोगो) -text(بوركينا:فاسو) neighborOf text(Benín) -text(Burkina:Faso) neighborOf text(Niger) -text(बुर्किना:फासो) neighborOf text(घाना) -text(布吉納法索) neighborOf text(Mali) -text(Burkina:Faso) neighborOf text(科特迪瓦) -text(तंज़ानिया) locatedIn text(东部非洲) -text(坦桑尼亞) neighborOf text(Uganda) -text(Tanzania) neighborOf text(Mozambique) -text(تنزانيا) neighborOf text(جمهورية:الكونغو:الديمقراطية) -text(Tanzania) neighborOf text(Kenia) -text(Tanzania) neighborOf text(Rwanda) -text(तंज़ानिया) neighborOf text(Zambia) -text(坦桑尼亞) neighborOf text(Malawi) -text(Tanzania) neighborOf text(بوروندي) -text(Islas:Marianas:del:Norte) locatedIn text(密克羅尼西亞群島) -text(جزر:ماريانا:الشمالية) locatedIn text(大洋洲) -text(Belize) locatedIn text(Central:America) -text(बेलीज़) locatedIn text(Americas) -text(Belice) neighborOf text(危地马拉) -text(بليز) neighborOf text(المكسيك) -text(Noruega) locatedIn text(Europa:del:Norte) -text(नॉर्वे) neighborOf text(Zweden) -text(النرويج) neighborOf text(芬蘭) -text(Noorwegen) neighborOf text(俄罗斯) -text(Cocoseilanden) locatedIn text(nan) -text(Cocos:(Keeling):Islands) locatedIn text(أوقيانوسيا) -text(Laos) locatedIn text(Zuidoost-Azië) -text(लाओस) locatedIn text(亞洲) -text(Laos) neighborOf text(People's:Republic:of:China) -text(لاوس) neighborOf text(كمبوديا) -text(老撾) neighborOf text(Myanmar) -text(Laos) neighborOf text(越南) -text(Laos) neighborOf text(تايلاند) -text(सहरावी:अरब:जनतांत्रिक:गणराज्य) locatedIn text(North:Africa) -text(撒拉威阿拉伯民主共和國) locatedIn text(Afrika) -text(Sahrawi:Arabische:Democratische:Republiek) neighborOf text(Algeria) -text(الجمهورية:العربية:الصحراوية:الديمقراطية) neighborOf text(Mauritania) -text(Sahrawi:Arab:Democratic:Republic) neighborOf text(Marokko) -text(Suriname) locatedIn text(南美洲) -text(Surinam) locatedIn text(أمريكتان) -text(蘇利南) neighborOf text(Brazilië) -text(سورينام) neighborOf text(Frans-Guyana) -text(Suriname) neighborOf text(Guyana) -text(聖誕島) locatedIn text(Australië:en:Nieuw-Zeeland) -text(Christmaseiland) locatedIn text(Oceanía) -text(साओ:तोमे:और:प्रिन्सिपी) locatedIn text(Centraal-Afrika) -text(Santo:Tomé:y:Príncipe) locatedIn text(अफ्रीका) -text(مصر) locatedIn text(उत्तर:अफ़्रीका) -text(Egypt) neighborOf text(利比亞) -text(मिस्र) neighborOf text(以色列) -text(Egipto) neighborOf text(苏丹) -text(بلغاريا) locatedIn text(东欧) -text(保加利亚) neighborOf text(北马其顿) -text(Bulgaria) neighborOf text(土耳其) -text(Bulgaria) neighborOf text(اليونان) -text(Bulgarije) neighborOf text(صربيا) -text(बुल्गारिया) neighborOf text(羅馬尼亞) -text(几内亚) locatedIn text(África:Occidental) -text(Guinea) locatedIn text(非洲) -text(غينيا) neighborOf text(غينيا:بيساو) -text(Guinea) neighborOf text(Sierra:Leona) -text(गिनी) neighborOf text(مالي) -text(Guinee) neighborOf text(लाइबेरिया) -text(几内亚) neighborOf text(Senegal) -text(Guinea) neighborOf text(Ivoorkust) -text(स्पेन) locatedIn text(أوروبا:الجنوبية) -text(西班牙) neighborOf text(Marruecos) -text(Spain) neighborOf text(जिब्राल्टर) -text(Spanje) neighborOf text(Andorra) -text(إسبانيا) neighborOf text(Francia) -text(España) neighborOf text(البرتغال) -text(كوستاريكا) locatedIn text(أمريكا:الوسطى) -text(Costa:Rica) locatedIn text(美洲) -text(哥斯达黎加) neighborOf text(بنما) -text(Costa:Rica) neighborOf text(نيكاراغوا) -text(माल्टा) locatedIn text(दक्षिणी:यूरोप) -text(Malta) locatedIn text(أوروبا) -text(Portugal) locatedIn text(Southern:Europe) -text(Portugal) locatedIn text(欧洲) -text(Portugal) neighborOf text(स्पेन) -text(Roemenië) locatedIn text(أوروبا:الشرقية) -text(رومانيا) locatedIn text(Europa) -text(रोमानिया) neighborOf text(युक्रेन) -text(Rumania) neighborOf text(匈牙利) -text(Romania) neighborOf text(मोल्डोवा) -text(羅馬尼亞) neighborOf text(بلغاريا) -text(Roemenië) neighborOf text(Serbia) -text(سان:مارينو) locatedIn text(Zuid-Europa) -text(圣马力诺) locatedIn text(यूरोप) -text(San:Marino) neighborOf text(إيطاليا) -text(موريتانيا) locatedIn text(West-Afrika) -text(मॉरीतानिया) locatedIn text(إفريقيا) -text(Mauritanië) neighborOf text(阿爾及利亞) -text(毛里塔尼亞) neighborOf text(Mali) -text(Mauritania) neighborOf text(República:Árabe:Saharaui:Democrática) -text(Mauritania) neighborOf text(Senegal) -text(Trinidad:y:Tobago) locatedIn text(Caribbean) -text(Trinidad:en:Tobago) locatedIn text(महाअमेरिका) -text(Baréin) locatedIn text(西亚) -text(Bahrain) locatedIn text(آسيا) -text(म्यान्मार) locatedIn text(东南亚) -text(Myanmar) neighborOf text(印度) -text(ميانمار) neighborOf text(Bangladesh) -text(緬甸) neighborOf text(中华人民共和国) -text(Birmania) neighborOf text(लाओस) -text(Myanmar) neighborOf text(Thailand) -text(العراق) locatedIn text(West:Asia) -text(इराक) neighborOf text(تركيا) -text(Irak) neighborOf text(Saoedi-Arabië) -text(伊拉克) neighborOf text(Iran) -text(Iraq) neighborOf text(Jordan) -text(Irak) neighborOf text(Kuwait) -text(العراق) neighborOf text(Syria) -text(南乔治亚和南桑威奇群岛) locatedIn text(América:del:Sur) -text(Zuid-Georgia:en:de:Zuidelijke:Sandwicheilanden) locatedIn text(Amerika) -text(آيسلندا) locatedIn text(北歐) -text(Islandia) locatedIn text(Europe) -text(कांगो:लोकतान्त्रिक:गणराज्य) locatedIn text(África:Central) -text(República:Democrática:del:Congo) locatedIn text(Africa) -text(Congo-Kinshasa) neighborOf text(Uganda) -text(Democratic:Republic:of:the:Congo) neighborOf text(تنزانيا) -text(刚果民主共和国) neighborOf text(Republic:of:the:Congo) -text(جمهورية:الكونغو:الديمقراطية) neighborOf text(جمهورية:إفريقيا:الوسطى) -text(कांगो:लोकतान्त्रिक:गणराज्य) neighborOf text(Angola) -text(República:Democrática:del:Congo) neighborOf text(रवाण्डा) -text(Congo-Kinshasa) neighborOf text(Sudán:del:Sur) -text(Democratic:Republic:of:the:Congo) neighborOf text(Zambia) -text(刚果民主共和国) neighborOf text(蒲隆地) -text(Seychellen) locatedIn text(África:Oriental) -text(Seychelles) locatedIn text(África) -text(Kirgizië) locatedIn text(मध्य:एशिया) -text(Kirguistán) neighborOf text(الصين) -text(吉尔吉斯斯坦) neighborOf text(Kazajistán) -text(قرغيزستان) neighborOf text(Tajikistan) -text(Kyrgyzstan) neighborOf text(أوزبكستان) -text(波札那) locatedIn text(Southern:Africa) -text(Botsuana) locatedIn text(Afrika) -text(Botswana) neighborOf text(ज़िम्बाब्वे) -text(बोत्सवाना) neighborOf text(Namibia) -text(بوتسوانا) neighborOf text(زامبيا) -text(Botswana) neighborOf text(جنوب:إفريقيا) -text(جزر:فارو) locatedIn text(أوروبا:الشمالية) -text(Faeröer) locatedIn text(Europa) -text(Jamaica) locatedIn text(Caraïben) -text(Jamaica) locatedIn text(América) -text(ساموا:الأمريكية) locatedIn text(Polynesia) -text(Amerikaans-Samoa) locatedIn text(ओशिआनिया) -text(लेसोथो) locatedIn text(दक्षिणी:अफ्रीका) -text(Lesotho) locatedIn text(अफ्रीका) -text(ليسوتو) neighborOf text(南非) -text(سريلانكا) locatedIn text(جنوب:آسيا) -text(श्रीलंका) neighborOf text(India) -text(बेल्जियम) locatedIn text(West-Europa) -text(Bélgica) locatedIn text(أوروبا) -text(بلجيكا) neighborOf text(ألمانيا) -text(België) neighborOf text(卢森堡) -text(Belgium) neighborOf text(فرنسا) -text(比利時) neighborOf text(नीदरलैण्ड) -text(Qatar) locatedIn text(غرب:آسيا) -text(Catar) locatedIn text(एशिया) -text(क़तर) neighborOf text(Arabia:Saudí) -text(جزر:سليمان) locatedIn text(ميلانيزيا) -text(Solomon:Islands) locatedIn text(Oceania) -text(敘利亞) locatedIn text(पश्चिमी:एशिया) -text(سوريا) locatedIn text(Azië) -text(सीरिया) neighborOf text(Israel) -text(Siria) neighborOf text(Turquía) -text(Syrië) neighborOf text(Jordania) -text(Syria) neighborOf text(黎巴嫩) -text(敘利亞) neighborOf text(इराक) -text(India) locatedIn text(दक्षिण:एशिया) -text(الهند) locatedIn text(Asia) -text(India) neighborOf text(अफ़्ग़ानिस्तान) -text(भारत) neighborOf text(Bhutan) -text(印度) neighborOf text(बांग्लादेश) -text(India) neighborOf text(República:Popular:China) -text(India) neighborOf text(尼泊爾) -text(الهند) neighborOf text(म्यान्मार) -text(India) neighborOf text(Pakistán) -text(भारत) neighborOf text(Sri:Lanka) -text(Morocco) locatedIn text(Norte:de:África) -text(المغرب) neighborOf text(Argelia) -text(मोरक्को) neighborOf text(西班牙) -text(摩洛哥) neighborOf text(सहरावी:अरब:जनतांत्रिक:गणराज्य) -text(Kenia) locatedIn text(पूर्वी:अफ्रीका) -text(Kenya) locatedIn text(非洲) -text(कीनिया) neighborOf text(أوغندا) -text(肯尼亚) neighborOf text(Tanzania) -text(كينيا) neighborOf text(الصومال) -text(Kenia) neighborOf text(南蘇丹) -text(Kenia) neighborOf text(埃塞俄比亚) -text(Zuid-Soedan) locatedIn text(وسط:إفريقيا) -text(جنوب:السودان) locatedIn text(إفريقيا) -text(South:Sudan) neighborOf text(Oeganda) -text(दक्षिण:सूडान) neighborOf text(جمهورية:الكونغو:الديمقراطية) -text(Sudán:del:Sur) neighborOf text(Kenya) -text(南蘇丹) neighborOf text(Central:African:Republic) -text(Zuid-Soedan) neighborOf text(Soedan) -text(جنوب:السودان) neighborOf text(इथियोपिया) -text(Ghana) locatedIn text(غرب:إفريقيا) -text(Ghana) neighborOf text(Burkina:Faso) -text(迦納) neighborOf text(Costa:de:Marfil) -text(غانا) neighborOf text(توغو) -text(Tadzjikistan) locatedIn text(Asia:Central) -text(طاجيكستان) locatedIn text(Asia) -text(ताजीकिस्तान) neighborOf text(चीनी:जनवादी:गणराज्य) -text(Tayikistán) neighborOf text(किर्गिज़स्तान) -text(塔吉克斯坦) neighborOf text(Afghanistan) -text(Tajikistan) neighborOf text(乌兹别克斯坦) -text(جزر:مارشال) locatedIn text(Micronesia) -text(Marshalleilanden) locatedIn text(Oceanië) -text(कैमरुन) locatedIn text(Central:Africa) -text(喀麦隆) locatedIn text(Africa) -text(الكاميرون) neighborOf text(تشاد) -text(Kameroen) neighborOf text(कांगो:गणराज्य) -text(Cameroon) neighborOf text(Gabón) -text(Camerún) neighborOf text(赤道几内亚) -text(कैमरुन) neighborOf text(Centraal-Afrikaanse:Republiek) -text(喀麦隆) neighborOf text(نيجيريا) -text(ناورو) locatedIn text(Micronesia) -text(Nauru) locatedIn text(大洋洲) -text(थाईलैंड) locatedIn text(Southeast:Asia) -text(泰國) neighborOf text(柬埔寨) -text(Tailandia) neighborOf text(Myanmar) -text(Thailand) neighborOf text(Laos) -text(تايلاند) neighborOf text(मलेशिया) -text(السودان) locatedIn text(شمال:إفريقيا) -text(Sudan) neighborOf text(乍得) -text(Sudán) neighborOf text(Libya) -text(सूडान) neighborOf text(South:Sudan) -text(苏丹) neighborOf text(إرتريا) -text(Soedan) neighborOf text(República:Centroafricana) -text(السودان) neighborOf text(Egypte) -text(Sudan) neighborOf text(Ethiopië) -text(चाड) locatedIn text(मध्य:अफ्रीका) -text(Chad) locatedIn text(África) -text(Tsjaad) neighborOf text(Libia) -text(Chad) neighborOf text(尼日尔) -text(تشاد) neighborOf text(दक्षिण:सूडान) -text(乍得) neighborOf text(الكاميرون) -text(चाड) neighborOf text(मध्य:अफ़्रीकी:गणराज्य) -text(Chad) neighborOf text(Nigeria) -text(فانواتو) locatedIn text(मॅलानिशिया) -text(वानूआटू) locatedIn text(أوقيانوسيا) -text(Cape:Verde) locatedIn text(पश्चिमी:अफ्रीका) -text(Kaapverdië) locatedIn text(Afrika) -text(फ़ॉकलैंड:द्वीपसमूह) locatedIn text(दक्षिण:अमेरिका) -text(جزر:فوكلاند) locatedIn text(Americas) -text(利比里亞) locatedIn text(West:Africa) -text(ليبيريا) locatedIn text(अफ्रीका) -text(Liberia) neighborOf text(Ivory:Coast) -text(Liberia) neighborOf text(塞拉利昂) -text(Liberia) neighborOf text(غينيا) -text(Cambodia) locatedIn text(جنوب:شرق:آسيا) -text(Camboya) locatedIn text(亞洲) -text(कम्बोडिया) neighborOf text(فيتنام) -text(Cambodja) neighborOf text(Thailand) -text(كمبوديا) neighborOf text(لاوس) -text(Zimbabwe) locatedIn text(East:Africa) -text(Zimbabwe) neighborOf text(ज़ाम्बिया) -text(Zimbabue) neighborOf text(दक्षिण:अफ़्रीका) -text(زيمبابوي) neighborOf text(波札那) -text(津巴布韦) neighborOf text(मोज़ाम्बीक) -text(Comoras) locatedIn text(شرق:إفريقيا) -text(Comoros) locatedIn text(非洲) -text(غوام) locatedIn text(ميكرونيسيا) -text(गुआम) locatedIn text(Oceanía) -text(巴哈馬) locatedIn text(Caribe) -text(बहामास) locatedIn text(أمريكتان) -text(लेबनॉन) locatedIn text(Zuidwest-Azië) -text(Libanon) locatedIn text(آسيا) -text(Líbano) neighborOf text(Israel) -text(Lebanon) neighborOf text(سوريا) -text(Saint:Martin) locatedIn text(الكاريبي) -text(圣马丁岛) locatedIn text(美洲) -text(سانت:مارتن) neighborOf text(法屬聖馬丁) -text(Ethiopia) locatedIn text(Oost-Afrika) -text(Etiopía) locatedIn text(إفريقيا) -text(إثيوبيا) neighborOf text(सोमालिया) -text(埃塞俄比亚) neighborOf text(कीनिया) -text(इथियोपिया) neighborOf text(Eritrea) -text(Ethiopië) neighborOf text(Sudán:del:Sur) -text(Ethiopia) neighborOf text(جيبوتي) -text(Etiopía) neighborOf text(Sudán) -text(جزر:العذراء:التابعة:الولايات:المتحدة) locatedIn text(加勒比地区) -text(Islas:Vírgenes:de:los:Estados:Unidos) locatedIn text(महाअमेरिका) -text(Guinea-Bisáu) locatedIn text(西非) -text(Guinea-Bissau) locatedIn text(Africa) -text(畿內亞比紹) neighborOf text(Guinea) -text(Guinee-Bissau) neighborOf text(塞内加尔) -text(लीबिया) locatedIn text(北部非洲) -text(Libië) locatedIn text(África) -text(ليبيا) neighborOf text(Tsjaad) -text(利比亞) neighborOf text(تونس) -text(Libya) neighborOf text(नाइजर) -text(Libia) neighborOf text(الجزائر) -text(लीबिया) neighborOf text(埃及) -text(Libië) neighborOf text(सूडान) -text(Bhutan) locatedIn text(South:Asia) -text(भूटान) locatedIn text(एशिया) -text(不丹) neighborOf text(Volksrepubliek:China) -text(بوتان) neighborOf text(印度) -text(मकाउ) locatedIn text(पूर्वी:एशिया) -text(ماكاو) locatedIn text(Azië) -text(Macau) neighborOf text(People's:Republic:of:China) -text(法屬玻里尼西亞) locatedIn text(بولنيزيا) -text(फ़्रान्सीसी:पॉलिनेशिया) locatedIn text(ओशिआनिया) -text(Somalia) locatedIn text(东部非洲) -text(索馬里) locatedIn text(Afrika) -text(Somalië) neighborOf text(जिबूती) -text(Somalia) neighborOf text(肯尼亚) -text(الصومال) neighborOf text(إثيوبيا) -text(سان:بارتيلمي) locatedIn text(कैरिबिया) -text(Saint:Barthélemy) locatedIn text(Amerika) -text(روسيا) locatedIn text(Europa:Oriental) -text(Rusia) locatedIn text(欧洲) -text(Rusland) neighborOf text(أوكرانيا) -text(Russia) neighborOf text(Wit-Rusland) -text(रूस) neighborOf text(中华人民共和国) -text(俄罗斯) neighborOf text(哈萨克斯坦) -text(روسيا) neighborOf text(挪威) -text(Rusia) neighborOf text(Polen) -text(Rusland) neighborOf text(Azerbaiyán) -text(Russia) neighborOf text(Lithuania) -text(रूस) neighborOf text(إستونيا) -text(俄罗斯) neighborOf text(Noord-Korea) -text(روسيا) neighborOf text(فنلندا) -text(Rusia) neighborOf text(Mongolia) -text(Rusland) neighborOf text(لاتفيا) -text(Russia) neighborOf text(جورجيا) -text(Nieuw-Zeeland) locatedIn text(nan) -text(新西兰) locatedIn text(Oceania) -text(Panamá) locatedIn text(Centraal-Amerika) -text(Panama) locatedIn text(América) -text(巴拿馬) neighborOf text(कोस्टा:रीका) -text(पनामा) neighborOf text(哥伦比亚) -text(巴布亚新几内亚) locatedIn text(美拉尼西亞) -text(पापुआ:न्यू:गिनी) locatedIn text(Oceanië) -text(بابوا:غينيا:الجديدة) neighborOf text(Indonesia) -text(Corea:del:Norte) locatedIn text(Asia:Oriental) -text(उत्तर:कोरिया) neighborOf text(الصين) -text(كوريا:الشمالية) neighborOf text(Corea:del:Sur) -text(朝鮮民主主義人民共和國) neighborOf text(रूस) -text(Latvia) locatedIn text(Northern:Europe) -text(拉脫維亞) locatedIn text(Europa) -text(Letonia) neighborOf text(Lituania) -text(लातविया) neighborOf text(بيلاروس) -text(Letland) neighborOf text(俄罗斯) -text(لاتفيا) neighborOf text(Estonia) -text(阿曼) locatedIn text(Asia:Occidental) -text(Oman) locatedIn text(Asia) -text(Omán) neighborOf text(沙特阿拉伯) -text(Oman) neighborOf text(Yemen) -text(سلطنة:عمان) neighborOf text(阿拉伯联合酋长国) -text(سان:بيير:وميكلون) locatedIn text(Noord-Amerika) -text(圣皮埃尔和密克隆) locatedIn text(Americas) -text(Martinique) locatedIn text(Caribbean) -text(مارتينيك) locatedIn text(أمريكتان) -text(यूनाइटेड:किंगडम) locatedIn text(उत्तरी:यूरोप) -text(Reino:Unido) locatedIn text(यूरोप) -text(المملكة:المتحدة) neighborOf text(यूनाइटेड:किंगडम) -text(इज़राइल) locatedIn text(西亚) -text(Israël) locatedIn text(Asia) -text(إسرائيل) neighborOf text(لبنان) -text(以色列) neighborOf text(مصر) -text(Israel) neighborOf text(الأردن) -text(Israel) neighborOf text(सीरिया) -text(Jersey) locatedIn text(Noord-Europa) -text(澤西) locatedIn text(Europe) -text(Pitcairneilanden) locatedIn text(पोलीनेशिया) -text(पिटकेर्न:द्वीपसमूह) locatedIn text(大洋洲) -text(Togo) locatedIn text(África:Occidental) -text(Togo) locatedIn text(अफ्रीका) -text(Togo) neighborOf text(بوركينا:فاسو) -text(多哥) neighborOf text(Ghana) -text(टोगो) neighborOf text(बेनिन) -text(Kiribati) locatedIn text(माइक्रोनीशिया) -text(Kiribati) locatedIn text(أوقيانوسيا) -text(إيران) locatedIn text(南亚) -text(Iran) locatedIn text(亞洲) -text(ईरान) neighborOf text(Afghanistan) -text(Irán) neighborOf text(Turkmenistan) -text(伊朗) neighborOf text(Turkey) -text(Iran) neighborOf text(Armenia) -text(إيران) neighborOf text(Azerbaijan) -text(Iran) neighborOf text(पाकिस्तान) -text(ईरान) neighborOf text(Irak) -text(Saint-Martin) locatedIn text(Caraïben) -text(San:Martín) locatedIn text(美洲) -text(Sint-Maarten) neighborOf text(San:Martín) -text(多明尼加) locatedIn text(Caribe) -text(جمهورية:الدومينيكان) locatedIn text(महाअमेरिका) -text(Dominicaanse:Republiek) neighborOf text(Haití) -text(الدنمارك) locatedIn text(Europa:del:Norte) -text(Denemarken) neighborOf text(德國) -text(百慕大) locatedIn text(北美洲) -text(برمودا) locatedIn text(Amerika) -text(智利) locatedIn text(Zuid-Amerika) -text(تشيلي) neighborOf text(الأرجنتين) -text(चिली) neighborOf text(Bolivia) -text(Chile) neighborOf text(Peru) -text(كوسوفو) locatedIn text(पूर्वी:यूरोप) -text(科索沃) locatedIn text(Europa) -text(Kosovo) neighborOf text(塞爾維亞) -text(कोसोवो:गणराज्य) neighborOf text(阿爾巴尼亞) -text(Kosovo) neighborOf text(Noord-Macedonië) -text(Kosovo) neighborOf text(Montenegro) -text(聖克里斯多福及尼維斯) locatedIn text(الكاريبي) -text(San:Cristóbal:y:Nieves) locatedIn text(América) -text(Eritrea) locatedIn text(África:Oriental) -text(इरित्रिया) neighborOf text(吉布提) -text(厄立特里亞) neighborOf text(苏丹) -text(Eritrea) neighborOf text(埃塞俄比亚) -text(भूमध्यरेखीय:गिनी) locatedIn text(中部非洲) -text(Guinea:Ecuatorial) locatedIn text(非洲) -text(Equatorial:Guinea) neighborOf text(加蓬) -text(غينيا:الاستوائية) neighborOf text(Kameroen) -text(Níger) locatedIn text(West-Afrika) -text(النيجر) locatedIn text(إفريقيا) -text(Niger) neighborOf text(Chad) -text(Niger) neighborOf text(ليبيا) -text(尼日尔) neighborOf text(Burkina:Faso) -text(नाइजर) neighborOf text(Benin) -text(Níger) neighborOf text(马里) -text(النيجر) neighborOf text(अल्जीरिया) -text(Niger) neighborOf text(Nigeria) -text(अंगुइला) locatedIn text(加勒比地区) -text(أنغويلا) locatedIn text(Americas) -text(Ruanda) locatedIn text(पूर्वी:अफ्रीका) -text(Rwanda) locatedIn text(Africa) -text(رواندا) neighborOf text(Burundi) -text(卢旺达) neighborOf text(Tanzania) -text(Rwanda) neighborOf text(烏干達) -text(रवाण्डा) neighborOf text(कांगो:लोकतान्त्रिक:गणराज्य) -text(الإمارات:العربية:المتحدة) locatedIn text(West:Asia) -text(Verenigde:Arabische:Emiraten) locatedIn text(آسيا) -text(United:Arab:Emirates) neighborOf text(ओमान) -text(Emiratos:Árabes:Unidos) neighborOf text(السعودية) -text(Estland) locatedIn text(北歐) -text(एस्टोनिया) locatedIn text(أوروبا) -text(Estonia) neighborOf text(Latvia) -text(愛沙尼亞) neighborOf text(روسيا) -text(Greece) locatedIn text(Europa:del:Sur) -text(यूनान) locatedIn text(欧洲) -text(Griekenland) neighborOf text(保加利亚) -text(Grecia) neighborOf text(अल्बानिया) -text(希腊) neighborOf text(North:Macedonia) -text(اليونان) neighborOf text(तुर्की) -text(Senegal) locatedIn text(غرب:إفريقيا) -text(सेनेगल) locatedIn text(África) -text(السنغال) neighborOf text(गिनी-बिसाऊ) -text(Senegal) neighborOf text(موريتانيا) -text(Senegal) neighborOf text(माली) -text(塞内加尔) neighborOf text(गाम्बिया) -text(Senegal) neighborOf text(गिनी) -text(गुआदेलूप) locatedIn text(कैरिबिया) -text(Guadeloupe) locatedIn text(أمريكتان) -text(Mónaco) locatedIn text(Europa:Occidental) -text(Monaco) neighborOf text(फ़्रान्स) -text(Djibouti) locatedIn text(East:Africa) -text(Djibouti) neighborOf text(إرتريا) -text(Yibuti) neighborOf text(सोमालिया) -text(جيبوتي) neighborOf text(इथियोपिया) -text(Indonesië) locatedIn text(Sudeste:Asiático) -text(इंडोनेशिया) neighborOf text(Papoea-Nieuw-Guinea) -text(Indonesia) neighborOf text(تيمور:الشرقية) -text(印度尼西亚) neighborOf text(ماليزيا) -text(Britse:Maagdeneilanden) locatedIn text(Caribbean) -text(British:Virgin:Islands) locatedIn text(美洲) -text(Cook:Islands) locatedIn text(玻里尼西亞) -text(कुक:द्वीपसमूह) locatedIn text(Oceanía) -text(युगाण्डा) locatedIn text(شرق:إفريقيا) -text(Uganda) locatedIn text(Afrika) -text(Uganda) neighborOf text(तंज़ानिया) -text(أوغندا) neighborOf text(República:Democrática:del:Congo) -text(Oeganda) neighborOf text(كينيا) -text(烏干達) neighborOf text(南蘇丹) -text(युगाण्डा) neighborOf text(Ruanda) -text(مقدونيا:الشمالية) locatedIn text(南欧) -text(उत्तर:मैसिडोनिया) locatedIn text(Europa) -text(Macedonia:del:Norte) neighborOf text(كوسوفو) -text(北马其顿) neighborOf text(Greece) -text(Noord-Macedonië) neighborOf text(Albanië) -text(North:Macedonia) neighborOf text(Servië) -text(مقدونيا:الشمالية) neighborOf text(Bulgaria) -text(Túnez) locatedIn text(Noord-Afrika) -text(突尼西亞) locatedIn text(अफ्रीका) -text(Tunisia) neighborOf text(利比亞) -text(ट्यूनिशिया) neighborOf text(Algerije) -text(Ecuador) locatedIn text(South:America) -text(Ecuador) neighborOf text(पेरू) -text(厄瓜多尔) neighborOf text(Colombia) -text(ब्राज़ील) locatedIn text(أمريكا:الجنوبية) -text(البرازيل) locatedIn text(महाअमेरिका) -text(Brasil) neighborOf text(बोलिविया) -text(Brazil) neighborOf text(कोलम्बिया) -text(巴西) neighborOf text(Paraguay) -text(Brazilië) neighborOf text(الأوروغواي) -text(ब्राज़ील) neighborOf text(फ़्रान्सीसी:गुयाना) -text(البرازيل) neighborOf text(सूरीनाम) -text(Brasil) neighborOf text(委內瑞拉) -text(Brazil) neighborOf text(Argentina) -text(巴西) neighborOf text(Guyana) -text(Brazilië) neighborOf text(秘鲁) -text(باراغواي) locatedIn text(南美洲) -text(Paraguay) locatedIn text(Amerika) -text(Paraguay) neighborOf text(Argentina) -text(巴拉圭) neighborOf text(ब्राज़ील) -text(पैराग्वे) neighborOf text(بوليفيا) -text(Finland) locatedIn text(أوروبا:الشمالية) -text(फ़िनलैण्ड) locatedIn text(यूरोप) -text(Finlandia) neighborOf text(Norway) -text(Finland) neighborOf text(स्वीडन) -text(芬蘭) neighborOf text(Rusia) -text(約旦) locatedIn text(غرب:آسيا) -text(Jordanië) neighborOf text(सउदी:अरब) -text(जॉर्डन) neighborOf text(इज़राइल) -text(Jordan) neighborOf text(伊拉克) -text(Jordania) neighborOf text(Siria) -text(Timor:Oriental) locatedIn text(दक्षिण:पूर्व:एशिया) -text(東帝汶) neighborOf text(إندونيسيا) -text(الجبل:الأسود) locatedIn text(أوروبا:الجنوبية) -text(蒙特內哥羅) locatedIn text(Europe) -text(Montenegro) neighborOf text(科索沃) -text(Montenegro) neighborOf text(Bosnia:y:Herzegovina) -text(मॉन्टेनीग्रो) neighborOf text(Kroatië) -text(Montenegro) neighborOf text(सर्बिया) -text(الجبل:الأسود) neighborOf text(Albania) -text(Peru) locatedIn text(América:del:Sur) -text(Perú) locatedIn text(América) -text(بيرو) neighborOf text(Ecuador) -text(Peru) neighborOf text(玻利維亞) -text(पेरू) neighborOf text(Chile) -text(秘鲁) neighborOf text(البرازيل) -text(Peru) neighborOf text(كولومبيا) -text(मॉण्टसेराट) locatedIn text(Caraïben) -text(مونتسيرات) locatedIn text(Americas) -text(Oekraïne) locatedIn text(Oost-Europa) -text(Ukraine) locatedIn text(Europa) -text(Ucrania) neighborOf text(Slowakije) -text(烏克蘭) neighborOf text(白俄羅斯) -text(युक्रेन) neighborOf text(波蘭) -text(أوكرانيا) neighborOf text(Rusland) -text(Oekraïne) neighborOf text(Hongarije) -text(Ukraine) neighborOf text(Moldova) -text(Ucrania) neighborOf text(رومانيا) -text(دومينيكا) locatedIn text(Caribe) -text(Dominica) locatedIn text(أمريكتان) -text(تركمانستان) locatedIn text(آسيا:الوسطى) -text(土庫曼斯坦) neighborOf text(Kazakhstan) -text(Turkmenistan) neighborOf text(Afganistán) -text(तुर्कमेनिस्तान) neighborOf text(Uzbekistán) -text(Turkmenistán) neighborOf text(Irán) -text(根西) locatedIn text(Northern:Europe) -text(Guernsey) locatedIn text(أوروبا) -text(Gibraltar) locatedIn text(दक्षिणी:यूरोप) -text(Gibraltar) locatedIn text(欧洲) -text(直布羅陀) neighborOf text(Spain) -text(स्विट्ज़रलैण्ड) locatedIn text(أوروبا:الغربية) -text(瑞士) locatedIn text(Europa) -text(سويسرا) neighborOf text(जर्मनी) -text(Zwitserland) neighborOf text(意大利) -text(Switzerland) neighborOf text(Austria) -text(Suiza) neighborOf text(法國) -text(स्विट्ज़रलैण्ड) neighborOf text(लिक्टेन्स्टाइन) -text(Oostenrijk) locatedIn text(Western:Europe) -text(النمسا) locatedIn text(यूरोप) -text(ऑस्ट्रिया) neighborOf text(Duitsland) -text(奧地利) neighborOf text(Slovakia) -text(Austria) neighborOf text(Slovenia) -text(Austria) neighborOf text(Italië) -text(Oostenrijk) neighborOf text(瑞士) -text(النمسا) neighborOf text(हंगरी) -text(ऑस्ट्रिया) neighborOf text(Liechtenstein) -text(奧地利) neighborOf text(Tsjechië) -text(Hungría) locatedIn text(Eastern:Europe) -text(المجر) neighborOf text(烏克蘭) -text(Hungary) neighborOf text(Eslovaquia) -text(匈牙利) neighborOf text(स्लोवेनिया) -text(Hongarije) neighborOf text(Croatia) -text(हंगरी) neighborOf text(Austria) -text(Hungría) neighborOf text(Serbia) -text(المجر) neighborOf text(रोमानिया) -text(Malawi) locatedIn text(Oost-Afrika) -text(मलावी) locatedIn text(非洲) -text(Malaui) neighborOf text(Zambia) -text(馬拉威) neighborOf text(坦桑尼亞) -text(مالاوي) neighborOf text(莫桑比克) -text(香港) locatedIn text(東亞) -text(Hongkong) neighborOf text(República:Popular:China) -text(ليختنشتاين) locatedIn text(西欧) -text(Liechtenstein) locatedIn text(Europe) -text(列支敦斯登) neighborOf text(سويسرا) -text(Liechtenstein) neighborOf text(Austria) -text(Barbados) locatedIn text(الكاريبي) -text(बारबाडोस) locatedIn text(美洲) -text(Georgië) locatedIn text(पश्चिमी:एशिया) -text(Georgia) locatedIn text(एशिया) -text(जॉर्जिया) neighborOf text(أرمينيا) -text(格鲁吉亚) neighborOf text(阿塞拜疆) -text(Georgia) neighborOf text(Russia) -text(جورجيا) neighborOf text(Turkije) -text(Albania) locatedIn text(Southern:Europe) -text(ألبانيا) locatedIn text(Europa) -text(阿爾巴尼亞) neighborOf text(蒙特內哥羅) -text(अल्बानिया) neighborOf text(उत्तर:मैसिडोनिया) -text(Albanië) neighborOf text(Kosovo) -text(Albania) neighborOf text(यूनान) -text(Kuwait) locatedIn text(Zuidwest-Azië) -text(कुवैत) locatedIn text(Azië) -text(Koeweit) neighborOf text(Saudi:Arabia) -text(الكويت) neighborOf text(Iraq) -text(Zuid-Afrika) locatedIn text(南部非洲) -text(South:Africa) locatedIn text(إفريقيا) -text(Sudáfrica) neighborOf text(Mozambique) -text(جنوب:إفريقيا) neighborOf text(Botsuana) -text(南非) neighborOf text(إسواتيني) -text(दक्षिण:अफ़्रीका) neighborOf text(ज़िम्बाब्वे) -text(Zuid-Afrika) neighborOf text(ناميبيا) -text(South:Africa) neighborOf text(Lesotho) -text(Haïti) locatedIn text(加勒比地区) -text(Haiti) locatedIn text(महाअमेरिका) -text(हैती) neighborOf text(डोमिनिकन:गणराज्य) -text(أفغانستان) locatedIn text(Asia:del:Sur) -text(阿富汗) locatedIn text(Asia) -text(अफ़्ग़ानिस्तान) neighborOf text(Turkmenistan) -text(Afghanistan) neighborOf text(चीनी:जनवादी:गणराज्य) -text(Afghanistan) neighborOf text(Tadzjikistan) -text(Afganistán) neighborOf text(Oezbekistan) -text(أفغانستان) neighborOf text(伊朗) -text(阿富汗) neighborOf text(Pakistan) -text(سنغافورة) locatedIn text(Zuidoost-Azië) -text(Singapore) locatedIn text(Asia) -text(貝南) locatedIn text(पश्चिमी:अफ्रीका) -text(بنين) locatedIn text(Africa) -text(Benin) neighborOf text(Niger) -text(Benín) neighborOf text(बुर्किना:फासो) -text(बेनिन) neighborOf text(توغو) -text(Benin) neighborOf text(Nigeria) -text(Åland) locatedIn text(उत्तरी:यूरोप) -text(奥兰) locatedIn text(أوروبا) -text(Croacia) locatedIn text(Zuid-Europa) -text(克羅地亞) locatedIn text(欧洲) -text(كرواتيا) neighborOf text(斯洛文尼亞) -text(क्रोएशिया) neighborOf text(बोस्निया:और:हर्ज़ेगोविना) -text(Kroatië) neighborOf text(Hungary) -text(Croatia) neighborOf text(صربيا) -text(Croacia) neighborOf text(Montenegro) -text(Sweden) locatedIn text(Noord-Europa) -text(السويد) locatedIn text(Europa) -text(瑞典) neighborOf text(Noruega) -text(Suecia) neighborOf text(فنلندا) -text(墨西哥) locatedIn text(أمريكا:الشمالية) -text(México) neighborOf text(伯利兹) -text(Mexico) neighborOf text(Estados:Unidos) -text(Mexico) neighborOf text(ग्वाटेमाला) -text(格陵兰) locatedIn text(América:del:Norte) -text(Groenland) locatedIn text(Amerika) -text(Pitcairneilanden) locatedIn text(Australia:and:New:Zealand) -text(جزر:بيتكيرن) locatedIn text(ओशिआनिया) -text(Nepal) locatedIn text(Zuid-Azië) -text(Nepal) locatedIn text(亞洲) -text(Nepal) neighborOf text(Volksrepubliek:China) -text(نيبال) neighborOf text(India) -text(غواتيمالا) locatedIn text(América:Central) -text(Guatemala) neighborOf text(Belize) -text(Guatemala) neighborOf text(El:Salvador) -text(Guatemala) neighborOf text(मेक्सिको) -text(危地马拉) neighborOf text(هندوراس) -text(大韩民国) locatedIn text(شرق:آسيا) -text(South:Korea) locatedIn text(آسيا) -text(كوريا:الجنوبية) neighborOf text(North:Korea) -text(Moldavië) locatedIn text(东欧) -text(摩爾多瓦) locatedIn text(यूरोप) -text(مولدوفا) neighborOf text(युक्रेन) -text(Moldavia) neighborOf text(Rumania) -text(Mauritius) locatedIn text(东部非洲) -text(موريشيوس) locatedIn text(África) -text(बेलारूस) locatedIn text(أوروبا:الشرقية) -text(Bielorrusia) neighborOf text(أوكرانيا) -text(Belarus) neighborOf text(Poland) -text(Wit-Rusland) neighborOf text(Litouwen) -text(بيلاروس) neighborOf text(रूस) -text(白俄羅斯) neighborOf text(拉脫維亞) -text(بنغلاديش) locatedIn text(جنوب:آسيا) -text(Bangladés) neighborOf text(ميانمار) -text(孟加拉國) neighborOf text(India) -text(馬來西亞) locatedIn text(东南亚) -text(Maleisië) locatedIn text(एशिया) -text(Malaysia) neighborOf text(थाईलैंड) -text(Malasia) neighborOf text(Indonesia) -text(मलेशिया) neighborOf text(Brunéi) -text(البوسنة:والهرسك) locatedIn text(Europa:del:Sur) -text(波斯尼亚和黑塞哥维那) locatedIn text(Europe) -text(Bosnia:and:Herzegovina) neighborOf text(Serbia) -text(Bosnië:en:Herzegovina) neighborOf text(克羅地亞) -text(Bosnia:y:Herzegovina) neighborOf text(Montenegro) -text(لوكسمبورغ) locatedIn text(पश्चिमी:यूरोप) -text(Luxembourg) locatedIn text(Europa) -text(Luxemburgo) neighborOf text(Alemania) -text(Luxemburg) neighborOf text(बेल्जियम) -text(लक्ज़मबर्ग) neighborOf text(Frankrijk) -text(Italia) locatedIn text(南欧) -text(इटली) locatedIn text(أوروبا) -text(Italy) neighborOf text(Eslovenia) -text(إيطاليا) neighborOf text(Zwitserland) -text(意大利) neighborOf text(Oostenrijk) -text(Italië) neighborOf text(France) -text(Italia) neighborOf text(Vatican:City) -text(इटली) neighborOf text(San:Marino) -text(अज़रबैजान) locatedIn text(Asia:Occidental) -text(أذربيجان) locatedIn text(Azië) -text(Azerbeidzjan) neighborOf text(土耳其) -text(Azerbaiyán) neighborOf text(Armenië) -text(Azerbaijan) neighborOf text(俄罗斯) -text(阿塞拜疆) neighborOf text(Iran) -text(अज़रबैजान) neighborOf text(Georgië) -text(洪都拉斯) locatedIn text(中美洲) -text(Honduras) locatedIn text(América) -text(Honduras) neighborOf text(ग्वाटेमाला) -text(Honduras) neighborOf text(Nicaragua) -text(हॉण्डुरस) neighborOf text(El:Salvador) -text(Mali) locatedIn text(West:Africa) -text(Mali) locatedIn text(Afrika) -text(مالي) neighborOf text(布吉納法索) -text(Mali) neighborOf text(Guinee) -text(马里) neighborOf text(मॉरीतानिया) -text(माली) neighborOf text(尼日尔) -text(Mali) neighborOf text(सेनेगल) -text(Mali) neighborOf text(Algeria) -text(مالي) neighborOf text(ساحل:العاج) -text(中華民國) locatedIn text(East:Asia) -text(تايوان) locatedIn text(Asia) -text(阿爾及利亞) locatedIn text(North:Africa) -text(Argelia) locatedIn text(अफ्रीका) -text(الجزائر) neighborOf text(Libya) -text(अल्जीरिया) neighborOf text(Tunesië) -text(Algerije) neighborOf text(Mauritanië) -text(Algeria) neighborOf text(Marokko) -text(阿爾及利亞) neighborOf text(नाइजर) -text(Argelia) neighborOf text(Mali) -text(الجزائر) neighborOf text(撒拉威阿拉伯民主共和國) -text(French:Guiana) locatedIn text(दक्षिण:अमेरिका) -text(غويانا:الفرنسية) neighborOf text(Brasil) -text(法屬圭亞那) neighborOf text(Suriname) -text(Jemen) locatedIn text(西亚) -text(也门) locatedIn text(Asia) -text(Yemen) neighborOf text(阿曼) -text(यमन) neighborOf text(Saoedi-Arabië) -text(पोर्टो:रीको) locatedIn text(कैरिबिया) -text(بورتوريكو) locatedIn text(Americas) -text(San:Vicente:y:las:Granadinas) locatedIn text(Caribbean) -text(सन्त:विन्सेण्ट:और:ग्रेनाडाइन्स) locatedIn text(أمريكتان) -text(Venezuela) locatedIn text(Zuid-Amerika) -text(वेनेज़ुएला) neighborOf text(Brazil) -text(Venezuela) neighborOf text(गयाना) -text(Venezuela) neighborOf text(Colombia) -text(Granada) locatedIn text(Caraïben) -text(ग्रेनाडा) locatedIn text(美洲) -text(الولايات:المتحدة) locatedIn text(उत्तर:अमेरिका) -text(Verenigde:Staten) neighborOf text(كندا) -text(美國) neighborOf text(المكسيك) -text(托克劳) locatedIn text(Polynesië) -text(Tokelau) locatedIn text(Oceania) -text(Slovenië) locatedIn text(أوروبا:الجنوبية) -text(سلوفينيا) locatedIn text(欧洲) -text(Slovenia) neighborOf text(النمسا) -text(स्लोवेनिया) neighborOf text(كرواتيا) -text(斯洛文尼亞) neighborOf text(Italy) -text(Eslovenia) neighborOf text(匈牙利) -text(Filipijnen) locatedIn text(Southeast:Asia) -text(Philippines) locatedIn text(亞洲) -text(Micronesië) locatedIn text(密克羅尼西亞群島) -text(Micronesia) locatedIn text(Oceanië) -text(People's:Republic:of:China) locatedIn text(Oost-Azië) -text(中华人民共和国) locatedIn text(آسيا) -text(الصين) neighborOf text(अफ़्ग़ानिस्तान) -text(República:Popular:China) neighborOf text(Bután) -text(चीनी:जनवादी:गणराज्य) neighborOf text(Macao) -text(Volksrepubliek:China) neighborOf text(الهند) -text(People's:Republic:of:China) neighborOf text(كازاخستان) -text(中华人民共和国) neighborOf text(Kirgizië) -text(الصين) neighborOf text(طاجيكستان) -text(República:Popular:China) neighborOf text(老撾) -text(चीनी:जनवादी:गणराज्य) neighborOf text(روسيا) -text(Volksrepubliek:China) neighborOf text(Noord-Korea) -text(People's:Republic:of:China) neighborOf text(緬甸) -text(中华人民共和国) neighborOf text(باكستان) -text(الصين) neighborOf text(Mongolia) -text(República:Popular:China) neighborOf text(Hong:Kong) -text(चीनी:जनवादी:गणराज्य) neighborOf text(वियतनाम) -text(Gabon) locatedIn text(Centraal-Afrika) -text(الغابون) locatedIn text(非洲) -text(गबॉन) neighborOf text(Equatoriaal-Guinea) -text(Gabon) neighborOf text(República:del:Congo) -text(Gabón) neighborOf text(Cameroon) -text(جزر:الولايات:المتحدة:الصغيرة:النائية) locatedIn text(North:America) -text(संयुक्त:राज्य:अमेरिका:के:छोटे:दूरस्थ:द्वीपसमूह) locatedIn text(महाअमेरिका) -text(Andorra) locatedIn text(दक्षिणी:यूरोप) -text(安道尔) locatedIn text(Europa) -text(Andorra) neighborOf text(Spanje) -text(अण्डोरा) neighborOf text(Francia) -text(萨摩亚) locatedIn text(Polinesia) -text(Samoa) locatedIn text(大洋洲) -text(غامبيا) locatedIn text(西非) -text(Gambia) locatedIn text(إفريقيا) -text(Gambia) neighborOf text(السنغال) -text(Pedro:Miguel) locatedIn text(West:Asia) -text(Pedro:Miguel) locatedIn text(एशिया) -text(nan) neighborOf text(الأردن) -text(nan) neighborOf text(Egypt) -text(Pedro:Miguel) neighborOf text(Israël) -text(Réunion) locatedIn text(África:Oriental) -text(Reunión) locatedIn text(Africa) -text(فرنسا) locatedIn text(West-Europa) -text(फ़्रान्स) locatedIn text(यूरोप) -text(法國) neighborOf text(Germany) -text(Frankrijk) neighborOf text(卢森堡) -text(France) neighborOf text(إيطاليا) -text(Francia) neighborOf text(أندورا) -text(فرنسا) neighborOf text(Switzerland) -text(फ़्रान्स) neighborOf text(موناكو) -text(法國) neighborOf text(Bélgica) -text(Frankrijk) neighborOf text(إسبانيا) -text(منغوليا) locatedIn text(पूर्वी:एशिया) -text(蒙古國) locatedIn text(Azië) -text(Mongolië) neighborOf text(Volksrepubliek:China) -text(मंगोलिया) neighborOf text(Rusia) -text(लिथुआनिया) locatedIn text(Europa:del:Norte) -text(ليتوانيا) locatedIn text(Europe) -text(立陶宛) neighborOf text(पोलैंड) -text(Lithuania) neighborOf text(Letonia) -text(Lituania) neighborOf text(बेलारूस) -text(Litouwen) neighborOf text(Rusland) -text(جزر:كايمان) locatedIn text(Caribe) -text(Islas:Caimán) locatedIn text(Amerika) -text(Santa:Lucía) locatedIn text(الكاريبي) -text(सेंट:लूसिया) locatedIn text(América) -text(कुराकाओ) locatedIn text(加勒比地区) -text(库拉索) locatedIn text(Americas) -text(कैरिबिया) locatedIn text(أمريكتان) -text(दक्षिण:एशिया) locatedIn text(Asia) -text(África:Central) locatedIn text(África) -text(北歐) locatedIn text(Europa) -text(Southern:Europe) locatedIn text(أوروبا) -text(غرب:آسيا) locatedIn text(Asia) -text(South:America) locatedIn text(美洲) -text(Polynesia) locatedIn text(أوقيانوسيا) -text(nan) locatedIn text(Oceanía) -text(Europa:Occidental) locatedIn text(欧洲) -text(पूर्वी:अफ्रीका) locatedIn text(Afrika) -text(África:Occidental) locatedIn text(अफ्रीका) -text(Europa:Oriental) locatedIn text(Europa) -text(केंद्रीय:अमेरिका) locatedIn text(महाअमेरिका) -text(Noord-Amerika) locatedIn text(Amerika) -text(جنوب:شرق:آسيا) locatedIn text(亞洲) -text(África:austral) locatedIn text(非洲) -text(Asia:Oriental) locatedIn text(آسيا) -text(उत्तर:अफ़्रीका) locatedIn text(إفريقيا) -text(Melanesië) locatedIn text(ओशिआनिया) -text(Micronesia) locatedIn text(Oceania) -text(Central:Asia) locatedIn text(एशिया) -text(Europa:Central) locatedIn text(यूरोप) \ No newline at end of file diff --git a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_country2text_relation2text.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_country2text_relation2text.tsv deleted file mode 100644 index 1cf89a8..0000000 --- a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_country2text_relation2text.tsv +++ /dev/null @@ -1,1111 +0,0 @@ -text(Palau) text(is:positioned:in) text(密克羅尼西亞群島) -text(Palau) text(was:sited:in) text(ओशिआनिया) -text(मालदीव) text(is:sited:in) text(جنوب:آسيا) -text(Malediven) text(was:localized:in) text(Asia) -text(汶莱) text(is:localized:in) text(Sudeste:Asiático) -text(Brunei) text(was:present:in) text(亞洲) -text(بروناي) text(was:a:neighboring:country:of) text(ماليزيا) -text(日本) text(is:present:in) text(पूर्वी:एशिया) -text(اليابان) text(is:still:in) text(آسيا) -text(荷蘭) text(was:still:in) text(Europa:Occidental) -text(नीदरलैण्ड) text(neighbors:with) text(ألمانيا) -text(Países:Bajos) text(was:a:neighbor:of) text(بلجيكا) -text(تركيا) text(was:currently:in) text(पश्चिमी:एशिया) -text(तुर्की) text(is:a:neighbor:of) text(أرمينيا) -text(Turquía) text(is:a:neighboring:state:to) text(अज़रबैजान) -text(土耳其) text(was:a:neighboring:state:to) text(ईरान) -text(Turkije) text(borders:with) text(Greece) -text(Turkey) text(borders) text(جورجيا) -text(تركيا) text(is:butted:against) text(保加利亚) -text(तुर्की) text(was:butted:against) text(Irak) -text(Turquía) text(was:adjacent:to) text(Syria) -text(Angola) text(is:currently:in) text(中部非洲) -text(Angola) text(is:placed:in) text(África) -text(安哥拉) text(is:adjacent:to) text(刚果民主共和国) -text(أنغولا) text(neighbors) text(纳米比亚) -text(अंगोला) text(is:a:neighboring:country:of) text(Zambia) -text(Angola) text(was:a:neighboring:country:of) text(República:del:Congo) -text(Armenia) text(was:placed:in) text(西亚) -text(Armenië) text(can:be:found:in) text(एशिया) -text(आर्मीनिया) text(neighbors:with) text(जॉर्जिया) -text(Armenia) text(was:a:neighbor:of) text(阿塞拜疆) -text(亞美尼亞) text(is:a:neighbor:of) text(Iran) -text(أرمينيا) text(is:a:neighboring:state:to) text(土耳其) -text(Antigua:and:Barbuda) text(was:situated:in) text(加勒比地区) -text(Antigua:en:Barbuda) text(is:situated:in) text(महाअमेरिका) -text(एस्वातीनी) text(is:located:in) text(南部非洲) -text(斯威士兰) text(was:located:in) text(अफ्रीका) -text(Eswatini) text(was:a:neighboring:state:to) text(جنوب:إفريقيا) -text(Swaziland) text(borders:with) text(Mozambique) -text(Wallis:y:Futuna) text(can:be:found:in) text(Polynesia) -text(Wallis:en:Futuna) text(was:positioned:in) text(أوقيانوسيا) -text(उरुग्वे) text(is:positioned:in) text(América:del:Sur) -text(الأوروغواي) text(was:sited:in) text(Amerika) -text(烏拉圭) text(borders) text(Argentina) -text(Uruguay) text(is:butted:against) text(Brazil) -text(Zambia) text(is:sited:in) text(شرق:إفريقيا) -text(زامبيا) text(was:localized:in) text(إفريقيا) -text(Zambia) text(was:butted:against) text(Tanzania) -text(ज़ाम्बिया) text(was:adjacent:to) text(Mozambique) -text(贊比亞) text(is:adjacent:to) text(جمهورية:الكونغو:الديمقراطية) -text(Zambia) text(neighbors) text(Angola) -text(Zambia) text(is:a:neighboring:country:of) text(Botswana) -text(زامبيا) text(was:a:neighboring:country:of) text(Zimbabwe) -text(Zambia) text(neighbors:with) text(Namibië) -text(ज़ाम्बिया) text(was:a:neighbor:of) text(Malaui) -text(قبرص) text(is:localized:in) text(东欧) -text(Chipre) text(was:present:in) text(欧洲) -text(Cyprus) text(is:a:neighbor:of) text(Verenigd:Koninkrijk) -text(Reino:Unido) text(is:present:in) text(Europa:del:Norte) -text(United:Kingdom) text(is:still:in) text(Europa) -text(यूनाइटेड:किंगडम) text(is:a:neighboring:state:to) text(المملكة:المتحدة) -text(Burundi) text(was:still:in) text(Oost-Afrika) -text(蒲隆地) text(was:currently:in) text(非洲) -text(Burundi) text(was:a:neighboring:state:to) text(कांगो:लोकतान्त्रिक:गणराज्य) -text(बुरुण्डी) text(borders:with) text(卢旺达) -text(بوروندي) text(borders) text(Tanzania) -text(جمهورية:إفريقيا:الوسطى) text(is:currently:in) text(Central:Africa) -text(República:Centroafricana) text(is:placed:in) text(Africa) -text(Centraal-Afrikaanse:Republiek) text(is:butted:against) text(乍得) -text(मध्य:अफ़्रीकी:गणराज्य) text(was:butted:against) text(Congo-Brazzaville) -text(中非共和國) text(was:adjacent:to) text(Congo-Kinshasa) -text(Central:African:Republic) text(is:adjacent:to) text(South:Sudan) -text(جمهورية:إفريقيا:الوسطى) text(neighbors) text(الكاميرون) -text(República:Centroafricana) text(is:a:neighboring:country:of) text(Soedan) -text(Tonga) text(was:placed:in) text(Polynesië) -text(Tonga) text(can:be:found:in) text(Oceanía) -text(Ivoorkust) text(was:situated:in) text(África:Occidental) -text(ساحل:العاج) text(is:situated:in) text(Afrika) -text(Ivory:Coast) text(was:a:neighboring:country:of) text(Burkina:Faso) -text(Costa:de:Marfil) text(neighbors:with) text(غانا) -text(कोत:दिव्वार) text(was:a:neighbor:of) text(Liberia) -text(科特迪瓦) text(is:a:neighbor:of) text(Mali) -text(Ivoorkust) text(is:a:neighboring:state:to) text(Guinea) -text(Sierra:Leone) text(is:located:in) text(غرب:إفريقيا) -text(Sierra:Leone) text(was:a:neighboring:state:to) text(लाइबेरिया) -text(塞拉利昂) text(borders:with) text(غينيا) -text(Mayotte) text(was:located:in) text(पूर्वी:अफ्रीका) -text(मेयोट) text(can:be:found:in) text(África) -text(Polonia) text(was:positioned:in) text(Eastern:Europe) -text(पोलैंड) text(borders) text(जर्मनी) -text(Polen) text(is:butted:against) text(Ukraine) -text(波蘭) text(was:butted:against) text(स्लोवाकिया) -text(Poland) text(was:adjacent:to) text(Wit-Rusland) -text(بولندا) text(is:adjacent:to) text(रूस) -text(Polonia) text(neighbors) text(Lituania) -text(पोलैंड) text(is:a:neighboring:country:of) text(Tsjechië) -text(कज़ाख़िस्तान) text(is:positioned:in) text(آسيا:الوسطى) -text(Kazajistán) text(was:sited:in) text(Asia) -text(Kazachstan) text(was:a:neighboring:country:of) text(تركمانستان) -text(哈萨克斯坦) text(neighbors:with) text(الصين) -text(كازاخستان) text(was:a:neighbor:of) text(Kyrgyzstan) -text(Kazakhstan) text(is:a:neighbor:of) text(Uzbekistán) -text(कज़ाख़िस्तान) text(is:a:neighboring:state:to) text(روسيا) -text(उज़्बेकिस्तान) text(is:sited:in) text(Central:Asia) -text(乌兹别克斯坦) text(was:localized:in) text(Azië) -text(Uzbekistan) text(was:a:neighboring:state:to) text(أفغانستان) -text(أوزبكستان) text(borders:with) text(तुर्कमेनिस्तान) -text(Oezbekistan) text(borders) text(Kazajistán) -text(Uzbekistán) text(is:butted:against) text(قرغيزستان) -text(उज़्बेकिस्तान) text(was:butted:against) text(طاجيكستان) -text(Turks:and:Caicos:Islands) text(is:localized:in) text(Caraïben) -text(特克斯和凯科斯群岛) text(was:present:in) text(América) -text(नया:कैलेडोनिया) text(is:present:in) text(ميلانيزيا) -text(新喀里多尼亞) text(is:still:in) text(大洋洲) -text(巴基斯坦) text(was:still:in) text(南亚) -text(باكستان) text(was:adjacent:to) text(People's:Republic:of:China) -text(पाकिस्तान) text(is:adjacent:to) text(Afghanistan) -text(Pakistan) text(neighbors) text(伊朗) -text(Pakistan) text(is:a:neighboring:country:of) text(الهند) -text(Argentina) text(was:currently:in) text(South:America) -text(阿根廷) text(is:currently:in) text(أمريكتان) -text(Argentinië) text(was:a:neighboring:country:of) text(Bolivia) -text(अर्जेण्टीना) text(neighbors:with) text(चिली) -text(الأرجنتين) text(was:a:neighbor:of) text(ब्राज़ील) -text(Argentina) text(is:a:neighbor:of) text(पैराग्वे) -text(Argentina) text(is:a:neighboring:state:to) text(Uruguay) -text(Cuba) text(is:placed:in) text(कैरिबिया) -text(كوبا) text(was:placed:in) text(Americas) -text(सर्बिया) text(can:be:found:in) text(أوروبا:الجنوبية) -text(صربيا) text(was:a:neighboring:state:to) text(Macedonia:del:Norte) -text(Serbia) text(borders:with) text(蒙特內哥羅) -text(塞爾維亞) text(borders) text(Kosovo) -text(Servië) text(is:butted:against) text(Bosnië:en:Herzegovina) -text(Serbia) text(was:butted:against) text(كرواتيا) -text(सर्बिया) text(was:adjacent:to) text(المجر) -text(صربيا) text(is:adjacent:to) text(बुल्गारिया) -text(Serbia) text(neighbors) text(羅馬尼亞) -text(República:Checa) text(was:situated:in) text(पूर्वी:यूरोप) -text(捷克) text(is:situated:in) text(यूरोप) -text(Czech:Republic) text(is:a:neighboring:country:of) text(Germany) -text(चेक:गणराज्य) text(was:a:neighboring:country:of) text(Austria) -text(جمهورية:التشيك) text(neighbors:with) text(Polen) -text(Tsjechië) text(was:a:neighbor:of) text(Eslovaquia) -text(Nicaragua) text(is:located:in) text(Central:America) -text(Nicaragua) text(is:a:neighbor:of) text(Honduras) -text(尼加拉瓜) text(is:a:neighboring:state:to) text(Costa:Rica) -text(वियतनाम) text(was:located:in) text(جنوب:شرق:آسيا) -text(فيتنام) text(can:be:found:in) text(Asia) -text(Vietnam) text(was:a:neighboring:state:to) text(Camboya) -text(越南) text(borders:with) text(لاوس) -text(Vietnam) text(borders) text(Volksrepubliek:China) -text(Niue) text(was:positioned:in) text(Polinesia) -text(紐埃) text(is:positioned:in) text(Oceanië) -text(Canadá) text(was:sited:in) text(أمريكا:الشمالية) -text(加拿大) text(is:sited:in) text(美洲) -text(कनाडा) text(is:butted:against) text(Estados:Unidos) -text(Slovakia) text(was:localized:in) text(Europa:Central) -text(斯洛伐克) text(was:butted:against) text(युक्रेन) -text(سلوفاكيا) text(was:adjacent:to) text(波蘭) -text(Slowakije) text(is:adjacent:to) text(奧地利) -text(स्लोवाकिया) text(neighbors) text(Hungary) -text(Eslovaquia) text(is:a:neighboring:country:of) text(República:Checa) -text(موزمبيق) text(is:localized:in) text(东部非洲) -text(मोज़ाम्बीक) text(was:a:neighboring:country:of) text(坦桑尼亞) -text(莫桑比克) text(neighbors:with) text(Esuatini) -text(Mozambique) text(was:a:neighbor:of) text(ज़िम्बाब्वे) -text(Mozambique) text(is:a:neighbor:of) text(贊比亞) -text(Mozambique) text(is:a:neighboring:state:to) text(Malawi) -text(موزمبيق) text(was:a:neighboring:state:to) text(दक्षिण:अफ़्रीका) -text(阿魯巴) text(was:present:in) text(Caribe) -text(Aruba) text(is:present:in) text(महाअमेरिका) -text(Bolivia) text(is:still:in) text(أمريكا:الجنوبية) -text(Bolivia) text(was:still:in) text(Amerika) -text(玻利維亞) text(borders:with) text(智利) -text(बोलिविया) text(borders) text(البرازيل) -text(بوليفيا) text(is:butted:against) text(Paraguay) -text(Bolivia) text(was:butted:against) text(阿根廷) -text(Bolivia) text(was:adjacent:to) text(بيرو) -text(Colombia) text(was:currently:in) text(दक्षिण:अमेरिका) -text(كولومبيا) text(is:currently:in) text(América) -text(Colombia) text(is:adjacent:to) text(الإكوادور) -text(कोलम्बिया) text(neighbors) text(巴西) -text(哥伦比亚) text(is:a:neighboring:country:of) text(Panama) -text(Colombia) text(was:a:neighboring:country:of) text(فنزويلا) -text(Colombia) text(neighbors:with) text(Peru) -text(Fiji) text(is:placed:in) text(美拉尼西亞) -text(Fiji) text(was:placed:in) text(Oceania) -text(Republic:of:the:Congo) text(can:be:found:in) text(मध्य:अफ्रीका) -text(جمهورية:الكونغو) text(was:a:neighbor:of) text(गबॉन) -text(剛果共和國) text(is:a:neighbor:of) text(Democratic:Republic:of:the:Congo) -text(कांगो:गणराज्य) text(is:a:neighboring:state:to) text(Angola) -text(República:del:Congo) text(was:a:neighboring:state:to) text(喀麦隆) -text(Congo-Brazzaville) text(borders:with) text(Centraal-Afrikaanse:Republiek) -text(السعودية) text(was:situated:in) text(Zuidwest-Azië) -text(沙特阿拉伯) text(borders) text(क़तर) -text(Saudi:Arabia) text(is:butted:against) text(United:Arab:Emirates) -text(सउदी:अरब) text(was:butted:against) text(الأردن) -text(Arabia:Saudí) text(was:adjacent:to) text(也门) -text(Saoedi-Arabië) text(is:adjacent:to) text(阿曼) -text(السعودية) text(neighbors) text(कुवैत) -text(沙特阿拉伯) text(is:a:neighboring:country:of) text(Irak) -text(السلفادور) text(is:situated:in) text(केंद्रीय:अमेरिका) -text(अल:साल्वाडोर) text(is:located:in) text(أمريكتان) -text(El:Salvador) text(was:a:neighboring:country:of) text(Guatemala) -text(El:Salvador) text(neighbors:with) text(هندوراس) -text(मेडागास्कर) text(was:located:in) text(East:Africa) -text(馬達加斯加) text(can:be:found:in) text(अफ्रीका) -text(Australia) text(was:positioned:in) text(Australia:and:New:Zealand) -text(Australia) text(is:positioned:in) text(ओशिआनिया) -text(नामीबिया) text(was:sited:in) text(दक्षिणी:अफ्रीका) -text(Namibia) text(is:sited:in) text(إفريقيا) -text(ناميبيا) text(was:a:neighbor:of) text(Zambia) -text(Namibia) text(is:a:neighbor:of) text(安哥拉) -text(纳米比亚) text(is:a:neighboring:state:to) text(南非) -text(Namibië) text(was:a:neighboring:state:to) text(Botswana) -text(तुवालू) text(was:localized:in) text(玻里尼西亞) -text(Tuvalu) text(is:localized:in) text(أوقيانوسيا) -text(斯瓦巴和扬马延) text(was:present:in) text(Noord-Europa) -text(Spitsbergen:en:Jan:Mayen) text(is:present:in) text(أوروبا) -text(马恩岛) text(is:still:in) text(उत्तरी:यूरोप) -text(आइल:ऑफ़:मैन) text(was:still:in) text(Europe) -text(Guyana) text(was:currently:in) text(Zuid-Amerika) -text(Guyana) text(borders:with) text(Brasil) -text(Guyana) text(borders) text(Surinam) -text(圭亚那) text(is:butted:against) text(Venezuela) -text(Ciudad:del:Vaticano) text(is:currently:in) text(Zuid-Europa) -text(वैटिकन:नगर) text(is:placed:in) text(Europa) -text(Vaticaanstad) text(was:butted:against) text(意大利) -text(Territorio:Británico:del:Océano:Índico) text(was:placed:in) text(África:Oriental) -text(إقليم:المحيط:الهندي:البريطاني) text(can:be:found:in) text(非洲) -text(नाइजीरिया) text(was:situated:in) text(West-Afrika) -text(Nigeria) text(is:situated:in) text(Africa) -text(نيجيريا) text(was:adjacent:to) text(Chad) -text(Nigeria) text(is:adjacent:to) text(नाइजर) -text(Nigeria) text(neighbors) text(Kameroen) -text(奈及利亞) text(is:a:neighboring:country:of) text(Benin) -text(Duitsland) text(is:located:in) text(पश्चिमी:यूरोप) -text(Alemania) text(was:a:neighboring:country:of) text(Denmark) -text(德國) text(neighbors:with) text(هولندا) -text(ألمانيا) text(was:a:neighbor:of) text(Poland) -text(जर्मनी) text(is:a:neighbor:of) text(لوكسمبورغ) -text(Germany) text(is:a:neighboring:state:to) text(Belgium) -text(Duitsland) text(was:a:neighboring:state:to) text(Switzerland) -text(Alemania) text(borders:with) text(Austria) -text(德國) text(borders) text(Frankrijk) -text(ألمانيا) text(is:butted:against) text(捷克) -text(Burkina:Faso) text(was:located:in) text(पश्चिमी:अफ्रीका) -text(Burkina:Faso) text(was:butted:against) text(Togo) -text(布吉納法索) text(was:adjacent:to) text(बेनिन) -text(बुर्किना:फासो) text(is:adjacent:to) text(النيجر) -text(بوركينا:فاسو) text(neighbors) text(Ghana) -text(Burkina:Faso) text(is:a:neighboring:country:of) text(مالي) -text(Burkina:Faso) text(was:a:neighboring:country:of) text(ساحل:العاج) -text(तंज़ानिया) text(can:be:found:in) text(شرق:إفريقيا) -text(Tanzania) text(neighbors:with) text(Uganda) -text(تنزانيا) text(was:a:neighbor:of) text(मोज़ाम्बीक) -text(Tanzania) text(is:a:neighbor:of) text(República:Democrática:del:Congo) -text(Tanzania) text(is:a:neighboring:state:to) text(Kenia) -text(坦桑尼亞) text(was:a:neighboring:state:to) text(Rwanda) -text(तंज़ानिया) text(borders:with) text(Zambia) -text(Tanzania) text(borders) text(مالاوي) -text(تنزانيا) text(is:butted:against) text(Burundi) -text(Noordelijke:Marianen) text(was:positioned:in) text(माइक्रोनीशिया) -text(北马里亚纳群岛) text(is:positioned:in) text(Oceanía) -text(Belize) text(was:sited:in) text(أمريكا:الوسطى) -text(伯利兹) text(is:sited:in) text(Americas) -text(بليز) text(was:butted:against) text(危地马拉) -text(Belice) text(was:adjacent:to) text(Mexico) -text(नॉर्वे) text(was:localized:in) text(أوروبا:الشمالية) -text(Norway) text(is:adjacent:to) text(Suecia) -text(挪威) text(neighbors) text(Finland) -text(النرويج) text(is:a:neighboring:country:of) text(俄罗斯) -text(科科斯(基林)群島) text(is:localized:in) text(nan) -text(Cocoseilanden) text(was:present:in) text(大洋洲) -text(Laos) text(is:present:in) text(东南亚) -text(लाओस) text(is:still:in) text(亞洲) -text(老撾) text(was:a:neighboring:country:of) text(中华人民共和国) -text(Laos) text(neighbors:with) text(Cambodja) -text(Laos) text(was:a:neighbor:of) text(緬甸) -text(لاوس) text(is:a:neighbor:of) text(Vietnam) -text(Laos) text(is:a:neighboring:state:to) text(थाईलैंड) -text(撒拉威阿拉伯民主共和國) text(was:still:in) text(北部非洲) -text(सहरावी:अरब:जनतांत्रिक:गणराज्य) text(was:currently:in) text(Afrika) -text(República:Árabe:Saharaui:Democrática) text(was:a:neighboring:state:to) text(अल्जीरिया) -text(Sahrawi:Arab:Democratic:Republic) text(borders:with) text(मॉरीतानिया) -text(الجمهورية:العربية:الصحراوية:الديمقراطية) text(borders) text(Marokko) -text(蘇利南) text(is:currently:in) text(南美洲) -text(Suriname) text(is:placed:in) text(美洲) -text(سورينام) text(is:butted:against) text(Brazilië) -text(सूरीनाम) text(was:butted:against) text(غويانا:الفرنسية) -text(Suriname) text(was:adjacent:to) text(गयाना) -text(Isla:de:Navidad) text(was:placed:in) text(Australië:en:Nieuw-Zeeland) -text(Christmaseiland) text(can:be:found:in) text(Oceanië) -text(Santo:Tomé:y:Príncipe) text(was:situated:in) text(وسط:إفريقيا) -text(圣多美和普林西比) text(is:situated:in) text(África) -text(Egypt) text(is:located:in) text(شمال:إفريقيا) -text(मिस्र) text(is:adjacent:to) text(利比亞) -text(Egipto) text(neighbors) text(以色列) -text(埃及) text(is:a:neighboring:country:of) text(السودان) -text(Bulgaria) text(was:located:in) text(Europa:Oriental) -text(Bulgarije) text(was:a:neighboring:country:of) text(North:Macedonia) -text(بلغاريا) text(neighbors:with) text(Turkije) -text(Bulgaria) text(was:a:neighbor:of) text(希腊) -text(保加利亚) text(is:a:neighbor:of) text(塞爾維亞) -text(बुल्गारिया) text(is:a:neighboring:state:to) text(Rumania) -text(Guinea) text(can:be:found:in) text(西非) -text(गिनी) text(was:positioned:in) text(अफ्रीका) -text(Guinee) text(was:a:neighboring:state:to) text(Guinea-Bissau) -text(几内亚) text(borders:with) text(سيراليون) -text(Guinea) text(borders) text(माली) -text(غينيا) text(is:butted:against) text(ليبيريا) -text(Guinea) text(was:butted:against) text(Senegal) -text(गिनी) text(was:adjacent:to) text(Ivory:Coast) -text(Spanje) text(is:positioned:in) text(Europa:del:Sur) -text(西班牙) text(is:adjacent:to) text(Morocco) -text(Spain) text(neighbors) text(Gibraltar) -text(स्पेन) text(is:a:neighboring:country:of) text(أندورا) -text(España) text(was:a:neighboring:country:of) text(فرنسا) -text(إسبانيا) text(neighbors:with) text(पुर्तगाल) -text(कोस्टा:रीका) text(was:sited:in) text(América:Central) -text(哥斯达黎加) text(is:sited:in) text(महाअमेरिका) -text(Costa:Rica) text(was:a:neighbor:of) text(Panama) -text(Costa:Rica) text(is:a:neighbor:of) text(Nicaragua) -text(馬耳他) text(was:localized:in) text(दक्षिणी:यूरोप) -text(Malta) text(is:localized:in) text(欧洲) -text(Portugal) text(was:present:in) text(南欧) -text(Portugal) text(is:present:in) text(Europa) -text(البرتغال) text(is:a:neighboring:state:to) text(Spanje) -text(Romania) text(is:still:in) text(Oost-Europa) -text(रोमानिया) text(was:still:in) text(यूरोप) -text(Roemenië) text(was:a:neighboring:state:to) text(Oekraïne) -text(رومانيا) text(borders:with) text(匈牙利) -text(羅馬尼亞) text(borders) text(Moldova) -text(Rumania) text(is:butted:against) text(Bulgaria) -text(Romania) text(was:butted:against) text(Servië) -text(圣马力诺) text(was:currently:in) text(Southern:Europe) -text(San:Marino) text(is:currently:in) text(أوروبا) -text(سان:مارينو) text(was:adjacent:to) text(इटली) -text(毛里塔尼亞) text(is:placed:in) text(West:Africa) -text(Mauritania) text(was:placed:in) text(إفريقيا) -text(موريتانيا) text(is:adjacent:to) text(الجزائر) -text(Mauritanië) text(neighbors) text(Mali) -text(Mauritania) text(is:a:neighboring:country:of) text(Sahrawi:Arabische:Democratische:Republiek) -text(मॉरीतानिया) text(was:a:neighboring:country:of) text(塞内加尔) -text(ترينيداد:وتوباغو) text(can:be:found:in) text(Caribbean) -text(Trinidad:en:Tobago) text(was:situated:in) text(Amerika) -text(Bahrein) text(is:situated:in) text(Asia:Occidental) -text(Baréin) text(is:located:in) text(آسيا) -text(Birmania) text(was:located:in) text(दक्षिण:पूर्व:एशिया) -text(Myanmar) text(neighbors:with) text(India) -text(म्यान्मार) text(was:a:neighbor:of) text(Bangladesh) -text(Myanmar) text(is:a:neighbor:of) text(चीनी:जनवादी:गणराज्य) -text(ميانمار) text(is:a:neighboring:state:to) text(लाओस) -text(緬甸) text(was:a:neighboring:state:to) text(Thailand) -text(伊拉克) text(can:be:found:in) text(West:Asia) -text(العراق) text(borders:with) text(Turkey) -text(इराक) text(borders) text(Saudi:Arabia) -text(Iraq) text(is:butted:against) text(إيران) -text(Irak) text(was:butted:against) text(Jordan) -text(Irak) text(was:adjacent:to) text(Kuwait) -text(伊拉克) text(is:adjacent:to) text(Siria) -text(South:Georgia:and:the:South:Sandwich:Islands) text(was:positioned:in) text(América:del:Sur) -text(Islas:Georgias:del:Sur:y:Sandwich:del:Sur) text(is:positioned:in) text(América) -text(آيسلندا) text(was:sited:in) text(北歐) -text(IJsland) text(is:sited:in) text(Europe) -text(刚果民主共和国) text(was:localized:in) text(África:Central) -text(جمهورية:الكونغو:الديمقراطية) text(is:localized:in) text(非洲) -text(कांगो:लोकतान्त्रिक:गणराज्य) text(neighbors) text(Oeganda) -text(Congo-Kinshasa) text(is:a:neighboring:country:of) text(Tanzania) -text(Democratic:Republic:of:the:Congo) text(was:a:neighboring:country:of) text(Republic:of:the:Congo) -text(República:Democrática:del:Congo) text(neighbors:with) text(मध्य:अफ़्रीकी:गणराज्य) -text(刚果民主共和国) text(was:a:neighbor:of) text(أنغولا) -text(جمهورية:الكونغو:الديمقراطية) text(is:a:neighbor:of) text(Rwanda) -text(कांगो:लोकतान्त्रिक:गणराज्य) text(is:a:neighboring:state:to) text(Sudán:del:Sur) -text(Congo-Kinshasa) text(was:a:neighboring:state:to) text(زامبيا) -text(Democratic:Republic:of:the:Congo) text(borders:with) text(Burundi) -text(Seychelles) text(was:present:in) text(Oost-Afrika) -text(सेशेल्स) text(is:present:in) text(Africa) -text(किर्गिज़स्तान) text(is:still:in) text(Asia:Central) -text(Kirgizië) text(borders) text(República:Popular:China) -text(Kirguistán) text(is:butted:against) text(Kazachstan) -text(吉尔吉斯斯坦) text(was:butted:against) text(ताजीकिस्तान) -text(Kyrgyzstan) text(was:adjacent:to) text(乌兹别克斯坦) -text(波札那) text(was:still:in) text(Zuidelijk:Afrika) -text(बोत्सवाना) text(was:currently:in) text(Afrika) -text(Botsuana) text(is:adjacent:to) text(Zimbabue) -text(بوتسوانا) text(neighbors) text(नामीबिया) -text(Botswana) text(is:a:neighboring:country:of) text(Zambia) -text(Botswana) text(was:a:neighboring:country:of) text(South:Africa) -text(फ़रो:द्वीपसमूह) text(is:currently:in) text(Northern:Europe) -text(Faroe:Islands) text(is:placed:in) text(Europa) -text(Jamaica) text(was:placed:in) text(الكاريبي) -text(جامايكا) text(can:be:found:in) text(أمريكتان) -text(美屬薩摩亞) text(was:situated:in) text(بولنيزيا) -text(American:Samoa) text(is:situated:in) text(Oceania) -text(ليسوتو) text(is:located:in) text(África:austral) -text(Lesotho) text(was:located:in) text(África) -text(लेसोथो) text(neighbors:with) text(Sudáfrica) -text(سريلانكا) text(can:be:found:in) text(दक्षिण:एशिया) -text(Sri:Lanka) text(was:a:neighbor:of) text(भारत) -text(België) text(was:positioned:in) text(Western:Europe) -text(比利時) text(is:positioned:in) text(欧洲) -text(बेल्जियम) text(is:a:neighbor:of) text(जर्मनी) -text(Bélgica) text(is:a:neighboring:state:to) text(लक्ज़मबर्ग) -text(بلجيكا) text(was:a:neighboring:state:to) text(Francia) -text(Belgium) text(borders:with) text(Netherlands) -text(Catar) text(was:sited:in) text(غرب:آسيا) -text(卡塔尔) text(is:sited:in) text(एशिया) -text(Qatar) text(borders) text(सउदी:अरब) -text(Solomon:Islands) text(was:localized:in) text(Melanesië) -text(सोलोमन:द्वीपसमूह) text(is:localized:in) text(ओशिआनिया) -text(सीरिया) text(was:present:in) text(पश्चिमी:एशिया) -text(敘利亞) text(is:present:in) text(Asia) -text(Syrië) text(is:butted:against) text(Israël) -text(سوريا) text(was:butted:against) text(تركيا) -text(Syria) text(was:adjacent:to) text(Jordanië) -text(Siria) text(is:adjacent:to) text(लेबनॉन) -text(सीरिया) text(neighbors) text(العراق) -text(印度) text(is:still:in) text(Asia:del:Sur) -text(India) text(was:still:in) text(Azië) -text(India) text(is:a:neighboring:country:of) text(阿富汗) -text(الهند) text(was:a:neighboring:country:of) text(Bután) -text(India) text(neighbors:with) text(Bangladesh) -text(भारत) text(was:a:neighbor:of) text(الصين) -text(印度) text(is:a:neighbor:of) text(Nepal) -text(India) text(is:a:neighboring:state:to) text(Birmania) -text(India) text(was:a:neighboring:state:to) text(Pakistán) -text(الهند) text(borders:with) text(斯里蘭卡) -text(मोरक्को) text(was:currently:in) text(उत्तर:अफ़्रीका) -text(Marruecos) text(borders) text(阿爾及利亞) -text(المغرب) text(is:butted:against) text(西班牙) -text(摩洛哥) text(was:butted:against) text(撒拉威阿拉伯民主共和國) -text(Kenya) text(is:currently:in) text(पूर्वी:अफ्रीका) -text(肯尼亚) text(is:placed:in) text(अफ्रीका) -text(كينيا) text(was:adjacent:to) text(युगाण्डा) -text(Kenia) text(is:adjacent:to) text(Tanzania) -text(कीनिया) text(neighbors) text(Somalia) -text(Kenia) text(is:a:neighboring:country:of) text(جنوب:السودان) -text(Kenya) text(was:a:neighboring:country:of) text(إثيوبيا) -text(दक्षिण:सूडान) text(was:placed:in) text(Centraal-Afrika) -text(Zuid-Soedan) text(can:be:found:in) text(إفريقيا) -text(南蘇丹) text(neighbors:with) text(Uganda) -text(South:Sudan) text(was:a:neighbor:of) text(República:Democrática:del:Congo) -text(Sudán:del:Sur) text(is:a:neighbor:of) text(肯尼亚) -text(جنوب:السودان) text(is:a:neighboring:state:to) text(中非共和國) -text(दक्षिण:सूडान) text(was:a:neighboring:state:to) text(सूडान) -text(Zuid-Soedan) text(borders:with) text(Ethiopië) -text(Ghana) text(was:situated:in) text(África:Occidental) -text(घाना) text(borders) text(Burkina:Faso) -text(Ghana) text(is:butted:against) text(Costa:de:Marfil) -text(迦納) text(was:butted:against) text(टोगो) -text(塔吉克斯坦) text(is:situated:in) text(中亚) -text(Tadzjikistan) text(is:located:in) text(Asia) -text(Tajikistan) text(was:adjacent:to) text(People's:Republic:of:China) -text(Tayikistán) text(is:adjacent:to) text(قرغيزستان) -text(طاجيكستان) text(neighbors) text(Afganistán) -text(ताजीकिस्तान) text(is:a:neighboring:country:of) text(Uzbekistan) -text(馬紹爾群島) text(was:located:in) text(ميكرونيسيا) -text(Islas:Marshall) text(can:be:found:in) text(أوقيانوسيا) -text(कैमरुन) text(was:positioned:in) text(中部非洲) -text(Camerún) text(is:positioned:in) text(非洲) -text(Cameroon) text(was:a:neighboring:country:of) text(Chad) -text(الكاميرون) text(neighbors:with) text(جمهورية:الكونغو) -text(喀麦隆) text(was:a:neighbor:of) text(Gabón) -text(Kameroen) text(is:a:neighbor:of) text(भूमध्यरेखीय:गिनी) -text(कैमरुन) text(is:a:neighboring:state:to) text(Central:African:Republic) -text(Camerún) text(was:a:neighboring:state:to) text(नाइजीरिया) -text(ناورو) text(was:sited:in) text(Micronesia) -text(Nauru) text(is:sited:in) text(Oceanía) -text(تايلاند) text(was:localized:in) text(Southeast:Asia) -text(Thailand) text(borders:with) text(Cambodia) -text(Tailandia) text(borders) text(Myanmar) -text(泰國) text(is:butted:against) text(老撾) -text(थाईलैंड) text(was:butted:against) text(馬來西亞) -text(苏丹) text(is:localized:in) text(North:Africa) -text(Sudán) text(was:adjacent:to) text(Tsjaad) -text(Sudan) text(is:adjacent:to) text(Libia) -text(Soedan) text(neighbors) text(南蘇丹) -text(السودان) text(is:a:neighboring:country:of) text(厄立特里亞) -text(सूडान) text(was:a:neighboring:country:of) text(جمهورية:إفريقيا:الوسطى) -text(苏丹) text(neighbors:with) text(Egypte) -text(Sudán) text(was:a:neighbor:of) text(इथियोपिया) -text(تشاد) text(was:present:in) text(Central:Africa) -text(चाड) text(is:present:in) text(Africa) -text(乍得) text(is:a:neighbor:of) text(ليبيا) -text(Chad) text(is:a:neighboring:state:to) text(Níger) -text(Chad) text(was:a:neighboring:state:to) text(South:Sudan) -text(Tsjaad) text(borders:with) text(Cameroon) -text(تشاد) text(borders) text(República:Centroafricana) -text(चाड) text(is:butted:against) text(Nigeria) -text(Vanuatu) text(is:still:in) text(Melanesia) -text(فانواتو) text(was:still:in) text(大洋洲) -text(Cabo:Verde) text(was:currently:in) text(غرب:إفريقيا) -text(佛得角) text(is:currently:in) text(Afrika) -text(Falklandeilanden) text(is:placed:in) text(South:America) -text(फ़ॉकलैंड:द्वीपसमूह) text(was:placed:in) text(Americas) -text(Liberia) text(can:be:found:in) text(West-Afrika) -text(Liberia) text(was:situated:in) text(África) -text(利比里亞) text(was:butted:against) text(कोत:दिव्वार) -text(Liberia) text(was:adjacent:to) text(Sierra:Leona) -text(लाइबेरिया) text(is:adjacent:to) text(Guinee) -text(柬埔寨) text(is:situated:in) text(Zuidoost-Azië) -text(كمبوديا) text(is:located:in) text(亞洲) -text(कम्बोडिया) text(neighbors) text(वियतनाम) -text(Camboya) text(is:a:neighboring:country:of) text(Thailand) -text(Cambodja) text(was:a:neighboring:country:of) text(Laos) -text(Zimbabwe) text(was:located:in) text(东部非洲) -text(زيمبابوي) text(neighbors:with) text(ज़ाम्बिया) -text(津巴布韦) text(was:a:neighbor:of) text(Zuid-Afrika) -text(Zimbabwe) text(is:a:neighbor:of) text(波札那) -text(ज़िम्बाब्वे) text(is:a:neighboring:state:to) text(莫桑比克) -text(Comoren) text(can:be:found:in) text(East:Africa) -text(Comoros) text(was:positioned:in) text(अफ्रीका) -text(غوام) text(is:positioned:in) text(Micronesia) -text(गुआम) text(was:sited:in) text(Oceanië) -text(جزر:البهاما) text(is:sited:in) text(加勒比地区) -text(Bahama's) text(was:localized:in) text(美洲) -text(Lebanon) text(is:localized:in) text(西亚) -text(Líbano) text(was:present:in) text(آسيا) -text(لبنان) text(was:a:neighboring:state:to) text(इज़राइल) -text(Libanon) text(borders:with) text(敘利亞) -text(圣马丁岛) text(is:present:in) text(Caraïben) -text(San:Martín) text(is:still:in) text(महाअमेरिका) -text(سانت:مارتن) text(borders) text(Sint-Maarten) -text(埃塞俄比亚) text(was:still:in) text(África:Oriental) -text(Etiopía) text(was:currently:in) text(إفريقيا) -text(Ethiopia) text(is:butted:against) text(सोमालिया) -text(إثيوبيا) text(was:butted:against) text(كينيا) -text(Ethiopië) text(was:adjacent:to) text(Eritrea) -text(इथियोपिया) text(is:adjacent:to) text(Sudán:del:Sur) -text(埃塞俄比亚) text(neighbors) text(吉布提) -text(Etiopía) text(is:a:neighboring:country:of) text(Sudan) -text(संयुक्त:राज्य:वर्जिन:द्वीपसमूह) text(is:currently:in) text(कैरिबिया) -text(United:States:Virgin:Islands) text(is:placed:in) text(Amerika) -text(गिनी-बिसाऊ) text(was:placed:in) text(पश्चिमी:अफ्रीका) -text(Guinee-Bissau) text(can:be:found:in) text(非洲) -text(畿內亞比紹) text(was:a:neighboring:country:of) text(几内亚) -text(غينيا:بيساو) text(neighbors:with) text(السنغال) -text(लीबिया) text(was:situated:in) text(Noord-Afrika) -text(Libië) text(is:situated:in) text(Africa) -text(Libya) text(was:a:neighbor:of) text(乍得) -text(利比亞) text(is:a:neighbor:of) text(Túnez) -text(Libia) text(is:a:neighboring:state:to) text(Niger) -text(ليبيا) text(was:a:neighboring:state:to) text(Algerije) -text(लीबिया) text(borders:with) text(مصر) -text(Libië) text(borders) text(Soedan) -text(भूटान) text(is:located:in) text(Zuid-Azië) -text(بوتان) text(was:located:in) text(एशिया) -text(Bhutan) text(is:butted:against) text(Volksrepubliek:China) -text(不丹) text(was:butted:against) text(India) -text(澳門) text(can:be:found:in) text(Asia:Oriental) -text(Macau) text(was:positioned:in) text(Asia) -text(Macau) text(was:adjacent:to) text(中华人民共和国) -text(بولنيزيا:الفرنسية) text(is:positioned:in) text(पोलीनेशिया) -text(Polinesia:Francesa) text(was:sited:in) text(Oceania) -text(الصومال) text(is:sited:in) text(شرق:إفريقيا) -text(Somalia) text(was:localized:in) text(Afrika) -text(Somalië) text(is:adjacent:to) text(Djibouti) -text(索馬里) text(neighbors) text(Kenia) -text(Somalia) text(is:a:neighboring:country:of) text(Ethiopia) -text(Saint-Barthélemy) text(is:localized:in) text(Caribe) -text(سان:بارتيلمي) text(was:present:in) text(América) -text(Rusia) text(is:present:in) text(أوروبا:الشرقية) -text(Russia) text(is:still:in) text(Europa) -text(Rusland) text(was:a:neighboring:country:of) text(أوكرانيا) -text(रूस) text(neighbors:with) text(بيلاروس) -text(روسيا) text(was:a:neighbor:of) text(चीनी:जनवादी:गणराज्य) -text(俄罗斯) text(is:a:neighbor:of) text(哈萨克斯坦) -text(Rusia) text(is:a:neighboring:state:to) text(Noruega) -text(Russia) text(was:a:neighboring:state:to) text(بولندا) -text(Rusland) text(borders:with) text(Azerbaiyán) -text(रूस) text(borders) text(Litouwen) -text(روسيا) text(is:butted:against) text(إستونيا) -text(俄罗斯) text(was:butted:against) text(Corea:del:Norte) -text(Rusia) text(was:adjacent:to) text(芬蘭) -text(Russia) text(is:adjacent:to) text(Mongolië) -text(Rusland) text(neighbors) text(لاتفيا) -text(रूस) text(is:a:neighboring:country:of) text(Georgia) -text(新西兰) text(was:still:in) text(nan) -text(न्यूज़ीलैंड) text(was:currently:in) text(ओशिआनिया) -text(पनामा) text(is:currently:in) text(中美洲) -text(بنما) text(is:placed:in) text(أمريكتان) -text(Panamá) text(was:a:neighboring:country:of) text(كوستاريكا) -text(巴拿馬) text(neighbors:with) text(كولومبيا) -text(بابوا:غينيا:الجديدة) text(was:placed:in) text(Melanesia) -text(Papoea-Nieuw-Guinea) text(can:be:found:in) text(أوقيانوسيا) -text(巴布亚新几内亚) text(was:a:neighbor:of) text(Indonesia) -text(North:Korea) text(was:situated:in) text(東亞) -text(朝鮮民主主義人民共和國) text(is:a:neighbor:of) text(República:Popular:China) -text(उत्तर:कोरिया) text(is:a:neighboring:state:to) text(كوريا:الجنوبية) -text(Noord-Korea) text(was:a:neighboring:state:to) text(روسيا) -text(Letland) text(is:situated:in) text(Europa:del:Norte) -text(लातविया) text(is:located:in) text(यूरोप) -text(Latvia) text(borders:with) text(लिथुआनिया) -text(Letonia) text(borders) text(बेलारूस) -text(拉脫維亞) text(is:butted:against) text(俄罗斯) -text(لاتفيا) text(was:butted:against) text(愛沙尼亞) -text(Oman) text(was:located:in) text(Zuidwest-Azië) -text(Omán) text(can:be:found:in) text(Azië) -text(Oman) text(was:adjacent:to) text(Arabia:Saudí) -text(ओमान) text(is:adjacent:to) text(اليمن) -text(سلطنة:عمان) text(neighbors) text(Emiratos:Árabes:Unidos) -text(Saint-Pierre:en:Miquelon) text(was:positioned:in) text(América:del:Norte) -text(سان:بيير:وميكلون) text(is:positioned:in) text(Americas) -text(Martinique) text(was:sited:in) text(Caribbean) -text(مارتينيك) text(is:sited:in) text(美洲) -text(United:Kingdom) text(was:localized:in) text(Noord-Europa) -text(英国) text(is:localized:in) text(أوروبا) -text(यूनाइटेड:किंगडम) text(is:a:neighboring:country:of) text(英国) -text(إسرائيل) text(was:present:in) text(Asia:Occidental) -text(Israel) text(is:present:in) text(Asia) -text(Israel) text(was:a:neighboring:country:of) text(黎巴嫩) -text(以色列) text(neighbors:with) text(Egypt) -text(Israël) text(was:a:neighbor:of) text(जॉर्डन) -text(इज़राइल) text(is:a:neighbor:of) text(Syrië) -text(Jersey) text(is:still:in) text(उत्तरी:यूरोप) -text(جيرزي) text(was:still:in) text(Europe) -text(皮特凯恩群岛) text(was:currently:in) text(Polynesia) -text(Islas:Pitcairn) text(is:currently:in) text(Oceanía) -text(多哥) text(is:placed:in) text(西非) -text(Togo) text(was:placed:in) text(África) -text(Togo) text(is:a:neighboring:state:to) text(布吉納法索) -text(توغو) text(was:a:neighboring:state:to) text(غانا) -text(Togo) text(borders:with) text(貝南) -text(吉里巴斯) text(can:be:found:in) text(Micronesië) -text(Kiribati) text(was:situated:in) text(大洋洲) -text(Irán) text(is:situated:in) text(South:Asia) -text(Iran) text(is:located:in) text(亞洲) -text(ईरान) text(borders) text(Afghanistan) -text(Iran) text(is:butted:against) text(土庫曼斯坦) -text(伊朗) text(was:butted:against) text(तुर्की) -text(إيران) text(was:adjacent:to) text(Armenia) -text(Irán) text(is:adjacent:to) text(Azerbaijan) -text(Iran) text(neighbors) text(巴基斯坦) -text(ईरान) text(is:a:neighboring:country:of) text(इराक) -text(法屬聖馬丁) text(was:located:in) text(الكاريبي) -text(Saint-Martin) text(can:be:found:in) text(महाअमेरिका) -text(تجمع:سان:مارتين) text(was:a:neighboring:country:of) text(Sint:Maarten) -text(Dominican:Republic) text(was:positioned:in) text(加勒比地区) -text(جمهورية:الدومينيكان) text(is:positioned:in) text(Amerika) -text(República:Dominicana) text(neighbors:with) text(हैती) -text(Dinamarca) text(was:sited:in) text(أوروبا:الشمالية) -text(Denemarken) text(was:a:neighbor:of) text(Germany) -text(Bermuda) text(is:sited:in) text(उत्तर:अमेरिका) -text(बरमूडा) text(was:localized:in) text(América) -text(Chili) text(is:localized:in) text(أمريكا:الجنوبية) -text(Chile) text(is:a:neighbor:of) text(Argentinië) -text(تشيلي) text(is:a:neighboring:state:to) text(Bolivia) -text(Chile) text(was:a:neighboring:state:to) text(Perú) -text(科索沃) text(was:present:in) text(东欧) -text(Kosovo) text(is:present:in) text(Europa) -text(कोसोवो:गणराज्य) text(borders:with) text(Serbia) -text(Kosovo) text(borders) text(अल्बानिया) -text(كوسوفو) text(is:butted:against) text(مقدونيا:الشمالية) -text(Kosovo) text(was:butted:against) text(मॉन्टेनीग्रो) -text(सन्त:किट्स:और:नेविस) text(is:still:in) text(Caraïben) -text(Saint:Kitts:and:Nevis) text(was:still:in) text(أمريكتان) -text(Eritrea) text(was:currently:in) text(Oost-Afrika) -text(Eritrea) text(was:adjacent:to) text(Yibuti) -text(इरित्रिया) text(is:adjacent:to) text(السودان) -text(إرتريا) text(neighbors) text(إثيوبيا) -text(赤道几内亚) text(is:currently:in) text(मध्य:अफ्रीका) -text(غينيا:الاستوائية) text(is:placed:in) text(अफ्रीका) -text(Equatorial:Guinea) text(is:a:neighboring:country:of) text(Gabon) -text(Equatoriaal-Guinea) text(was:a:neighboring:country:of) text(الكاميرون) -text(Niger) text(was:placed:in) text(West:Africa) -text(尼日尔) text(can:be:found:in) text(إفريقيا) -text(नाइजर) text(neighbors:with) text(Chad) -text(النيجر) text(was:a:neighbor:of) text(Libya) -text(Níger) text(is:a:neighbor:of) text(बुर्किना:फासो) -text(Niger) text(is:a:neighboring:state:to) text(Benin) -text(Niger) text(was:a:neighboring:state:to) text(Mali) -text(尼日尔) text(borders:with) text(Algeria) -text(नाइजर) text(borders) text(نيجيريا) -text(Anguilla) text(was:situated:in) text(कैरिबिया) -text(安圭拉) text(is:situated:in) text(Americas) -text(रवाण्डा) text(is:located:in) text(पूर्वी:अफ्रीका) -text(رواندا) text(was:located:in) text(非洲) -text(Ruanda) text(is:butted:against) text(蒲隆地) -text(卢旺达) text(was:butted:against) text(坦桑尼亞) -text(Rwanda) text(was:adjacent:to) text(烏干達) -text(Rwanda) text(is:adjacent:to) text(刚果民主共和国) -text(الإمارات:العربية:المتحدة) text(can:be:found:in) text(West:Asia) -text(阿拉伯联合酋长国) text(was:positioned:in) text(آسيا) -text(संयुक्त:अरब:अमीरात) text(neighbors) text(阿曼) -text(Verenigde:Arabische:Emiraten) text(is:a:neighboring:country:of) text(Saoedi-Arabië) -text(Estonia) text(is:positioned:in) text(北歐) -text(एस्टोनिया) text(was:sited:in) text(欧洲) -text(Estonia) text(was:a:neighboring:country:of) text(Letland) -text(Estland) text(neighbors:with) text(Rusia) -text(Griekenland) text(is:sited:in) text(أوروبا:الجنوبية) -text(Grecia) text(was:localized:in) text(Europa) -text(اليونان) text(was:a:neighbor:of) text(Bulgarije) -text(यूनान) text(is:a:neighbor:of) text(ألبانيا) -text(Greece) text(is:a:neighboring:state:to) text(उत्तर:मैसिडोनिया) -text(希腊) text(was:a:neighboring:state:to) text(Turquía) -text(Senegal) text(is:localized:in) text(África:Occidental) -text(Senegal) text(was:present:in) text(Africa) -text(सेनेगल) text(borders:with) text(Guinea-Bisáu) -text(Senegal) text(borders) text(毛里塔尼亞) -text(塞内加尔) text(is:butted:against) text(马里) -text(السنغال) text(was:butted:against) text(غامبيا) -text(Senegal) text(was:adjacent:to) text(Guinea) -text(瓜德羅普) text(is:present:in) text(Caribe) -text(Guadalupe) text(is:still:in) text(美洲) -text(Mónaco) text(was:still:in) text(أوروبا:الغربية) -text(摩納哥) text(is:adjacent:to) text(法國) -text(جيبوتي) text(was:currently:in) text(东部非洲) -text(Djibouti) text(neighbors) text(厄立特里亞) -text(जिबूती) text(is:a:neighboring:country:of) text(सोमालिया) -text(吉布提) text(was:a:neighboring:country:of) text(Ethiopië) -text(Indonesia) text(is:currently:in) text(Sudeste:Asiático) -text(इंडोनेशिया) text(neighbors:with) text(Papua:New:Guinea) -text(إندونيسيا) text(was:a:neighbor:of) text(Timor:Oriental) -text(Indonesië) text(is:a:neighbor:of) text(मलेशिया) -text(British:Virgin:Islands) text(is:placed:in) text(Caribbean) -text(جزر:عذراء:بريطانية) text(was:placed:in) text(महाअमेरिका) -text(कुक:द्वीपसमूह) text(can:be:found:in) text(Polynesië) -text(Cookeilanden) text(was:situated:in) text(Oceanië) -text(أوغندا) text(is:situated:in) text(East:Africa) -text(Uganda) text(is:located:in) text(Afrika) -text(Oeganda) text(is:a:neighboring:state:to) text(तंज़ानिया) -text(युगाण्डा) text(was:a:neighboring:state:to) text(جمهورية:الكونغو:الديمقراطية) -text(Uganda) text(borders:with) text(कीनिया) -text(烏干達) text(borders) text(جنوب:السودان) -text(أوغندا) text(is:butted:against) text(रवाण्डा) -text(Noord-Macedonië) text(was:located:in) text(Zuid-Europa) -text(北马其顿) text(can:be:found:in) text(यूरोप) -text(Macedonia:del:Norte) text(was:butted:against) text(科索沃) -text(North:Macedonia) text(was:adjacent:to) text(Griekenland) -text(مقدونيا:الشمالية) text(is:adjacent:to) text(Albanië) -text(उत्तर:मैसिडोनिया) text(neighbors) text(सर्बिया) -text(Noord-Macedonië) text(is:a:neighboring:country:of) text(بلغاريا) -text(ट्यूनिशिया) text(was:positioned:in) text(Norte:de:África) -text(突尼西亞) text(is:positioned:in) text(África) -text(Tunesië) text(was:a:neighboring:country:of) text(利比亞) -text(Tunisia) text(neighbors:with) text(Argelia) -text(Ecuador) text(was:sited:in) text(दक्षिण:अमेरिका) -text(Ecuador) text(was:a:neighbor:of) text(पेरू) -text(厄瓜多尔) text(is:a:neighbor:of) text(Colombia) -text(Brazil) text(is:sited:in) text(Zuid-Amerika) -text(ब्राज़ील) text(was:localized:in) text(Amerika) -text(البرازيل) text(is:a:neighboring:state:to) text(玻利維亞) -text(巴西) text(was:a:neighboring:state:to) text(कोलम्बिया) -text(Brasil) text(borders:with) text(Paraguay) -text(Brazilië) text(borders) text(Uruguay) -text(Brazil) text(is:butted:against) text(Frans-Guyana) -text(ब्राज़ील) text(was:butted:against) text(Surinam) -text(البرازيل) text(was:adjacent:to) text(委內瑞拉) -text(巴西) text(is:adjacent:to) text(अर्जेण्टीना) -text(Brasil) text(neighbors) text(غيانا) -text(Brazilië) text(is:a:neighboring:country:of) text(Peru) -text(باراغواي) text(is:localized:in) text(南美洲) -text(巴拉圭) text(was:present:in) text(América) -text(Paraguay) text(was:a:neighboring:country:of) text(الأرجنتين) -text(पैराग्वे) text(neighbors:with) text(Brazil) -text(Paraguay) text(was:a:neighbor:of) text(बोलिविया) -text(Finland) text(is:present:in) text(Northern:Europe) -text(फ़िनलैण्ड) text(is:still:in) text(أوروبا) -text(فنلندا) text(is:a:neighbor:of) text(Noorwegen) -text(Finlandia) text(is:a:neighboring:state:to) text(स्वीडन) -text(Finland) text(was:a:neighboring:state:to) text(Russia) -text(約旦) text(was:still:in) text(غرب:آسيا) -text(Jordania) text(borders:with) text(السعودية) -text(الأردن) text(borders) text(إسرائيل) -text(Jordan) text(is:butted:against) text(Iraq) -text(Jordanië) text(was:butted:against) text(سوريا) -text(पूर्वी:तिमोर) text(was:currently:in) text(جنوب:شرق:آسيا) -text(Timor-Leste) text(was:adjacent:to) text(印度尼西亚) -text(Montenegro) text(is:currently:in) text(Europa:del:Sur) -text(Montenegro) text(is:placed:in) text(Europe) -text(الجبل:الأسود) text(is:adjacent:to) text(Kosovo) -text(Montenegro) text(neighbors) text(बोस्निया:और:हर्ज़ेगोविना) -text(蒙特內哥羅) text(is:a:neighboring:country:of) text(Kroatië) -text(मॉन्टेनीग्रो) text(was:a:neighboring:country:of) text(صربيا) -text(Montenegro) text(neighbors:with) text(阿爾巴尼亞) -text(秘鲁) text(was:placed:in) text(América:del:Sur) -text(بيرو) text(can:be:found:in) text(أمريكتان) -text(Peru) text(was:a:neighbor:of) text(Ecuador) -text(Perú) text(is:a:neighbor:of) text(بوليفيا) -text(पेरू) text(is:a:neighboring:state:to) text(चिली) -text(Peru) text(was:a:neighboring:state:to) text(ब्राज़ील) -text(秘鲁) text(borders:with) text(哥伦比亚) -text(मॉण्टसेराट) text(was:situated:in) text(الكاريبي) -text(蒙塞拉特島) text(is:situated:in) text(Americas) -text(烏克蘭) text(is:located:in) text(Eastern:Europe) -text(Ucrania) text(was:located:in) text(Europa) -text(Ukraine) text(borders) text(Slovakia) -text(युक्रेन) text(is:butted:against) text(白俄羅斯) -text(Oekraïne) text(was:butted:against) text(Polonia) -text(أوكرانيا) text(was:adjacent:to) text(Rusland) -text(烏克蘭) text(is:adjacent:to) text(हंगरी) -text(Ucrania) text(neighbors) text(摩爾多瓦) -text(Ukraine) text(is:a:neighboring:country:of) text(रोमानिया) -text(डोमिनिका) text(can:be:found:in) text(加勒比地区) -text(Dominica) text(was:positioned:in) text(美洲) -text(Turkmenistan) text(is:positioned:in) text(Centraal-Azië) -text(Turkmenistan) text(was:a:neighboring:country:of) text(كازاخستان) -text(Turkmenistán) text(neighbors:with) text(अफ़्ग़ानिस्तान) -text(تركمانستان) text(was:a:neighbor:of) text(أوزبكستان) -text(तुर्कमेनिस्तान) text(is:a:neighbor:of) text(Iran) -text(غيرنزي) text(was:sited:in) text(Europa:del:Norte) -text(Guernsey) text(is:sited:in) text(欧洲) -text(直布羅陀) text(was:localized:in) text(दक्षिणी:यूरोप) -text(जिब्राल्टर) text(is:localized:in) text(Europa) -text(Gibraltar) text(is:a:neighboring:state:to) text(Spain) -text(स्विट्ज़रलैण्ड) text(was:present:in) text(West-Europa) -text(瑞士) text(is:present:in) text(यूरोप) -text(Zwitserland) text(was:a:neighboring:state:to) text(Duitsland) -text(سويسرا) text(borders:with) text(إيطاليا) -text(Suiza) text(borders) text(النمسا) -text(Switzerland) text(is:butted:against) text(फ़्रान्स) -text(स्विट्ज़रलैण्ड) text(was:butted:against) text(列支敦斯登) -text(ऑस्ट्रिया) text(is:still:in) text(西欧) -text(Oostenrijk) text(was:still:in) text(أوروبا) -text(Austria) text(was:adjacent:to) text(Alemania) -text(奧地利) text(is:adjacent:to) text(斯洛伐克) -text(Austria) text(neighbors) text(स्लोवेनिया) -text(النمسا) text(is:a:neighboring:country:of) text(Italy) -text(ऑस्ट्रिया) text(was:a:neighboring:country:of) text(瑞士) -text(Oostenrijk) text(neighbors:with) text(Hongarije) -text(Austria) text(was:a:neighbor:of) text(Liechtenstein) -text(奧地利) text(is:a:neighbor:of) text(Czech:Republic) -text(Hungría) text(was:currently:in) text(पूर्वी:यूरोप) -text(المجر) text(is:a:neighboring:state:to) text(युक्रेन) -text(Hungary) text(was:a:neighboring:state:to) text(سلوفاكيا) -text(匈牙利) text(borders:with) text(Eslovenia) -text(हंगरी) text(borders) text(Croatia) -text(Hongarije) text(is:butted:against) text(Austria) -text(Hungría) text(was:butted:against) text(Serbia) -text(المجر) text(was:adjacent:to) text(Roemenië) -text(मलावी) text(is:currently:in) text(África:Oriental) -text(Malawi) text(is:placed:in) text(अफ्रीका) -text(馬拉威) text(is:adjacent:to) text(贊比亞) -text(Malaui) text(neighbors) text(Tanzania) -text(Malawi) text(is:a:neighboring:country:of) text(Mozambique) -text(香港) text(was:placed:in) text(East:Asia) -text(Hong:Kong) text(was:a:neighboring:country:of) text(الصين) -text(Liechtenstein) text(can:be:found:in) text(Europa:Occidental) -text(Liechtenstein) text(was:situated:in) text(Europe) -text(ليختنشتاين) text(neighbors:with) text(Zwitserland) -text(लिक्टेन्स्टाइन) text(was:a:neighbor:of) text(النمسا) -text(Barbados) text(is:situated:in) text(Caraïben) -text(Barbados) text(is:located:in) text(महाअमेरिका) -text(格鲁吉亚) text(was:located:in) text(पश्चिमी:एशिया) -text(Georgië) text(can:be:found:in) text(एशिया) -text(Georgia) text(is:a:neighbor:of) text(Armenië) -text(جورجيا) text(is:a:neighboring:state:to) text(Azerbeidzjan) -text(जॉर्जिया) text(was:a:neighboring:state:to) text(रूस) -text(Georgia) text(borders:with) text(土耳其) -text(Albania) text(was:positioned:in) text(南欧) -text(Albania) text(is:positioned:in) text(Europa) -text(अल्बानिया) text(borders) text(Montenegro) -text(ألبانيا) text(is:butted:against) text(北马其顿) -text(Albanië) text(was:butted:against) text(कोसोवो:गणराज्य) -text(阿爾巴尼亞) text(was:adjacent:to) text(Grecia) -text(科威特) text(was:sited:in) text(西亚) -text(الكويت) text(is:sited:in) text(Asia) -text(Koeweit) text(is:adjacent:to) text(沙特阿拉伯) -text(Kuwait) text(neighbors) text(Irak) -text(جنوب:إفريقيا) text(was:localized:in) text(إفريقيا:الجنوبية) -text(दक्षिण:अफ़्रीका) text(is:localized:in) text(إفريقيا) -text(南非) text(is:a:neighboring:country:of) text(Mozambique) -text(South:Africa) text(was:a:neighboring:country:of) text(बोत्सवाना) -text(Sudáfrica) text(neighbors:with) text(إسواتيني) -text(Zuid-Afrika) text(was:a:neighbor:of) text(Zimbabue) -text(جنوب:إفريقيا) text(is:a:neighbor:of) text(Namibia) -text(दक्षिण:अफ़्रीका) text(is:a:neighboring:state:to) text(Lesoto) -text(Haïti) text(was:present:in) text(कैरिबिया) -text(Haití) text(is:present:in) text(Amerika) -text(海地) text(was:a:neighboring:state:to) text(डोमिनिकन:गणराज्य) -text(أفغانستان) text(is:still:in) text(جنوب:آسيا) -text(Afghanistan) text(was:still:in) text(Azië) -text(阿富汗) text(borders:with) text(土庫曼斯坦) -text(Afganistán) text(borders) text(People's:Republic:of:China) -text(Afghanistan) text(is:butted:against) text(塔吉克斯坦) -text(अफ़्ग़ानिस्तान) text(was:butted:against) text(Oezbekistan) -text(أفغانستان) text(was:adjacent:to) text(伊朗) -text(Afghanistan) text(is:adjacent:to) text(باكستان) -text(سنغافورة) text(was:currently:in) text(东南亚) -text(新加坡) text(is:currently:in) text(Asia) -text(بنين) text(is:placed:in) text(غرب:إفريقيا) -text(Benín) text(was:placed:in) text(非洲) -text(Benin) text(neighbors) text(النيجر) -text(बेनिन) text(is:a:neighboring:country:of) text(بوركينا:فاسو) -text(貝南) text(was:a:neighboring:country:of) text(टोगो) -text(Benin) text(neighbors:with) text(Nigeria) -text(奥兰) text(can:be:found:in) text(Noord-Europa) -text(Åland) text(was:situated:in) text(欧洲) -text(Croacia) text(is:situated:in) text(Southern:Europe) -text(克羅地亞) text(is:located:in) text(Europa) -text(क्रोएशिया) text(was:a:neighbor:of) text(Slovenië) -text(كرواتيا) text(is:a:neighbor:of) text(Bosnia:and:Herzegovina) -text(Kroatië) text(is:a:neighboring:state:to) text(Hungary) -text(Croatia) text(was:a:neighboring:state:to) text(塞爾維亞) -text(Croacia) text(borders:with) text(الجبل:الأسود) -text(Zweden) text(was:located:in) text(उत्तरी:यूरोप) -text(Sweden) text(can:be:found:in) text(यूरोप) -text(السويد) text(borders) text(नॉर्वे) -text(瑞典) text(is:butted:against) text(芬蘭) -text(México) text(was:positioned:in) text(North:America) -text(मेक्सिको) text(was:butted:against) text(Belize) -text(墨西哥) text(was:adjacent:to) text(美國) -text(المكسيك) text(is:adjacent:to) text(Guatemala) -text(Greenland) text(is:positioned:in) text(北美洲) -text(ग्रीनलैण्ड) text(was:sited:in) text(América) -text(جزر:بيتكيرن) text(is:sited:in) text(nan) -text(Islas:Pitcairn) text(was:localized:in) text(Oceania) -text(नेपाल) text(is:localized:in) text(南亚) -text(نيبال) text(was:present:in) text(亞洲) -text(Nepal) text(neighbors) text(Volksrepubliek:China) -text(尼泊爾) text(is:a:neighboring:country:of) text(भारत) -text(Guatemala) text(is:present:in) text(Centraal-Amerika) -text(ग्वाटेमाला) text(was:a:neighboring:country:of) text(बेलीज़) -text(غواتيمالا) text(neighbors:with) text(薩爾瓦多) -text(Guatemala) text(was:a:neighbor:of) text(Mexico) -text(危地马拉) text(is:a:neighbor:of) text(Honduras) -text(大韩民国) text(is:still:in) text(شرق:آسيا) -text(Corea:del:Sur) text(was:still:in) text(آسيا) -text(दक्षिण:कोरिया) text(is:a:neighboring:state:to) text(كوريا:الشمالية) -text(Moldavië) text(was:currently:in) text(Europa:Oriental) -text(Moldavia) text(is:currently:in) text(أوروبا) -text(مولدوفا) text(was:a:neighboring:state:to) text(Oekraïne) -text(मोल्डोवा) text(borders:with) text(رومانيا) -text(موريشيوس) text(is:placed:in) text(شرق:إفريقيا) -text(Mauricio) text(was:placed:in) text(Africa) -text(Belarus) text(can:be:found:in) text(Oost-Europa) -text(Bielorrusia) text(borders) text(أوكرانيا) -text(Wit-Rusland) text(is:butted:against) text(पोलैंड) -text(بيلاروس) text(was:butted:against) text(ليتوانيا) -text(बेलारूस) text(was:adjacent:to) text(روسيا) -text(白俄羅斯) text(is:adjacent:to) text(लातविया) -text(孟加拉國) text(was:situated:in) text(दक्षिण:एशिया) -text(Bangladés) text(neighbors) text(म्यान्मार) -text(بنغلاديش) text(is:a:neighboring:country:of) text(印度) -text(Malaysia) text(is:situated:in) text(दक्षिण:पूर्व:एशिया) -text(Malasia) text(is:located:in) text(एशिया) -text(Maleisië) text(was:a:neighboring:country:of) text(تايلاند) -text(ماليزيا) text(neighbors:with) text(Indonesia) -text(馬來西亞) text(was:a:neighbor:of) text(ब्रुनेई) -text(البوسنة:والهرسك) text(was:located:in) text(أوروبا:الجنوبية) -text(Bosnia:y:Herzegovina) text(can:be:found:in) text(Europe) -text(波斯尼亚和黑塞哥维那) text(is:a:neighbor:of) text(Servië) -text(Bosnië:en:Herzegovina) text(is:a:neighboring:state:to) text(克羅地亞) -text(बोस्निया:और:हर्ज़ेगोविना) text(was:a:neighboring:state:to) text(Montenegro) -text(Luxembourg) text(was:positioned:in) text(पश्चिमी:यूरोप) -text(Luxemburg) text(is:positioned:in) text(Europa) -text(卢森堡) text(borders:with) text(德國) -text(Luxemburgo) text(borders) text(België) -text(لوكسمبورغ) text(is:butted:against) text(France) -text(Italië) text(was:sited:in) text(Zuid-Europa) -text(Italia) text(is:sited:in) text(欧洲) -text(意大利) text(was:butted:against) text(Slovenia) -text(इटली) text(was:adjacent:to) text(سويسرا) -text(إيطاليا) text(is:adjacent:to) text(ऑस्ट्रिया) -text(Italy) text(neighbors) text(Frankrijk) -text(Italië) text(is:a:neighboring:country:of) text(Vatican:City) -text(Italia) text(was:a:neighboring:country:of) text(सान:मारिनो) -text(أذربيجان) text(was:localized:in) text(Zuidwest-Azië) -text(अज़रबैजान) text(is:localized:in) text(Asia) -text(阿塞拜疆) text(neighbors:with) text(Turkije) -text(Azerbaiyán) text(was:a:neighbor:of) text(आर्मीनिया) -text(Azerbaijan) text(is:a:neighbor:of) text(俄罗斯) -text(Azerbeidzjan) text(is:a:neighboring:state:to) text(إيران) -text(أذربيجان) text(was:a:neighboring:state:to) text(格鲁吉亚) -text(Honduras) text(was:present:in) text(Central:America) -text(洪都拉斯) text(is:present:in) text(أمريكتان) -text(हॉण्डुरस) text(borders:with) text(Guatemala) -text(Honduras) text(borders) text(نيكاراغوا) -text(هندوراس) text(is:butted:against) text(El:Salvador) -text(Mali) text(is:still:in) text(West-Afrika) -text(مالي) text(was:still:in) text(Afrika) -text(माली) text(was:butted:against) text(Burkina:Faso) -text(Mali) text(was:adjacent:to) text(غينيا) -text(Mali) text(is:adjacent:to) text(Mauritania) -text(马里) text(neighbors) text(Níger) -text(Mali) text(is:a:neighboring:country:of) text(Senegal) -text(مالي) text(was:a:neighboring:country:of) text(अल्जीरिया) -text(माली) text(neighbors:with) text(科特迪瓦) -text(República:de:China) text(was:currently:in) text(Oost-Azië) -text(चीनी:गणराज्य) text(is:currently:in) text(Azië) -text(الجزائر) text(is:placed:in) text(北部非洲) -text(阿爾及利亞) text(was:placed:in) text(África) -text(Algerije) text(was:a:neighbor:of) text(Libia) -text(Algeria) text(is:a:neighbor:of) text(تونس) -text(Argelia) text(is:a:neighboring:state:to) text(موريتانيا) -text(अल्जीरिया) text(was:a:neighboring:state:to) text(Marokko) -text(الجزائر) text(borders:with) text(Niger) -text(阿爾及利亞) text(borders) text(Mali) -text(Algerije) text(is:butted:against) text(सहरावी:अरब:जनतांत्रिक:गणराज्य) -text(फ़्रान्सीसी:गुयाना) text(can:be:found:in) text(South:America) -text(法屬圭亞那) text(was:butted:against) text(البرازيل) -text(French:Guiana) text(was:adjacent:to) text(蘇利南) -text(Jemen) text(was:situated:in) text(Asia:Occidental) -text(Yemen) text(is:situated:in) text(Asia) -text(Yemen) text(is:adjacent:to) text(Oman) -text(यमन) text(neighbors) text(Saudi:Arabia) -text(Puerto:Rico) text(is:located:in) text(Caribe) -text(पोर्टो:रीको) text(was:located:in) text(Americas) -text(Saint:Vincent:en:de:Grenadines) text(can:be:found:in) text(Caribbean) -text(Saint:Vincent:and:the:Grenadines) text(was:positioned:in) text(美洲) -text(वेनेज़ुएला) text(is:positioned:in) text(أمريكا:الجنوبية) -text(Venezuela) text(is:a:neighboring:country:of) text(巴西) -text(Venezuela) text(was:a:neighboring:country:of) text(Guyana) -text(فنزويلا) text(neighbors:with) text(Colombia) -text(Granada) text(was:sited:in) text(الكاريبي) -text(ग्रेनाडा) text(is:sited:in) text(महाअमेरिका) -text(الولايات:المتحدة) text(was:localized:in) text(Noord-Amerika) -text(Verenigde:Staten) text(was:a:neighbor:of) text(Canada) -text(United:States) text(is:a:neighbor:of) text(Mexico) -text(Tokelau) text(is:localized:in) text(Polinesia) -text(टोकेलाऊ) text(was:present:in) text(ओशिआनिया) -text(سلوفينيا) text(is:present:in) text(Europa:del:Sur) -text(斯洛文尼亞) text(is:still:in) text(Europa) -text(स्लोवेनिया) text(is:a:neighboring:state:to) text(Oostenrijk) -text(Eslovenia) text(was:a:neighboring:state:to) text(क्रोएशिया) -text(Slovenië) text(borders:with) text(意大利) -text(Slovenia) text(borders) text(匈牙利) -text(Filipinas) text(was:still:in) text(Southeast:Asia) -text(菲律賓) text(was:currently:in) text(亞洲) -text(密克羅尼西亞群島) text(is:currently:in) text(माइक्रोनीशिया) -text(ميكرونيسيا) text(is:placed:in) text(أوقيانوسيا) -text(中华人民共和国) text(was:placed:in) text(पूर्वी:एशिया) -text(चीनी:जनवादी:गणराज्य) text(can:be:found:in) text(آسيا) -text(República:Popular:China) text(is:butted:against) text(阿富汗) -text(الصين) text(was:butted:against) text(Bhutan) -text(People's:Republic:of:China) text(was:adjacent:to) text(मकाउ) -text(Volksrepubliek:China) text(is:adjacent:to) text(India) -text(中华人民共和国) text(neighbors) text(Kazakhstan) -text(चीनी:जनवादी:गणराज्य) text(is:a:neighboring:country:of) text(किर्गिज़स्तान) -text(República:Popular:China) text(was:a:neighboring:country:of) text(Tadzjikistan) -text(الصين) text(neighbors:with) text(Laos) -text(People's:Republic:of:China) text(was:a:neighbor:of) text(Rusia) -text(Volksrepubliek:China) text(is:a:neighbor:of) text(Corea:del:Norte) -text(中华人民共和国) text(is:a:neighboring:state:to) text(Myanmar) -text(चीनी:जनवादी:गणराज्य) text(was:a:neighboring:state:to) text(पाकिस्तान) -text(República:Popular:China) text(borders:with) text(मंगोलिया) -text(الصين) text(borders) text(هونغ:كونغ) -text(People's:Republic:of:China) text(is:butted:against) text(فيتنام) -text(Gabon) text(was:situated:in) text(وسط:إفريقيا) -text(加蓬) text(is:situated:in) text(अफ्रीका) -text(الغابون) text(was:butted:against) text(Guinea:Ecuatorial) -text(गबॉन) text(was:adjacent:to) text(剛果共和國) -text(Gabón) text(is:adjacent:to) text(喀麦隆) -text(Islas:ultramarinas:de:Estados:Unidos) text(is:located:in) text(أمريكا:الشمالية) -text(جزر:الولايات:المتحدة:الصغيرة:النائية) text(was:located:in) text(Amerika) -text(Andorra) text(can:be:found:in) text(दक्षिणी:यूरोप) -text(Andorra) text(was:positioned:in) text(यूरोप) -text(安道尔) text(neighbors) text(स्पेन) -text(Andorra) text(is:a:neighboring:country:of) text(فرنسا) -text(समोआ) text(is:positioned:in) text(玻里尼西亞) -text(ساموا) text(was:sited:in) text(Oceanía) -text(गाम्बिया) text(is:sited:in) text(पश्चिमी:अफ्रीका) -text(Gambia) text(was:localized:in) text(إفريقيا) -text(Gambia) text(was:a:neighboring:country:of) text(सेनेगल) -text(nan) text(is:localized:in) text(West:Asia) -text(Pedro:Miguel) text(was:present:in) text(एशिया) -text(nan) text(neighbors:with) text(जॉर्डन) -text(Pedro:Miguel) text(was:a:neighbor:of) text(मिस्र) -text(nan) text(is:a:neighbor:of) text(Israel) -text(रेयूनियों) text(is:present:in) text(Oost-Afrika) -text(Réunion) text(is:still:in) text(非洲) -text(Francia) text(was:still:in) text(Western:Europe) -text(法國) text(was:currently:in) text(أوروبا) -text(फ़्रान्स) text(is:a:neighboring:state:to) text(ألمانيا) -text(France) text(was:a:neighboring:state:to) text(लक्ज़मबर्ग) -text(Frankrijk) text(borders:with) text(इटली) -text(فرنسا) text(borders) text(अण्डोरा) -text(Francia) text(is:butted:against) text(Suiza) -text(法國) text(was:butted:against) text(Monaco) -text(फ़्रान्स) text(was:adjacent:to) text(比利時) -text(France) text(is:adjacent:to) text(España) -text(منغوليا) text(is:currently:in) text(Asia:Oriental) -text(Mongolia) text(is:placed:in) text(Asia) -text(蒙古國) text(neighbors) text(Volksrepubliek:China) -text(Mongolia) text(is:a:neighboring:country:of) text(Russia) -text(立陶宛) text(was:placed:in) text(أوروبا:الشمالية) -text(Lithuania) text(can:be:found:in) text(Europe) -text(Lituania) text(was:a:neighboring:country:of) text(Polen) -text(Litouwen) text(neighbors:with) text(Latvia) -text(लिथुआनिया) text(was:a:neighbor:of) text(Belarus) -text(ليتوانيا) text(is:a:neighbor:of) text(Rusland) -text(Islas:Caimán) text(was:situated:in) text(加勒比地区) -text(開曼群島) text(is:situated:in) text(América) -text(सेंट:लूसिया) text(is:located:in) text(Caraïben) -text(Saint:Lucia) text(was:located:in) text(أمريكتان) -text(कुराकाओ) text(can:be:found:in) text(कैरिबिया) -text(كوراساو) text(was:positioned:in) text(Americas) -text(Caribe) text(is:positioned:in) text(美洲) -text(Asia:del:Sur) text(was:sited:in) text(Azië) -text(África:Central) text(is:sited:in) text(Africa) -text(北歐) text(was:localized:in) text(Europa) -text(南欧) text(is:localized:in) text(欧洲) -text(غرب:آسيا) text(was:present:in) text(Asia) -text(दक्षिण:अमेरिका) text(is:present:in) text(महाअमेरिका) -text(بولنيزيا) text(is:still:in) text(大洋洲) -text(nan) text(was:still:in) text(Oceanië) -text(أوروبا:الغربية) text(was:currently:in) text(Europa) -text(पूर्वी:अफ्रीका) text(is:currently:in) text(Afrika) -text(西非) text(is:placed:in) text(África) -text(أوروبا:الشرقية) text(was:placed:in) text(यूरोप) -text(केंद्रीय:अमेरिका) text(can:be:found:in) text(Amerika) -text(América:del:Norte) text(was:situated:in) text(América) -text(Zuidoost-Azië) text(is:situated:in) text(亞洲) -text(Southern:Africa) text(is:located:in) text(अफ्रीका) -text(東亞) text(was:located:in) text(آسيا) -text(شمال:إفريقيا) text(can:be:found:in) text(إفريقيا) -text(मॅलानिशिया) text(was:positioned:in) text(Oceania) -text(Micronesia) text(is:positioned:in) text(ओशिआनिया) -text(मध्य:एशिया) text(was:sited:in) text(एशिया) -text(Central:Europe) text(is:sited:in) text(أوروبا) \ No newline at end of file diff --git a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_relation2text.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_relation2text.tsv index d6d5727..a33fd1c 100644 --- a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_relation2text.tsv +++ b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_relation2text.tsv @@ -1,944 +1,944 @@ palau text(is:positioned:in) micronesia palau text(was:sited:in) oceania maldives text(is:sited:in) southern_asia -maldives text(was:localized:in) asia -brunei text(is:localized:in) south-eastern_asia -brunei text(was:present:in) asia +maldives text(is:placed:in) asia +brunei text(was:placed:in) south-eastern_asia +brunei text(was:localized:in) asia brunei text(was:a:neighboring:country:of) malaysia -japan text(is:present:in) eastern_asia -japan text(is:still:in) asia -netherlands text(was:still:in) western_europe -netherlands text(neighbors:with) germany -netherlands text(was:a:neighbor:of) belgium -turkey text(was:currently:in) western_asia -turkey text(is:a:neighbor:of) armenia -turkey text(is:a:neighboring:state:to) azerbaijan -turkey text(was:a:neighboring:state:to) iran -turkey text(borders:with) greece -turkey text(borders) georgia -turkey text(is:butted:against) bulgaria -turkey text(was:butted:against) iraq -turkey text(was:adjacent:to) syria -angola text(is:currently:in) middle_africa -angola text(is:placed:in) africa -angola text(is:adjacent:to) dr_congo -angola text(neighbors) namibia -angola text(is:a:neighboring:country:of) zambia -angola text(was:a:neighboring:country:of) republic_of_the_congo -armenia text(was:placed:in) western_asia -armenia text(can:be:found:in) asia -armenia text(neighbors:with) georgia +japan text(is:localized:in) eastern_asia +japan text(was:present:in) asia +netherlands text(is:present:in) western_europe +netherlands text(was:adjacent:to) germany +netherlands text(is:adjacent:to) belgium +turkey text(is:still:in) western_asia +turkey text(was:a:neighbor:of) armenia +turkey text(is:a:neighbor:of) azerbaijan +turkey text(is:a:neighboring:state:to) iran +turkey text(was:a:neighboring:state:to) greece +turkey text(borders:with) georgia +turkey text(neighbors:withborders) bulgaria +turkey text(neighbors) iraq +turkey text(is:butted:against) syria +angola text(was:still:in) middle_africa +angola text(was:currently:in) africa +angola text(was:butted:against) dr_congo +angola text(is:a:neighboring:country:of) namibia +angola text(was:a:neighboring:country:of) zambia +angola text(was:adjacent:to) republic_of_the_congo +armenia text(is:currently:in) western_asia +armenia text(was:situated:in) asia +armenia text(is:adjacent:to) georgia armenia text(was:a:neighbor:of) azerbaijan armenia text(is:a:neighbor:of) iran armenia text(is:a:neighboring:state:to) turkey -antigua_and_barbuda text(was:situated:in) caribbean -antigua_and_barbuda text(is:situated:in) americas -swaziland text(is:located:in) southern_africa -swaziland text(was:located:in) africa +antigua_and_barbuda text(is:situated:in) caribbean +antigua_and_barbuda text(is:located:in) americas +swaziland text(was:located:in) southern_africa +swaziland text(could:be:found:in) africa swaziland text(was:a:neighboring:state:to) south_africa swaziland text(borders:with) mozambique wallis_and_futuna text(can:be:found:in) polynesia wallis_and_futuna text(was:positioned:in) oceania uruguay text(is:positioned:in) south_america uruguay text(was:sited:in) americas -uruguay text(borders) argentina -uruguay text(is:butted:against) brazil +uruguay text(neighbors:withborders) argentina +uruguay text(neighbors) brazil zambia text(is:sited:in) eastern_africa -zambia text(was:localized:in) africa -zambia text(was:butted:against) tanzania -zambia text(was:adjacent:to) mozambique -zambia text(is:adjacent:to) dr_congo -zambia text(neighbors) angola -zambia text(is:a:neighboring:country:of) botswana -zambia text(was:a:neighboring:country:of) zimbabwe -zambia text(neighbors:with) namibia -zambia text(was:a:neighbor:of) malawi -cyprus text(is:localized:in) eastern_europe -cyprus text(was:present:in) europe -cyprus text(is:a:neighbor:of) united_kingdom -ireland text(is:present:in) northern_europe -ireland text(is:still:in) europe -ireland text(is:a:neighboring:state:to) united_kingdom -burundi text(was:still:in) eastern_africa -burundi text(was:currently:in) africa -burundi text(was:a:neighboring:state:to) dr_congo -burundi text(borders:with) rwanda -burundi text(borders) tanzania -central_african_republic text(is:currently:in) middle_africa -central_african_republic text(is:placed:in) africa +zambia text(is:placed:in) africa +zambia text(is:butted:against) tanzania +zambia text(was:butted:against) mozambique +zambia text(is:a:neighboring:country:of) dr_congo +zambia text(was:a:neighboring:country:of) angola +zambia text(was:adjacent:to) botswana +zambia text(is:adjacent:to) zimbabwe +zambia text(was:a:neighbor:of) namibia +zambia text(is:a:neighbor:of) malawi +cyprus text(was:placed:in) eastern_europe +cyprus text(was:localized:in) europe +cyprus text(is:a:neighboring:state:to) united_kingdom +ireland text(is:localized:in) northern_europe +ireland text(was:present:in) europe +ireland text(was:a:neighboring:state:to) united_kingdom +burundi text(is:present:in) eastern_africa +burundi text(is:still:in) africa +burundi text(borders:with) dr_congo +burundi text(neighbors:withborders) rwanda +burundi text(neighbors) tanzania +central_african_republic text(was:still:in) middle_africa +central_african_republic text(was:currently:in) africa central_african_republic text(is:butted:against) chad central_african_republic text(was:butted:against) republic_of_the_congo -central_african_republic text(was:adjacent:to) dr_congo -central_african_republic text(is:adjacent:to) south_sudan -central_african_republic text(neighbors) cameroon -central_african_republic text(is:a:neighboring:country:of) sudan -tonga text(was:placed:in) polynesia -tonga text(can:be:found:in) oceania -ivory_coast text(was:situated:in) western_africa -ivory_coast text(is:situated:in) africa -ivory_coast text(was:a:neighboring:country:of) burkina_faso -ivory_coast text(neighbors:with) ghana -ivory_coast text(was:a:neighbor:of) liberia -ivory_coast text(is:a:neighbor:of) mali -ivory_coast text(is:a:neighboring:state:to) guinea -sierra_leone text(is:located:in) western_africa -sierra_leone text(was:a:neighboring:state:to) liberia -sierra_leone text(borders:with) guinea -mayotte text(was:located:in) eastern_africa +central_african_republic text(is:a:neighboring:country:of) dr_congo +central_african_republic text(was:a:neighboring:country:of) south_sudan +central_african_republic text(was:adjacent:to) cameroon +central_african_republic text(is:adjacent:to) sudan +tonga text(is:currently:in) polynesia +tonga text(was:situated:in) oceania +ivory_coast text(is:situated:in) western_africa +ivory_coast text(is:located:in) africa +ivory_coast text(was:a:neighbor:of) burkina_faso +ivory_coast text(is:a:neighbor:of) ghana +ivory_coast text(is:a:neighboring:state:to) liberia +ivory_coast text(was:a:neighboring:state:to) mali +ivory_coast text(borders:with) guinea +sierra_leone text(was:located:in) western_africa +sierra_leone text(neighbors:withborders) liberia +sierra_leone text(neighbors) guinea +mayotte text(could:be:found:in) eastern_africa mayotte text(can:be:found:in) africa poland text(was:positioned:in) eastern_europe -poland text(borders) germany -poland text(is:butted:against) ukraine -poland text(was:butted:against) slovakia -poland text(was:adjacent:to) belarus -poland text(is:adjacent:to) russia -poland text(neighbors) lithuania -poland text(is:a:neighboring:country:of) czechia +poland text(is:butted:against) germany +poland text(was:butted:against) ukraine +poland text(is:a:neighboring:country:of) slovakia +poland text(was:a:neighboring:country:of) belarus +poland text(was:adjacent:to) russia +poland text(is:adjacent:to) lithuania +poland text(was:a:neighbor:of) czechia kazakhstan text(is:positioned:in) central_asia kazakhstan text(was:sited:in) asia -kazakhstan text(was:a:neighboring:country:of) turkmenistan -kazakhstan text(neighbors:with) china -kazakhstan text(was:a:neighbor:of) kyrgyzstan -kazakhstan text(is:a:neighbor:of) uzbekistan -kazakhstan text(is:a:neighboring:state:to) russia +kazakhstan text(is:a:neighbor:of) turkmenistan +kazakhstan text(is:a:neighboring:state:to) china +kazakhstan text(was:a:neighboring:state:to) kyrgyzstan +kazakhstan text(borders:with) uzbekistan +kazakhstan text(neighbors:withborders) russia uzbekistan text(is:sited:in) central_asia -uzbekistan text(was:localized:in) asia -uzbekistan text(was:a:neighboring:state:to) afghanistan -uzbekistan text(borders:with) turkmenistan -uzbekistan text(borders) kazakhstan -uzbekistan text(is:butted:against) kyrgyzstan -uzbekistan text(was:butted:against) tajikistan -turks_and_caicos_islands text(is:localized:in) caribbean -turks_and_caicos_islands text(was:present:in) americas -new_caledonia text(is:present:in) melanesia -new_caledonia text(is:still:in) oceania -pakistan text(was:still:in) southern_asia +uzbekistan text(is:placed:in) asia +uzbekistan text(neighbors) afghanistan +uzbekistan text(is:butted:against) turkmenistan +uzbekistan text(was:butted:against) kazakhstan +uzbekistan text(is:a:neighboring:country:of) kyrgyzstan +uzbekistan text(was:a:neighboring:country:of) tajikistan +turks_and_caicos_islands text(was:placed:in) caribbean +turks_and_caicos_islands text(was:localized:in) americas +new_caledonia text(is:localized:in) melanesia +new_caledonia text(was:present:in) oceania +pakistan text(is:present:in) southern_asia pakistan text(was:adjacent:to) china pakistan text(is:adjacent:to) afghanistan -pakistan text(neighbors) iran -pakistan text(is:a:neighboring:country:of) india -argentina text(was:currently:in) south_america -argentina text(is:currently:in) americas -argentina text(was:a:neighboring:country:of) bolivia -argentina text(neighbors:with) chile -argentina text(was:a:neighbor:of) brazil -argentina text(is:a:neighbor:of) paraguay -argentina text(is:a:neighboring:state:to) uruguay -cuba text(is:placed:in) caribbean -cuba text(was:placed:in) americas -serbia text(can:be:found:in) southern_europe -serbia text(was:a:neighboring:state:to) macedonia -serbia text(borders:with) montenegro -serbia text(borders) kosovo -serbia text(is:butted:against) bosnia_and_herzegovina -serbia text(was:butted:against) croatia -serbia text(was:adjacent:to) hungary -serbia text(is:adjacent:to) bulgaria -serbia text(neighbors) romania -czechia text(was:situated:in) eastern_europe -czechia text(is:situated:in) europe -czechia text(is:a:neighboring:country:of) germany -czechia text(was:a:neighboring:country:of) austria -czechia text(neighbors:with) poland -czechia text(was:a:neighbor:of) slovakia -nicaragua text(is:located:in) central_america -nicaragua text(is:a:neighbor:of) honduras -nicaragua text(is:a:neighboring:state:to) costa_rica -vietnam text(was:located:in) south-eastern_asia +pakistan text(was:a:neighbor:of) iran +pakistan text(is:a:neighbor:of) india +argentina text(is:still:in) south_america +argentina text(was:still:in) americas +argentina text(is:a:neighboring:state:to) bolivia +argentina text(was:a:neighboring:state:to) chile +argentina text(borders:with) brazil +argentina text(neighbors:withborders) paraguay +argentina text(neighbors) uruguay +cuba text(was:currently:in) caribbean +cuba text(is:currently:in) americas +serbia text(was:situated:in) southern_europe +serbia text(is:butted:against) macedonia +serbia text(was:butted:against) montenegro +serbia text(is:a:neighboring:country:of) kosovo +serbia text(was:a:neighboring:country:of) bosnia_and_herzegovina +serbia text(was:adjacent:to) croatia +serbia text(is:adjacent:to) hungary +serbia text(was:a:neighbor:of) bulgaria +serbia text(is:a:neighbor:of) romania +czechia text(is:situated:in) eastern_europe +czechia text(is:located:in) europe +czechia text(is:a:neighboring:state:to) germany +czechia text(was:a:neighboring:state:to) austria +czechia text(borders:with) poland +czechia text(neighbors:withborders) slovakia +nicaragua text(was:located:in) central_america +nicaragua text(neighbors) honduras +nicaragua text(is:butted:against) costa_rica +vietnam text(could:be:found:in) south-eastern_asia vietnam text(can:be:found:in) asia -vietnam text(was:a:neighboring:state:to) cambodia -vietnam text(borders:with) laos -vietnam text(borders) china +vietnam text(was:butted:against) cambodia +vietnam text(is:a:neighboring:country:of) laos +vietnam text(was:a:neighboring:country:of) china niue text(was:positioned:in) polynesia niue text(is:positioned:in) oceania canada text(was:sited:in) northern_america canada text(is:sited:in) americas -canada text(is:butted:against) united_states -slovakia text(was:localized:in) central_europe -slovakia text(was:butted:against) ukraine -slovakia text(was:adjacent:to) poland -slovakia text(is:adjacent:to) austria -slovakia text(neighbors) hungary -slovakia text(is:a:neighboring:country:of) czechia -mozambique text(is:localized:in) eastern_africa -mozambique text(was:a:neighboring:country:of) tanzania -mozambique text(neighbors:with) swaziland -mozambique text(was:a:neighbor:of) zimbabwe -mozambique text(is:a:neighbor:of) zambia -mozambique text(is:a:neighboring:state:to) malawi -mozambique text(was:a:neighboring:state:to) south_africa -aruba text(was:present:in) caribbean -aruba text(is:present:in) americas -bolivia text(is:still:in) south_america -bolivia text(was:still:in) americas -bolivia text(borders:with) chile -bolivia text(borders) brazil -bolivia text(is:butted:against) paraguay -bolivia text(was:butted:against) argentina -bolivia text(was:adjacent:to) peru -colombia text(was:currently:in) south_america -colombia text(is:currently:in) americas -colombia text(is:adjacent:to) ecuador -colombia text(neighbors) brazil -colombia text(is:a:neighboring:country:of) panama -colombia text(was:a:neighboring:country:of) venezuela -colombia text(neighbors:with) peru -fiji text(is:placed:in) melanesia -fiji text(was:placed:in) oceania -republic_of_the_congo text(can:be:found:in) middle_africa -republic_of_the_congo text(was:a:neighbor:of) gabon -republic_of_the_congo text(is:a:neighbor:of) dr_congo -republic_of_the_congo text(is:a:neighboring:state:to) angola -republic_of_the_congo text(was:a:neighboring:state:to) cameroon -republic_of_the_congo text(borders:with) central_african_republic -saudi_arabia text(was:situated:in) western_asia -saudi_arabia text(borders) qatar -saudi_arabia text(is:butted:against) united_arab_emirates -saudi_arabia text(was:butted:against) jordan -saudi_arabia text(was:adjacent:to) yemen -saudi_arabia text(is:adjacent:to) oman -saudi_arabia text(neighbors) kuwait -saudi_arabia text(is:a:neighboring:country:of) iraq -el_salvador text(is:situated:in) central_america -el_salvador text(is:located:in) americas -el_salvador text(was:a:neighboring:country:of) guatemala -el_salvador text(neighbors:with) honduras -madagascar text(was:located:in) eastern_africa +canada text(was:adjacent:to) united_states +slovakia text(is:placed:in) central_europe +slovakia text(is:adjacent:to) ukraine +slovakia text(was:a:neighbor:of) poland +slovakia text(is:a:neighbor:of) austria +slovakia text(is:a:neighboring:state:to) hungary +slovakia text(was:a:neighboring:state:to) czechia +mozambique text(was:placed:in) eastern_africa +mozambique text(borders:with) tanzania +mozambique text(neighbors:withborders) swaziland +mozambique text(neighbors) zimbabwe +mozambique text(is:butted:against) zambia +mozambique text(was:butted:against) malawi +mozambique text(is:a:neighboring:country:of) south_africa +aruba text(was:localized:in) caribbean +aruba text(is:localized:in) americas +bolivia text(was:present:in) south_america +bolivia text(is:present:in) americas +bolivia text(was:a:neighboring:country:of) chile +bolivia text(was:adjacent:to) brazil +bolivia text(is:adjacent:to) paraguay +bolivia text(was:a:neighbor:of) argentina +bolivia text(is:a:neighbor:of) peru +colombia text(is:still:in) south_america +colombia text(was:still:in) americas +colombia text(is:a:neighboring:state:to) ecuador +colombia text(was:a:neighboring:state:to) brazil +colombia text(borders:with) panama +colombia text(neighbors:withborders) venezuela +colombia text(neighbors) peru +fiji text(was:currently:in) melanesia +fiji text(is:currently:in) oceania +republic_of_the_congo text(was:situated:in) middle_africa +republic_of_the_congo text(is:butted:against) gabon +republic_of_the_congo text(was:butted:against) dr_congo +republic_of_the_congo text(is:a:neighboring:country:of) angola +republic_of_the_congo text(was:a:neighboring:country:of) cameroon +republic_of_the_congo text(was:adjacent:to) central_african_republic +saudi_arabia text(is:situated:in) western_asia +saudi_arabia text(is:adjacent:to) qatar +saudi_arabia text(was:a:neighbor:of) united_arab_emirates +saudi_arabia text(is:a:neighbor:of) jordan +saudi_arabia text(is:a:neighboring:state:to) yemen +saudi_arabia text(was:a:neighboring:state:to) oman +saudi_arabia text(borders:with) kuwait +saudi_arabia text(neighbors:withborders) iraq +el_salvador text(is:located:in) central_america +el_salvador text(was:located:in) americas +el_salvador text(neighbors) guatemala +el_salvador text(is:butted:against) honduras +madagascar text(could:be:found:in) eastern_africa madagascar text(can:be:found:in) africa australia text(was:positioned:in) australia_and_new_zealand australia text(is:positioned:in) oceania namibia text(was:sited:in) southern_africa namibia text(is:sited:in) africa -namibia text(was:a:neighbor:of) zambia -namibia text(is:a:neighbor:of) angola -namibia text(is:a:neighboring:state:to) south_africa -namibia text(was:a:neighboring:state:to) botswana -tuvalu text(was:localized:in) polynesia -tuvalu text(is:localized:in) oceania -svalbard_and_jan_mayen text(was:present:in) northern_europe -svalbard_and_jan_mayen text(is:present:in) europe -isle_of_man text(is:still:in) northern_europe -isle_of_man text(was:still:in) europe -guyana text(was:currently:in) south_america -guyana text(borders:with) brazil -guyana text(borders) suriname -guyana text(is:butted:against) venezuela -vatican_city text(is:currently:in) southern_europe -vatican_city text(is:placed:in) europe -vatican_city text(was:butted:against) italy -british_indian_ocean_territory text(was:placed:in) eastern_africa -british_indian_ocean_territory text(can:be:found:in) africa -nigeria text(was:situated:in) western_africa -nigeria text(is:situated:in) africa -nigeria text(was:adjacent:to) chad -nigeria text(is:adjacent:to) niger -nigeria text(neighbors) cameroon -nigeria text(is:a:neighboring:country:of) benin -germany text(is:located:in) western_europe -germany text(was:a:neighboring:country:of) denmark -germany text(neighbors:with) netherlands -germany text(was:a:neighbor:of) poland -germany text(is:a:neighbor:of) luxembourg -germany text(is:a:neighboring:state:to) belgium -germany text(was:a:neighboring:state:to) switzerland -germany text(borders:with) austria -germany text(borders) france -germany text(is:butted:against) czechia -burkina_faso text(was:located:in) western_africa -burkina_faso text(was:butted:against) togo -burkina_faso text(was:adjacent:to) benin -burkina_faso text(is:adjacent:to) niger +namibia text(was:butted:against) zambia +namibia text(is:a:neighboring:country:of) angola +namibia text(was:a:neighboring:country:of) south_africa +namibia text(was:adjacent:to) botswana +tuvalu text(is:placed:in) polynesia +tuvalu text(was:placed:in) oceania +svalbard_and_jan_mayen text(was:localized:in) northern_europe +svalbard_and_jan_mayen text(is:localized:in) europe +isle_of_man text(was:present:in) northern_europe +isle_of_man text(is:present:in) europe +guyana text(is:still:in) south_america +guyana text(is:adjacent:to) brazil +guyana text(was:a:neighbor:of) suriname +guyana text(is:a:neighbor:of) venezuela +vatican_city text(was:still:in) southern_europe +vatican_city text(was:currently:in) europe +vatican_city text(is:a:neighboring:state:to) italy +british_indian_ocean_territory text(is:currently:in) eastern_africa +british_indian_ocean_territory text(was:situated:in) africa +nigeria text(is:situated:in) western_africa +nigeria text(is:located:in) africa +nigeria text(was:a:neighboring:state:to) chad +nigeria text(borders:with) niger +nigeria text(neighbors:withborders) cameroon +nigeria text(neighbors) benin +germany text(was:located:in) western_europe +germany text(is:butted:against) denmark +germany text(was:butted:against) netherlands +germany text(is:a:neighboring:country:of) poland +germany text(was:a:neighboring:country:of) luxembourg +germany text(was:adjacent:to) belgium +germany text(is:adjacent:to) switzerland +germany text(was:a:neighbor:of) austria +germany text(is:a:neighbor:of) france +germany text(is:a:neighboring:state:to) czechia +burkina_faso text(could:be:found:in) western_africa +burkina_faso text(was:a:neighboring:state:to) togo +burkina_faso text(borders:with) benin +burkina_faso text(neighbors:withborders) niger burkina_faso text(neighbors) ghana -burkina_faso text(is:a:neighboring:country:of) mali -burkina_faso text(was:a:neighboring:country:of) ivory_coast +burkina_faso text(is:butted:against) mali +burkina_faso text(was:butted:against) ivory_coast tanzania text(can:be:found:in) eastern_africa -tanzania text(neighbors:with) uganda -tanzania text(was:a:neighbor:of) mozambique -tanzania text(is:a:neighbor:of) dr_congo -tanzania text(is:a:neighboring:state:to) kenya -tanzania text(was:a:neighboring:state:to) rwanda -tanzania text(borders:with) zambia -tanzania text(borders) malawi -tanzania text(is:butted:against) burundi +tanzania text(is:a:neighboring:country:of) uganda +tanzania text(was:a:neighboring:country:of) mozambique +tanzania text(was:adjacent:to) dr_congo +tanzania text(is:adjacent:to) kenya +tanzania text(was:a:neighbor:of) rwanda +tanzania text(is:a:neighbor:of) zambia +tanzania text(is:a:neighboring:state:to) malawi +tanzania text(was:a:neighboring:state:to) burundi northern_mariana_islands text(was:positioned:in) micronesia northern_mariana_islands text(is:positioned:in) oceania belize text(was:sited:in) central_america belize text(is:sited:in) americas -belize text(was:butted:against) guatemala -belize text(was:adjacent:to) mexico -norway text(was:localized:in) northern_europe -norway text(is:adjacent:to) sweden -norway text(neighbors) finland -norway text(is:a:neighboring:country:of) russia -cocos_keeling_islands text(is:localized:in) australia_and_new_zealand -cocos_keeling_islands text(was:present:in) oceania -laos text(is:present:in) south-eastern_asia -laos text(is:still:in) asia -laos text(was:a:neighboring:country:of) china -laos text(neighbors:with) cambodia -laos text(was:a:neighbor:of) myanmar -laos text(is:a:neighbor:of) vietnam -laos text(is:a:neighboring:state:to) thailand -western_sahara text(was:still:in) northern_africa -western_sahara text(was:currently:in) africa -western_sahara text(was:a:neighboring:state:to) algeria -western_sahara text(borders:with) mauritania -western_sahara text(borders) morocco -suriname text(is:currently:in) south_america -suriname text(is:placed:in) americas -suriname text(is:butted:against) brazil -suriname text(was:butted:against) french_guiana -suriname text(was:adjacent:to) guyana -christmas_island text(was:placed:in) australia_and_new_zealand -christmas_island text(can:be:found:in) oceania -são_tomé_and_príncipe text(was:situated:in) middle_africa -são_tomé_and_príncipe text(is:situated:in) africa -egypt text(is:located:in) northern_africa -egypt text(is:adjacent:to) libya -egypt text(neighbors) israel +belize text(borders:with) guatemala +belize text(neighbors:withborders) mexico +norway text(is:placed:in) northern_europe +norway text(neighbors) sweden +norway text(is:butted:against) finland +norway text(was:butted:against) russia +cocos_keeling_islands text(was:placed:in) australia_and_new_zealand +cocos_keeling_islands text(was:localized:in) oceania +laos text(is:localized:in) south-eastern_asia +laos text(was:present:in) asia +laos text(is:a:neighboring:country:of) china +laos text(was:a:neighboring:country:of) cambodia +laos text(was:adjacent:to) myanmar +laos text(is:adjacent:to) vietnam +laos text(was:a:neighbor:of) thailand +western_sahara text(is:present:in) northern_africa +western_sahara text(is:still:in) africa +western_sahara text(is:a:neighbor:of) algeria +western_sahara text(is:a:neighboring:state:to) mauritania +western_sahara text(was:a:neighboring:state:to) morocco +suriname text(was:still:in) south_america +suriname text(was:currently:in) americas +suriname text(borders:with) brazil +suriname text(neighbors:withborders) french_guiana +suriname text(neighbors) guyana +christmas_island text(is:currently:in) australia_and_new_zealand +christmas_island text(was:situated:in) oceania +são_tomé_and_príncipe text(is:situated:in) middle_africa +são_tomé_and_príncipe text(is:located:in) africa +egypt text(was:located:in) northern_africa +egypt text(is:butted:against) libya +egypt text(was:butted:against) israel egypt text(is:a:neighboring:country:of) sudan -bulgaria text(was:located:in) eastern_europe +bulgaria text(could:be:found:in) eastern_europe bulgaria text(was:a:neighboring:country:of) macedonia -bulgaria text(neighbors:with) turkey -bulgaria text(was:a:neighbor:of) greece -bulgaria text(is:a:neighbor:of) serbia -bulgaria text(is:a:neighboring:state:to) romania +bulgaria text(was:adjacent:to) turkey +bulgaria text(is:adjacent:to) greece +bulgaria text(was:a:neighbor:of) serbia +bulgaria text(is:a:neighbor:of) romania guinea text(can:be:found:in) western_africa guinea text(was:positioned:in) africa -guinea text(was:a:neighboring:state:to) guinea-bissau -guinea text(borders:with) sierra_leone -guinea text(borders) mali -guinea text(is:butted:against) liberia -guinea text(was:butted:against) senegal -guinea text(was:adjacent:to) ivory_coast +guinea text(is:a:neighboring:state:to) guinea-bissau +guinea text(was:a:neighboring:state:to) sierra_leone +guinea text(borders:with) mali +guinea text(neighbors:withborders) liberia +guinea text(neighbors) senegal +guinea text(is:butted:against) ivory_coast spain text(is:positioned:in) southern_europe -spain text(is:adjacent:to) morocco -spain text(neighbors) gibraltar -spain text(is:a:neighboring:country:of) andorra -spain text(was:a:neighboring:country:of) france -spain text(neighbors:with) portugal +spain text(was:butted:against) morocco +spain text(is:a:neighboring:country:of) gibraltar +spain text(was:a:neighboring:country:of) andorra +spain text(was:adjacent:to) france +spain text(is:adjacent:to) portugal costa_rica text(was:sited:in) central_america costa_rica text(is:sited:in) americas costa_rica text(was:a:neighbor:of) panama costa_rica text(is:a:neighbor:of) nicaragua -malta text(was:localized:in) southern_europe -malta text(is:localized:in) europe -portugal text(was:present:in) southern_europe -portugal text(is:present:in) europe +malta text(is:placed:in) southern_europe +malta text(was:placed:in) europe +portugal text(was:localized:in) southern_europe +portugal text(is:localized:in) europe portugal text(is:a:neighboring:state:to) spain -romania text(is:still:in) eastern_europe -romania text(was:still:in) europe +romania text(was:present:in) eastern_europe +romania text(is:present:in) europe romania text(was:a:neighboring:state:to) ukraine romania text(borders:with) hungary -romania text(borders) moldova -romania text(is:butted:against) bulgaria -romania text(was:butted:against) serbia -san_marino text(was:currently:in) southern_europe -san_marino text(is:currently:in) europe -san_marino text(was:adjacent:to) italy -mauritania text(is:placed:in) western_africa -mauritania text(was:placed:in) africa -mauritania text(is:adjacent:to) algeria -mauritania text(neighbors) mali -mauritania text(is:a:neighboring:country:of) western_sahara -mauritania text(was:a:neighboring:country:of) senegal -trinidad_and_tobago text(can:be:found:in) caribbean -trinidad_and_tobago text(was:situated:in) americas -bahrain text(is:situated:in) western_asia -bahrain text(is:located:in) asia -myanmar text(was:located:in) south-eastern_asia -myanmar text(neighbors:with) india -myanmar text(was:a:neighbor:of) bangladesh -myanmar text(is:a:neighbor:of) china -myanmar text(is:a:neighboring:state:to) laos -myanmar text(was:a:neighboring:state:to) thailand +romania text(neighbors:withborders) moldova +romania text(neighbors) bulgaria +romania text(is:butted:against) serbia +san_marino text(is:still:in) southern_europe +san_marino text(was:still:in) europe +san_marino text(was:butted:against) italy +mauritania text(was:currently:in) western_africa +mauritania text(is:currently:in) africa +mauritania text(is:a:neighboring:country:of) algeria +mauritania text(was:a:neighboring:country:of) mali +mauritania text(was:adjacent:to) western_sahara +mauritania text(is:adjacent:to) senegal +trinidad_and_tobago text(was:situated:in) caribbean +trinidad_and_tobago text(is:situated:in) americas +bahrain text(is:located:in) western_asia +bahrain text(was:located:in) asia +myanmar text(could:be:found:in) south-eastern_asia +myanmar text(was:a:neighbor:of) india +myanmar text(is:a:neighbor:of) bangladesh +myanmar text(is:a:neighboring:state:to) china +myanmar text(was:a:neighboring:state:to) laos +myanmar text(borders:with) thailand iraq text(can:be:found:in) western_asia -iraq text(borders:with) turkey -iraq text(borders) saudi_arabia +iraq text(neighbors:withborders) turkey +iraq text(neighbors) saudi_arabia iraq text(is:butted:against) iran iraq text(was:butted:against) jordan -iraq text(was:adjacent:to) kuwait -iraq text(is:adjacent:to) syria +iraq text(is:a:neighboring:country:of) kuwait +iraq text(was:a:neighboring:country:of) syria south_georgia text(was:positioned:in) south_america south_georgia text(is:positioned:in) americas iceland text(was:sited:in) northern_europe iceland text(is:sited:in) europe -dr_congo text(was:localized:in) middle_africa -dr_congo text(is:localized:in) africa -dr_congo text(neighbors) uganda -dr_congo text(is:a:neighboring:country:of) tanzania -dr_congo text(was:a:neighboring:country:of) republic_of_the_congo -dr_congo text(neighbors:with) central_african_republic -dr_congo text(was:a:neighbor:of) angola -dr_congo text(is:a:neighbor:of) rwanda -dr_congo text(is:a:neighboring:state:to) south_sudan -dr_congo text(was:a:neighboring:state:to) zambia -dr_congo text(borders:with) burundi -seychelles text(was:present:in) eastern_africa -seychelles text(is:present:in) africa -kyrgyzstan text(is:still:in) central_asia -kyrgyzstan text(borders) china -kyrgyzstan text(is:butted:against) kazakhstan -kyrgyzstan text(was:butted:against) tajikistan -kyrgyzstan text(was:adjacent:to) uzbekistan -botswana text(was:still:in) southern_africa -botswana text(was:currently:in) africa -botswana text(is:adjacent:to) zimbabwe -botswana text(neighbors) namibia -botswana text(is:a:neighboring:country:of) zambia -botswana text(was:a:neighboring:country:of) south_africa -faroe_islands text(is:currently:in) northern_europe -faroe_islands text(is:placed:in) europe -jamaica text(was:placed:in) caribbean -jamaica text(can:be:found:in) americas -american_samoa text(was:situated:in) polynesia -american_samoa text(is:situated:in) oceania -lesotho text(is:located:in) southern_africa -lesotho text(was:located:in) africa -lesotho text(neighbors:with) south_africa +dr_congo text(is:placed:in) middle_africa +dr_congo text(was:placed:in) africa +dr_congo text(was:adjacent:to) uganda +dr_congo text(is:adjacent:to) tanzania +dr_congo text(was:a:neighbor:of) republic_of_the_congo +dr_congo text(is:a:neighbor:of) central_african_republic +dr_congo text(is:a:neighboring:state:to) angola +dr_congo text(was:a:neighboring:state:to) rwanda +dr_congo text(borders:with) south_sudan +dr_congo text(neighbors:withborders) zambia +dr_congo text(neighbors) burundi +seychelles text(was:localized:in) eastern_africa +seychelles text(is:localized:in) africa +kyrgyzstan text(was:present:in) central_asia +kyrgyzstan text(is:butted:against) china +kyrgyzstan text(was:butted:against) kazakhstan +kyrgyzstan text(is:a:neighboring:country:of) tajikistan +kyrgyzstan text(was:a:neighboring:country:of) uzbekistan +botswana text(is:present:in) southern_africa +botswana text(is:still:in) africa +botswana text(was:adjacent:to) zimbabwe +botswana text(is:adjacent:to) namibia +botswana text(was:a:neighbor:of) zambia +botswana text(is:a:neighbor:of) south_africa +faroe_islands text(was:still:in) northern_europe +faroe_islands text(was:currently:in) europe +jamaica text(is:currently:in) caribbean +jamaica text(was:situated:in) americas +american_samoa text(is:situated:in) polynesia +american_samoa text(is:located:in) oceania +lesotho text(was:located:in) southern_africa +lesotho text(could:be:found:in) africa +lesotho text(is:a:neighboring:state:to) south_africa sri_lanka text(can:be:found:in) southern_asia -sri_lanka text(was:a:neighbor:of) india +sri_lanka text(was:a:neighboring:state:to) india belgium text(was:positioned:in) western_europe belgium text(is:positioned:in) europe -belgium text(is:a:neighbor:of) germany -belgium text(is:a:neighboring:state:to) luxembourg -belgium text(was:a:neighboring:state:to) france -belgium text(borders:with) netherlands +belgium text(borders:with) germany +belgium text(neighbors:withborders) luxembourg +belgium text(neighbors) france +belgium text(is:butted:against) netherlands qatar text(was:sited:in) western_asia qatar text(is:sited:in) asia -qatar text(borders) saudi_arabia -solomon_islands text(was:localized:in) melanesia -solomon_islands text(is:localized:in) oceania -syria text(was:present:in) western_asia -syria text(is:present:in) asia -syria text(is:butted:against) israel -syria text(was:butted:against) turkey +qatar text(was:butted:against) saudi_arabia +solomon_islands text(is:placed:in) melanesia +solomon_islands text(was:placed:in) oceania +syria text(was:localized:in) western_asia +syria text(is:localized:in) asia +syria text(is:a:neighboring:country:of) israel +syria text(was:a:neighboring:country:of) turkey syria text(was:adjacent:to) jordan syria text(is:adjacent:to) lebanon -syria text(neighbors) iraq -india text(is:still:in) southern_asia -india text(was:still:in) asia -india text(is:a:neighboring:country:of) afghanistan -india text(was:a:neighboring:country:of) bhutan -india text(neighbors:with) bangladesh -india text(was:a:neighbor:of) china -india text(is:a:neighbor:of) nepal -india text(is:a:neighboring:state:to) myanmar -india text(was:a:neighboring:state:to) pakistan -india text(borders:with) sri_lanka -morocco text(was:currently:in) northern_africa -morocco text(borders) algeria -morocco text(is:butted:against) spain -morocco text(was:butted:against) western_sahara -kenya text(is:currently:in) eastern_africa -kenya text(is:placed:in) africa -kenya text(was:adjacent:to) uganda -kenya text(is:adjacent:to) tanzania -kenya text(neighbors) somalia -kenya text(is:a:neighboring:country:of) south_sudan -kenya text(was:a:neighboring:country:of) ethiopia -south_sudan text(was:placed:in) middle_africa -south_sudan text(can:be:found:in) africa -south_sudan text(neighbors:with) uganda -south_sudan text(was:a:neighbor:of) dr_congo -south_sudan text(is:a:neighbor:of) kenya -south_sudan text(is:a:neighboring:state:to) central_african_republic -south_sudan text(was:a:neighboring:state:to) sudan -south_sudan text(borders:with) ethiopia -ghana text(was:situated:in) western_africa -ghana text(borders) burkina_faso -ghana text(is:butted:against) ivory_coast -ghana text(was:butted:against) togo -tajikistan text(is:situated:in) central_asia -tajikistan text(is:located:in) asia -tajikistan text(was:adjacent:to) china -tajikistan text(is:adjacent:to) kyrgyzstan -tajikistan text(neighbors) afghanistan -tajikistan text(is:a:neighboring:country:of) uzbekistan -marshall_islands text(was:located:in) micronesia +syria text(was:a:neighbor:of) iraq +india text(was:present:in) southern_asia +india text(is:present:in) asia +india text(is:a:neighbor:of) afghanistan +india text(is:a:neighboring:state:to) bhutan +india text(was:a:neighboring:state:to) bangladesh +india text(borders:with) china +india text(neighbors:withborders) nepal +india text(neighbors) myanmar +india text(is:butted:against) pakistan +india text(was:butted:against) sri_lanka +morocco text(is:still:in) northern_africa +morocco text(is:a:neighboring:country:of) algeria +morocco text(was:a:neighboring:country:of) spain +morocco text(was:adjacent:to) western_sahara +kenya text(was:still:in) eastern_africa +kenya text(was:currently:in) africa +kenya text(is:adjacent:to) uganda +kenya text(was:a:neighbor:of) tanzania +kenya text(is:a:neighbor:of) somalia +kenya text(is:a:neighboring:state:to) south_sudan +kenya text(was:a:neighboring:state:to) ethiopia +south_sudan text(is:currently:in) middle_africa +south_sudan text(was:situated:in) africa +south_sudan text(borders:with) uganda +south_sudan text(neighbors:withborders) dr_congo +south_sudan text(neighbors) kenya +south_sudan text(is:butted:against) central_african_republic +south_sudan text(was:butted:against) sudan +south_sudan text(is:a:neighboring:country:of) ethiopia +ghana text(is:situated:in) western_africa +ghana text(was:a:neighboring:country:of) burkina_faso +ghana text(was:adjacent:to) ivory_coast +ghana text(is:adjacent:to) togo +tajikistan text(is:located:in) central_asia +tajikistan text(was:located:in) asia +tajikistan text(was:a:neighbor:of) china +tajikistan text(is:a:neighbor:of) kyrgyzstan +tajikistan text(is:a:neighboring:state:to) afghanistan +tajikistan text(was:a:neighboring:state:to) uzbekistan +marshall_islands text(could:be:found:in) micronesia marshall_islands text(can:be:found:in) oceania cameroon text(was:positioned:in) middle_africa cameroon text(is:positioned:in) africa -cameroon text(was:a:neighboring:country:of) chad -cameroon text(neighbors:with) republic_of_the_congo -cameroon text(was:a:neighbor:of) gabon -cameroon text(is:a:neighbor:of) equatorial_guinea -cameroon text(is:a:neighboring:state:to) central_african_republic -cameroon text(was:a:neighboring:state:to) nigeria +cameroon text(borders:with) chad +cameroon text(neighbors:withborders) republic_of_the_congo +cameroon text(neighbors) gabon +cameroon text(is:butted:against) equatorial_guinea +cameroon text(was:butted:against) central_african_republic +cameroon text(is:a:neighboring:country:of) nigeria nauru text(was:sited:in) micronesia nauru text(is:sited:in) oceania -thailand text(was:localized:in) south-eastern_asia -thailand text(borders:with) cambodia -thailand text(borders) myanmar -thailand text(is:butted:against) laos -thailand text(was:butted:against) malaysia -sudan text(is:localized:in) northern_africa -sudan text(was:adjacent:to) chad -sudan text(is:adjacent:to) libya -sudan text(neighbors) south_sudan -sudan text(is:a:neighboring:country:of) eritrea -sudan text(was:a:neighboring:country:of) central_african_republic -sudan text(neighbors:with) egypt -sudan text(was:a:neighbor:of) ethiopia -chad text(was:present:in) middle_africa -chad text(is:present:in) africa -chad text(is:a:neighbor:of) libya -chad text(is:a:neighboring:state:to) niger -chad text(was:a:neighboring:state:to) south_sudan -chad text(borders:with) cameroon -chad text(borders) central_african_republic -chad text(is:butted:against) nigeria -vanuatu text(is:still:in) melanesia -vanuatu text(was:still:in) oceania -cape_verde text(was:currently:in) western_africa -cape_verde text(is:currently:in) africa -falkland_islands text(is:placed:in) south_america -falkland_islands text(was:placed:in) americas -liberia text(can:be:found:in) western_africa -liberia text(was:situated:in) africa -liberia text(was:butted:against) ivory_coast -liberia text(was:adjacent:to) sierra_leone -liberia text(is:adjacent:to) guinea -cambodia text(is:situated:in) south-eastern_asia -cambodia text(is:located:in) asia -cambodia text(neighbors) vietnam -cambodia text(is:a:neighboring:country:of) thailand -cambodia text(was:a:neighboring:country:of) laos -zimbabwe text(was:located:in) eastern_africa -zimbabwe text(neighbors:with) zambia -zimbabwe text(was:a:neighbor:of) south_africa -zimbabwe text(is:a:neighbor:of) botswana -zimbabwe text(is:a:neighboring:state:to) mozambique +thailand text(is:placed:in) south-eastern_asia +thailand text(was:a:neighboring:country:of) cambodia +thailand text(was:adjacent:to) myanmar +thailand text(is:adjacent:to) laos +thailand text(was:a:neighbor:of) malaysia +sudan text(was:placed:in) northern_africa +sudan text(is:a:neighbor:of) chad +sudan text(is:a:neighboring:state:to) libya +sudan text(was:a:neighboring:state:to) south_sudan +sudan text(borders:with) eritrea +sudan text(neighbors:withborders) central_african_republic +sudan text(neighbors) egypt +sudan text(is:butted:against) ethiopia +chad text(was:localized:in) middle_africa +chad text(is:localized:in) africa +chad text(was:butted:against) libya +chad text(is:a:neighboring:country:of) niger +chad text(was:a:neighboring:country:of) south_sudan +chad text(was:adjacent:to) cameroon +chad text(is:adjacent:to) central_african_republic +chad text(was:a:neighbor:of) nigeria +vanuatu text(was:present:in) melanesia +vanuatu text(is:present:in) oceania +cape_verde text(is:still:in) western_africa +cape_verde text(was:still:in) africa +falkland_islands text(was:currently:in) south_america +falkland_islands text(is:currently:in) americas +liberia text(was:situated:in) western_africa +liberia text(is:situated:in) africa +liberia text(is:a:neighbor:of) ivory_coast +liberia text(is:a:neighboring:state:to) sierra_leone +liberia text(was:a:neighboring:state:to) guinea +cambodia text(is:located:in) south-eastern_asia +cambodia text(was:located:in) asia +cambodia text(borders:with) vietnam +cambodia text(neighbors:withborders) thailand +cambodia text(neighbors) laos +zimbabwe text(could:be:found:in) eastern_africa +zimbabwe text(is:butted:against) zambia +zimbabwe text(was:butted:against) south_africa +zimbabwe text(is:a:neighboring:country:of) botswana +zimbabwe text(was:a:neighboring:country:of) mozambique comoros text(can:be:found:in) eastern_africa comoros text(was:positioned:in) africa guam text(is:positioned:in) micronesia guam text(was:sited:in) oceania bahamas text(is:sited:in) caribbean -bahamas text(was:localized:in) americas -lebanon text(is:localized:in) western_asia -lebanon text(was:present:in) asia -lebanon text(was:a:neighboring:state:to) israel -lebanon text(borders:with) syria -sint_maarten text(is:present:in) caribbean -sint_maarten text(is:still:in) americas -sint_maarten text(borders) saint_martin -ethiopia text(was:still:in) eastern_africa -ethiopia text(was:currently:in) africa -ethiopia text(is:butted:against) somalia -ethiopia text(was:butted:against) kenya -ethiopia text(was:adjacent:to) eritrea -ethiopia text(is:adjacent:to) south_sudan -ethiopia text(neighbors) djibouti -ethiopia text(is:a:neighboring:country:of) sudan -united_states_virgin_islands text(is:currently:in) caribbean -united_states_virgin_islands text(is:placed:in) americas -guinea-bissau text(was:placed:in) western_africa -guinea-bissau text(can:be:found:in) africa -guinea-bissau text(was:a:neighboring:country:of) guinea -guinea-bissau text(neighbors:with) senegal -libya text(was:situated:in) northern_africa -libya text(is:situated:in) africa -libya text(was:a:neighbor:of) chad -libya text(is:a:neighbor:of) tunisia -libya text(is:a:neighboring:state:to) niger -libya text(was:a:neighboring:state:to) algeria -libya text(borders:with) egypt -libya text(borders) sudan -bhutan text(is:located:in) southern_asia -bhutan text(was:located:in) asia -bhutan text(is:butted:against) china -bhutan text(was:butted:against) india +bahamas text(is:placed:in) americas +lebanon text(was:placed:in) western_asia +lebanon text(was:localized:in) asia +lebanon text(was:adjacent:to) israel +lebanon text(is:adjacent:to) syria +sint_maarten text(is:localized:in) caribbean +sint_maarten text(was:present:in) americas +sint_maarten text(was:a:neighbor:of) saint_martin +ethiopia text(is:present:in) eastern_africa +ethiopia text(is:still:in) africa +ethiopia text(is:a:neighbor:of) somalia +ethiopia text(is:a:neighboring:state:to) kenya +ethiopia text(was:a:neighboring:state:to) eritrea +ethiopia text(borders:with) south_sudan +ethiopia text(neighbors:withborders) djibouti +ethiopia text(neighbors) sudan +united_states_virgin_islands text(was:still:in) caribbean +united_states_virgin_islands text(was:currently:in) americas +guinea-bissau text(is:currently:in) western_africa +guinea-bissau text(was:situated:in) africa +guinea-bissau text(is:butted:against) guinea +guinea-bissau text(was:butted:against) senegal +libya text(is:situated:in) northern_africa +libya text(is:located:in) africa +libya text(is:a:neighboring:country:of) chad +libya text(was:a:neighboring:country:of) tunisia +libya text(was:adjacent:to) niger +libya text(is:adjacent:to) algeria +libya text(was:a:neighbor:of) egypt +libya text(is:a:neighbor:of) sudan +bhutan text(was:located:in) southern_asia +bhutan text(could:be:found:in) asia +bhutan text(is:a:neighboring:state:to) china +bhutan text(was:a:neighboring:state:to) india macau text(can:be:found:in) eastern_asia macau text(was:positioned:in) asia -macau text(was:adjacent:to) china +macau text(borders:with) china french_polynesia text(is:positioned:in) polynesia french_polynesia text(was:sited:in) oceania somalia text(is:sited:in) eastern_africa -somalia text(was:localized:in) africa -somalia text(is:adjacent:to) djibouti +somalia text(is:placed:in) africa +somalia text(neighbors:withborders) djibouti somalia text(neighbors) kenya -somalia text(is:a:neighboring:country:of) ethiopia -saint_barthélemy text(is:localized:in) caribbean -saint_barthélemy text(was:present:in) americas -russia text(is:present:in) eastern_europe -russia text(is:still:in) europe -russia text(was:a:neighboring:country:of) ukraine -russia text(neighbors:with) belarus -russia text(was:a:neighbor:of) china -russia text(is:a:neighbor:of) kazakhstan -russia text(is:a:neighboring:state:to) norway -russia text(was:a:neighboring:state:to) poland -russia text(borders:with) azerbaijan -russia text(borders) lithuania -russia text(is:butted:against) estonia -russia text(was:butted:against) north_korea -russia text(was:adjacent:to) finland -russia text(is:adjacent:to) mongolia -russia text(neighbors) latvia -russia text(is:a:neighboring:country:of) georgia -new_zealand text(was:still:in) australia_and_new_zealand -new_zealand text(was:currently:in) oceania -panama text(is:currently:in) central_america -panama text(is:placed:in) americas -panama text(was:a:neighboring:country:of) costa_rica -panama text(neighbors:with) colombia -papua_new_guinea text(was:placed:in) melanesia -papua_new_guinea text(can:be:found:in) oceania -papua_new_guinea text(was:a:neighbor:of) indonesia -north_korea text(was:situated:in) eastern_asia -north_korea text(is:a:neighbor:of) china -north_korea text(is:a:neighboring:state:to) south_korea -north_korea text(was:a:neighboring:state:to) russia -latvia text(is:situated:in) northern_europe -latvia text(is:located:in) europe -latvia text(borders:with) lithuania -latvia text(borders) belarus -latvia text(is:butted:against) russia -latvia text(was:butted:against) estonia -oman text(was:located:in) western_asia +somalia text(is:butted:against) ethiopia +saint_barthélemy text(was:placed:in) caribbean +saint_barthélemy text(was:localized:in) americas +russia text(is:localized:in) eastern_europe +russia text(was:present:in) europe +russia text(was:butted:against) ukraine +russia text(is:a:neighboring:country:of) belarus +russia text(was:a:neighboring:country:of) china +russia text(was:adjacent:to) kazakhstan +russia text(is:adjacent:to) norway +russia text(was:a:neighbor:of) poland +russia text(is:a:neighbor:of) azerbaijan +russia text(is:a:neighboring:state:to) lithuania +russia text(was:a:neighboring:state:to) estonia +russia text(borders:with) north_korea +russia text(neighbors:withborders) finland +russia text(neighbors) mongolia +russia text(is:butted:against) latvia +russia text(was:butted:against) georgia +new_zealand text(is:present:in) australia_and_new_zealand +new_zealand text(is:still:in) oceania +panama text(was:still:in) central_america +panama text(was:currently:in) americas +panama text(is:a:neighboring:country:of) costa_rica +panama text(was:a:neighboring:country:of) colombia +papua_new_guinea text(is:currently:in) melanesia +papua_new_guinea text(was:situated:in) oceania +papua_new_guinea text(was:adjacent:to) indonesia +north_korea text(is:situated:in) eastern_asia +north_korea text(is:adjacent:to) china +north_korea text(was:a:neighbor:of) south_korea +north_korea text(is:a:neighbor:of) russia +latvia text(is:located:in) northern_europe +latvia text(was:located:in) europe +latvia text(is:a:neighboring:state:to) lithuania +latvia text(was:a:neighboring:state:to) belarus +latvia text(borders:with) russia +latvia text(neighbors:withborders) estonia +oman text(could:be:found:in) western_asia oman text(can:be:found:in) asia -oman text(was:adjacent:to) saudi_arabia -oman text(is:adjacent:to) yemen -oman text(neighbors) united_arab_emirates +oman text(neighbors) saudi_arabia +oman text(is:butted:against) yemen +oman text(was:butted:against) united_arab_emirates saint_pierre_and_miquelon text(was:positioned:in) northern_america saint_pierre_and_miquelon text(is:positioned:in) americas martinique text(was:sited:in) caribbean martinique text(is:sited:in) americas -united_kingdom text(was:localized:in) northern_europe -united_kingdom text(is:localized:in) europe +united_kingdom text(is:placed:in) northern_europe +united_kingdom text(was:placed:in) europe united_kingdom text(is:a:neighboring:country:of) ireland -israel text(was:present:in) western_asia -israel text(is:present:in) asia +israel text(was:localized:in) western_asia +israel text(is:localized:in) asia israel text(was:a:neighboring:country:of) lebanon -israel text(neighbors:with) egypt -israel text(was:a:neighbor:of) jordan -israel text(is:a:neighbor:of) syria -jersey text(is:still:in) northern_europe -jersey text(was:still:in) europe -pitcairn_islands text(was:currently:in) polynesia -pitcairn_islands text(is:currently:in) oceania -togo text(is:placed:in) western_africa -togo text(was:placed:in) africa -togo text(is:a:neighboring:state:to) burkina_faso -togo text(was:a:neighboring:state:to) ghana -togo text(borders:with) benin -kiribati text(can:be:found:in) micronesia -kiribati text(was:situated:in) oceania -iran text(is:situated:in) southern_asia -iran text(is:located:in) asia -iran text(borders) afghanistan -iran text(is:butted:against) turkmenistan -iran text(was:butted:against) turkey -iran text(was:adjacent:to) armenia -iran text(is:adjacent:to) azerbaijan -iran text(neighbors) pakistan -iran text(is:a:neighboring:country:of) iraq -saint_martin text(was:located:in) caribbean +israel text(was:adjacent:to) egypt +israel text(is:adjacent:to) jordan +israel text(was:a:neighbor:of) syria +jersey text(was:present:in) northern_europe +jersey text(is:present:in) europe +pitcairn_islands text(is:still:in) polynesia +pitcairn_islands text(was:still:in) oceania +togo text(was:currently:in) western_africa +togo text(is:currently:in) africa +togo text(is:a:neighbor:of) burkina_faso +togo text(is:a:neighboring:state:to) ghana +togo text(was:a:neighboring:state:to) benin +kiribati text(was:situated:in) micronesia +kiribati text(is:situated:in) oceania +iran text(is:located:in) southern_asia +iran text(was:located:in) asia +iran text(borders:with) afghanistan +iran text(neighbors:withborders) turkmenistan +iran text(neighbors) turkey +iran text(is:butted:against) armenia +iran text(was:butted:against) azerbaijan +iran text(is:a:neighboring:country:of) pakistan +iran text(was:a:neighboring:country:of) iraq +saint_martin text(could:be:found:in) caribbean saint_martin text(can:be:found:in) americas -saint_martin text(was:a:neighboring:country:of) sint_maarten +saint_martin text(was:adjacent:to) sint_maarten dominican_republic text(was:positioned:in) caribbean dominican_republic text(is:positioned:in) americas -dominican_republic text(neighbors:with) haiti +dominican_republic text(is:adjacent:to) haiti denmark text(was:sited:in) northern_europe denmark text(was:a:neighbor:of) germany bermuda text(is:sited:in) northern_america -bermuda text(was:localized:in) americas -chile text(is:localized:in) south_america +bermuda text(is:placed:in) americas +chile text(was:placed:in) south_america chile text(is:a:neighbor:of) argentina chile text(is:a:neighboring:state:to) bolivia chile text(was:a:neighboring:state:to) peru -kosovo text(was:present:in) eastern_europe -kosovo text(is:present:in) europe +kosovo text(was:localized:in) eastern_europe +kosovo text(is:localized:in) europe kosovo text(borders:with) serbia -kosovo text(borders) albania -kosovo text(is:butted:against) macedonia -kosovo text(was:butted:against) montenegro -saint_kitts_and_nevis text(is:still:in) caribbean -saint_kitts_and_nevis text(was:still:in) americas -eritrea text(was:currently:in) eastern_africa -eritrea text(was:adjacent:to) djibouti -eritrea text(is:adjacent:to) sudan -eritrea text(neighbors) ethiopia -equatorial_guinea text(is:currently:in) middle_africa -equatorial_guinea text(is:placed:in) africa -equatorial_guinea text(is:a:neighboring:country:of) gabon -equatorial_guinea text(was:a:neighboring:country:of) cameroon -niger text(was:placed:in) western_africa -niger text(can:be:found:in) africa -niger text(neighbors:with) chad -niger text(was:a:neighbor:of) libya -niger text(is:a:neighbor:of) burkina_faso -niger text(is:a:neighboring:state:to) benin -niger text(was:a:neighboring:state:to) mali -niger text(borders:with) algeria -niger text(borders) nigeria -anguilla text(was:situated:in) caribbean -anguilla text(is:situated:in) americas -rwanda text(is:located:in) eastern_africa -rwanda text(was:located:in) africa +kosovo text(neighbors:withborders) albania +kosovo text(neighbors) macedonia +kosovo text(is:butted:against) montenegro +saint_kitts_and_nevis text(was:present:in) caribbean +saint_kitts_and_nevis text(is:present:in) americas +eritrea text(is:still:in) eastern_africa +eritrea text(was:butted:against) djibouti +eritrea text(is:a:neighboring:country:of) sudan +eritrea text(was:a:neighboring:country:of) ethiopia +equatorial_guinea text(was:still:in) middle_africa +equatorial_guinea text(was:currently:in) africa +equatorial_guinea text(was:adjacent:to) gabon +equatorial_guinea text(is:adjacent:to) cameroon +niger text(is:currently:in) western_africa +niger text(was:situated:in) africa +niger text(was:a:neighbor:of) chad +niger text(is:a:neighbor:of) libya +niger text(is:a:neighboring:state:to) burkina_faso +niger text(was:a:neighboring:state:to) benin +niger text(borders:with) mali +niger text(neighbors:withborders) algeria +niger text(neighbors) nigeria +anguilla text(is:situated:in) caribbean +anguilla text(is:located:in) americas +rwanda text(was:located:in) eastern_africa +rwanda text(could:be:found:in) africa rwanda text(is:butted:against) burundi rwanda text(was:butted:against) tanzania -rwanda text(was:adjacent:to) uganda -rwanda text(is:adjacent:to) dr_congo +rwanda text(is:a:neighboring:country:of) uganda +rwanda text(was:a:neighboring:country:of) dr_congo united_arab_emirates text(can:be:found:in) western_asia united_arab_emirates text(was:positioned:in) asia -united_arab_emirates text(neighbors) oman -united_arab_emirates text(is:a:neighboring:country:of) saudi_arabia +united_arab_emirates text(was:adjacent:to) oman +united_arab_emirates text(is:adjacent:to) saudi_arabia estonia text(is:positioned:in) northern_europe estonia text(was:sited:in) europe -estonia text(was:a:neighboring:country:of) latvia -estonia text(neighbors:with) russia +estonia text(was:a:neighbor:of) latvia +estonia text(is:a:neighbor:of) russia greece text(is:sited:in) southern_europe -greece text(was:localized:in) europe -greece text(was:a:neighbor:of) bulgaria -greece text(is:a:neighbor:of) albania -greece text(is:a:neighboring:state:to) macedonia -greece text(was:a:neighboring:state:to) turkey -senegal text(is:localized:in) western_africa -senegal text(was:present:in) africa -senegal text(borders:with) guinea-bissau -senegal text(borders) mauritania -senegal text(is:butted:against) mali -senegal text(was:butted:against) gambia -senegal text(was:adjacent:to) guinea -guadeloupe text(is:present:in) caribbean -guadeloupe text(is:still:in) americas -monaco text(was:still:in) western_europe -monaco text(is:adjacent:to) france -djibouti text(was:currently:in) eastern_africa -djibouti text(neighbors) eritrea -djibouti text(is:a:neighboring:country:of) somalia -djibouti text(was:a:neighboring:country:of) ethiopia -indonesia text(is:currently:in) south-eastern_asia -indonesia text(neighbors:with) papua_new_guinea -indonesia text(was:a:neighbor:of) timor-leste -indonesia text(is:a:neighbor:of) malaysia -british_virgin_islands text(is:placed:in) caribbean -british_virgin_islands text(was:placed:in) americas -cook_islands text(can:be:found:in) polynesia -cook_islands text(was:situated:in) oceania -uganda text(is:situated:in) eastern_africa -uganda text(is:located:in) africa -uganda text(is:a:neighboring:state:to) tanzania -uganda text(was:a:neighboring:state:to) dr_congo -uganda text(borders:with) kenya -uganda text(borders) south_sudan -uganda text(is:butted:against) rwanda -macedonia text(was:located:in) southern_europe +greece text(is:placed:in) europe +greece text(is:a:neighboring:state:to) bulgaria +greece text(was:a:neighboring:state:to) albania +greece text(borders:with) macedonia +greece text(neighbors:withborders) turkey +senegal text(was:placed:in) western_africa +senegal text(was:localized:in) africa +senegal text(neighbors) guinea-bissau +senegal text(is:butted:against) mauritania +senegal text(was:butted:against) mali +senegal text(is:a:neighboring:country:of) gambia +senegal text(was:a:neighboring:country:of) guinea +guadeloupe text(is:localized:in) caribbean +guadeloupe text(was:present:in) americas +monaco text(is:present:in) western_europe +monaco text(was:adjacent:to) france +djibouti text(is:still:in) eastern_africa +djibouti text(is:adjacent:to) eritrea +djibouti text(was:a:neighbor:of) somalia +djibouti text(is:a:neighbor:of) ethiopia +indonesia text(was:still:in) south-eastern_asia +indonesia text(is:a:neighboring:state:to) papua_new_guinea +indonesia text(was:a:neighboring:state:to) timor-leste +indonesia text(borders:with) malaysia +british_virgin_islands text(was:currently:in) caribbean +british_virgin_islands text(is:currently:in) americas +cook_islands text(was:situated:in) polynesia +cook_islands text(is:situated:in) oceania +uganda text(is:located:in) eastern_africa +uganda text(was:located:in) africa +uganda text(neighbors:withborders) tanzania +uganda text(neighbors) dr_congo +uganda text(is:butted:against) kenya +uganda text(was:butted:against) south_sudan +uganda text(is:a:neighboring:country:of) rwanda +macedonia text(could:be:found:in) southern_europe macedonia text(can:be:found:in) europe -macedonia text(was:butted:against) kosovo +macedonia text(was:a:neighboring:country:of) kosovo macedonia text(was:adjacent:to) greece macedonia text(is:adjacent:to) albania -macedonia text(neighbors) serbia -macedonia text(is:a:neighboring:country:of) bulgaria +macedonia text(was:a:neighbor:of) serbia +macedonia text(is:a:neighbor:of) bulgaria tunisia text(was:positioned:in) northern_africa tunisia text(is:positioned:in) africa -tunisia text(was:a:neighboring:country:of) libya -tunisia text(neighbors:with) algeria +tunisia text(is:a:neighboring:state:to) libya +tunisia text(was:a:neighboring:state:to) algeria ecuador text(was:sited:in) south_america -ecuador text(was:a:neighbor:of) peru -ecuador text(is:a:neighbor:of) colombia +ecuador text(borders:with) peru +ecuador text(neighbors:withborders) colombia brazil text(is:sited:in) south_america -brazil text(was:localized:in) americas -brazil text(is:a:neighboring:state:to) bolivia -brazil text(was:a:neighboring:state:to) colombia -brazil text(borders:with) paraguay -brazil text(borders) uruguay -brazil text(is:butted:against) french_guiana -brazil text(was:butted:against) suriname -brazil text(was:adjacent:to) venezuela -brazil text(is:adjacent:to) argentina -brazil text(neighbors) guyana -brazil text(is:a:neighboring:country:of) peru -paraguay text(is:localized:in) south_america -paraguay text(was:present:in) americas -paraguay text(was:a:neighboring:country:of) argentina -paraguay text(neighbors:with) brazil -paraguay text(was:a:neighbor:of) bolivia -finland text(is:present:in) northern_europe -finland text(is:still:in) europe -finland text(is:a:neighbor:of) norway -finland text(is:a:neighboring:state:to) sweden -finland text(was:a:neighboring:state:to) russia -jordan text(was:still:in) western_asia -jordan text(borders:with) saudi_arabia -jordan text(borders) israel -jordan text(is:butted:against) iraq -jordan text(was:butted:against) syria -timor-leste text(was:currently:in) south-eastern_asia -timor-leste text(was:adjacent:to) indonesia -montenegro text(is:currently:in) southern_europe -montenegro text(is:placed:in) europe -montenegro text(is:adjacent:to) kosovo -montenegro text(neighbors) bosnia_and_herzegovina -montenegro text(is:a:neighboring:country:of) croatia -montenegro text(was:a:neighboring:country:of) serbia -montenegro text(neighbors:with) albania -peru text(was:placed:in) south_america -peru text(can:be:found:in) americas -peru text(was:a:neighbor:of) ecuador -peru text(is:a:neighbor:of) bolivia -peru text(is:a:neighboring:state:to) chile -peru text(was:a:neighboring:state:to) brazil -peru text(borders:with) colombia -montserrat text(was:situated:in) caribbean -montserrat text(is:situated:in) americas -ukraine text(is:located:in) eastern_europe -ukraine text(was:located:in) europe -ukraine text(borders) slovakia -ukraine text(is:butted:against) belarus -ukraine text(was:butted:against) poland -ukraine text(was:adjacent:to) russia -ukraine text(is:adjacent:to) hungary -ukraine text(neighbors) moldova -ukraine text(is:a:neighboring:country:of) romania +brazil text(is:placed:in) americas +brazil text(neighbors) bolivia +brazil text(is:butted:against) colombia +brazil text(was:butted:against) paraguay +brazil text(is:a:neighboring:country:of) uruguay +brazil text(was:a:neighboring:country:of) french_guiana +brazil text(was:adjacent:to) suriname +brazil text(is:adjacent:to) venezuela +brazil text(was:a:neighbor:of) argentina +brazil text(is:a:neighbor:of) guyana +brazil text(is:a:neighboring:state:to) peru +paraguay text(was:placed:in) south_america +paraguay text(was:localized:in) americas +paraguay text(was:a:neighboring:state:to) argentina +paraguay text(borders:with) brazil +paraguay text(neighbors:withborders) bolivia +finland text(is:localized:in) northern_europe +finland text(was:present:in) europe +finland text(neighbors) norway +finland text(is:butted:against) sweden +finland text(was:butted:against) russia +jordan text(is:present:in) western_asia +jordan text(is:a:neighboring:country:of) saudi_arabia +jordan text(was:a:neighboring:country:of) israel +jordan text(was:adjacent:to) iraq +jordan text(is:adjacent:to) syria +timor-leste text(is:still:in) south-eastern_asia +timor-leste text(was:a:neighbor:of) indonesia +montenegro text(was:still:in) southern_europe +montenegro text(was:currently:in) europe +montenegro text(is:a:neighbor:of) kosovo +montenegro text(is:a:neighboring:state:to) bosnia_and_herzegovina +montenegro text(was:a:neighboring:state:to) croatia +montenegro text(borders:with) serbia +montenegro text(neighbors:withborders) albania +peru text(is:currently:in) south_america +peru text(was:situated:in) americas +peru text(neighbors) ecuador +peru text(is:butted:against) bolivia +peru text(was:butted:against) chile +peru text(is:a:neighboring:country:of) brazil +peru text(was:a:neighboring:country:of) colombia +montserrat text(is:situated:in) caribbean +montserrat text(is:located:in) americas +ukraine text(was:located:in) eastern_europe +ukraine text(could:be:found:in) europe +ukraine text(was:adjacent:to) slovakia +ukraine text(is:adjacent:to) belarus +ukraine text(was:a:neighbor:of) poland +ukraine text(is:a:neighbor:of) russia +ukraine text(is:a:neighboring:state:to) hungary +ukraine text(was:a:neighboring:state:to) moldova +ukraine text(borders:with) romania dominica text(can:be:found:in) caribbean dominica text(was:positioned:in) americas turkmenistan text(is:positioned:in) central_asia -turkmenistan text(was:a:neighboring:country:of) kazakhstan -turkmenistan text(neighbors:with) afghanistan -turkmenistan text(was:a:neighbor:of) uzbekistan -turkmenistan text(is:a:neighbor:of) iran +turkmenistan text(neighbors:withborders) kazakhstan +turkmenistan text(neighbors) afghanistan +turkmenistan text(is:butted:against) uzbekistan +turkmenistan text(was:butted:against) iran guernsey text(was:sited:in) northern_europe guernsey text(is:sited:in) europe -gibraltar text(was:localized:in) southern_europe -gibraltar text(is:localized:in) europe -gibraltar text(is:a:neighboring:state:to) spain -switzerland text(was:present:in) western_europe -switzerland text(is:present:in) europe -switzerland text(was:a:neighboring:state:to) germany -switzerland text(borders:with) italy -switzerland text(borders) austria -switzerland text(is:butted:against) france -switzerland text(was:butted:against) liechtenstein -austria text(is:still:in) western_europe -austria text(was:still:in) europe -austria text(was:adjacent:to) germany -austria text(is:adjacent:to) slovakia -austria text(neighbors) slovenia -austria text(is:a:neighboring:country:of) italy -austria text(was:a:neighboring:country:of) switzerland -austria text(neighbors:with) hungary -austria text(was:a:neighbor:of) liechtenstein -austria text(is:a:neighbor:of) czechia -hungary text(was:currently:in) eastern_europe -hungary text(is:a:neighboring:state:to) ukraine -hungary text(was:a:neighboring:state:to) slovakia -hungary text(borders:with) slovenia -hungary text(borders) croatia -hungary text(is:butted:against) austria -hungary text(was:butted:against) serbia -hungary text(was:adjacent:to) romania -malawi text(is:currently:in) eastern_africa -malawi text(is:placed:in) africa -malawi text(is:adjacent:to) zambia -malawi text(neighbors) tanzania -malawi text(is:a:neighboring:country:of) mozambique -hong_kong text(was:placed:in) eastern_asia -hong_kong text(was:a:neighboring:country:of) china -liechtenstein text(can:be:found:in) western_europe -liechtenstein text(was:situated:in) europe -liechtenstein text(neighbors:with) switzerland -liechtenstein text(was:a:neighbor:of) austria -barbados text(is:situated:in) caribbean -barbados text(is:located:in) americas -georgia text(was:located:in) western_asia +gibraltar text(is:placed:in) southern_europe +gibraltar text(was:placed:in) europe +gibraltar text(is:a:neighboring:country:of) spain +switzerland text(was:localized:in) western_europe +switzerland text(is:localized:in) europe +switzerland text(was:a:neighboring:country:of) germany +switzerland text(was:adjacent:to) italy +switzerland text(is:adjacent:to) austria +switzerland text(was:a:neighbor:of) france +switzerland text(is:a:neighbor:of) liechtenstein +austria text(was:present:in) western_europe +austria text(is:present:in) europe +austria text(is:a:neighboring:state:to) germany +austria text(was:a:neighboring:state:to) slovakia +austria text(borders:with) slovenia +austria text(neighbors:withborders) italy +austria text(neighbors) switzerland +austria text(is:butted:against) hungary +austria text(was:butted:against) liechtenstein +austria text(is:a:neighboring:country:of) czechia +hungary text(is:still:in) eastern_europe +hungary text(was:a:neighboring:country:of) ukraine +hungary text(was:adjacent:to) slovakia +hungary text(is:adjacent:to) slovenia +hungary text(was:a:neighbor:of) croatia +hungary text(is:a:neighbor:of) austria +hungary text(is:a:neighboring:state:to) serbia +hungary text(was:a:neighboring:state:to) romania +malawi text(was:still:in) eastern_africa +malawi text(was:currently:in) africa +malawi text(borders:with) zambia +malawi text(neighbors:withborders) tanzania +malawi text(neighbors) mozambique +hong_kong text(is:currently:in) eastern_asia +hong_kong text(is:butted:against) china +liechtenstein text(was:situated:in) western_europe +liechtenstein text(is:situated:in) europe +liechtenstein text(was:butted:against) switzerland +liechtenstein text(is:a:neighboring:country:of) austria +barbados text(is:located:in) caribbean +barbados text(was:located:in) americas +georgia text(could:be:found:in) western_asia georgia text(can:be:found:in) asia -georgia text(is:a:neighbor:of) armenia -georgia text(is:a:neighboring:state:to) azerbaijan -georgia text(was:a:neighboring:state:to) russia -georgia text(borders:with) turkey +georgia text(was:a:neighboring:country:of) armenia +georgia text(was:adjacent:to) azerbaijan +georgia text(is:adjacent:to) russia +georgia text(was:a:neighbor:of) turkey albania text(was:positioned:in) southern_europe albania text(is:positioned:in) europe -albania text(borders) montenegro -albania text(is:butted:against) macedonia -albania text(was:butted:against) kosovo -albania text(was:adjacent:to) greece +albania text(is:a:neighbor:of) montenegro +albania text(is:a:neighboring:state:to) macedonia +albania text(was:a:neighboring:state:to) kosovo +albania text(borders:with) greece kuwait text(was:sited:in) western_asia kuwait text(is:sited:in) asia -kuwait text(is:adjacent:to) saudi_arabia +kuwait text(neighbors:withborders) saudi_arabia kuwait text(neighbors) iraq -south_africa text(was:localized:in) southern_africa -south_africa text(is:localized:in) africa -south_africa text(is:a:neighboring:country:of) mozambique -south_africa text(was:a:neighboring:country:of) botswana -south_africa text(neighbors:with) swaziland -south_africa text(was:a:neighbor:of) zimbabwe -south_africa text(is:a:neighbor:of) namibia -south_africa text(is:a:neighboring:state:to) lesotho -haiti text(was:present:in) caribbean -haiti text(is:present:in) americas -haiti text(was:a:neighboring:state:to) dominican_republic -afghanistan text(is:still:in) southern_asia -afghanistan text(was:still:in) asia -afghanistan text(borders:with) turkmenistan -afghanistan text(borders) china -afghanistan text(is:butted:against) tajikistan -afghanistan text(was:butted:against) uzbekistan -afghanistan text(was:adjacent:to) iran -afghanistan text(is:adjacent:to) pakistan -singapore text(was:currently:in) south-eastern_asia -singapore text(is:currently:in) asia -benin text(is:placed:in) western_africa -benin text(was:placed:in) africa -benin text(neighbors) niger -benin text(is:a:neighboring:country:of) burkina_faso -benin text(was:a:neighboring:country:of) togo -benin text(neighbors:with) nigeria -åland_islands text(can:be:found:in) northern_europe -åland_islands text(was:situated:in) europe -croatia text(is:situated:in) southern_europe -croatia text(is:located:in) europe -croatia text(was:a:neighbor:of) slovenia -croatia text(is:a:neighbor:of) bosnia_and_herzegovina -croatia text(is:a:neighboring:state:to) hungary -croatia text(was:a:neighboring:state:to) serbia -croatia text(borders:with) montenegro -sweden text(was:located:in) northern_europe +south_africa text(is:placed:in) southern_africa +south_africa text(was:placed:in) africa +south_africa text(is:butted:against) mozambique +south_africa text(was:butted:against) botswana +south_africa text(is:a:neighboring:country:of) swaziland +south_africa text(was:a:neighboring:country:of) zimbabwe +south_africa text(was:adjacent:to) namibia +south_africa text(is:adjacent:to) lesotho +haiti text(was:localized:in) caribbean +haiti text(is:localized:in) americas +haiti text(was:a:neighbor:of) dominican_republic +afghanistan text(was:present:in) southern_asia +afghanistan text(is:present:in) asia +afghanistan text(is:a:neighbor:of) turkmenistan +afghanistan text(is:a:neighboring:state:to) china +afghanistan text(was:a:neighboring:state:to) tajikistan +afghanistan text(borders:with) uzbekistan +afghanistan text(neighbors:withborders) iran +afghanistan text(neighbors) pakistan +singapore text(is:still:in) south-eastern_asia +singapore text(was:still:in) asia +benin text(was:currently:in) western_africa +benin text(is:currently:in) africa +benin text(is:butted:against) niger +benin text(was:butted:against) burkina_faso +benin text(is:a:neighboring:country:of) togo +benin text(was:a:neighboring:country:of) nigeria +åland_islands text(was:situated:in) northern_europe +åland_islands text(is:situated:in) europe +croatia text(is:located:in) southern_europe +croatia text(was:located:in) europe +croatia text(was:adjacent:to) slovenia +croatia text(is:adjacent:to) bosnia_and_herzegovina +croatia text(was:a:neighbor:of) hungary +croatia text(is:a:neighbor:of) serbia +croatia text(is:a:neighboring:state:to) montenegro +sweden text(could:be:found:in) northern_europe sweden text(can:be:found:in) europe -sweden text(borders) norway -sweden text(is:butted:against) finland +sweden text(was:a:neighboring:state:to) norway +sweden text(borders:with) finland mexico text(was:positioned:in) northern_america -mexico text(was:butted:against) belize -mexico text(was:adjacent:to) united_states -mexico text(is:adjacent:to) guatemala +mexico text(neighbors:withborders) belize +mexico text(neighbors) united_states +mexico text(is:butted:against) guatemala greenland text(is:positioned:in) northern_america greenland text(was:sited:in) americas norfolk_island text(is:sited:in) australia_and_new_zealand -norfolk_island text(was:localized:in) oceania -nepal text(is:localized:in) southern_asia -nepal text(was:present:in) asia -nepal text(neighbors) china +norfolk_island text(is:placed:in) oceania +nepal text(was:placed:in) southern_asia +nepal text(was:localized:in) asia +nepal text(was:butted:against) china nepal text(is:a:neighboring:country:of) india -guatemala text(is:present:in) central_america +guatemala text(is:localized:in) central_america guatemala text(was:a:neighboring:country:of) belize -guatemala text(neighbors:with) el_salvador -guatemala text(was:a:neighbor:of) mexico -guatemala text(is:a:neighbor:of) honduras -south_korea text(is:still:in) eastern_asia -south_korea text(was:still:in) asia -south_korea text(is:a:neighboring:state:to) north_korea -moldova text(was:currently:in) eastern_europe -moldova text(is:currently:in) europe -moldova text(was:a:neighboring:state:to) ukraine -moldova text(borders:with) romania -mauritius text(is:placed:in) eastern_africa -mauritius text(was:placed:in) africa -belarus text(can:be:found:in) eastern_europe -belarus text(borders) ukraine -belarus text(is:butted:against) poland -belarus text(was:butted:against) lithuania -belarus text(was:adjacent:to) russia -belarus text(is:adjacent:to) latvia -bangladesh text(was:situated:in) southern_asia -bangladesh text(neighbors) myanmar -bangladesh text(is:a:neighboring:country:of) india -malaysia text(is:situated:in) south-eastern_asia -malaysia text(is:located:in) asia -malaysia text(was:a:neighboring:country:of) thailand -malaysia text(neighbors:with) indonesia +guatemala text(was:adjacent:to) el_salvador +guatemala text(is:adjacent:to) mexico +guatemala text(was:a:neighbor:of) honduras +south_korea text(was:present:in) eastern_asia +south_korea text(is:present:in) asia +south_korea text(is:a:neighbor:of) north_korea +moldova text(is:still:in) eastern_europe +moldova text(was:still:in) europe +moldova text(is:a:neighboring:state:to) ukraine +moldova text(was:a:neighboring:state:to) romania +mauritius text(was:currently:in) eastern_africa +mauritius text(is:currently:in) africa +belarus text(was:situated:in) eastern_europe +belarus text(borders:with) ukraine +belarus text(neighbors:withborders) poland +belarus text(neighbors) lithuania +belarus text(is:butted:against) russia +belarus text(was:butted:against) latvia +bangladesh text(is:situated:in) southern_asia +bangladesh text(is:a:neighboring:country:of) myanmar +bangladesh text(was:a:neighboring:country:of) india +malaysia text(is:located:in) south-eastern_asia +malaysia text(was:located:in) asia +malaysia text(was:adjacent:to) thailand +malaysia text(is:adjacent:to) indonesia malaysia text(was:a:neighbor:of) brunei -bosnia_and_herzegovina text(was:located:in) southern_europe +bosnia_and_herzegovina text(could:be:found:in) southern_europe bosnia_and_herzegovina text(can:be:found:in) europe bosnia_and_herzegovina text(is:a:neighbor:of) serbia bosnia_and_herzegovina text(is:a:neighboring:state:to) croatia @@ -946,164 +946,164 @@ bosnia_and_herzegovina text(was:a:neighboring:state:to) montenegro luxembourg text(was:positioned:in) western_europe luxembourg text(is:positioned:in) europe luxembourg text(borders:with) germany -luxembourg text(borders) belgium -luxembourg text(is:butted:against) france +luxembourg text(neighbors:withborders) belgium +luxembourg text(neighbors) france italy text(was:sited:in) southern_europe italy text(is:sited:in) europe -italy text(was:butted:against) slovenia -italy text(was:adjacent:to) switzerland -italy text(is:adjacent:to) austria -italy text(neighbors) france -italy text(is:a:neighboring:country:of) vatican_city -italy text(was:a:neighboring:country:of) san_marino -azerbaijan text(was:localized:in) western_asia -azerbaijan text(is:localized:in) asia -azerbaijan text(neighbors:with) turkey -azerbaijan text(was:a:neighbor:of) armenia -azerbaijan text(is:a:neighbor:of) russia -azerbaijan text(is:a:neighboring:state:to) iran -azerbaijan text(was:a:neighboring:state:to) georgia -honduras text(was:present:in) central_america -honduras text(is:present:in) americas -honduras text(borders:with) guatemala -honduras text(borders) nicaragua +italy text(is:butted:against) slovenia +italy text(was:butted:against) switzerland +italy text(is:a:neighboring:country:of) austria +italy text(was:a:neighboring:country:of) france +italy text(was:adjacent:to) vatican_city +italy text(is:adjacent:to) san_marino +azerbaijan text(is:placed:in) western_asia +azerbaijan text(was:placed:in) asia +azerbaijan text(was:a:neighbor:of) turkey +azerbaijan text(is:a:neighbor:of) armenia +azerbaijan text(is:a:neighboring:state:to) russia +azerbaijan text(was:a:neighboring:state:to) iran +azerbaijan text(borders:with) georgia +honduras text(was:localized:in) central_america +honduras text(is:localized:in) americas +honduras text(neighbors:withborders) guatemala +honduras text(neighbors) nicaragua honduras text(is:butted:against) el_salvador -mali text(is:still:in) western_africa -mali text(was:still:in) africa +mali text(was:present:in) western_africa +mali text(is:present:in) africa mali text(was:butted:against) burkina_faso -mali text(was:adjacent:to) guinea -mali text(is:adjacent:to) mauritania -mali text(neighbors) niger -mali text(is:a:neighboring:country:of) senegal -mali text(was:a:neighboring:country:of) algeria -mali text(neighbors:with) ivory_coast -taiwan text(was:currently:in) eastern_asia -taiwan text(is:currently:in) asia -algeria text(is:placed:in) northern_africa -algeria text(was:placed:in) africa -algeria text(was:a:neighbor:of) libya -algeria text(is:a:neighbor:of) tunisia -algeria text(is:a:neighboring:state:to) mauritania -algeria text(was:a:neighboring:state:to) morocco -algeria text(borders:with) niger -algeria text(borders) mali -algeria text(is:butted:against) western_sahara -french_guiana text(can:be:found:in) south_america -french_guiana text(was:butted:against) brazil -french_guiana text(was:adjacent:to) suriname -yemen text(was:situated:in) western_asia -yemen text(is:situated:in) asia -yemen text(is:adjacent:to) oman -yemen text(neighbors) saudi_arabia -puerto_rico text(is:located:in) caribbean -puerto_rico text(was:located:in) americas +mali text(is:a:neighboring:country:of) guinea +mali text(was:a:neighboring:country:of) mauritania +mali text(was:adjacent:to) niger +mali text(is:adjacent:to) senegal +mali text(was:a:neighbor:of) algeria +mali text(is:a:neighbor:of) ivory_coast +taiwan text(is:still:in) eastern_asia +taiwan text(was:still:in) asia +algeria text(was:currently:in) northern_africa +algeria text(is:currently:in) africa +algeria text(is:a:neighboring:state:to) libya +algeria text(was:a:neighboring:state:to) tunisia +algeria text(borders:with) mauritania +algeria text(neighbors:withborders) morocco +algeria text(neighbors) niger +algeria text(is:butted:against) mali +algeria text(was:butted:against) western_sahara +french_guiana text(was:situated:in) south_america +french_guiana text(is:a:neighboring:country:of) brazil +french_guiana text(was:a:neighboring:country:of) suriname +yemen text(is:situated:in) western_asia +yemen text(is:located:in) asia +yemen text(was:adjacent:to) oman +yemen text(is:adjacent:to) saudi_arabia +puerto_rico text(was:located:in) caribbean +puerto_rico text(could:be:found:in) americas saint_vincent_and_the_grenadines text(can:be:found:in) caribbean saint_vincent_and_the_grenadines text(was:positioned:in) americas venezuela text(is:positioned:in) south_america -venezuela text(is:a:neighboring:country:of) brazil -venezuela text(was:a:neighboring:country:of) guyana -venezuela text(neighbors:with) colombia +venezuela text(was:a:neighbor:of) brazil +venezuela text(is:a:neighbor:of) guyana +venezuela text(is:a:neighboring:state:to) colombia grenada text(was:sited:in) caribbean grenada text(is:sited:in) americas -united_states text(was:localized:in) northern_america -united_states text(was:a:neighbor:of) canada -united_states text(is:a:neighbor:of) mexico -tokelau text(is:localized:in) polynesia -tokelau text(was:present:in) oceania -slovenia text(is:present:in) southern_europe -slovenia text(is:still:in) europe -slovenia text(is:a:neighboring:state:to) austria -slovenia text(was:a:neighboring:state:to) croatia -slovenia text(borders:with) italy -slovenia text(borders) hungary -philippines text(was:still:in) south-eastern_asia -philippines text(was:currently:in) asia -micronesia text(is:currently:in) micronesia -micronesia text(is:placed:in) oceania -china text(was:placed:in) eastern_asia -china text(can:be:found:in) asia -china text(is:butted:against) afghanistan -china text(was:butted:against) bhutan +united_states text(is:placed:in) northern_america +united_states text(was:a:neighboring:state:to) canada +united_states text(borders:with) mexico +tokelau text(was:placed:in) polynesia +tokelau text(was:localized:in) oceania +slovenia text(is:localized:in) southern_europe +slovenia text(was:present:in) europe +slovenia text(neighbors:withborders) austria +slovenia text(neighbors) croatia +slovenia text(is:butted:against) italy +slovenia text(was:butted:against) hungary +philippines text(is:present:in) south-eastern_asia +philippines text(is:still:in) asia +micronesia text(was:still:in) micronesia +micronesia text(was:currently:in) oceania +china text(is:currently:in) eastern_asia +china text(was:situated:in) asia +china text(is:a:neighboring:country:of) afghanistan +china text(was:a:neighboring:country:of) bhutan china text(was:adjacent:to) macau china text(is:adjacent:to) india -china text(neighbors) kazakhstan -china text(is:a:neighboring:country:of) kyrgyzstan -china text(was:a:neighboring:country:of) tajikistan -china text(neighbors:with) laos -china text(was:a:neighbor:of) russia -china text(is:a:neighbor:of) north_korea -china text(is:a:neighboring:state:to) myanmar -china text(was:a:neighboring:state:to) pakistan -china text(borders:with) mongolia -china text(borders) hong_kong -china text(is:butted:against) vietnam -gabon text(was:situated:in) middle_africa -gabon text(is:situated:in) africa -gabon text(was:butted:against) equatorial_guinea -gabon text(was:adjacent:to) republic_of_the_congo -gabon text(is:adjacent:to) cameroon -united_states_minor_outlying_islands text(is:located:in) northern_america -united_states_minor_outlying_islands text(was:located:in) americas +china text(was:a:neighbor:of) kazakhstan +china text(is:a:neighbor:of) kyrgyzstan +china text(is:a:neighboring:state:to) tajikistan +china text(was:a:neighboring:state:to) laos +china text(borders:with) russia +china text(neighbors:withborders) north_korea +china text(neighbors) myanmar +china text(is:butted:against) pakistan +china text(was:butted:against) mongolia +china text(is:a:neighboring:country:of) hong_kong +china text(was:a:neighboring:country:of) vietnam +gabon text(is:situated:in) middle_africa +gabon text(is:located:in) africa +gabon text(was:adjacent:to) equatorial_guinea +gabon text(is:adjacent:to) republic_of_the_congo +gabon text(was:a:neighbor:of) cameroon +united_states_minor_outlying_islands text(was:located:in) northern_america +united_states_minor_outlying_islands text(could:be:found:in) americas andorra text(can:be:found:in) southern_europe andorra text(was:positioned:in) europe -andorra text(neighbors) spain -andorra text(is:a:neighboring:country:of) france +andorra text(is:a:neighbor:of) spain +andorra text(is:a:neighboring:state:to) france samoa text(is:positioned:in) polynesia samoa text(was:sited:in) oceania gambia text(is:sited:in) western_africa -gambia text(was:localized:in) africa -gambia text(was:a:neighboring:country:of) senegal -palestine text(is:localized:in) western_asia -palestine text(was:present:in) asia -palestine text(neighbors:with) jordan -palestine text(was:a:neighbor:of) egypt -palestine text(is:a:neighbor:of) israel -réunion text(is:present:in) eastern_africa -réunion text(is:still:in) africa -france text(was:still:in) western_europe -france text(was:currently:in) europe -france text(is:a:neighboring:state:to) germany -france text(was:a:neighboring:state:to) luxembourg -france text(borders:with) italy -france text(borders) andorra -france text(is:butted:against) switzerland -france text(was:butted:against) monaco -france text(was:adjacent:to) belgium -france text(is:adjacent:to) spain -mongolia text(is:currently:in) eastern_asia -mongolia text(is:placed:in) asia -mongolia text(neighbors) china -mongolia text(is:a:neighboring:country:of) russia -lithuania text(was:placed:in) northern_europe -lithuania text(can:be:found:in) europe -lithuania text(was:a:neighboring:country:of) poland -lithuania text(neighbors:with) latvia -lithuania text(was:a:neighbor:of) belarus -lithuania text(is:a:neighbor:of) russia -cayman_islands text(was:situated:in) caribbean -cayman_islands text(is:situated:in) americas -saint_lucia text(is:located:in) caribbean -saint_lucia text(was:located:in) americas +gambia text(is:placed:in) africa +gambia text(was:a:neighboring:state:to) senegal +palestine text(was:placed:in) western_asia +palestine text(was:localized:in) asia +palestine text(borders:with) jordan +palestine text(neighbors:withborders) egypt +palestine text(neighbors) israel +réunion text(is:localized:in) eastern_africa +réunion text(was:present:in) africa +france text(is:present:in) western_europe +france text(is:still:in) europe +france text(is:butted:against) germany +france text(was:butted:against) luxembourg +france text(is:a:neighboring:country:of) italy +france text(was:a:neighboring:country:of) andorra +france text(was:adjacent:to) switzerland +france text(is:adjacent:to) monaco +france text(was:a:neighbor:of) belgium +france text(is:a:neighbor:of) spain +mongolia text(was:still:in) eastern_asia +mongolia text(was:currently:in) asia +mongolia text(is:a:neighboring:state:to) china +mongolia text(was:a:neighboring:state:to) russia +lithuania text(is:currently:in) northern_europe +lithuania text(was:situated:in) europe +lithuania text(borders:with) poland +lithuania text(neighbors:withborders) latvia +lithuania text(neighbors) belarus +lithuania text(is:butted:against) russia +cayman_islands text(is:situated:in) caribbean +cayman_islands text(is:located:in) americas +saint_lucia text(was:located:in) caribbean +saint_lucia text(could:be:found:in) americas curaçao text(can:be:found:in) caribbean curaçao text(was:positioned:in) americas caribbean text(is:positioned:in) americas southern_asia text(was:sited:in) asia middle_africa text(is:sited:in) africa -northern_europe text(was:localized:in) europe -southern_europe text(is:localized:in) europe -western_asia text(was:present:in) asia -south_america text(is:present:in) americas -polynesia text(is:still:in) oceania -australia_and_new_zealand text(was:still:in) oceania -western_europe text(was:currently:in) europe -eastern_africa text(is:currently:in) africa -western_africa text(is:placed:in) africa -eastern_europe text(was:placed:in) europe -central_america text(can:be:found:in) americas -northern_america text(was:situated:in) americas -south-eastern_asia text(is:situated:in) asia -southern_africa text(is:located:in) africa -eastern_asia text(was:located:in) asia +northern_europe text(is:placed:in) europe +southern_europe text(was:placed:in) europe +western_asia text(was:localized:in) asia +south_america text(is:localized:in) americas +polynesia text(was:present:in) oceania +australia_and_new_zealand text(is:present:in) oceania +western_europe text(is:still:in) europe +eastern_africa text(was:still:in) africa +western_africa text(was:currently:in) africa +eastern_europe text(is:currently:in) europe +central_america text(was:situated:in) americas +northern_america text(is:situated:in) americas +south-eastern_asia text(is:located:in) asia +southern_africa text(was:located:in) africa +eastern_asia text(could:be:found:in) asia northern_africa text(can:be:found:in) africa melanesia text(was:positioned:in) oceania micronesia text(is:positioned:in) oceania diff --git a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_relation2text_traintest.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_relation2text_traintest.tsv new file mode 100644 index 0000000..8f79ecc --- /dev/null +++ b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_relation2text_traintest.tsv @@ -0,0 +1,1111 @@ +palau text(is:positioned:in) micronesia +palau text(was:localized:in) oceania +maldives text(is:localized:in) southern_asia +maldives text(was:present:in) asia +brunei text(is:present:in) south-eastern_asia +brunei text(is:still:in) asia +brunei text(was:a:neighboring:country:of) malaysia +japan text(was:still:in) eastern_asia +japan text(was:currently:in) asia +netherlands text(is:currently:in) western_europe +netherlands text(was:a:neighbor:of) belgium +turkey text(was:situated:in) western_asia +turkey text(is:a:neighbor:of) armenia +turkey text(is:a:neighboring:state:to) azerbaijan +turkey text(was:a:neighboring:state:to) iran +turkey text(borders:with) greece +turkey text(neighbors:withborders) georgia +angola text(is:situated:in) middle_africa +angola text(is:located:in) africa +angola text(neighbors) dr_congo +angola text(is:butted:against) namibia +angola text(was:butted:against) republic_of_the_congo +armenia text(was:located:in) western_asia +armenia text(could:be:found:in) asia +armenia text(is:a:neighboring:country:of) georgia +armenia text(was:a:neighboring:country:of) azerbaijan +armenia text(was:a:neighbor:of) iran +armenia text(is:a:neighbor:of) turkey +antigua_and_barbuda text(can:be:found:in) caribbean +antigua_and_barbuda text(was:positioned:in) americas +swaziland text(is:positioned:in) southern_africa +swaziland text(was:localized:in) africa +swaziland text(is:a:neighboring:state:to) south_africa +swaziland text(was:a:neighboring:state:to) mozambique +wallis_and_futuna text(is:localized:in) polynesia +wallis_and_futuna text(was:present:in) oceania +uruguay text(is:present:in) south_america +uruguay text(is:still:in) americas +uruguay text(borders:with) argentina +uruguay text(neighbors:withborders) brazil +cyprus text(was:still:in) eastern_europe +cyprus text(was:currently:in) europe +cyprus text(neighbors) united_kingdom +ireland text(is:currently:in) northern_europe +ireland text(was:situated:in) europe +ireland text(is:butted:against) united_kingdom +burundi text(is:situated:in) eastern_africa +burundi text(is:located:in) africa +burundi text(was:butted:against) dr_congo +burundi text(is:a:neighboring:country:of) rwanda +central_african_republic text(was:located:in) middle_africa +central_african_republic text(could:be:found:in) africa +central_african_republic text(was:a:neighboring:country:of) chad +central_african_republic text(was:a:neighbor:of) republic_of_the_congo +central_african_republic text(is:a:neighbor:of) dr_congo +central_african_republic text(is:a:neighboring:state:to) south_sudan +central_african_republic text(was:a:neighboring:state:to) cameroon +tonga text(can:be:found:in) polynesia +tonga text(was:positioned:in) oceania +ivory_coast text(is:positioned:in) western_africa +ivory_coast text(was:localized:in) africa +ivory_coast text(borders:with) liberia +ivory_coast text(neighbors:withborders) mali +ivory_coast text(neighbors) guinea +sierra_leone text(is:localized:in) western_africa +sierra_leone text(is:butted:against) liberia +sierra_leone text(was:butted:against) guinea +mayotte text(was:present:in) eastern_africa +mayotte text(is:present:in) africa +poland text(is:still:in) eastern_europe +poland text(is:a:neighboring:country:of) ukraine +poland text(was:a:neighboring:country:of) slovakia +poland text(was:a:neighbor:of) belarus +poland text(is:a:neighbor:of) russia +poland text(is:a:neighboring:state:to) lithuania +uzbekistan text(was:still:in) central_asia +uzbekistan text(was:currently:in) asia +uzbekistan text(was:a:neighboring:state:to) afghanistan +uzbekistan text(borders:with) turkmenistan +uzbekistan text(neighbors:withborders) kyrgyzstan +uzbekistan text(neighbors) tajikistan +turks_and_caicos_islands text(is:currently:in) caribbean +turks_and_caicos_islands text(was:situated:in) americas +new_caledonia text(is:situated:in) melanesia +new_caledonia text(is:located:in) oceania +pakistan text(was:located:in) southern_asia +pakistan text(is:butted:against) china +pakistan text(was:butted:against) afghanistan +pakistan text(is:a:neighboring:country:of) iran +pakistan text(was:a:neighboring:country:of) india +argentina text(could:be:found:in) south_america +argentina text(can:be:found:in) americas +argentina text(was:a:neighbor:of) bolivia +argentina text(is:a:neighbor:of) chile +argentina text(is:a:neighboring:state:to) brazil +argentina text(was:a:neighboring:state:to) paraguay +argentina text(borders:with) uruguay +cuba text(was:positioned:in) caribbean +cuba text(is:positioned:in) americas +serbia text(was:localized:in) southern_europe +serbia text(neighbors:withborders) macedonia +serbia text(neighbors) montenegro +serbia text(is:butted:against) bosnia_and_herzegovina +serbia text(was:butted:against) croatia +serbia text(is:a:neighboring:country:of) romania +vietnam text(is:localized:in) south-eastern_asia +vietnam text(was:present:in) asia +vietnam text(was:a:neighboring:country:of) cambodia +vietnam text(was:a:neighbor:of) laos +vietnam text(is:a:neighbor:of) china +niue text(is:present:in) polynesia +niue text(is:still:in) oceania +canada text(was:still:in) northern_america +canada text(was:currently:in) americas +slovakia text(is:currently:in) central_europe +slovakia text(is:a:neighboring:state:to) ukraine +slovakia text(was:a:neighboring:state:to) poland +slovakia text(borders:with) austria +mozambique text(was:situated:in) eastern_africa +mozambique text(neighbors:withborders) swaziland +mozambique text(neighbors) malawi +mozambique text(is:butted:against) south_africa +aruba text(is:situated:in) caribbean +aruba text(is:located:in) americas +bolivia text(was:located:in) south_america +bolivia text(could:be:found:in) americas +bolivia text(was:butted:against) chile +bolivia text(is:a:neighboring:country:of) brazil +bolivia text(was:a:neighboring:country:of) paraguay +bolivia text(was:a:neighbor:of) argentina +bolivia text(is:a:neighbor:of) peru +colombia text(can:be:found:in) south_america +colombia text(was:positioned:in) americas +colombia text(is:a:neighboring:state:to) brazil +colombia text(was:a:neighboring:state:to) peru +fiji text(is:positioned:in) melanesia +fiji text(was:localized:in) oceania +republic_of_the_congo text(is:localized:in) middle_africa +republic_of_the_congo text(borders:with) gabon +republic_of_the_congo text(neighbors:withborders) dr_congo +republic_of_the_congo text(neighbors) angola +republic_of_the_congo text(is:butted:against) cameroon +republic_of_the_congo text(was:butted:against) central_african_republic +el_salvador text(was:present:in) central_america +el_salvador text(is:present:in) americas +el_salvador text(is:a:neighboring:country:of) guatemala +el_salvador text(was:a:neighboring:country:of) honduras +madagascar text(is:still:in) eastern_africa +madagascar text(was:still:in) africa +australia text(was:currently:in) australia_and_new_zealand +australia text(is:currently:in) oceania +namibia text(was:situated:in) southern_africa +namibia text(is:situated:in) africa +namibia text(was:a:neighbor:of) angola +namibia text(is:a:neighbor:of) south_africa +tuvalu text(is:located:in) polynesia +tuvalu text(was:located:in) oceania +svalbard_and_jan_mayen text(could:be:found:in) northern_europe +svalbard_and_jan_mayen text(can:be:found:in) europe +isle_of_man text(was:positioned:in) northern_europe +isle_of_man text(is:positioned:in) europe +vatican_city text(was:localized:in) southern_europe +vatican_city text(is:localized:in) europe +vatican_city text(is:a:neighboring:state:to) italy +british_indian_ocean_territory text(was:present:in) eastern_africa +british_indian_ocean_territory text(is:present:in) africa +nigeria text(is:still:in) western_africa +nigeria text(was:still:in) africa +nigeria text(was:a:neighboring:state:to) chad +nigeria text(borders:with) niger +nigeria text(neighbors:withborders) cameroon +nigeria text(neighbors) benin +northern_mariana_islands text(was:currently:in) micronesia +northern_mariana_islands text(is:currently:in) oceania +belize text(was:situated:in) central_america +belize text(is:situated:in) americas +belize text(is:butted:against) guatemala +belize text(was:butted:against) mexico +cocos_keeling_islands text(is:located:in) australia_and_new_zealand +cocos_keeling_islands text(was:located:in) oceania +laos text(could:be:found:in) south-eastern_asia +laos text(can:be:found:in) asia +laos text(is:a:neighboring:country:of) china +laos text(was:a:neighboring:country:of) cambodia +laos text(was:a:neighbor:of) vietnam +western_sahara text(was:positioned:in) northern_africa +western_sahara text(is:positioned:in) africa +western_sahara text(is:a:neighbor:of) algeria +western_sahara text(is:a:neighboring:state:to) mauritania +western_sahara text(was:a:neighboring:state:to) morocco +christmas_island text(was:localized:in) australia_and_new_zealand +christmas_island text(is:localized:in) oceania +são_tomé_and_príncipe text(was:present:in) middle_africa +são_tomé_and_príncipe text(is:present:in) africa +guinea text(is:still:in) western_africa +guinea text(was:still:in) africa +guinea text(borders:with) sierra_leone +guinea text(neighbors:withborders) mali +guinea text(neighbors) liberia +guinea text(is:butted:against) senegal +guinea text(was:butted:against) ivory_coast +costa_rica text(was:currently:in) central_america +costa_rica text(is:currently:in) americas +malta text(was:situated:in) southern_europe +malta text(is:situated:in) europe +portugal text(is:located:in) southern_europe +portugal text(was:located:in) europe +romania text(could:be:found:in) eastern_europe +romania text(can:be:found:in) europe +romania text(is:a:neighboring:country:of) ukraine +romania text(was:a:neighboring:country:of) moldova +romania text(was:a:neighbor:of) serbia +san_marino text(was:positioned:in) southern_europe +san_marino text(is:positioned:in) europe +san_marino text(is:a:neighbor:of) italy +mauritania text(was:localized:in) western_africa +mauritania text(is:localized:in) africa +mauritania text(is:a:neighboring:state:to) algeria +mauritania text(was:a:neighboring:state:to) mali +mauritania text(borders:with) western_sahara +mauritania text(neighbors:withborders) senegal +trinidad_and_tobago text(was:present:in) caribbean +trinidad_and_tobago text(is:present:in) americas +bahrain text(is:still:in) western_asia +bahrain text(was:still:in) asia +south_georgia text(was:currently:in) south_america +south_georgia text(is:currently:in) americas +iceland text(was:situated:in) northern_europe +iceland text(is:situated:in) europe +dr_congo text(is:located:in) middle_africa +dr_congo text(was:located:in) africa +dr_congo text(neighbors) uganda +dr_congo text(is:butted:against) republic_of_the_congo +dr_congo text(was:butted:against) central_african_republic +dr_congo text(is:a:neighboring:country:of) angola +dr_congo text(was:a:neighboring:country:of) rwanda +dr_congo text(was:a:neighbor:of) south_sudan +dr_congo text(is:a:neighbor:of) burundi +seychelles text(could:be:found:in) eastern_africa +seychelles text(can:be:found:in) africa +kyrgyzstan text(was:positioned:in) central_asia +kyrgyzstan text(is:a:neighboring:state:to) china +kyrgyzstan text(was:a:neighboring:state:to) tajikistan +kyrgyzstan text(borders:with) uzbekistan +faroe_islands text(is:positioned:in) northern_europe +faroe_islands text(was:localized:in) europe +jamaica text(is:localized:in) caribbean +jamaica text(was:present:in) americas +american_samoa text(is:present:in) polynesia +american_samoa text(is:still:in) oceania +lesotho text(was:still:in) southern_africa +lesotho text(was:currently:in) africa +lesotho text(neighbors:withborders) south_africa +sri_lanka text(is:currently:in) southern_asia +sri_lanka text(neighbors) india +belgium text(was:situated:in) western_europe +belgium text(is:situated:in) europe +belgium text(is:butted:against) luxembourg +belgium text(was:butted:against) france +belgium text(is:a:neighboring:country:of) netherlands +qatar text(is:located:in) western_asia +qatar text(was:located:in) asia +solomon_islands text(could:be:found:in) melanesia +solomon_islands text(can:be:found:in) oceania +india text(was:positioned:in) southern_asia +india text(is:positioned:in) asia +india text(was:a:neighboring:country:of) afghanistan +india text(was:a:neighbor:of) bangladesh +india text(is:a:neighbor:of) china +india text(is:a:neighboring:state:to) nepal +india text(was:a:neighboring:state:to) pakistan +india text(borders:with) sri_lanka +morocco text(was:localized:in) northern_africa +morocco text(neighbors:withborders) algeria +morocco text(neighbors) western_sahara +kenya text(is:localized:in) eastern_africa +kenya text(was:present:in) africa +kenya text(is:butted:against) uganda +kenya text(was:butted:against) somalia +kenya text(is:a:neighboring:country:of) south_sudan +kenya text(was:a:neighboring:country:of) ethiopia +south_sudan text(is:present:in) middle_africa +south_sudan text(is:still:in) africa +south_sudan text(was:a:neighbor:of) uganda +south_sudan text(is:a:neighbor:of) dr_congo +south_sudan text(is:a:neighboring:state:to) kenya +south_sudan text(was:a:neighboring:state:to) central_african_republic +south_sudan text(borders:with) ethiopia +tajikistan text(was:still:in) central_asia +tajikistan text(was:currently:in) asia +tajikistan text(neighbors:withborders) china +tajikistan text(neighbors) kyrgyzstan +tajikistan text(is:butted:against) afghanistan +tajikistan text(was:butted:against) uzbekistan +marshall_islands text(is:currently:in) micronesia +marshall_islands text(was:situated:in) oceania +cameroon text(is:situated:in) middle_africa +cameroon text(is:located:in) africa +cameroon text(is:a:neighboring:country:of) chad +cameroon text(was:a:neighboring:country:of) republic_of_the_congo +cameroon text(was:a:neighbor:of) gabon +cameroon text(is:a:neighbor:of) equatorial_guinea +cameroon text(is:a:neighboring:state:to) central_african_republic +cameroon text(was:a:neighboring:state:to) nigeria +nauru text(was:located:in) micronesia +nauru text(could:be:found:in) oceania +chad text(can:be:found:in) middle_africa +chad text(was:positioned:in) africa +chad text(borders:with) libya +chad text(neighbors:withborders) niger +chad text(neighbors) south_sudan +chad text(is:butted:against) cameroon +chad text(was:butted:against) central_african_republic +chad text(is:a:neighboring:country:of) nigeria +vanuatu text(is:positioned:in) melanesia +vanuatu text(was:localized:in) oceania +cape_verde text(is:localized:in) western_africa +cape_verde text(was:present:in) africa +falkland_islands text(is:present:in) south_america +falkland_islands text(is:still:in) americas +liberia text(was:still:in) western_africa +liberia text(was:currently:in) africa +liberia text(was:a:neighboring:country:of) ivory_coast +liberia text(was:a:neighbor:of) sierra_leone +liberia text(is:a:neighbor:of) guinea +cambodia text(is:currently:in) south-eastern_asia +cambodia text(was:situated:in) asia +cambodia text(is:a:neighboring:state:to) vietnam +cambodia text(was:a:neighboring:state:to) laos +comoros text(is:situated:in) eastern_africa +comoros text(is:located:in) africa +guam text(was:located:in) micronesia +guam text(could:be:found:in) oceania +bahamas text(can:be:found:in) caribbean +bahamas text(was:positioned:in) americas +lebanon text(is:positioned:in) western_asia +lebanon text(was:localized:in) asia +lebanon text(borders:with) israel +sint_maarten text(is:localized:in) caribbean +sint_maarten text(was:present:in) americas +ethiopia text(is:present:in) eastern_africa +ethiopia text(is:still:in) africa +ethiopia text(neighbors:withborders) somalia +ethiopia text(neighbors) kenya +ethiopia text(is:butted:against) south_sudan +united_states_virgin_islands text(was:still:in) caribbean +united_states_virgin_islands text(was:currently:in) americas +libya text(is:currently:in) northern_africa +libya text(was:situated:in) africa +libya text(was:butted:against) chad +libya text(is:a:neighboring:country:of) tunisia +libya text(was:a:neighboring:country:of) niger +libya text(was:a:neighbor:of) algeria +french_polynesia text(is:situated:in) polynesia +french_polynesia text(is:located:in) oceania +somalia text(was:located:in) eastern_africa +somalia text(could:be:found:in) africa +somalia text(is:a:neighbor:of) kenya +somalia text(is:a:neighboring:state:to) ethiopia +saint_barthélemy text(can:be:found:in) caribbean +saint_barthélemy text(was:positioned:in) americas +russia text(is:positioned:in) eastern_europe +russia text(was:localized:in) europe +russia text(was:a:neighboring:state:to) ukraine +russia text(borders:with) belarus +russia text(neighbors:withborders) china +russia text(neighbors) poland +russia text(is:butted:against) azerbaijan +russia text(was:butted:against) lithuania +russia text(is:a:neighboring:country:of) estonia +russia text(was:a:neighboring:country:of) north_korea +russia text(was:a:neighbor:of) finland +russia text(is:a:neighbor:of) latvia +russia text(is:a:neighboring:state:to) georgia +new_zealand text(is:localized:in) australia_and_new_zealand +new_zealand text(was:present:in) oceania +papua_new_guinea text(is:present:in) melanesia +papua_new_guinea text(is:still:in) oceania +north_korea text(was:still:in) eastern_asia +north_korea text(was:a:neighboring:state:to) china +north_korea text(borders:with) south_korea +north_korea text(neighbors:withborders) russia +latvia text(was:currently:in) northern_europe +latvia text(is:currently:in) europe +latvia text(neighbors) lithuania +latvia text(is:butted:against) belarus +latvia text(was:butted:against) russia +latvia text(is:a:neighboring:country:of) estonia +oman text(was:situated:in) western_asia +oman text(is:situated:in) asia +oman text(was:a:neighboring:country:of) yemen +oman text(was:a:neighbor:of) united_arab_emirates +saint_pierre_and_miquelon text(is:located:in) northern_america +saint_pierre_and_miquelon text(was:located:in) americas +martinique text(could:be:found:in) caribbean +martinique text(can:be:found:in) americas +united_kingdom text(was:positioned:in) northern_europe +united_kingdom text(is:positioned:in) europe +united_kingdom text(is:a:neighbor:of) ireland +israel text(was:localized:in) western_asia +israel text(is:localized:in) asia +israel text(is:a:neighboring:state:to) lebanon +jersey text(was:present:in) northern_europe +jersey text(is:present:in) europe +pitcairn_islands text(is:still:in) polynesia +pitcairn_islands text(was:still:in) oceania +togo text(was:currently:in) western_africa +togo text(is:currently:in) africa +togo text(was:a:neighboring:state:to) benin +kiribati text(was:situated:in) micronesia +kiribati text(is:situated:in) oceania +iran text(is:located:in) southern_asia +iran text(was:located:in) asia +iran text(borders:with) afghanistan +iran text(neighbors:withborders) turkmenistan +iran text(neighbors) turkey +iran text(is:butted:against) armenia +iran text(was:butted:against) azerbaijan +iran text(is:a:neighboring:country:of) pakistan +dominican_republic text(could:be:found:in) caribbean +dominican_republic text(can:be:found:in) americas +dominican_republic text(was:a:neighboring:country:of) haiti +bermuda text(was:positioned:in) northern_america +bermuda text(is:positioned:in) americas +chile text(was:localized:in) south_america +chile text(was:a:neighbor:of) argentina +chile text(is:a:neighbor:of) bolivia +chile text(is:a:neighboring:state:to) peru +saint_kitts_and_nevis text(is:localized:in) caribbean +saint_kitts_and_nevis text(was:present:in) americas +equatorial_guinea text(is:present:in) middle_africa +equatorial_guinea text(is:still:in) africa +equatorial_guinea text(was:a:neighboring:state:to) gabon +equatorial_guinea text(borders:with) cameroon +niger text(was:still:in) western_africa +niger text(was:currently:in) africa +niger text(neighbors:withborders) chad +niger text(neighbors) libya +niger text(is:butted:against) benin +niger text(was:butted:against) mali +niger text(is:a:neighboring:country:of) algeria +niger text(was:a:neighboring:country:of) nigeria +anguilla text(is:currently:in) caribbean +anguilla text(was:situated:in) americas +rwanda text(is:situated:in) eastern_africa +rwanda text(is:located:in) africa +rwanda text(was:a:neighbor:of) burundi +rwanda text(is:a:neighbor:of) uganda +rwanda text(is:a:neighboring:state:to) dr_congo +united_arab_emirates text(was:located:in) western_asia +united_arab_emirates text(could:be:found:in) asia +united_arab_emirates text(was:a:neighboring:state:to) oman +estonia text(can:be:found:in) northern_europe +estonia text(was:positioned:in) europe +estonia text(borders:with) latvia +estonia text(neighbors:withborders) russia +greece text(is:positioned:in) southern_europe +greece text(was:localized:in) europe +greece text(neighbors) albania +greece text(is:butted:against) macedonia +greece text(was:butted:against) turkey +senegal text(is:localized:in) western_africa +senegal text(was:present:in) africa +senegal text(is:a:neighboring:country:of) mauritania +senegal text(was:a:neighboring:country:of) mali +senegal text(was:a:neighbor:of) gambia +senegal text(is:a:neighbor:of) guinea +guadeloupe text(is:present:in) caribbean +guadeloupe text(is:still:in) americas +british_virgin_islands text(was:still:in) caribbean +british_virgin_islands text(was:currently:in) americas +cook_islands text(is:currently:in) polynesia +cook_islands text(was:situated:in) oceania +uganda text(is:situated:in) eastern_africa +uganda text(is:located:in) africa +uganda text(is:a:neighboring:state:to) dr_congo +uganda text(was:a:neighboring:state:to) kenya +uganda text(borders:with) south_sudan +uganda text(neighbors:withborders) rwanda +macedonia text(was:located:in) southern_europe +macedonia text(could:be:found:in) europe +macedonia text(neighbors) greece +macedonia text(is:butted:against) albania +macedonia text(was:butted:against) serbia +tunisia text(can:be:found:in) northern_africa +tunisia text(was:positioned:in) africa +tunisia text(is:a:neighboring:country:of) libya +tunisia text(was:a:neighboring:country:of) algeria +brazil text(is:positioned:in) south_america +brazil text(was:localized:in) americas +brazil text(was:a:neighbor:of) bolivia +brazil text(is:a:neighbor:of) colombia +brazil text(is:a:neighboring:state:to) paraguay +brazil text(was:a:neighboring:state:to) uruguay +brazil text(borders:with) argentina +brazil text(neighbors:withborders) peru +paraguay text(is:localized:in) south_america +paraguay text(was:present:in) americas +paraguay text(neighbors) argentina +paraguay text(is:butted:against) brazil +paraguay text(was:butted:against) bolivia +finland text(is:present:in) northern_europe +finland text(is:still:in) europe +finland text(is:a:neighboring:country:of) sweden +finland text(was:a:neighboring:country:of) russia +montenegro text(was:still:in) southern_europe +montenegro text(was:currently:in) europe +montenegro text(was:a:neighbor:of) bosnia_and_herzegovina +montenegro text(is:a:neighbor:of) croatia +montenegro text(is:a:neighboring:state:to) serbia +montenegro text(was:a:neighboring:state:to) albania +peru text(is:currently:in) south_america +peru text(was:situated:in) americas +peru text(borders:with) bolivia +peru text(neighbors:withborders) chile +peru text(neighbors) brazil +peru text(is:butted:against) colombia +montserrat text(is:situated:in) caribbean +montserrat text(is:located:in) americas +ukraine text(was:located:in) eastern_europe +ukraine text(could:be:found:in) europe +ukraine text(was:butted:against) slovakia +ukraine text(is:a:neighboring:country:of) belarus +ukraine text(was:a:neighboring:country:of) poland +ukraine text(was:a:neighbor:of) russia +ukraine text(is:a:neighbor:of) moldova +ukraine text(is:a:neighboring:state:to) romania +dominica text(can:be:found:in) caribbean +dominica text(was:positioned:in) americas +turkmenistan text(is:positioned:in) central_asia +turkmenistan text(was:a:neighboring:state:to) afghanistan +turkmenistan text(borders:with) uzbekistan +turkmenistan text(neighbors:withborders) iran +guernsey text(was:localized:in) northern_europe +guernsey text(is:localized:in) europe +gibraltar text(was:present:in) southern_europe +gibraltar text(is:present:in) europe +switzerland text(is:still:in) western_europe +switzerland text(was:still:in) europe +switzerland text(neighbors) italy +switzerland text(is:butted:against) austria +switzerland text(was:butted:against) france +switzerland text(is:a:neighboring:country:of) liechtenstein +austria text(was:currently:in) western_europe +austria text(is:currently:in) europe +austria text(was:a:neighboring:country:of) slovakia +austria text(was:a:neighbor:of) slovenia +austria text(is:a:neighbor:of) italy +austria text(is:a:neighboring:state:to) switzerland +austria text(was:a:neighboring:state:to) liechtenstein +malawi text(was:situated:in) eastern_africa +malawi text(is:situated:in) africa +malawi text(borders:with) mozambique +hong_kong text(is:located:in) eastern_asia +hong_kong text(neighbors:withborders) china +liechtenstein text(was:located:in) western_europe +liechtenstein text(could:be:found:in) europe +liechtenstein text(neighbors) switzerland +liechtenstein text(is:butted:against) austria +barbados text(can:be:found:in) caribbean +barbados text(was:positioned:in) americas +georgia text(is:positioned:in) western_asia +georgia text(was:localized:in) asia +georgia text(was:butted:against) armenia +georgia text(is:a:neighboring:country:of) azerbaijan +georgia text(was:a:neighboring:country:of) russia +georgia text(was:a:neighbor:of) turkey +albania text(is:localized:in) southern_europe +albania text(was:present:in) europe +albania text(is:a:neighbor:of) montenegro +albania text(is:a:neighboring:state:to) macedonia +albania text(was:a:neighboring:state:to) greece +kuwait text(is:present:in) western_asia +kuwait text(is:still:in) asia +south_africa text(was:still:in) southern_africa +south_africa text(was:currently:in) africa +south_africa text(borders:with) mozambique +south_africa text(neighbors:withborders) swaziland +south_africa text(neighbors) namibia +south_africa text(is:butted:against) lesotho +haiti text(is:currently:in) caribbean +haiti text(was:situated:in) americas +haiti text(was:butted:against) dominican_republic +afghanistan text(is:situated:in) southern_asia +afghanistan text(is:located:in) asia +afghanistan text(is:a:neighboring:country:of) turkmenistan +afghanistan text(was:a:neighboring:country:of) china +afghanistan text(was:a:neighbor:of) tajikistan +afghanistan text(is:a:neighbor:of) uzbekistan +afghanistan text(is:a:neighboring:state:to) iran +afghanistan text(was:a:neighboring:state:to) pakistan +singapore text(was:located:in) south-eastern_asia +singapore text(could:be:found:in) asia +benin text(can:be:found:in) western_africa +benin text(was:positioned:in) africa +benin text(borders:with) niger +benin text(neighbors:withborders) togo +benin text(neighbors) nigeria +åland_islands text(is:positioned:in) northern_europe +åland_islands text(was:localized:in) europe +croatia text(is:localized:in) southern_europe +croatia text(was:present:in) europe +croatia text(is:butted:against) slovenia +croatia text(was:butted:against) bosnia_and_herzegovina +croatia text(is:a:neighboring:country:of) serbia +croatia text(was:a:neighboring:country:of) montenegro +sweden text(is:present:in) northern_europe +sweden text(is:still:in) europe +sweden text(was:a:neighbor:of) finland +mexico text(was:still:in) northern_america +mexico text(is:a:neighbor:of) belize +mexico text(is:a:neighboring:state:to) guatemala +greenland text(was:currently:in) northern_america +greenland text(is:currently:in) americas +norfolk_island text(was:situated:in) australia_and_new_zealand +norfolk_island text(is:situated:in) oceania +nepal text(is:located:in) southern_asia +nepal text(was:located:in) asia +nepal text(was:a:neighboring:state:to) china +nepal text(borders:with) india +guatemala text(could:be:found:in) central_america +guatemala text(neighbors:withborders) belize +guatemala text(neighbors) el_salvador +guatemala text(is:butted:against) mexico +guatemala text(was:butted:against) honduras +south_korea text(can:be:found:in) eastern_asia +south_korea text(was:positioned:in) asia +south_korea text(is:a:neighboring:country:of) north_korea +moldova text(is:positioned:in) eastern_europe +moldova text(was:localized:in) europe +moldova text(was:a:neighboring:country:of) ukraine +moldova text(was:a:neighbor:of) romania +mauritius text(is:localized:in) eastern_africa +mauritius text(was:present:in) africa +belarus text(is:present:in) eastern_europe +belarus text(is:a:neighbor:of) ukraine +belarus text(is:a:neighboring:state:to) poland +belarus text(was:a:neighboring:state:to) lithuania +belarus text(borders:with) russia +belarus text(neighbors:withborders) latvia +bangladesh text(is:still:in) southern_asia +bangladesh text(neighbors) india +malaysia text(was:still:in) south-eastern_asia +malaysia text(was:currently:in) asia +malaysia text(is:butted:against) brunei +bosnia_and_herzegovina text(is:currently:in) southern_europe +bosnia_and_herzegovina text(was:situated:in) europe +bosnia_and_herzegovina text(was:butted:against) serbia +bosnia_and_herzegovina text(is:a:neighboring:country:of) croatia +bosnia_and_herzegovina text(was:a:neighboring:country:of) montenegro +luxembourg text(is:situated:in) western_europe +luxembourg text(is:located:in) europe +luxembourg text(was:a:neighbor:of) belgium +luxembourg text(is:a:neighbor:of) france +italy text(was:located:in) southern_europe +italy text(could:be:found:in) europe +italy text(is:a:neighboring:state:to) slovenia +italy text(was:a:neighboring:state:to) switzerland +italy text(borders:with) austria +italy text(neighbors:withborders) france +italy text(neighbors) vatican_city +italy text(is:butted:against) san_marino +azerbaijan text(can:be:found:in) western_asia +azerbaijan text(was:positioned:in) asia +azerbaijan text(was:butted:against) turkey +azerbaijan text(is:a:neighboring:country:of) armenia +azerbaijan text(was:a:neighboring:country:of) russia +azerbaijan text(was:a:neighbor:of) iran +azerbaijan text(is:a:neighbor:of) georgia +honduras text(is:positioned:in) central_america +honduras text(was:localized:in) americas +honduras text(is:a:neighboring:state:to) guatemala +honduras text(was:a:neighboring:state:to) el_salvador +mali text(is:localized:in) western_africa +mali text(was:present:in) africa +mali text(borders:with) guinea +mali text(neighbors:withborders) mauritania +mali text(neighbors) niger +mali text(is:butted:against) senegal +mali text(was:butted:against) algeria +mali text(is:a:neighboring:country:of) ivory_coast +taiwan text(is:present:in) eastern_asia +taiwan text(is:still:in) asia +algeria text(was:still:in) northern_africa +algeria text(was:currently:in) africa +algeria text(was:a:neighboring:country:of) libya +algeria text(was:a:neighbor:of) tunisia +algeria text(is:a:neighbor:of) mauritania +algeria text(is:a:neighboring:state:to) morocco +algeria text(was:a:neighboring:state:to) niger +algeria text(borders:with) mali +algeria text(neighbors:withborders) western_sahara +yemen text(is:currently:in) western_asia +yemen text(was:situated:in) asia +yemen text(neighbors) oman +puerto_rico text(is:situated:in) caribbean +puerto_rico text(is:located:in) americas +saint_vincent_and_the_grenadines text(was:located:in) caribbean +saint_vincent_and_the_grenadines text(could:be:found:in) americas +grenada text(can:be:found:in) caribbean +grenada text(was:positioned:in) americas +tokelau text(is:positioned:in) polynesia +tokelau text(was:localized:in) oceania +slovenia text(is:localized:in) southern_europe +slovenia text(was:present:in) europe +slovenia text(is:butted:against) austria +slovenia text(was:butted:against) croatia +slovenia text(is:a:neighboring:country:of) italy +philippines text(is:present:in) south-eastern_asia +philippines text(is:still:in) asia +micronesia text(was:still:in) micronesia +micronesia text(was:currently:in) oceania +china text(is:currently:in) eastern_asia +china text(was:situated:in) asia +china text(was:a:neighboring:country:of) afghanistan +china text(was:a:neighbor:of) india +china text(is:a:neighbor:of) kyrgyzstan +china text(is:a:neighboring:state:to) tajikistan +china text(was:a:neighboring:state:to) laos +china text(borders:with) russia +china text(neighbors:withborders) north_korea +china text(neighbors) pakistan +china text(is:butted:against) hong_kong +china text(was:butted:against) vietnam +gabon text(is:situated:in) middle_africa +gabon text(is:located:in) africa +gabon text(is:a:neighboring:country:of) equatorial_guinea +gabon text(was:a:neighboring:country:of) republic_of_the_congo +gabon text(was:a:neighbor:of) cameroon +united_states_minor_outlying_islands text(was:located:in) northern_america +united_states_minor_outlying_islands text(could:be:found:in) americas +andorra text(can:be:found:in) southern_europe +andorra text(was:positioned:in) europe +andorra text(is:a:neighbor:of) france +samoa text(is:positioned:in) polynesia +samoa text(was:localized:in) oceania +gambia text(is:localized:in) western_africa +gambia text(was:present:in) africa +gambia text(is:a:neighboring:state:to) senegal +palestine text(is:present:in) western_asia +palestine text(is:still:in) asia +palestine text(was:a:neighboring:state:to) israel +réunion text(was:still:in) eastern_africa +réunion text(was:currently:in) africa +france text(is:currently:in) western_europe +france text(was:situated:in) europe +france text(borders:with) luxembourg +france text(neighbors:withborders) italy +france text(neighbors) andorra +france text(is:butted:against) switzerland +france text(was:butted:against) belgium +lithuania text(is:situated:in) northern_europe +lithuania text(is:located:in) europe +lithuania text(is:a:neighboring:country:of) poland +lithuania text(was:a:neighboring:country:of) latvia +lithuania text(was:a:neighbor:of) belarus +lithuania text(is:a:neighbor:of) russia +cayman_islands text(was:located:in) caribbean +cayman_islands text(could:be:found:in) americas +saint_lucia text(can:be:found:in) caribbean +saint_lucia text(was:positioned:in) americas +curaçao text(is:positioned:in) caribbean +curaçao text(was:localized:in) americas +caribbean text(is:localized:in) americas +southern_asia text(was:present:in) asia +middle_africa text(is:present:in) africa +northern_europe text(is:still:in) europe +southern_europe text(was:still:in) europe +western_asia text(was:currently:in) asia +south_america text(is:currently:in) americas +polynesia text(was:situated:in) oceania +australia_and_new_zealand text(is:situated:in) oceania +western_europe text(is:located:in) europe +eastern_africa text(was:located:in) africa +western_africa text(could:be:found:in) africa +eastern_europe text(can:be:found:in) europe +central_america text(was:positioned:in) americas +northern_america text(is:positioned:in) americas +south-eastern_asia text(was:localized:in) asia +southern_africa text(is:localized:in) africa +eastern_asia text(was:present:in) asia +northern_africa text(is:present:in) africa +melanesia text(is:still:in) oceania +micronesia text(was:still:in) oceania +central_asia text(was:currently:in) asia +central_europe text(is:currently:in) europe +netherlands text(was:a:neighboring:country:of) germany +turkey text(was:a:neighbor:of) bulgaria +turkey text(is:a:neighbor:of) iraq +turkey text(is:a:neighboring:state:to) syria +angola text(was:a:neighboring:state:to) zambia +zambia text(is:positioned:in) eastern_africa +zambia text(was:localized:in) africa +zambia text(borders:with) tanzania +zambia text(neighbors:withborders) mozambique +zambia text(neighbors) dr_congo +zambia text(is:butted:against) angola +zambia text(was:butted:against) botswana +zambia text(is:a:neighboring:country:of) zimbabwe +zambia text(was:a:neighboring:country:of) namibia +zambia text(was:a:neighbor:of) malawi +burundi text(is:a:neighbor:of) tanzania +central_african_republic text(is:a:neighboring:state:to) sudan +ivory_coast text(was:a:neighboring:state:to) burkina_faso +ivory_coast text(borders:with) ghana +poland text(neighbors:withborders) germany +poland text(neighbors) czechia +kazakhstan text(is:localized:in) central_asia +kazakhstan text(was:present:in) asia +kazakhstan text(is:butted:against) turkmenistan +kazakhstan text(was:butted:against) china +kazakhstan text(is:a:neighboring:country:of) kyrgyzstan +kazakhstan text(was:a:neighboring:country:of) uzbekistan +kazakhstan text(was:a:neighbor:of) russia +uzbekistan text(is:a:neighbor:of) kazakhstan +serbia text(is:a:neighboring:state:to) kosovo +serbia text(was:a:neighboring:state:to) hungary +serbia text(borders:with) bulgaria +czechia text(is:present:in) eastern_europe +czechia text(is:still:in) europe +czechia text(neighbors:withborders) germany +czechia text(neighbors) austria +czechia text(is:butted:against) poland +czechia text(was:butted:against) slovakia +nicaragua text(was:still:in) central_america +nicaragua text(is:a:neighboring:country:of) honduras +nicaragua text(was:a:neighboring:country:of) costa_rica +canada text(was:a:neighbor:of) united_states +slovakia text(is:a:neighbor:of) hungary +slovakia text(is:a:neighboring:state:to) czechia +mozambique text(was:a:neighboring:state:to) tanzania +mozambique text(borders:with) zimbabwe +mozambique text(neighbors:withborders) zambia +colombia text(neighbors) ecuador +colombia text(is:butted:against) panama +colombia text(was:butted:against) venezuela +saudi_arabia text(was:currently:in) western_asia +saudi_arabia text(is:a:neighboring:country:of) qatar +saudi_arabia text(was:a:neighboring:country:of) united_arab_emirates +saudi_arabia text(was:a:neighbor:of) jordan +saudi_arabia text(is:a:neighbor:of) yemen +saudi_arabia text(is:a:neighboring:state:to) oman +saudi_arabia text(was:a:neighboring:state:to) kuwait +saudi_arabia text(borders:with) iraq +namibia text(neighbors:withborders) zambia +namibia text(neighbors) botswana +guyana text(is:currently:in) south_america +guyana text(is:butted:against) brazil +guyana text(was:butted:against) suriname +guyana text(is:a:neighboring:country:of) venezuela +germany text(was:situated:in) western_europe +germany text(was:a:neighboring:country:of) denmark +germany text(was:a:neighbor:of) netherlands +germany text(is:a:neighbor:of) poland +germany text(is:a:neighboring:state:to) luxembourg +germany text(was:a:neighboring:state:to) belgium +germany text(borders:with) switzerland +germany text(neighbors:withborders) austria +germany text(neighbors) france +germany text(is:butted:against) czechia +burkina_faso text(is:situated:in) western_africa +burkina_faso text(was:butted:against) togo +burkina_faso text(is:a:neighboring:country:of) benin +burkina_faso text(was:a:neighboring:country:of) niger +burkina_faso text(was:a:neighbor:of) ghana +burkina_faso text(is:a:neighbor:of) mali +burkina_faso text(is:a:neighboring:state:to) ivory_coast +tanzania text(is:located:in) eastern_africa +tanzania text(was:a:neighboring:state:to) uganda +tanzania text(borders:with) mozambique +tanzania text(neighbors:withborders) dr_congo +tanzania text(neighbors) kenya +tanzania text(is:butted:against) rwanda +tanzania text(was:butted:against) zambia +tanzania text(is:a:neighboring:country:of) malawi +tanzania text(was:a:neighboring:country:of) burundi +norway text(was:located:in) northern_europe +norway text(was:a:neighbor:of) sweden +norway text(is:a:neighbor:of) finland +norway text(is:a:neighboring:state:to) russia +laos text(was:a:neighboring:state:to) myanmar +laos text(borders:with) thailand +suriname text(could:be:found:in) south_america +suriname text(can:be:found:in) americas +suriname text(neighbors:withborders) brazil +suriname text(neighbors) french_guiana +suriname text(is:butted:against) guyana +egypt text(was:positioned:in) northern_africa +egypt text(was:butted:against) libya +egypt text(is:a:neighboring:country:of) israel +egypt text(was:a:neighboring:country:of) sudan +bulgaria text(is:positioned:in) eastern_europe +bulgaria text(was:a:neighbor:of) macedonia +bulgaria text(is:a:neighbor:of) turkey +bulgaria text(is:a:neighboring:state:to) greece +bulgaria text(was:a:neighboring:state:to) serbia +bulgaria text(borders:with) romania +guinea text(neighbors:withborders) guinea-bissau +spain text(was:localized:in) southern_europe +spain text(neighbors) morocco +spain text(is:butted:against) gibraltar +spain text(was:butted:against) andorra +spain text(is:a:neighboring:country:of) france +spain text(was:a:neighboring:country:of) portugal +costa_rica text(was:a:neighbor:of) panama +costa_rica text(is:a:neighbor:of) nicaragua +portugal text(is:a:neighboring:state:to) spain +romania text(was:a:neighboring:state:to) hungary +romania text(borders:with) bulgaria +myanmar text(is:localized:in) south-eastern_asia +myanmar text(neighbors:withborders) india +myanmar text(neighbors) bangladesh +myanmar text(is:butted:against) china +myanmar text(was:butted:against) laos +myanmar text(is:a:neighboring:country:of) thailand +iraq text(was:present:in) western_asia +iraq text(was:a:neighboring:country:of) turkey +iraq text(was:a:neighbor:of) saudi_arabia +iraq text(is:a:neighbor:of) iran +iraq text(is:a:neighboring:state:to) jordan +iraq text(was:a:neighboring:state:to) kuwait +iraq text(borders:with) syria +dr_congo text(neighbors:withborders) tanzania +dr_congo text(neighbors) zambia +kyrgyzstan text(is:butted:against) kazakhstan +botswana text(is:present:in) southern_africa +botswana text(is:still:in) africa +botswana text(was:butted:against) zimbabwe +botswana text(is:a:neighboring:country:of) namibia +botswana text(was:a:neighboring:country:of) zambia +botswana text(was:a:neighbor:of) south_africa +belgium text(is:a:neighbor:of) germany +qatar text(is:a:neighboring:state:to) saudi_arabia +syria text(was:still:in) western_asia +syria text(was:currently:in) asia +syria text(was:a:neighboring:state:to) israel +syria text(borders:with) turkey +syria text(neighbors:withborders) jordan +syria text(neighbors) lebanon +syria text(is:butted:against) iraq +india text(was:butted:against) bhutan +india text(is:a:neighboring:country:of) myanmar +morocco text(was:a:neighboring:country:of) spain +kenya text(was:a:neighbor:of) tanzania +south_sudan text(is:a:neighbor:of) sudan +ghana text(is:currently:in) western_africa +ghana text(is:a:neighboring:state:to) burkina_faso +ghana text(was:a:neighboring:state:to) ivory_coast +ghana text(borders:with) togo +thailand text(was:situated:in) south-eastern_asia +thailand text(neighbors:withborders) cambodia +thailand text(neighbors) myanmar +thailand text(is:butted:against) laos +thailand text(was:butted:against) malaysia +sudan text(is:situated:in) northern_africa +sudan text(is:a:neighboring:country:of) chad +sudan text(was:a:neighboring:country:of) libya +sudan text(was:a:neighbor:of) south_sudan +sudan text(is:a:neighbor:of) eritrea +sudan text(is:a:neighboring:state:to) central_african_republic +sudan text(was:a:neighboring:state:to) egypt +sudan text(borders:with) ethiopia +cambodia text(neighbors:withborders) thailand +zimbabwe text(is:located:in) eastern_africa +zimbabwe text(neighbors) zambia +zimbabwe text(is:butted:against) south_africa +zimbabwe text(was:butted:against) botswana +zimbabwe text(is:a:neighboring:country:of) mozambique +lebanon text(was:a:neighboring:country:of) syria +sint_maarten text(was:a:neighbor:of) saint_martin +ethiopia text(is:a:neighbor:of) eritrea +ethiopia text(is:a:neighboring:state:to) djibouti +ethiopia text(was:a:neighboring:state:to) sudan +guinea-bissau text(was:located:in) western_africa +guinea-bissau text(could:be:found:in) africa +guinea-bissau text(borders:with) guinea +guinea-bissau text(neighbors:withborders) senegal +libya text(neighbors) egypt +libya text(is:butted:against) sudan +bhutan text(can:be:found:in) southern_asia +bhutan text(was:positioned:in) asia +bhutan text(was:butted:against) china +bhutan text(is:a:neighboring:country:of) india +macau text(is:positioned:in) eastern_asia +macau text(was:localized:in) asia +macau text(was:a:neighboring:country:of) china +somalia text(was:a:neighbor:of) djibouti +russia text(is:a:neighbor:of) kazakhstan +russia text(is:a:neighboring:state:to) norway +russia text(was:a:neighboring:state:to) mongolia +panama text(is:localized:in) central_america +panama text(was:present:in) americas +panama text(borders:with) costa_rica +panama text(neighbors:withborders) colombia +papua_new_guinea text(neighbors) indonesia +oman text(is:butted:against) saudi_arabia +israel text(was:butted:against) egypt +israel text(is:a:neighboring:country:of) jordan +israel text(was:a:neighboring:country:of) syria +togo text(was:a:neighbor:of) burkina_faso +togo text(is:a:neighbor:of) ghana +iran text(is:a:neighboring:state:to) iraq +saint_martin text(is:present:in) caribbean +saint_martin text(is:still:in) americas +saint_martin text(was:a:neighboring:state:to) sint_maarten +denmark text(was:still:in) northern_europe +denmark text(borders:with) germany +kosovo text(was:currently:in) eastern_europe +kosovo text(is:currently:in) europe +kosovo text(neighbors:withborders) serbia +kosovo text(neighbors) albania +kosovo text(is:butted:against) macedonia +kosovo text(was:butted:against) montenegro +eritrea text(was:situated:in) eastern_africa +eritrea text(is:a:neighboring:country:of) djibouti +eritrea text(was:a:neighboring:country:of) sudan +eritrea text(was:a:neighbor:of) ethiopia +niger text(is:a:neighbor:of) burkina_faso +rwanda text(is:a:neighboring:state:to) tanzania +united_arab_emirates text(was:a:neighboring:state:to) saudi_arabia +greece text(borders:with) bulgaria +senegal text(neighbors:withborders) guinea-bissau +monaco text(is:situated:in) western_europe +monaco text(neighbors) france +djibouti text(is:located:in) eastern_africa +djibouti text(is:butted:against) eritrea +djibouti text(was:butted:against) somalia +djibouti text(is:a:neighboring:country:of) ethiopia +indonesia text(was:located:in) south-eastern_asia +indonesia text(was:a:neighboring:country:of) papua_new_guinea +indonesia text(was:a:neighbor:of) timor-leste +indonesia text(is:a:neighbor:of) malaysia +uganda text(is:a:neighboring:state:to) tanzania +macedonia text(was:a:neighboring:state:to) kosovo +macedonia text(borders:with) bulgaria +ecuador text(could:be:found:in) south_america +ecuador text(neighbors:withborders) peru +ecuador text(neighbors) colombia +brazil text(is:butted:against) french_guiana +brazil text(was:butted:against) suriname +brazil text(is:a:neighboring:country:of) venezuela +brazil text(was:a:neighboring:country:of) guyana +finland text(was:a:neighbor:of) norway +jordan text(can:be:found:in) western_asia +jordan text(is:a:neighbor:of) saudi_arabia +jordan text(is:a:neighboring:state:to) israel +jordan text(was:a:neighboring:state:to) iraq +jordan text(borders:with) syria +timor-leste text(was:positioned:in) south-eastern_asia +timor-leste text(neighbors:withborders) indonesia +montenegro text(neighbors) kosovo +peru text(is:butted:against) ecuador +ukraine text(was:butted:against) hungary +turkmenistan text(is:a:neighboring:country:of) kazakhstan +gibraltar text(was:a:neighboring:country:of) spain +switzerland text(was:a:neighbor:of) germany +austria text(is:a:neighbor:of) germany +austria text(is:a:neighboring:state:to) hungary +austria text(was:a:neighboring:state:to) czechia +hungary text(is:positioned:in) eastern_europe +hungary text(borders:with) ukraine +hungary text(neighbors:withborders) slovakia +hungary text(neighbors) slovenia +hungary text(is:butted:against) croatia +hungary text(was:butted:against) austria +hungary text(is:a:neighboring:country:of) serbia +hungary text(was:a:neighboring:country:of) romania +malawi text(was:a:neighbor:of) zambia +malawi text(is:a:neighbor:of) tanzania +albania text(is:a:neighboring:state:to) kosovo +kuwait text(was:a:neighboring:state:to) saudi_arabia +kuwait text(borders:with) iraq +south_africa text(neighbors:withborders) botswana +south_africa text(neighbors) zimbabwe +benin text(is:butted:against) burkina_faso +croatia text(was:butted:against) hungary +sweden text(is:a:neighboring:country:of) norway +mexico text(was:a:neighboring:country:of) united_states +bangladesh text(was:a:neighbor:of) myanmar +malaysia text(is:a:neighbor:of) thailand +malaysia text(is:a:neighboring:state:to) indonesia +luxembourg text(was:a:neighboring:state:to) germany +honduras text(borders:with) nicaragua +mali text(neighbors:withborders) burkina_faso +french_guiana text(was:localized:in) south_america +french_guiana text(neighbors) brazil +french_guiana text(is:butted:against) suriname +yemen text(was:butted:against) saudi_arabia +venezuela text(is:localized:in) south_america +venezuela text(is:a:neighboring:country:of) brazil +venezuela text(was:a:neighboring:country:of) guyana +venezuela text(was:a:neighbor:of) colombia +united_states text(was:present:in) northern_america +united_states text(is:a:neighbor:of) canada +united_states text(is:a:neighboring:state:to) mexico +slovenia text(was:a:neighboring:state:to) hungary +china text(borders:with) bhutan +china text(neighbors:withborders) macau +china text(neighbors) kazakhstan +china text(is:butted:against) myanmar +china text(was:butted:against) mongolia +andorra text(is:a:neighboring:country:of) spain +palestine text(was:a:neighboring:country:of) jordan +palestine text(was:a:neighbor:of) egypt +france text(is:a:neighbor:of) germany +france text(is:a:neighboring:state:to) monaco +france text(was:a:neighboring:state:to) spain +mongolia text(is:present:in) eastern_asia +mongolia text(is:still:in) asia +mongolia text(borders:with) china +mongolia text(neighbors:withborders) russia \ No newline at end of file diff --git a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_country2text.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_country2text.tsv deleted file mode 100644 index 770f4a3..0000000 --- a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_country2text.tsv +++ /dev/null @@ -1,1063 +0,0 @@ -text(帛琉) locatedIn text(ميكرونيسيا) -text(Palau) locatedIn text(Oceanië) -text(馬爾代夫) locatedIn text(South:Asia) -text(المالديف) locatedIn text(Azië) -text(Brunei) locatedIn text(Sudeste:Asiático) -text(بروناي) locatedIn text(Asia) -text(Brunei) neighborOf text(ماليزيا) -text(Japón) locatedIn text(東亞) -text(Japan) locatedIn text(Asia) -text(Países:Bajos) neighborOf text(ألمانيا) -text(荷蘭) neighborOf text(بلجيكا) -text(تركيا) neighborOf text(Armenia) -text(Turquía) neighborOf text(أذربيجان) -text(Turkey) neighborOf text(إيران) -text(तुर्की) neighborOf text(Griekenland) -text(Turkije) neighborOf text(Georgia) -text(土耳其) neighborOf text(Bulgaria) -text(تركيا) neighborOf text(Irak) -text(Turquía) neighborOf text(Syrië) -text(Angola) locatedIn text(وسط:إفريقيا) -text(安哥拉) locatedIn text(Africa) -text(أنغولا) neighborOf text(Congo-Kinshasa) -text(Angola) neighborOf text(नामीबिया) -text(अंगोला) neighborOf text(贊比亞) -text(Angola) neighborOf text(جمهورية:الكونغو) -text(आर्मीनिया) locatedIn text(पश्चिमी:एशिया) -text(亞美尼亞) locatedIn text(亞洲) -text(Armenia) neighborOf text(जॉर्जिया) -text(أرمينيا) neighborOf text(Azerbeidzjan) -text(Armenië) neighborOf text(Iran) -text(Armenia) neighborOf text(Turkey) -text(Antigua:en:Barbuda) locatedIn text(Caribbean) -text(安提瓜和巴布达) locatedIn text(América) -text(Esuatini) locatedIn text(إفريقيا:الجنوبية) -text(Swaziland) locatedIn text(África) -text(एस्वातीनी) neighborOf text(Sudáfrica) -text(Eswatini) neighborOf text(موزمبيق) -text(Wallis:y:Futuna) locatedIn text(بولنيزيا) -text(Wallis:en:Futuna) locatedIn text(大洋洲) -text(उरुग्वे) locatedIn text(أمريكا:الجنوبية) -text(Uruguay) locatedIn text(Americas) -text(Uruguay) neighborOf text(阿根廷) -text(Uruguay) neighborOf text(巴西) -text(Zambia) locatedIn text(East:Africa) -text(Zambia) locatedIn text(Afrika) -text(زامبيا) neighborOf text(Tanzania) -text(ज़ाम्बिया) neighborOf text(Mozambique) -text(Zambia) neighborOf text(Democratic:Republic:of:the:Congo) -text(贊比亞) neighborOf text(Angola) -text(Zambia) neighborOf text(Botswana) -text(Zambia) neighborOf text(Zimbabwe) -text(زامبيا) neighborOf text(Namibië) -text(ज़ाम्बिया) neighborOf text(Malawi) -text(قبرص) locatedIn text(पूर्वी:यूरोप) -text(Cyprus) locatedIn text(Europe) -text(साइप्रस) neighborOf text(United:Kingdom) -text(المملكة:المتحدة) locatedIn text(أوروبا:الشمالية) -text(United:Kingdom) locatedIn text(Europa) -text(Reino:Unido) neighborOf text(英国) -text(बुरुण्डी) locatedIn text(شرق:إفريقيا) -text(Burundi) locatedIn text(अफ्रीका) -text(Burundi) neighborOf text(刚果民主共和国) -text(بوروندي) neighborOf text(Rwanda) -text(蒲隆地) neighborOf text(تنزانيا) -text(中非共和國) locatedIn text(Central:Africa) -text(جمهورية:إفريقيا:الوسطى) locatedIn text(非洲) -text(Central:African:Republic) neighborOf text(تشاد) -text(Centraal-Afrikaanse:Republiek) neighborOf text(剛果共和國) -text(República:Centroafricana) neighborOf text(جمهورية:الكونغو:الديمقراطية) -text(मध्य:अफ़्रीकी:गणराज्य) neighborOf text(Zuid-Soedan) -text(中非共和國) neighborOf text(Camerún) -text(جمهورية:إفريقيا:الوسطى) neighborOf text(Soedan) -text(Tonga) locatedIn text(पोलीनेशिया) -text(東加) locatedIn text(أوقيانوسيا) -text(कोत:दिव्वार) locatedIn text(West-Afrika) -text(科特迪瓦) locatedIn text(إفريقيا) -text(Ivoorkust) neighborOf text(Burkina:Faso) -text(Costa:de:Marfil) neighborOf text(घाना) -text(Ivory:Coast) neighborOf text(लाइबेरिया) -text(ساحل:العاج) neighborOf text(马里) -text(कोत:दिव्वार) neighborOf text(几内亚) -text(सिएरा:लियोन) neighborOf text(利比里亞) -text(سيراليون) neighborOf text(Guinea) -text(Mayotte) locatedIn text(Oost-Afrika) -text(马约特) locatedIn text(Africa) -text(بولندا) neighborOf text(德國) -text(Polonia) neighborOf text(Oekraïne) -text(Polen) neighborOf text(斯洛伐克) -text(波蘭) neighborOf text(Bielorrusia) -text(Poland) neighborOf text(Russia) -text(पोलैंड) neighborOf text(लिथुआनिया) -text(بولندا) neighborOf text(جمهورية:التشيك) -text(कज़ाख़िस्तान) locatedIn text(Centraal-Azië) -text(Kazachstan) locatedIn text(آسيا) -text(Kazajistán) neighborOf text(تركمانستان) -text(哈萨克斯坦) neighborOf text(People's:Republic:of:China) -text(Kazakhstan) neighborOf text(Kirguistán) -text(كازاخستان) neighborOf text(उज़्बेकिस्तान) -text(कज़ाख़िस्तान) neighborOf text(रूस) -text(Uzbekistan) locatedIn text(中亚) -text(أوزبكستان) locatedIn text(एशिया) -text(乌兹别克斯坦) neighborOf text(Afghanistan) -text(Uzbekistán) neighborOf text(土庫曼斯坦) -text(Oezbekistan) neighborOf text(Kazachstan) -text(उज़्बेकिस्तान) neighborOf text(吉尔吉斯斯坦) -text(Uzbekistan) neighborOf text(ताजीकिस्तान) -text(Islas:Turcas:y:Caicos) locatedIn text(Caraïben) -text(Turks:and:Caicos:Islands) locatedIn text(أمريكتان) -text(नया:कैलेडोनिया) locatedIn text(Melanesia) -text(New:Caledonia) locatedIn text(Oceanía) -text(巴基斯坦) neighborOf text(中华人民共和国) -text(Pakistan) neighborOf text(Afghanistan) -text(Pakistán) neighborOf text(ईरान) -text(पाकिस्तान) neighborOf text(India) -text(अर्जेण्टीना) locatedIn text(南美洲) -text(Argentinië) locatedIn text(美洲) -text(الأرجنتين) neighborOf text(Bolivia) -text(Argentina) neighborOf text(Chili) -text(Argentina) neighborOf text(Brazilië) -text(阿根廷) neighborOf text(Paraguay) -text(अर्जेण्टीना) neighborOf text(烏拉圭) -text(كوبا) locatedIn text(Caribe) -text(古巴) locatedIn text(महाअमेरिका) -text(塞爾維亞) neighborOf text(Macedonia:del:Norte) -text(Servië) neighborOf text(मॉन्टेनीग्रो) -text(सर्बिया) neighborOf text(कोसोवो:गणराज्य) -text(Serbia) neighborOf text(बोस्निया:और:हर्ज़ेगोविना) -text(صربيا) neighborOf text(क्रोएशिया) -text(Serbia) neighborOf text(Hongarije) -text(塞爾維亞) neighborOf text(Bulgarije) -text(Servië) neighborOf text(Romania) -text(República:Checa) locatedIn text(Oost-Europa) -text(चेक:गणराज्य) locatedIn text(أوروبا) -text(捷克) neighborOf text(जर्मनी) -text(Czech:Republic) neighborOf text(ऑस्ट्रिया) -text(Tsjechië) neighborOf text(Polonia) -text(جمهورية:التشيك) neighborOf text(स्लोवाकिया) -text(Nicaragua) neighborOf text(هندوراس) -text(निकारागुआ) neighborOf text(Costa:Rica) -text(Vietnam) locatedIn text(दक्षिण:पूर्व:एशिया) -text(Vietnam) locatedIn text(Azië) -text(Vietnam) neighborOf text(柬埔寨) -text(越南) neighborOf text(Laos) -text(فيتنام) neighborOf text(الصين) -text(نييوي) locatedIn text(玻里尼西亞) -text(निउए) locatedIn text(ओशिआनिया) -text(加拿大) locatedIn text(北美洲) -text(Canadá) locatedIn text(Amerika) -text(Canada) neighborOf text(United:States) -text(سلوفاكيا) neighborOf text(Ukraine) -text(Slowakije) neighborOf text(Polen) -text(Slovakia) neighborOf text(奧地利) -text(Eslovaquia) neighborOf text(हंगरी) -text(斯洛伐克) neighborOf text(República:Checa) -text(Mozambique) neighborOf text(Tanzania) -text(मोज़ाम्बीक) neighborOf text(斯威士兰) -text(莫桑比克) neighborOf text(Zimbabwe) -text(Mozambique) neighborOf text(Zambia) -text(موزمبيق) neighborOf text(Malawi) -text(Mozambique) neighborOf text(جنوب:إفريقيا) -text(Aruba) locatedIn text(الكاريبي) -text(Aruba) locatedIn text(América) -text(Bolivia) locatedIn text(América:del:Sur) -text(Bolivia) locatedIn text(Americas) -text(बोलिविया) neighborOf text(智利) -text(بوليفيا) neighborOf text(ब्राज़ील) -text(玻利維亞) neighborOf text(باراغواي) -text(Bolivia) neighborOf text(Argentinië) -text(Bolivia) neighborOf text(Perú) -text(Colombia) locatedIn text(दक्षिण:अमेरिका) -text(哥伦比亚) locatedIn text(أمريكتان) -text(Colombia) neighborOf text(ईक्वाडोर) -text(कोलम्बिया) neighborOf text(البرازيل) -text(كولومبيا) neighborOf text(Panama) -text(Colombia) neighborOf text(فنزويلا) -text(Colombia) neighborOf text(بيرو) -text(Fiji) locatedIn text(Melanesia) -text(Fiji) locatedIn text(Oceania) -text(Congo-Brazzaville) neighborOf text(加蓬) -text(Republic:of:the:Congo) neighborOf text(कांगो:लोकतान्त्रिक:गणराज्य) -text(कांगो:गणराज्य) neighborOf text(安哥拉) -text(República:del:Congo) neighborOf text(कैमरुन) -text(جمهورية:الكونغو) neighborOf text(Central:African:Republic) -text(Arabia:Saudí) neighborOf text(Qatar) -text(沙特阿拉伯) neighborOf text(संयुक्त:अरब:अमीरात) -text(السعودية) neighborOf text(約旦) -text(सउदी:अरब) neighborOf text(اليمن) -text(Saudi:Arabia) neighborOf text(Oman) -text(Saoedi-Arabië) neighborOf text(科威特) -text(Arabia:Saudí) neighborOf text(العراق) -text(El:Salvador) locatedIn text(Central:America) -text(अल:साल्वाडोर) locatedIn text(美洲) -text(السلفادور) neighborOf text(غواتيمالا) -text(薩爾瓦多) neighborOf text(洪都拉斯) -text(Madagascar) locatedIn text(东部非洲) -text(मेडागास्कर) locatedIn text(África) -text(Australia) locatedIn text(nan) -text(Australia) locatedIn text(Oceanië) -text(纳米比亚) locatedIn text(Zuidelijk:Afrika) -text(Namibia) locatedIn text(Afrika) -text(Namibia) neighborOf text(贊比亞) -text(ناميبيا) neighborOf text(أنغولا) -text(नामीबिया) neighborOf text(南非) -text(Namibië) neighborOf text(बोत्सवाना) -text(Tuvalu) locatedIn text(Polynesië) -text(तुवालू) locatedIn text(大洋洲) -text(斯瓦巴和扬马延) locatedIn text(Northern:Europe) -text(Spitsbergen:en:Jan:Mayen) locatedIn text(欧洲) -text(Man) locatedIn text(उत्तरी:यूरोप) -text(جزيرة:مان) locatedIn text(Europa) -text(圭亚那) neighborOf text(Brasil) -text(Guyana) neighborOf text(Surinam) -text(غيانا) neighborOf text(委內瑞拉) -text(वैटिकन:नगर) locatedIn text(Zuid-Europa) -text(梵蒂岡城國) locatedIn text(यूरोप) -text(Vaticaanstad) neighborOf text(意大利) -text(British:Indian:Ocean:Territory) locatedIn text(África:Oriental) -text(Territorio:Británico:del:Océano:Índico) locatedIn text(अफ्रीका) -text(नाइजीरिया) locatedIn text(غرب:إفريقيا) -text(奈及利亞) locatedIn text(非洲) -text(نيجيريا) neighborOf text(乍得) -text(Nigeria) neighborOf text(Níger) -text(Nigeria) neighborOf text(喀麦隆) -text(Nigeria) neighborOf text(貝南) -text(Duitsland) neighborOf text(Denmark) -text(Alemania) neighborOf text(Netherlands) -text(Germany) neighborOf text(波蘭) -text(ألمانيا) neighborOf text(لوكسمبورغ) -text(德國) neighborOf text(België) -text(जर्मनी) neighborOf text(Suiza) -text(Duitsland) neighborOf text(Austria) -text(Alemania) neighborOf text(France) -text(Germany) neighborOf text(चेक:गणराज्य) -text(Burkina:Faso) neighborOf text(Togo) -text(بوركينا:فاسو) neighborOf text(بنين) -text(Burkina:Faso) neighborOf text(النيجر) -text(बुर्किना:फासो) neighborOf text(Ghana) -text(布吉納法索) neighborOf text(माली) -text(Burkina:Faso) neighborOf text(科特迪瓦) -text(Tanzania) neighborOf text(Uganda) -text(तंज़ानिया) neighborOf text(Mozambique) -text(坦桑尼亞) neighborOf text(República:Democrática:del:Congo) -text(Tanzania) neighborOf text(Kenia) -text(تنزانيا) neighborOf text(رواندا) -text(Tanzania) neighborOf text(Zambia) -text(Tanzania) neighborOf text(मलावी) -text(तंज़ानिया) neighborOf text(Burundi) -text(उत्तरी:मारियाना:द्वीप) locatedIn text(माइक्रोनीशिया) -text(Noordelijke:Marianen) locatedIn text(أوقيانوسيا) -text(Belize) locatedIn text(أمريكا:الوسطى) -text(बेलीज़) locatedIn text(महाअमेरिका) -text(Belice) neighborOf text(Guatemala) -text(بليز) neighborOf text(墨西哥) -text(नॉर्वे) neighborOf text(Zweden) -text(النرويج) neighborOf text(Finland) -text(Noorwegen) neighborOf text(俄罗斯) -text(جزر:كوكوس) locatedIn text(nan) -text(कोकोस:(कीलिंग):द्वीपसमूह) locatedIn text(Oceanía) -text(Laos) locatedIn text(Zuidoost-Azië) -text(लाओस) locatedIn text(Asia) -text(Laos) neighborOf text(República:Popular:China) -text(لاوس) neighborOf text(Cambodia) -text(老撾) neighborOf text(Birmania) -text(Laos) neighborOf text(वियतनाम) -text(Laos) neighborOf text(泰國) -text(Sahrawi:Arabische:Democratische:Republiek) locatedIn text(Norte:de:África) -text(الجمهورية:العربية:الصحراوية:الديمقراطية) locatedIn text(إفريقيا) -text(Sahrawi:Arab:Democratic:Republic) neighborOf text(अल्जीरिया) -text(República:Árabe:Saharaui:Democrática) neighborOf text(毛里塔尼亞) -text(सहरावी:अरब:जनतांत्रिक:गणराज्य) neighborOf text(Marruecos) -text(蘇利南) locatedIn text(Zuid-Amerika) -text(سورينام) locatedIn text(Amerika) -text(Suriname) neighborOf text(Brazil) -text(सूरीनाम) neighborOf text(Guayana:Francesa) -text(Suriname) neighborOf text(Guyana) -text(Isla:de:Navidad) locatedIn text(Australië:en:Nieuw-Zeeland) -text(Christmas:Island) locatedIn text(ओशिआनिया) -text(São:Tomé:and:Príncipe) locatedIn text(मध्य:अफ्रीका) -text(ساو:تومي:وبرينسيب) locatedIn text(Africa) -text(मिस्र) neighborOf text(Libia) -text(Egipto) neighborOf text(إسرائيل) -text(Egypte) neighborOf text(السودان) -text(बुल्गारिया) neighborOf text(北马其顿) -text(بلغاريا) neighborOf text(तुर्की) -text(保加利亚) neighborOf text(Grecia) -text(Bulgaria) neighborOf text(सर्बिया) -text(Bulgaria) neighborOf text(羅馬尼亞) -text(غينيا) locatedIn text(पश्चिमी:अफ्रीका) -text(Guinea) locatedIn text(África) -text(गिनी) neighborOf text(غينيا:بيساو) -text(Guinee) neighborOf text(Sierra:Leone) -text(几内亚) neighborOf text(Mali) -text(Guinea) neighborOf text(ليبيريا) -text(غينيا) neighborOf text(Senegal) -text(Guinea) neighborOf text(Ivoorkust) -text(España) neighborOf text(Morocco) -text(स्पेन) neighborOf text(جبل:طارق) -text(西班牙) neighborOf text(Andorra) -text(Spain) neighborOf text(Francia) -text(Spanje) neighborOf text(पुर्तगाल) -text(كوستاريكا) locatedIn text(Centraal-Amerika) -text(Costa:Rica) locatedIn text(América) -text(哥斯达黎加) neighborOf text(بنما) -text(Costa:Rica) neighborOf text(Nicaragua) -text(مالطا) locatedIn text(Europa:del:Sur) -text(Malta) locatedIn text(Europe) -text(葡萄牙) locatedIn text(南欧) -text(البرتغال) locatedIn text(Europa) -text(Portugal) neighborOf text(إسبانيا) -text(Roemenië) locatedIn text(Eastern:Europe) -text(رومانيا) locatedIn text(أوروبا) -text(रोमानिया) neighborOf text(Ucrania) -text(Rumania) neighborOf text(Hungría) -text(Romania) neighborOf text(मोल्डोवा) -text(羅馬尼亞) neighborOf text(Bulgarije) -text(Roemenië) neighborOf text(Serbia) -text(सान:मारिनो) locatedIn text(أوروبا:الجنوبية) -text(San:Marino) locatedIn text(欧洲) -text(سان:مارينو) neighborOf text(Italië) -text(Mauritania) locatedIn text(West:Africa) -text(Mauritania) locatedIn text(Afrika) -text(موريتانيا) neighborOf text(Algerije) -text(मॉरीतानिया) neighborOf text(Mali) -text(Mauritanië) neighborOf text(撒拉威阿拉伯民主共和國) -text(毛里塔尼亞) neighborOf text(Senegal) -text(त्रिनिदाद:और:टोबैगो) locatedIn text(加勒比地区) -text(ترينيداد:وتوباغو) locatedIn text(Americas) -text(巴林) locatedIn text(Zuidwest-Azië) -text(बहरीन) locatedIn text(Asia) -text(Myanmar) neighborOf text(भारत) -text(म्यान्मार) neighborOf text(Bangladesh) -text(Myanmar) neighborOf text(चीनी:जनवादी:गणराज्य) -text(ميانمار) neighborOf text(लाओस) -text(緬甸) neighborOf text(Tailandia) -text(इराक) neighborOf text(Turkije) -text(Irak) neighborOf text(沙特阿拉伯) -text(伊拉克) neighborOf text(Irán) -text(Iraq) neighborOf text(Jordanië) -text(Irak) neighborOf text(Kuwait) -text(العراق) neighborOf text(Syria) -text(South:Georgia:and:the:South:Sandwich:Islands) locatedIn text(South:America) -text(جورجيا:الجنوبية:وجزر:ساندويتش:الجنوبية) locatedIn text(أمريكتان) -text(冰島) locatedIn text(Noord-Europa) -text(IJsland) locatedIn text(Europa) -text(Congo-Kinshasa) locatedIn text(中部非洲) -text(Democratic:Republic:of:the:Congo) locatedIn text(अफ्रीका) -text(刚果民主共和国) neighborOf text(Uganda) -text(جمهورية:الكونغو:الديمقراطية) neighborOf text(坦桑尼亞) -text(कांगो:लोकतान्त्रिक:गणराज्य) neighborOf text(剛果共和國) -text(República:Democrática:del:Congo) neighborOf text(Centraal-Afrikaanse:Republiek) -text(Congo-Kinshasa) neighborOf text(Angola) -text(Democratic:Republic:of:the:Congo) neighborOf text(卢旺达) -text(刚果民主共和国) neighborOf text(جنوب:السودان) -text(جمهورية:الكونغو:الديمقراطية) neighborOf text(Zambia) -text(कांगो:लोकतान्त्रिक:गणराज्य) neighborOf text(बुरुण्डी) -text(塞舌尔) locatedIn text(पूर्वी:अफ्रीका) -text(सेशेल्स) locatedIn text(非洲) -text(قرغيزستان) neighborOf text(Volksrepubliek:China) -text(Kyrgyzstan) neighborOf text(Kazajistán) -text(किर्गिज़स्तान) neighborOf text(Tayikistán) -text(Kirgizië) neighborOf text(أوزبكستان) -text(بوتسوانا) locatedIn text(Southern:Africa) -text(Botswana) locatedIn text(إفريقيا) -text(波札那) neighborOf text(Zimbabue) -text(Botsuana) neighborOf text(纳米比亚) -text(Botswana) neighborOf text(زامبيا) -text(बोत्सवाना) neighborOf text(दक्षिण:अफ़्रीका) -text(फ़रो:द्वीपसमूह) locatedIn text(Europa:del:Norte) -text(法罗群岛) locatedIn text(यूरोप) -text(Jamaica) locatedIn text(कैरिबिया) -text(जमैका) locatedIn text(美洲) -text(Samoa:Americana) locatedIn text(Polinesia) -text(अमेरिकी:समोआ) locatedIn text(Oceania) -text(莱索托) locatedIn text(दक्षिणी:अफ्रीका) -text(Lesoto) locatedIn text(Africa) -text(लेसोथो) neighborOf text(Zuid-Afrika) -text(Sri:Lanka) neighborOf text(印度) -text(Belgium) locatedIn text(أوروبا:الغربية) -text(比利時) locatedIn text(Europe) -text(बेल्जियम) neighborOf text(ألمانيا) -text(Bélgica) neighborOf text(Luxembourg) -text(بلجيكا) neighborOf text(فرنسا) -text(België) neighborOf text(هولندا) -text(قطر) locatedIn text(Asia:Occidental) -text(卡塔尔) locatedIn text(亞洲) -text(Qatar) neighborOf text(السعودية) -text(Islas:Salomón) locatedIn text(ميلانيزيا) -text(所罗门群岛) locatedIn text(Oceanië) -text(敘利亞) locatedIn text(西亚) -text(سوريا) locatedIn text(آسيا) -text(सीरिया) neighborOf text(以色列) -text(Siria) neighborOf text(土耳其) -text(Syrië) neighborOf text(जॉर्डन) -text(Syria) neighborOf text(黎巴嫩) -text(敘利亞) neighborOf text(इराक) -text(India) locatedIn text(南亚) -text(India) locatedIn text(एशिया) -text(الهند) neighborOf text(Afganistán) -text(India) neighborOf text(Bhutan) -text(भारत) neighborOf text(Bangladesh) -text(印度) neighborOf text(People's:Republic:of:China) -text(India) neighborOf text(नेपाल) -text(India) neighborOf text(Birmania) -text(الهند) neighborOf text(Pakistan) -text(India) neighborOf text(斯里蘭卡) -text(المغرب) neighborOf text(Algeria) -text(मोरक्को) neighborOf text(España) -text(摩洛哥) neighborOf text(Sahrawi:Arabische:Democratische:Republiek) -text(Kenia) locatedIn text(East:Africa) -text(Kenya) locatedIn text(África) -text(कीनिया) neighborOf text(أوغندا) -text(肯尼亚) neighborOf text(Tanzania) -text(كينيا) neighborOf text(Somalia) -text(Kenia) neighborOf text(South:Sudan) -text(Kenia) neighborOf text(Ethiopië) -text(दक्षिण:सूडान) locatedIn text(Centraal-Afrika) -text(Sudán:del:Sur) locatedIn text(Afrika) -text(南蘇丹) neighborOf text(Oeganda) -text(Zuid-Soedan) neighborOf text(República:Democrática:del:Congo) -text(جنوب:السودان) neighborOf text(Kenya) -text(South:Sudan) neighborOf text(República:Centroafricana) -text(दक्षिण:सूडान) neighborOf text(Sudan) -text(Sudán:del:Sur) neighborOf text(Ethiopia) -text(Ghana) neighborOf text(Burkina:Faso) -text(迦納) neighborOf text(Costa:de:Marfil) -text(غانا) neighborOf text(Togo) -text(塔吉克斯坦) locatedIn text(मध्य:एशिया) -text(Tajikistan) locatedIn text(Azië) -text(Tadzjikistan) neighborOf text(中华人民共和国) -text(طاجيكستان) neighborOf text(Kirguistán) -text(ताजीकिस्तान) neighborOf text(أفغانستان) -text(Tayikistán) neighborOf text(乌兹别克斯坦) -text(Islas:Marshall) locatedIn text(Micronesië) -text(Marshall:Islands) locatedIn text(大洋洲) -text(الكاميرون) locatedIn text(África:Central) -text(Kameroen) locatedIn text(अफ्रीका) -text(Cameroon) neighborOf text(चाड) -text(Camerún) neighborOf text(Congo-Brazzaville) -text(कैमरुन) neighborOf text(Gabon) -text(喀麦隆) neighborOf text(赤道几内亚) -text(الكاميرون) neighborOf text(मध्य:अफ़्रीकी:गणराज्य) -text(Kameroen) neighborOf text(नाइजीरिया) -text(नौरु) locatedIn text(密克羅尼西亞群島) -text(瑙鲁) locatedIn text(أوقيانوسيا) -text(Thailand) neighborOf text(Camboya) -text(تايلاند) neighborOf text(Myanmar) -text(Thailand) neighborOf text(Laos) -text(थाईलैंड) neighborOf text(馬來西亞) -text(Sudán) neighborOf text(Chad) -text(सूडान) neighborOf text(लीबिया) -text(苏丹) neighborOf text(南蘇丹) -text(Soedan) neighborOf text(Eritrea) -text(السودان) neighborOf text(中非共和國) -text(Sudan) neighborOf text(埃及) -text(Sudán) neighborOf text(Etiopía) -text(Tsjaad) locatedIn text(وسط:إفريقيا) -text(Chad) locatedIn text(非洲) -text(تشاد) neighborOf text(Libië) -text(乍得) neighborOf text(Niger) -text(चाड) neighborOf text(Zuid-Soedan) -text(Chad) neighborOf text(Cameroon) -text(Tsjaad) neighborOf text(جمهورية:إفريقيا:الوسطى) -text(Chad) neighborOf text(奈及利亞) -text(Vanuatu) locatedIn text(मॅलानिशिया) -text(萬那杜) locatedIn text(Oceanía) -text(الرأس:الأخضر) locatedIn text(西非) -text(佛得角) locatedIn text(إفريقيا) -text(Islas:Malvinas) locatedIn text(أمريكا:الجنوبية) -text(福克蘭群島) locatedIn text(महाअमेरिका) -text(Liberia) locatedIn text(África:Occidental) -text(Liberia) locatedIn text(Africa) -text(Liberia) neighborOf text(Ivory:Coast) -text(लाइबेरिया) neighborOf text(Sierra:Leone) -text(利比里亞) neighborOf text(गिनी) -text(कम्बोडिया) locatedIn text(东南亚) -text(Cambodja) locatedIn text(Asia) -text(كمبوديا) neighborOf text(Vietnam) -text(柬埔寨) neighborOf text(泰國) -text(Cambodia) neighborOf text(لاوس) -text(زيمبابوي) neighborOf text(ज़ाम्बिया) -text(津巴布韦) neighborOf text(South:Africa) -text(ज़िम्बाब्वे) neighborOf text(بوتسوانا) -text(Zimbabwe) neighborOf text(मोज़ाम्बीक) -text(جزر:القمر) locatedIn text(شرق:إفريقيا) -text(कोमोरोस) locatedIn text(África) -text(Guam) locatedIn text(Micronesia) -text(關島) locatedIn text(ओशिआनिया) -text(The:Bahamas) locatedIn text(Caribbean) -text(جزر:البهاما) locatedIn text(Amerika) -text(लेबनॉन) locatedIn text(West:Asia) -text(Libanon) locatedIn text(Asia) -text(Líbano) neighborOf text(Israel) -text(Lebanon) neighborOf text(سوريا) -text(Sint:Maarten) locatedIn text(Caraïben) -text(सेंट:मार्टिन) locatedIn text(América) -text(Saint:Martin) neighborOf text(सेंट:मार्टिन:की:सामूहिकता) -text(إثيوبيا) locatedIn text(Oost-Afrika) -text(埃塞俄比亚) locatedIn text(Afrika) -text(इथियोपिया) neighborOf text(索馬里) -text(Ethiopië) neighborOf text(कीनिया) -text(Ethiopia) neighborOf text(Eritrea) -text(Etiopía) neighborOf text(جنوب:السودان) -text(إثيوبيا) neighborOf text(जिबूती) -text(埃塞俄比亚) neighborOf text(सूडान) -text(美屬維爾京群島) locatedIn text(Caribe) -text(संयुक्त:राज्य:वर्जिन:द्वीपसमूह) locatedIn text(Americas) -text(Guinea-Bisáu) locatedIn text(West-Afrika) -text(Guinea-Bissau) locatedIn text(अफ्रीका) -text(畿內亞比紹) neighborOf text(Guinee) -text(Guinee-Bissau) neighborOf text(塞内加尔) -text(ليبيا) locatedIn text(شمال:إفريقيا) -text(利比亞) locatedIn text(非洲) -text(Libya) neighborOf text(تشاد) -text(Libia) neighborOf text(تونس) -text(लीबिया) neighborOf text(Niger) -text(Libië) neighborOf text(阿爾及利亞) -text(ليبيا) neighborOf text(مصر) -text(利比亞) neighborOf text(苏丹) -text(Bhutan) locatedIn text(Asia:del:Sur) -text(भूटान) locatedIn text(亞洲) -text(不丹) neighborOf text(الصين) -text(بوتان) neighborOf text(भारत) -text(澳門) locatedIn text(شرق:آسيا) -text(Macau) locatedIn text(آسيا) -text(मकाउ) neighborOf text(República:Popular:China) -text(Frans-Polynesië) locatedIn text(Polynesia) -text(French:Polynesia) locatedIn text(Oceania) -text(Somalië) locatedIn text(东部非洲) -text(Somalia) locatedIn text(إفريقيا) -text(الصومال) neighborOf text(吉布提) -text(सोमालिया) neighborOf text(肯尼亚) -text(Somalia) neighborOf text(इथियोपिया) -text(सेंट:बार्थेलेमी) locatedIn text(الكاريبي) -text(Saint-Barthélemy) locatedIn text(أمريكتان) -text(روسيا) locatedIn text(东欧) -text(Rusia) locatedIn text(Europa) -text(Rusland) neighborOf text(烏克蘭) -text(Russia) neighborOf text(Belarus) -text(रूस) neighborOf text(चीनी:जनवादी:गणराज्य) -text(俄罗斯) neighborOf text(哈萨克斯坦) -text(روسيا) neighborOf text(挪威) -text(Rusia) neighborOf text(Poland) -text(Rusland) neighborOf text(Azerbaiyán) -text(Russia) neighborOf text(ليتوانيا) -text(रूस) neighborOf text(إستونيا) -text(俄罗斯) neighborOf text(Corea:del:Norte) -text(روسيا) neighborOf text(फ़िनलैण्ड) -text(Rusia) neighborOf text(Mongolia) -text(Rusland) neighborOf text(लातविया) -text(Russia) neighborOf text(格鲁吉亚) -text(نيوزيلندا) locatedIn text(nan) -text(New:Zealand) locatedIn text(Oceanië) -text(Panamá) locatedIn text(América:Central) -text(Panama) locatedIn text(美洲) -text(巴拿馬) neighborOf text(कोस्टा:रीका) -text(पनामा) neighborOf text(哥伦比亚) -text(Papua:New:Guinea) locatedIn text(美拉尼西亞) -text(Papúa:Nueva:Guinea) locatedIn text(大洋洲) -text(巴布亚新几内亚) neighborOf text(Indonesië) -text(उत्तर:कोरिया) neighborOf text(Volksrepubliek:China) -text(كوريا:الشمالية) neighborOf text(Zuid-Korea) -text(朝鮮民主主義人民共和國) neighborOf text(रूस) -text(Letland) locatedIn text(北歐) -text(لاتفيا) locatedIn text(أوروبا) -text(Latvia) neighborOf text(立陶宛) -text(拉脫維亞) neighborOf text(Wit-Rusland) -text(Letonia) neighborOf text(俄罗斯) -text(लातविया) neighborOf text(Estonia) -text(Omán) locatedIn text(غرب:آسيا) -text(Oman) locatedIn text(एशिया) -text(سلطنة:عمان) neighborOf text(सउदी:अरब) -text(ओमान) neighborOf text(Yemen) -text(阿曼) neighborOf text(阿拉伯联合酋长国) -text(सन्त:पियर:और:मिकलान) locatedIn text(أمريكا:الشمالية) -text(San:Pedro:y:Miquelón) locatedIn text(महाअमेरिका) -text(मार्टीनिक) locatedIn text(加勒比地区) -text(馬提尼克) locatedIn text(Amerika) -text(Verenigd:Koninkrijk) locatedIn text(أوروبا:الشمالية) -text(यूनाइटेड:किंगडम) locatedIn text(欧洲) -text(Reino:Unido) neighborOf text(英国) -text(Israel) locatedIn text(पश्चिमी:एशिया) -text(इज़राइल) locatedIn text(Azië) -text(Israël) neighborOf text(لبنان) -text(إسرائيل) neighborOf text(Egypt) -text(以色列) neighborOf text(Jordan) -text(Israel) neighborOf text(सीरिया) -text(Jersey) locatedIn text(Northern:Europe) -text(Jersey) locatedIn text(Europa) -text(Islas:Pitcairn) locatedIn text(بولنيزيا) -text(جزر:بيتكيرن) locatedIn text(أوقيانوسيا) -text(Togo) locatedIn text(غرب:إفريقيا) -text(多哥) locatedIn text(Africa) -text(टोगो) neighborOf text(بوركينا:فاسو) -text(توغو) neighborOf text(Ghana) -text(Togo) neighborOf text(Benin) -text(كيريباتي) locatedIn text(Micronesia) -text(Kiribati) locatedIn text(Oceanía) -text(伊朗) locatedIn text(Zuid-Azië) -text(Iran) locatedIn text(Asia) -text(إيران) neighborOf text(阿富汗) -text(Iran) neighborOf text(Turkmenistan) -text(ईरान) neighborOf text(تركيا) -text(Irán) neighborOf text(आर्मीनिया) -text(伊朗) neighborOf text(Azerbaijan) -text(Iran) neighborOf text(باكستان) -text(إيران) neighborOf text(Irak) -text(تجمع:سان:مارتين) locatedIn text(कैरिबिया) -text(法屬聖馬丁) locatedIn text(América) -text(Saint-Martin) neighborOf text(圣马丁岛) -text(República:Dominicana) locatedIn text(Caribbean) -text(Dominican:Republic) locatedIn text(Americas) -text(多明尼加) neighborOf text(هايتي) -text(丹麥) neighborOf text(德國) -text(बरमूडा) locatedIn text(América:del:Norte) -text(Bermuda) locatedIn text(أمريكتان) -text(تشيلي) neighborOf text(الأرجنتين) -text(चिली) neighborOf text(Bolivia) -text(Chile) neighborOf text(Peru) -text(Kosovo) locatedIn text(أوروبا:الشرقية) -text(Kosovo) locatedIn text(यूरोप) -text(كوسوفو) neighborOf text(صربيا) -text(科索沃) neighborOf text(Albania) -text(Kosovo) neighborOf text(Noord-Macedonië) -text(कोसोवो:गणराज्य) neighborOf text(Montenegro) -text(सन्त:किट्स:और:नेविस) locatedIn text(Caraïben) -text(Saint:Kitts:en:Nevis) locatedIn text(美洲) -text(इरित्रिया) neighborOf text(Djibouti) -text(厄立特里亞) neighborOf text(Soedan) -text(Eritrea) neighborOf text(Ethiopië) -text(भूमध्यरेखीय:गिनी) locatedIn text(Central:Africa) -text(Guinea:Ecuatorial) locatedIn text(África) -text(Equatorial:Guinea) neighborOf text(الغابون) -text(غينيا:الاستوائية) neighborOf text(Camerún) -text(尼日尔) locatedIn text(पश्चिमी:अफ्रीका) -text(नाइजर) locatedIn text(Afrika) -text(Níger) neighborOf text(乍得) -text(النيجر) neighborOf text(Libya) -text(Niger) neighborOf text(Burkina:Faso) -text(Niger) neighborOf text(Benín) -text(尼日尔) neighborOf text(مالي) -text(नाइजर) neighborOf text(Argelia) -text(Níger) neighborOf text(نيجيريا) -text(Anguila) locatedIn text(Caribe) -text(Anguilla) locatedIn text(महाअमेरिका) -text(Rwanda) locatedIn text(África:Oriental) -text(रवाण्डा) locatedIn text(अफ्रीका) -text(Ruanda) neighborOf text(Burundi) -text(Rwanda) neighborOf text(تنزانيا) -text(رواندا) neighborOf text(烏干達) -text(卢旺达) neighborOf text(Congo-Kinshasa) -text(الإمارات:العربية:المتحدة) locatedIn text(Zuidwest-Azië) -text(Verenigde:Arabische:Emiraten) locatedIn text(Asia) -text(United:Arab:Emirates) neighborOf text(Oman) -text(Emiratos:Árabes:Unidos) neighborOf text(Saudi:Arabia) -text(Estland) locatedIn text(उत्तरी:यूरोप) -text(एस्टोनिया) locatedIn text(Europe) -text(Estonia) neighborOf text(Letland) -text(愛沙尼亞) neighborOf text(روسيا) -text(希腊) locatedIn text(दक्षिणी:यूरोप) -text(اليونان) locatedIn text(Europa) -text(Greece) neighborOf text(बुल्गारिया) -text(यूनान) neighborOf text(ألبانيا) -text(Griekenland) neighborOf text(North:Macedonia) -text(Grecia) neighborOf text(Turquía) -text(Senegal) locatedIn text(West:Africa) -text(सेनेगल) locatedIn text(非洲) -text(السنغال) neighborOf text(गिनी-बिसाऊ) -text(Senegal) neighborOf text(Mauritania) -text(Senegal) neighborOf text(Mali) -text(塞内加尔) neighborOf text(岡比亞) -text(Senegal) neighborOf text(几内亚) -text(Guadeloupe) locatedIn text(الكاريبي) -text(Guadalupe) locatedIn text(Amerika) -text(मोनाको) neighborOf text(फ़्रान्स) -text(Djibouti) neighborOf text(إرتريا) -text(Yibuti) neighborOf text(索馬里) -text(جيبوتي) neighborOf text(Ethiopia) -text(इंडोनेशिया) neighborOf text(पापुआ:न्यू:गिनी) -text(Indonesia) neighborOf text(Timor-Leste) -text(印度尼西亚) neighborOf text(Maleisië) -text(جزر:عذراء:بريطانية) locatedIn text(加勒比地区) -text(英屬維爾京群島) locatedIn text(América) -text(Islas:Cook) locatedIn text(पोलीनेशिया) -text(جزر:كوك) locatedIn text(ओशिआनिया) -text(युगाण्डा) locatedIn text(पूर्वी:अफ्रीका) -text(Uganda) locatedIn text(إفريقيا) -text(Uganda) neighborOf text(Tanzania) -text(أوغندا) neighborOf text(Democratic:Republic:of:the:Congo) -text(Oeganda) neighborOf text(كينيا) -text(烏干達) neighborOf text(South:Sudan) -text(युगाण्डा) neighborOf text(Rwanda) -text(مقدونيا:الشمالية) locatedIn text(Southern:Europe) -text(उत्तर:मैसिडोनिया) locatedIn text(أوروبا) -text(Macedonia:del:Norte) neighborOf text(Kosovo) -text(北马其顿) neighborOf text(希腊) -text(Noord-Macedonië) neighborOf text(阿爾巴尼亞) -text(North:Macedonia) neighborOf text(Serbia) -text(مقدونيا:الشمالية) neighborOf text(بلغاريا) -text(Túnez) locatedIn text(北部非洲) -text(突尼西亞) locatedIn text(Africa) -text(Tunisia) neighborOf text(Libia) -text(ट्यूनिशिया) neighborOf text(الجزائر) -text(الإكوادور) neighborOf text(पेरू) -text(Ecuador) neighborOf text(Colombia) -text(巴西) locatedIn text(南美洲) -text(Brazilië) locatedIn text(Americas) -text(ब्राज़ील) neighborOf text(बोलिविया) -text(البرازيل) neighborOf text(कोलम्बिया) -text(Brasil) neighborOf text(Paraguay) -text(Brazil) neighborOf text(الأوروغواي) -text(巴西) neighborOf text(Frans-Guyana) -text(Brazilië) neighborOf text(Surinam) -text(ब्राज़ील) neighborOf text(Venezuela) -text(البرازيل) neighborOf text(Argentina) -text(Brasil) neighborOf text(Guyana) -text(Brazil) neighborOf text(秘鲁) -text(Paraguay) locatedIn text(América:del:Sur) -text(巴拉圭) locatedIn text(أمريكتان) -text(पैराग्वे) neighborOf text(Argentina) -text(Paraguay) neighborOf text(巴西) -text(باراغواي) neighborOf text(بوليفيا) -text(Finlandia) locatedIn text(Noord-Europa) -text(Finland) locatedIn text(欧洲) -text(芬蘭) neighborOf text(Norway) -text(فنلندا) neighborOf text(स्वीडन) -text(Finland) neighborOf text(Rusia) -text(Jordania) neighborOf text(Saoedi-Arabië) -text(الأردن) neighborOf text(Israel) -text(約旦) neighborOf text(伊拉克) -text(Jordanië) neighborOf text(Siria) -text(पूर्वी:तिमोर) neighborOf text(إندونيسيا) -text(الجبل:الأسود) locatedIn text(Zuid-Europa) -text(蒙特內哥羅) locatedIn text(Europa) -text(Montenegro) neighborOf text(Kosovo) -text(Montenegro) neighborOf text(البوسنة:والهرسك) -text(मॉन्टेनीग्रो) neighborOf text(Kroatië) -text(Montenegro) neighborOf text(塞爾維亞) -text(الجبل:الأسود) neighborOf text(अल्बानिया) -text(Peru) locatedIn text(दक्षिण:अमेरिका) -text(Perú) locatedIn text(美洲) -text(بيرو) neighborOf text(Ecuador) -text(Peru) neighborOf text(玻利維亞) -text(पेरू) neighborOf text(Chile) -text(秘鲁) neighborOf text(Brazilië) -text(Peru) neighborOf text(كولومبيا) -text(Montserrat) locatedIn text(कैरिबिया) -text(Montserrat) locatedIn text(महाअमेरिका) -text(युक्रेन) locatedIn text(Europa:Oriental) -text(أوكرانيا) locatedIn text(यूरोप) -text(Oekraïne) neighborOf text(स्लोवाकिया) -text(Ukraine) neighborOf text(بيلاروس) -text(Ucrania) neighborOf text(पोलैंड) -text(烏克蘭) neighborOf text(Rusland) -text(युक्रेन) neighborOf text(المجر) -text(أوكرانيا) neighborOf text(Moldova) -text(Oekraïne) neighborOf text(رومانيا) -text(Dominica) locatedIn text(Caribbean) -text(डोमिनिका) locatedIn text(Amerika) -text(तुर्कमेनिस्तान) neighborOf text(Kazakhstan) -text(Turkmenistán) neighborOf text(अफ़्ग़ानिस्तान) -text(Turkmenistan) neighborOf text(Uzbekistán) -text(تركمانستان) neighborOf text(Iran) -text(غيرنزي) locatedIn text(Europa:del:Norte) -text(ग्वेर्नसे) locatedIn text(Europe) -text(Gibraltar) locatedIn text(Europa:del:Sur) -text(जिब्राल्टर) locatedIn text(Europa) -text(Gibraltar) neighborOf text(स्पेन) -text(स्विट्ज़रलैण्ड) locatedIn text(Western:Europe) -text(瑞士) locatedIn text(أوروبا) -text(سويسرا) neighborOf text(जर्मनी) -text(Zwitserland) neighborOf text(Italia) -text(Switzerland) neighborOf text(Austria) -text(Suiza) neighborOf text(法國) -text(स्विट्ज़रलैण्ड) neighborOf text(लिक्टेन्स्टाइन) -text(Oostenrijk) locatedIn text(西欧) -text(النمسا) locatedIn text(欧洲) -text(ऑस्ट्रिया) neighborOf text(Duitsland) -text(奧地利) neighborOf text(سلوفاكيا) -text(Austria) neighborOf text(Slovenië) -text(Austria) neighborOf text(इटली) -text(Oostenrijk) neighborOf text(瑞士) -text(النمسا) neighborOf text(Hungary) -text(ऑस्ट्रिया) neighborOf text(Liechtenstein) -text(奧地利) neighborOf text(捷克) -text(匈牙利) neighborOf text(Ukraine) -text(Hongarije) neighborOf text(Slowakije) -text(हंगरी) neighborOf text(سلوفينيا) -text(Hungría) neighborOf text(Croatia) -text(المجر) neighborOf text(Austria) -text(Hungary) neighborOf text(Servië) -text(匈牙利) neighborOf text(रोमानिया) -text(Malaui) locatedIn text(East:Africa) -text(馬拉威) locatedIn text(África) -text(مالاوي) neighborOf text(Zambia) -text(Malawi) neighborOf text(Tanzania) -text(Malawi) neighborOf text(莫桑比克) -text(Hong:Kong) neighborOf text(People's:Republic:of:China) -text(ليختنشتاين) locatedIn text(पश्चिमी:यूरोप) -text(Liechtenstein) locatedIn text(Europa) -text(列支敦斯登) neighborOf text(سويسرا) -text(Liechtenstein) neighborOf text(Austria) -text(Barbados) locatedIn text(Caraïben) -text(巴巴多斯) locatedIn text(América) -text(Georgia) locatedIn text(Asia:Occidental) -text(جورجيا) locatedIn text(亞洲) -text(Georgië) neighborOf text(亞美尼亞) -text(Georgia) neighborOf text(阿塞拜疆) -text(जॉर्जिया) neighborOf text(Russia) -text(格鲁吉亚) neighborOf text(Turkey) -text(Albanië) locatedIn text(南欧) -text(Albania) locatedIn text(यूरोप) -text(Albania) neighborOf text(蒙特內哥羅) -text(ألبانيا) neighborOf text(उत्तर:मैसिडोनिया) -text(阿爾巴尼亞) neighborOf text(كوسوفو) -text(अल्बानिया) neighborOf text(اليونان) -text(Kuwait) locatedIn text(西亚) -text(कुवैत) locatedIn text(آسيا) -text(Koeweit) neighborOf text(Arabia:Saudí) -text(الكويت) neighborOf text(Iraq) -text(Sudáfrica) locatedIn text(南部非洲) -text(جنوب:إفريقيا) locatedIn text(Afrika) -text(南非) neighborOf text(Mozambique) -text(दक्षिण:अफ़्रीका) neighborOf text(Botswana) -text(Zuid-Afrika) neighborOf text(إسواتيني) -text(South:Africa) neighborOf text(Zimbabwe) -text(Sudáfrica) neighborOf text(Namibia) -text(جنوب:إفريقيا) neighborOf text(Lesotho) -text(海地) locatedIn text(Caribe) -text(Haití) locatedIn text(Americas) -text(Haïti) neighborOf text(جمهورية:الدومينيكان) -text(Afghanistan) locatedIn text(جنوب:آسيا) -text(Afghanistan) locatedIn text(एशिया) -text(Afganistán) neighborOf text(土庫曼斯坦) -text(أفغانستان) neighborOf text(中华人民共和国) -text(阿富汗) neighborOf text(塔吉克斯坦) -text(अफ़्ग़ानिस्तान) neighborOf text(Oezbekistan) -text(Afghanistan) neighborOf text(ईरान) -text(Afghanistan) neighborOf text(巴基斯坦) -text(Singapur) locatedIn text(Southeast:Asia) -text(सिंगापुर) locatedIn text(Azië) -text(बेनिन) locatedIn text(西非) -text(Benin) locatedIn text(अफ्रीका) -text(貝南) neighborOf text(النيجر) -text(بنين) neighborOf text(बुर्किना:फासो) -text(Benin) neighborOf text(Togo) -text(Benín) neighborOf text(Nigeria) -text(Åland) locatedIn text(北歐) -text(ऑलैण्ड:द्वीपसमूह) locatedIn text(Europe) -text(Croacia) locatedIn text(أوروبا:الجنوبية) -text(克羅地亞) locatedIn text(Europa) -text(كرواتيا) neighborOf text(Slovenia) -text(क्रोएशिया) neighborOf text(波斯尼亚和黑塞哥维那) -text(Kroatië) neighborOf text(Hongarije) -text(Croatia) neighborOf text(सर्बिया) -text(Croacia) neighborOf text(Montenegro) -text(Sweden) locatedIn text(أوروبا:الشمالية) -text(السويد) locatedIn text(أوروبا) -text(瑞典) neighborOf text(Noruega) -text(Suecia) neighborOf text(फ़िनलैण्ड) -text(México) neighborOf text(伯利兹) -text(Mexico) neighborOf text(संयुक्त:राज्य:अमेरिका) -text(Mexico) neighborOf text(Guatemala) -text(جرينلاند) locatedIn text(उत्तर:अमेरिका) -text(Greenland) locatedIn text(أمريكتان) -text(Pitcairn:Islands) locatedIn text(Australia:and:New:Zealand) -text(पिटकेर्न:द्वीपसमूह) locatedIn text(Oceania) -text(尼泊爾) locatedIn text(दक्षिण:एशिया) -text(Nepal) locatedIn text(Asia) -text(Nepal) neighborOf text(الصين) -text(Nepal) neighborOf text(印度) -text(Guatemala) neighborOf text(Belize) -text(危地马拉) neighborOf text(El:Salvador) -text(ग्वाटेमाला) neighborOf text(मेक्सिको) -text(غواتيمالا) neighborOf text(Honduras) -text(दक्षिण:कोरिया) locatedIn text(East:Asia) -text(Corea:del:Sur) locatedIn text(Asia) -text(大韩民国) neighborOf text(North:Korea) -text(Moldavië) locatedIn text(पूर्वी:यूरोप) -text(摩爾多瓦) locatedIn text(欧洲) -text(مولدوفا) neighborOf text(Ucrania) -text(Moldavia) neighborOf text(Rumania) -text(Mauritius) locatedIn text(شرق:إفريقيا) -text(毛里求斯) locatedIn text(非洲) -text(白俄羅斯) neighborOf text(烏克蘭) -text(बेलारूस) neighborOf text(بولندا) -text(Bielorrusia) neighborOf text(Lithuania) -text(Belarus) neighborOf text(रूस) -text(Wit-Rusland) neighborOf text(لاتفيا) -text(बांग्लादेश) neighborOf text(म्यान्मार) -text(بنغلاديش) neighborOf text(India) -text(Malaysia) locatedIn text(جنوب:شرق:آسيا) -text(Malasia) locatedIn text(亞洲) -text(मलेशिया) neighborOf text(Tailandia) -text(ماليزيا) neighborOf text(Indonesia) -text(馬來西亞) neighborOf text(汶莱) -text(Bosnia:and:Herzegovina) locatedIn text(दक्षिणी:यूरोप) -text(Bosnië:en:Herzegovina) locatedIn text(Europa) -text(Bosnia:y:Herzegovina) neighborOf text(Serbia) -text(बोस्निया:और:हर्ज़ेगोविना) neighborOf text(克羅地亞) -text(البوسنة:والهرسك) neighborOf text(Montenegro) -text(Luxemburgo) locatedIn text(West-Europa) -text(Luxemburg) locatedIn text(यूरोप) -text(लक्ज़मबर्ग) neighborOf text(Alemania) -text(卢森堡) neighborOf text(Belgium) -text(لوكسمبورغ) neighborOf text(Frankrijk) -text(Italy) locatedIn text(Southern:Europe) -text(إيطاليا) locatedIn text(Europe) -text(意大利) neighborOf text(स्लोवेनिया) -text(Italië) neighborOf text(Zwitserland) -text(Italia) neighborOf text(Oostenrijk) -text(इटली) neighborOf text(France) -text(Italy) neighborOf text(Ciudad:del:Vaticano) -text(إيطاليا) neighborOf text(圣马力诺) -text(अज़रबैजान) locatedIn text(West:Asia) -text(أذربيجان) locatedIn text(آسيا) -text(Azerbeidzjan) neighborOf text(तुर्की) -text(Azerbaiyán) neighborOf text(Armenia) -text(Azerbaijan) neighborOf text(俄罗斯) -text(阿塞拜疆) neighborOf text(Irán) -text(अज़रबैजान) neighborOf text(Georgia) -text(Honduras) locatedIn text(中美洲) -text(Honduras) locatedIn text(美洲) -text(हॉण्डुरस) neighborOf text(Guatemala) -text(هندوراس) neighborOf text(尼加拉瓜) -text(洪都拉斯) neighborOf text(El:Salvador) -text(马里) locatedIn text(África:Occidental) -text(माली) locatedIn text(إفريقيا) -text(Mali) neighborOf text(布吉納法索) -text(Mali) neighborOf text(Guinea) -text(مالي) neighborOf text(Mauritania) -text(Mali) neighborOf text(Niger) -text(马里) neighborOf text(सेनेगल) -text(माली) neighborOf text(अल्जीरिया) -text(Mali) neighborOf text(ساحل:العاج) -text(Taiwan) locatedIn text(Oost-Azië) -text(चीनी:गणराज्य) locatedIn text(एशिया) -text(Algerije) locatedIn text(Noord-Afrika) -text(Algeria) locatedIn text(Africa) -text(阿爾及利亞) neighborOf text(लीबिया) -text(Argelia) neighborOf text(Tunesië) -text(الجزائر) neighborOf text(موريتانيا) -text(अल्जीरिया) neighborOf text(Marokko) -text(Algerije) neighborOf text(Niger) -text(Algeria) neighborOf text(Mali) -text(阿爾及利亞) neighborOf text(الجمهورية:العربية:الصحراوية:الديمقراطية) -text(फ़्रान्सीसी:गुयाना) neighborOf text(ब्राज़ील) -text(French:Guiana) neighborOf text(蘇利南) -text(Jemen) locatedIn text(غرب:آسيا) -text(也门) locatedIn text(Azië) -text(Yemen) neighborOf text(Omán) -text(यमन) neighborOf text(沙特阿拉伯) -text(Puerto:Rico) locatedIn text(الكاريبي) -text(波多黎各) locatedIn text(महाअमेरिका) -text(سانت:فينسنت:والغرينادين) locatedIn text(加勒比地区) -text(圣文森特和格林纳丁斯) locatedIn text(Amerika) -text(वेनेज़ुएला) neighborOf text(البرازيل) -text(Venezuela) neighborOf text(गयाना) -text(Venezuela) neighborOf text(Colombia) -text(غرينادا) locatedIn text(कैरिबिया) -text(Grenada) locatedIn text(América) -text(Estados:Unidos) neighborOf text(Canada) -text(الولايات:المتحدة) neighborOf text(المكسيك) -text(توكيلاو) locatedIn text(玻里尼西亞) -text(Tokelau) locatedIn text(Oceanië) -text(斯洛文尼亞) locatedIn text(Zuid-Europa) -text(Eslovenia) locatedIn text(Europa) -text(Slovenië) neighborOf text(النمسا) -text(سلوفينيا) neighborOf text(كرواتيا) -text(Slovenia) neighborOf text(意大利) -text(स्लोवेनिया) neighborOf text(हंगरी) -text(الفلبين) locatedIn text(Sudeste:Asiático) -text(Filipinas) locatedIn text(Asia) -text(ميكرونيسيا) locatedIn text(माइक्रोनीशिया) -text(Micronesië) locatedIn text(大洋洲) -text(República:Popular:China) locatedIn text(पूर्वी:एशिया) -text(चीनी:जनवादी:गणराज्य) locatedIn text(Asia) -text(Volksrepubliek:China) neighborOf text(Afganistán) -text(People's:Republic:of:China) neighborOf text(Bután) -text(中华人民共和国) neighborOf text(ماكاو) -text(الصين) neighborOf text(India) -text(República:Popular:China) neighborOf text(كازاخستان) -text(चीनी:जनवादी:गणराज्य) neighborOf text(吉尔吉斯斯坦) -text(Volksrepubliek:China) neighborOf text(Tajikistan) -text(People's:Republic:of:China) neighborOf text(老撾) -text(中华人民共和国) neighborOf text(روسيا) -text(الصين) neighborOf text(Noord-Korea) -text(República:Popular:China) neighborOf text(Myanmar) -text(चीनी:जनवादी:गणराज्य) neighborOf text(Pakistan) -text(Volksrepubliek:China) neighborOf text(Mongolia) -text(People's:Republic:of:China) neighborOf text(हांगकांग) -text(中华人民共和国) neighborOf text(Vietnam) -text(गबॉन) locatedIn text(मध्य:अफ्रीका) -text(Gabon) locatedIn text(África) -text(Gabón) neighborOf text(Equatoriaal-Guinea) -text(加蓬) neighborOf text(Republic:of:the:Congo) -text(Gabon) neighborOf text(कैमरुन) -text(Amerikaanse:Kleinere:Afgelegen:Eilanden) locatedIn text(North:America) -text(United:States:Minor:Outlying:Islands) locatedIn text(Americas) -text(Andorra) locatedIn text(Europa:del:Sur) -text(安道尔) locatedIn text(أوروبا) -text(Andorra) neighborOf text(西班牙) -text(अण्डोरा) neighborOf text(Francia) -text(ساموا) locatedIn text(Polynesië) -text(Samoa) locatedIn text(أوقيانوسيا) -text(The:Gambia) locatedIn text(West-Afrika) -text(गाम्बिया) locatedIn text(Afrika) -text(غامبيا) neighborOf text(السنغال) -text(nan) locatedIn text(पश्चिमी:एशिया) -text(Pedro:Miguel) locatedIn text(亞洲) -text(Pedro:Miguel) neighborOf text(जॉर्डन) -text(nan) neighborOf text(मिस्र) -text(nan) neighborOf text(इज़राइल) -text(रेयूनियों) locatedIn text(Oost-Afrika) -text(留尼汪) locatedIn text(अफ्रीका) -text(فرنسا) locatedIn text(Europa:Occidental) -text(फ़्रान्स) locatedIn text(欧洲) -text(法國) neighborOf text(Germany) -text(Frankrijk) neighborOf text(Luxembourg) -text(France) neighborOf text(Italië) -text(Francia) neighborOf text(أندورا) -text(فرنسا) neighborOf text(Switzerland) -text(फ़्रान्स) neighborOf text(摩納哥) -text(法國) neighborOf text(比利時) -text(Frankrijk) neighborOf text(Spain) -text(منغوليا) locatedIn text(Asia:Oriental) -text(蒙古國) locatedIn text(آسيا) -text(Mongolië) neighborOf text(الصين) -text(मंगोलिया) neighborOf text(Rusia) -text(Lituania) locatedIn text(Northern:Europe) -text(Litouwen) locatedIn text(Europa) -text(लिथुआनिया) neighborOf text(Polonia) -text(ليتوانيا) neighborOf text(Latvia) -text(立陶宛) neighborOf text(بيلاروس) -text(Lithuania) neighborOf text(Rusland) -text(Kaaimaneilanden) locatedIn text(Caribbean) -text(開曼群島) locatedIn text(أمريكتان) -text(سانت:لوسيا) locatedIn text(Caraïben) -text(圣卢西亚) locatedIn text(美洲) -text(Curaçao) locatedIn text(Caribe) -text(كوراساو) locatedIn text(महाअमेरिका) -text(الكاريبي) locatedIn text(Amerika) -text(South:Asia) locatedIn text(एशिया) -text(中部非洲) locatedIn text(非洲) -text(उत्तरी:यूरोप) locatedIn text(यूरोप) -text(南欧) locatedIn text(Europe) -text(Zuidwest-Azië) locatedIn text(Azië) -text(Zuid-Amerika) locatedIn text(América) -text(Polinesia) locatedIn text(Oceanía) -text(nan) locatedIn text(ओशिआनिया) -text(أوروبا:الغربية) locatedIn text(Europa) -text(东部非洲) locatedIn text(إفريقيا) -text(غرب:إفريقيا) locatedIn text(Africa) -text(Oost-Europa) locatedIn text(أوروبا) -text(केंद्रीय:अमेरिका) locatedIn text(Americas) -text(Noord-Amerika) locatedIn text(أمريكتان) -text(दक्षिण:पूर्व:एशिया) locatedIn text(Asia) -text(África:austral) locatedIn text(África) -text(東亞) locatedIn text(Asia) -text(North:Africa) locatedIn text(Afrika) -text(Melanesië) locatedIn text(Oceania) -text(密克羅尼西亞群島) locatedIn text(Oceanië) -text(Asia:Central) locatedIn text(亞洲) -text(Centraal-Europa) locatedIn text(欧洲) \ No newline at end of file diff --git a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_country2text_relation2text.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_country2text_relation2text.tsv deleted file mode 100644 index 6de0f99..0000000 --- a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_country2text_relation2text.tsv +++ /dev/null @@ -1,1063 +0,0 @@ -text(पलाउ) text(was:localized:in) text(Micronesia) -text(帛琉) text(is:localized:in) text(أوقيانوسيا) -text(Maldivas) text(was:present:in) text(Zuid-Azië) -text(馬爾代夫) text(is:present:in) text(Asia) -text(Brunei) text(is:still:in) text(Sudeste:Asiático) -text(Brunéi) text(was:still:in) text(Azië) -text(汶莱) text(is:a:neighboring:state:to) text(मलेशिया) -text(जापान) text(was:currently:in) text(East:Asia) -text(Japan) text(is:currently:in) text(Asia) -text(Nederland) text(was:a:neighboring:state:to) text(जर्मनी) -text(荷蘭) text(borders:with) text(बेल्जियम) -text(Turkey) text(borders) text(Armenia) -text(تركيا) text(is:butted:against) text(अज़रबैजान) -text(तुर्की) text(was:butted:against) text(Irán) -text(Turquía) text(was:adjacent:to) text(اليونان) -text(土耳其) text(is:adjacent:to) text(Georgië) -text(Turkije) text(neighbors) text(Bulgaria) -text(Turkey) text(is:a:neighboring:country:of) text(Irak) -text(تركيا) text(was:a:neighboring:country:of) text(Syria) -text(अंगोला) text(is:placed:in) text(Centraal-Afrika) -text(Angola) text(was:placed:in) text(非洲) -text(Angola) text(neighbors:with) text(कांगो:लोकतान्त्रिक:गणराज्य) -text(Angola) text(was:a:neighbor:of) text(ناميبيا) -text(安哥拉) text(is:a:neighbor:of) text(Zambia) -text(أنغولا) text(is:a:neighboring:state:to) text(कांगो:गणराज्य) -text(亞美尼亞) text(can:be:found:in) text(पश्चिमी:एशिया) -text(أرمينيا) text(was:situated:in) text(亞洲) -text(Armenia) text(was:a:neighboring:state:to) text(Georgia) -text(Armenië) text(borders:with) text(阿塞拜疆) -text(आर्मीनिया) text(borders) text(Iran) -text(Armenia) text(is:butted:against) text(तुर्की) -text(अण्टीगुआ:और:बारबूडा) text(is:situated:in) text(Caribbean) -text(أنتيغوا:وباربودا) text(is:located:in) text(أمريكتان) -text(एस्वातीनी) text(was:located:in) text(南部非洲) -text(斯威士兰) text(can:be:found:in) text(Africa) -text(Eswatini) text(was:butted:against) text(南非) -text(Swaziland) text(was:adjacent:to) text(Mozambique) -text(Wallis:and:Futuna) text(was:positioned:in) text(पोलीनेशिया) -text(वालिस:और:फ़्यूचूना) text(is:positioned:in) text(Oceanía) -text(उरुग्वे) text(was:sited:in) text(Zuid-Amerika) -text(الأوروغواي) text(is:sited:in) text(Americas) -text(烏拉圭) text(is:adjacent:to) text(Argentina) -text(Uruguay) text(neighbors) text(Brasil) -text(Zambia) text(was:localized:in) text(东部非洲) -text(زامبيا) text(is:localized:in) text(Afrika) -text(Zambia) text(is:a:neighboring:country:of) text(تنزانيا) -text(ज़ाम्बिया) text(was:a:neighboring:country:of) text(موزمبيق) -text(贊比亞) text(neighbors:with) text(Congo-Kinshasa) -text(Zambia) text(was:a:neighbor:of) text(अंगोला) -text(Zambia) text(is:a:neighbor:of) text(Botsuana) -text(زامبيا) text(is:a:neighboring:state:to) text(Zimbabwe) -text(Zambia) text(was:a:neighboring:state:to) text(Namibia) -text(ज़ाम्बिया) text(borders:with) text(مالاوي) -text(Cyprus) text(was:present:in) text(东欧) -text(साइप्रस) text(is:present:in) text(Europe) -text(塞浦路斯) text(borders) text(Reino:Unido) -text(Verenigd:Koninkrijk) text(is:still:in) text(Northern:Europe) -text(المملكة:المتحدة) text(was:still:in) text(Europa) -text(Reino:Unido) text(is:butted:against) text(Verenigd:Koninkrijk) -text(Burundi) text(was:currently:in) text(East:Africa) -text(बुरुण्डी) text(is:currently:in) text(África) -text(بوروندي) text(was:butted:against) text(Democratic:Republic:of:the:Congo) -text(Burundi) text(was:adjacent:to) text(رواندا) -text(Burundi) text(is:adjacent:to) text(Tanzania) -text(Centraal-Afrikaanse:Republiek) text(is:placed:in) text(中部非洲) -text(मध्य:अफ़्रीकी:गणराज्य) text(was:placed:in) text(अफ्रीका) -text(中非共和國) text(neighbors) text(Chad) -text(Central:African:Republic) text(is:a:neighboring:country:of) text(República:del:Congo) -text(جمهورية:إفريقيا:الوسطى) text(was:a:neighboring:country:of) text(República:Democrática:del:Congo) -text(República:Centroafricana) text(neighbors:with) text(दक्षिण:सूडान) -text(Centraal-Afrikaanse:Republiek) text(was:a:neighbor:of) text(Kameroen) -text(मध्य:अफ़्रीकी:गणराज्य) text(is:a:neighbor:of) text(सूडान) -text(Tonga) text(can:be:found:in) text(Polynesia) -text(東加) text(was:situated:in) text(大洋洲) -text(Ivoorkust) text(is:situated:in) text(West:Africa) -text(ساحل:العاج) text(is:located:in) text(إفريقيا) -text(Ivory:Coast) text(is:a:neighboring:state:to) text(Burkina:Faso) -text(Costa:de:Marfil) text(was:a:neighboring:state:to) text(Ghana) -text(कोत:दिव्वार) text(borders:with) text(ليبيريا) -text(科特迪瓦) text(borders) text(Mali) -text(Ivoorkust) text(is:butted:against) text(Guinea) -text(सिएरा:लियोन) text(was:butted:against) text(Liberia) -text(Sierra:Leone) text(was:adjacent:to) text(गिनी) -text(马约特) text(was:located:in) text(África:Oriental) -text(Mayotte) text(can:be:found:in) text(非洲) -text(波蘭) text(is:adjacent:to) text(Germany) -text(Poland) text(neighbors) text(烏克蘭) -text(بولندا) text(is:a:neighboring:country:of) text(Slowakije) -text(Polonia) text(was:a:neighboring:country:of) text(Bielorrusia) -text(पोलैंड) text(neighbors:with) text(रूस) -text(Polen) text(was:a:neighbor:of) text(立陶宛) -text(波蘭) text(is:a:neighbor:of) text(चेक:गणराज्य) -text(कज़ाख़िस्तान) text(was:positioned:in) text(آسيا:الوسطى) -text(Kazajistán) text(is:positioned:in) text(آسيا) -text(Kazachstan) text(is:a:neighboring:state:to) text(Turkmenistan) -text(哈萨克斯坦) text(was:a:neighboring:state:to) text(中华人民共和国) -text(كازاخستان) text(borders:with) text(Kirgizië) -text(Kazakhstan) text(borders) text(Uzbekistán) -text(कज़ाख़िस्तान) text(is:butted:against) text(روسيا) -text(उज़्बेकिस्तान) text(was:sited:in) text(Central:Asia) -text(乌兹别克斯坦) text(is:sited:in) text(एशिया) -text(Uzbekistan) text(was:butted:against) text(Afganistán) -text(أوزبكستان) text(was:adjacent:to) text(Turkmenistan) -text(Oezbekistan) text(is:adjacent:to) text(Kazajistán) -text(Uzbekistán) text(neighbors) text(Kirguistán) -text(उज़्बेकिस्तान) text(is:a:neighboring:country:of) text(Tajikistan) -text(Turks-:en:Caicoseilanden) text(was:localized:in) text(الكاريبي) -text(Islas:Turcas:y:Caicos) text(is:localized:in) text(美洲) -text(Nieuw-Caledonië) text(was:present:in) text(ميلانيزيا) -text(New:Caledonia) text(is:present:in) text(Oceanië) -text(Pakistan) text(was:a:neighboring:country:of) text(चीनी:जनवादी:गणराज्य) -text(Pakistan) text(neighbors:with) text(Afghanistan) -text(Pakistán) text(was:a:neighbor:of) text(ईरान) -text(巴基斯坦) text(is:a:neighbor:of) text(India) -text(Argentina) text(is:still:in) text(南美洲) -text(阿根廷) text(was:still:in) text(महाअमेरिका) -text(Argentinië) text(is:a:neighboring:state:to) text(Bolivia) -text(अर्जेण्टीना) text(was:a:neighboring:state:to) text(智利) -text(الأرجنتين) text(borders:with) text(Brazilië) -text(Argentina) text(borders) text(Paraguay) -text(Argentina) text(is:butted:against) text(Uruguay) -text(Cuba) text(was:currently:in) text(加勒比地区) -text(古巴) text(is:currently:in) text(Amerika) -text(Serbia) text(was:butted:against) text(Macedonia:del:Norte) -text(सर्बिया) text(was:adjacent:to) text(蒙特內哥羅) -text(صربيا) text(is:adjacent:to) text(Kosovo) -text(Serbia) text(neighbors) text(Bosnia:and:Herzegovina) -text(塞爾維亞) text(is:a:neighboring:country:of) text(كرواتيا) -text(Servië) text(was:a:neighboring:country:of) text(हंगरी) -text(Serbia) text(neighbors:with) text(保加利亚) -text(सर्बिया) text(was:a:neighbor:of) text(羅馬尼亞) -text(جمهورية:التشيك) text(is:placed:in) text(Eastern:Europe) -text(Tsjechië) text(was:placed:in) text(欧洲) -text(República:Checa) text(is:a:neighbor:of) text(Duitsland) -text(捷克) text(is:a:neighboring:state:to) text(Austria) -text(Czech:Republic) text(was:a:neighboring:state:to) text(Poland) -text(चेक:गणराज्य) text(borders:with) text(स्लोवाकिया) -text(निकारागुआ) text(borders) text(Honduras) -text(Nicaragua) text(is:butted:against) text(Costa:Rica) -text(Vietnam) text(can:be:found:in) text(جنوب:شرق:آسيا) -text(越南) text(was:situated:in) text(Asia) -text(Vietnam) text(was:butted:against) text(Cambodia) -text(Vietnam) text(was:adjacent:to) text(لاوس) -text(वियतनाम) text(is:adjacent:to) text(República:Popular:China) -text(نييوي) text(is:situated:in) text(Polynesië) -text(Niue) text(is:located:in) text(Oceania) -text(Canada) text(was:located:in) text(उत्तर:अमेरिका) -text(كندا) text(can:be:found:in) text(América) -text(Canadá) text(neighbors) text(संयुक्त:राज्य:अमेरिका) -text(Eslovaquia) text(is:a:neighboring:country:of) text(Ucrania) -text(Slovakia) text(was:a:neighboring:country:of) text(بولندا) -text(斯洛伐克) text(neighbors:with) text(奧地利) -text(سلوفاكيا) text(was:a:neighbor:of) text(Hongarije) -text(Slowakije) text(is:a:neighbor:of) text(جمهورية:التشيك) -text(मोज़ाम्बीक) text(is:a:neighboring:state:to) text(Tanzania) -text(莫桑比克) text(was:a:neighboring:state:to) text(Esuatini) -text(Mozambique) text(borders:with) text(زيمبابوي) -text(Mozambique) text(borders) text(贊比亞) -text(Mozambique) text(is:butted:against) text(मलावी) -text(موزمبيق) text(was:butted:against) text(South:Africa) -text(Aruba) text(was:positioned:in) text(Caraïben) -text(Aruba) text(is:positioned:in) text(أمريكتان) -text(Bolivia) text(was:sited:in) text(América:del:Sur) -text(Bolivia) text(is:sited:in) text(Americas) -text(玻利維亞) text(was:adjacent:to) text(Chili) -text(बोलिविया) text(is:adjacent:to) text(Brazil) -text(بوليفيا) text(neighbors) text(باراغواي) -text(Bolivia) text(is:a:neighboring:country:of) text(阿根廷) -text(Bolivia) text(was:a:neighboring:country:of) text(بيرو) -text(Colombia) text(was:localized:in) text(South:America) -text(كولومبيا) text(is:localized:in) text(美洲) -text(Colombia) text(neighbors:with) text(ईक्वाडोर) -text(कोलम्बिया) text(was:a:neighbor:of) text(ब्राज़ील) -text(哥伦比亚) text(is:a:neighbor:of) text(Panama) -text(Colombia) text(is:a:neighboring:state:to) text(Venezuela) -text(Colombia) text(was:a:neighboring:state:to) text(Peru) -text(فيجي) text(was:present:in) text(美拉尼西亞) -text(斐濟) text(is:present:in) text(ओशिआनिया) -text(Congo-Brazzaville) text(borders:with) text(Gabon) -text(Republic:of:the:Congo) text(borders) text(刚果民主共和国) -text(جمهورية:الكونغو) text(is:butted:against) text(Angola) -text(剛果共和國) text(was:butted:against) text(कैमरुन) -text(कांगो:गणराज्य) text(was:adjacent:to) text(中非共和國) -text(सउदी:अरब) text(is:adjacent:to) text(Qatar) -text(Arabia:Saudí) text(neighbors) text(United:Arab:Emirates) -text(Saoedi-Arabië) text(is:a:neighboring:country:of) text(約旦) -text(السعودية) text(was:a:neighboring:country:of) text(也门) -text(沙特阿拉伯) text(neighbors:with) text(Omán) -text(Saudi:Arabia) text(was:a:neighbor:of) text(कुवैत) -text(सउदी:अरब) text(is:a:neighbor:of) text(伊拉克) -text(السلفادور) text(is:still:in) text(أمريكا:الوسطى) -text(अल:साल्वाडोर) text(was:still:in) text(महाअमेरिका) -text(El:Salvador) text(is:a:neighboring:state:to) text(Guatemala) -text(El:Salvador) text(was:a:neighboring:state:to) text(Honduras) -text(Madagascar) text(was:currently:in) text(شرق:إفريقيا) -text(Madagascar) text(is:currently:in) text(Africa) -text(ऑस्ट्रेलिया) text(is:placed:in) text(Australia:and:New:Zealand) -text(澳大利亚) text(was:placed:in) text(أوقيانوسيا) -text(纳米比亚) text(can:be:found:in) text(दक्षिणी:अफ्रीका) -text(Namibië) text(was:situated:in) text(Afrika) -text(नामीबिया) text(borders:with) text(Zambia) -text(Namibia) text(borders) text(Angola) -text(ناميبيا) text(is:butted:against) text(Sudáfrica) -text(Namibia) text(was:butted:against) text(بوتسوانا) -text(Tuvalu) text(is:situated:in) text(Polinesia) -text(Tuvalu) text(is:located:in) text(Oceanía) -text(سفالبارد:ويان:ماين) text(was:located:in) text(Europa:del:Norte) -text(nan) text(can:be:found:in) text(Europa) -text(Man) text(was:positioned:in) text(Noord-Europa) -text(Isle:of:Man) text(is:positioned:in) text(यूरोप) -text(Guyana) text(was:adjacent:to) text(البرازيل) -text(Guyana) text(is:adjacent:to) text(Suriname) -text(圭亚那) text(neighbors) text(委內瑞拉) -text(الفاتيكان) text(was:sited:in) text(Southern:Europe) -text(梵蒂岡城國) text(is:sited:in) text(أوروبا) -text(Ciudad:del:Vaticano) text(is:a:neighboring:country:of) text(إيطاليا) -text(英屬印度洋領地) text(was:localized:in) text(Oost-Afrika) -text(Brits:Indische:Oceaanterritorium) text(is:localized:in) text(África) -text(Nigeria) text(was:present:in) text(África:Occidental) -text(奈及利亞) text(is:present:in) text(अफ्रीका) -text(नाइजीरिया) text(was:a:neighboring:country:of) text(Tsjaad) -text(Nigeria) text(neighbors:with) text(Niger) -text(نيجيريا) text(was:a:neighbor:of) text(Camerún) -text(Nigeria) text(is:a:neighbor:of) text(بنين) -text(Alemania) text(is:a:neighboring:state:to) text(डेनमार्क) -text(德國) text(was:a:neighboring:state:to) text(नीदरलैण्ड) -text(ألمانيا) text(borders:with) text(Polonia) -text(जर्मनी) text(borders) text(Luxembourg) -text(Germany) text(is:butted:against) text(Bélgica) -text(Duitsland) text(was:butted:against) text(Switzerland) -text(Alemania) text(was:adjacent:to) text(Austria) -text(德國) text(is:adjacent:to) text(Frankrijk) -text(ألمانيا) text(neighbors) text(Tsjechië) -text(Burkina:Faso) text(is:a:neighboring:country:of) text(多哥) -text(布吉納法索) text(was:a:neighboring:country:of) text(Benín) -text(बुर्किना:फासो) text(neighbors:with) text(尼日尔) -text(بوركينا:فاسو) text(was:a:neighbor:of) text(Ghana) -text(Burkina:Faso) text(is:a:neighbor:of) text(马里) -text(Burkina:Faso) text(is:a:neighboring:state:to) text(ساحل:العاج) -text(坦桑尼亞) text(was:a:neighboring:state:to) text(Uganda) -text(तंज़ानिया) text(borders:with) text(मोज़ाम्बीक) -text(Tanzania) text(borders) text(جمهورية:الكونغو:الديمقراطية) -text(تنزانيا) text(is:butted:against) text(Kenia) -text(Tanzania) text(was:butted:against) text(Ruanda) -text(Tanzania) text(was:adjacent:to) text(Zambia) -text(坦桑尼亞) text(is:adjacent:to) text(Malawi) -text(तंज़ानिया) text(neighbors) text(蒲隆地) -text(Islas:Marianas:del:Norte) text(is:still:in) text(Micronesië) -text(उत्तरी:मारियाना:द्वीप) text(was:still:in) text(大洋洲) -text(Belize) text(was:currently:in) text(América:Central) -text(伯利兹) text(is:currently:in) text(Amerika) -text(بليز) text(is:a:neighboring:country:of) text(ग्वाटेमाला) -text(Belice) text(was:a:neighboring:country:of) text(México) -text(Norway) text(neighbors:with) text(Suecia) -text(挪威) text(was:a:neighbor:of) text(Finland) -text(النرويج) text(is:a:neighbor:of) text(俄罗斯) -text(कोकोस:(कीलिंग):द्वीपसमूह) text(is:placed:in) text(nan) -text(islas:Cocos) text(was:placed:in) text(Oceanië) -text(Laos) text(can:be:found:in) text(东南亚) -text(लाओस) text(was:situated:in) text(Azië) -text(老撾) text(is:a:neighboring:state:to) text(الصين) -text(Laos) text(was:a:neighboring:state:to) text(柬埔寨) -text(Laos) text(borders:with) text(ميانمار) -text(لاوس) text(borders) text(فيتنام) -text(Laos) text(is:butted:against) text(Thailand) -text(República:Árabe:Saharaui:Democrática) text(is:situated:in) text(उत्तर:अफ़्रीका) -text(Sahrawi:Arab:Democratic:Republic) text(is:located:in) text(إفريقيا) -text(الجمهورية:العربية:الصحراوية:الديمقراطية) text(was:butted:against) text(Algeria) -text(Sahrawi:Arabische:Democratische:Republiek) text(was:adjacent:to) text(Mauritanië) -text(撒拉威阿拉伯民主共和國) text(is:adjacent:to) text(Morocco) -text(سورينام) text(was:located:in) text(أمريكا:الجنوبية) -text(सूरीनाम) text(can:be:found:in) text(América) -text(Suriname) text(neighbors) text(巴西) -text(Surinam) text(is:a:neighboring:country:of) text(Guayana:Francesa) -text(蘇利南) text(was:a:neighboring:country:of) text(गयाना) -text(聖誕島) text(was:positioned:in) text(Australië:en:Nieuw-Zeeland) -text(Christmas:Island) text(is:positioned:in) text(Oceania) -text(Sao:Tomé:en:Principe) text(was:sited:in) text(Central:Africa) -text(ساو:تومي:وبرينسيب) text(is:sited:in) text(非洲) -text(Egipto) text(neighbors:with) text(ليبيا) -text(埃及) text(was:a:neighbor:of) text(Israel) -text(Egypte) text(is:a:neighbor:of) text(苏丹) -text(बुल्गारिया) text(is:a:neighboring:state:to) text(North:Macedonia) -text(Bulgaria) text(was:a:neighboring:state:to) text(Turquía) -text(Bulgarije) text(borders:with) text(यूनान) -text(بلغاريا) text(borders) text(صربيا) -text(Bulgaria) text(is:butted:against) text(Rumania) -text(Guinee) text(was:localized:in) text(غرب:إفريقيا) -text(几内亚) text(is:localized:in) text(Africa) -text(Guinea) text(was:butted:against) text(Guinea-Bissau) -text(غينيا) text(was:adjacent:to) text(Sierra:Leone) -text(Guinea) text(is:adjacent:to) text(Mali) -text(गिनी) text(neighbors) text(Liberia) -text(Guinee) text(is:a:neighboring:country:of) text(Senegal) -text(几内亚) text(was:a:neighboring:country:of) text(Ivory:Coast) -text(إسبانيا) text(neighbors:with) text(मोरक्को) -text(Spanje) text(was:a:neighbor:of) text(جبل:طارق) -text(西班牙) text(is:a:neighbor:of) text(أندورا) -text(Spain) text(is:a:neighboring:state:to) text(فرنسا) -text(स्पेन) text(was:a:neighboring:state:to) text(葡萄牙) -text(कोस्टा:रीका) text(was:present:in) text(中美洲) -text(哥斯达黎加) text(is:present:in) text(أمريكتان) -text(Costa:Rica) text(borders:with) text(Panama) -text(Costa:Rica) text(borders) text(Nicaragua) -text(مالطا) text(is:still:in) text(أوروبا:الجنوبية) -text(माल्टा) text(was:still:in) text(Europe) -text(Portugal) text(was:currently:in) text(Zuid-Europa) -text(पुर्तगाल) text(is:currently:in) text(Europa) -text(Portugal) text(is:butted:against) text(España) -text(Romania) text(is:placed:in) text(पूर्वी:यूरोप) -text(रोमानिया) text(was:placed:in) text(欧洲) -text(Roemenië) text(was:butted:against) text(Ukraine) -text(رومانيا) text(was:adjacent:to) text(Hungría) -text(羅馬尼亞) text(is:adjacent:to) text(Moldova) -text(Rumania) text(neighbors) text(保加利亚) -text(Romania) text(is:a:neighboring:country:of) text(Serbia) -text(San:Marino) text(can:be:found:in) text(Europa:del:Sur) -text(San:Marino) text(was:situated:in) text(Europa) -text(圣马力诺) text(was:a:neighboring:country:of) text(Italy) -text(Mauritania) text(is:situated:in) text(West-Afrika) -text(मॉरीतानिया) text(is:located:in) text(Afrika) -text(毛里塔尼亞) text(neighbors:with) text(Argelia) -text(Mauritania) text(was:a:neighbor:of) text(مالي) -text(موريتانيا) text(is:a:neighbor:of) text(सहरावी:अरब:जनतांत्रिक:गणराज्य) -text(Mauritanië) text(is:a:neighboring:state:to) text(塞内加尔) -text(千里達及托巴哥) text(was:located:in) text(कैरिबिया) -text(Trinidad:and:Tobago) text(can:be:found:in) text(Americas) -text(巴林) text(was:positioned:in) text(西亚) -text(Bahrain) text(is:positioned:in) text(Asia) -text(緬甸) text(was:a:neighboring:state:to) text(الهند) -text(Birmania) text(borders:with) text(बांग्लादेश) -text(Myanmar) text(borders) text(People's:Republic:of:China) -text(म्यान्मार) text(is:butted:against) text(लाओस) -text(Myanmar) text(was:butted:against) text(Tailandia) -text(العراق) text(was:adjacent:to) text(土耳其) -text(इराक) text(is:adjacent:to) text(Arabia:Saudí) -text(Iraq) text(neighbors) text(Iran) -text(Irak) text(is:a:neighboring:country:of) text(Jordania) -text(Irak) text(was:a:neighboring:country:of) text(Kuwait) -text(伊拉克) text(neighbors:with) text(Siria) -text(南乔治亚和南桑威奇群岛) text(was:sited:in) text(दक्षिण:अमेरिका) -text(दक्षिण:जॉर्जिया:एवं:दक्षिण:सैंडविच:द्वीप:समूह) text(is:sited:in) text(美洲) -text(Iceland) text(was:localized:in) text(उत्तरी:यूरोप) -text(Islandia) text(is:localized:in) text(यूरोप) -text(कांगो:लोकतान्त्रिक:गणराज्य) text(was:present:in) text(मध्य:अफ्रीका) -text(Congo-Kinshasa) text(is:present:in) text(África) -text(Democratic:Republic:of:the:Congo) text(was:a:neighbor:of) text(Oeganda) -text(República:Democrática:del:Congo) text(is:a:neighbor:of) text(Tanzania) -text(刚果民主共和国) text(is:a:neighboring:state:to) text(República:del:Congo) -text(جمهورية:الكونغو:الديمقراطية) text(was:a:neighboring:state:to) text(Central:African:Republic) -text(कांगो:लोकतान्त्रिक:गणराज्य) text(borders:with) text(Angola) -text(Congo-Kinshasa) text(borders) text(卢旺达) -text(Democratic:Republic:of:the:Congo) text(is:butted:against) text(Zuid-Soedan) -text(República:Democrática:del:Congo) text(was:butted:against) text(زامبيا) -text(刚果民主共和国) text(was:adjacent:to) text(Burundi) -text(塞舌尔) text(is:still:in) text(पूर्वी:अफ्रीका) -text(سيشل) text(was:still:in) text(अफ्रीका) -text(吉尔吉斯斯坦) text(is:adjacent:to) text(Volksrepubliek:China) -text(Kyrgyzstan) text(neighbors) text(Kazachstan) -text(قرغيزستان) text(is:a:neighboring:country:of) text(Tayikistán) -text(किर्गिज़स्तान) text(was:a:neighboring:country:of) text(乌兹别克斯坦) -text(Botswana) text(was:currently:in) text(Zuidelijk:Afrika) -text(Botswana) text(is:currently:in) text(إفريقيا) -text(波札那) text(neighbors:with) text(津巴布韦) -text(बोत्सवाना) text(was:a:neighbor:of) text(纳米比亚) -text(Botsuana) text(is:a:neighbor:of) text(Zambia) -text(بوتسوانا) text(is:a:neighboring:state:to) text(Zuid-Afrika) -text(法罗群岛) text(is:placed:in) text(أوروبا:الشمالية) -text(Islas:Feroe) text(was:placed:in) text(أوروبا) -text(Jamaica) text(can:be:found:in) text(Caribe) -text(Jamaica) text(was:situated:in) text(महाअमेरिका) -text(ساموا:الأمريكية) text(is:situated:in) text(玻里尼西亞) -text(अमेरिकी:समोआ) text(is:located:in) text(ओशिआनिया) -text(莱索托) text(was:located:in) text(África:austral) -text(Lesotho) text(can:be:found:in) text(非洲) -text(ليسوتو) text(was:a:neighboring:state:to) text(جنوب:إفريقيا) -text(Sri:Lanka) text(borders:with) text(India) -text(بلجيكا) text(was:positioned:in) text(West-Europa) -text(Belgium) text(is:positioned:in) text(Europe) -text(België) text(borders) text(जर्मनी) -text(比利時) text(is:butted:against) text(Luxemburg) -text(बेल्जियम) text(was:butted:against) text(Francia) -text(Bélgica) text(was:adjacent:to) text(Países:Bajos) -text(قطر) text(was:sited:in) text(Zuidwest-Azië) -text(क़तर) text(is:sited:in) text(亞洲) -text(Catar) text(is:adjacent:to) text(Saoedi-Arabië) -text(Islas:Salomón) text(was:localized:in) text(Melanesië) -text(Salomonseilanden) text(is:localized:in) text(أوقيانوسيا) -text(सीरिया) text(was:present:in) text(Asia:Occidental) -text(敘利亞) text(is:present:in) text(آسيا) -text(Syrië) text(neighbors) text(以色列) -text(سوريا) text(is:a:neighboring:country:of) text(Turkije) -text(Syria) text(was:a:neighboring:country:of) text(الأردن) -text(Siria) text(neighbors:with) text(लेबनॉन) -text(सीरिया) text(was:a:neighbor:of) text(العراق) -text(भारत) text(is:still:in) text(South:Asia) -text(印度) text(was:still:in) text(एशिया) -text(India) text(is:a:neighbor:of) text(अफ़्ग़ानिस्तान) -text(India) text(is:a:neighboring:state:to) text(Bután) -text(الهند) text(was:a:neighboring:state:to) text(Bangladesh) -text(India) text(borders:with) text(中华人民共和国) -text(भारत) text(borders) text(Nepal) -text(印度) text(is:butted:against) text(ميانمار) -text(India) text(was:butted:against) text(باكستان) -text(India) text(was:adjacent:to) text(Sri:Lanka) -text(Marruecos) text(is:adjacent:to) text(अल्जीरिया) -text(المغرب) text(neighbors) text(إسبانيا) -text(摩洛哥) text(is:a:neighboring:country:of) text(República:Árabe:Saharaui:Democrática) -text(Kenya) text(was:currently:in) text(东部非洲) -text(肯尼亚) text(is:currently:in) text(Africa) -text(كينيا) text(was:a:neighboring:country:of) text(युगाण्डा) -text(Kenia) text(neighbors:with) text(تنزانيا) -text(कीनिया) text(was:a:neighbor:of) text(الصومال) -text(Kenia) text(is:a:neighbor:of) text(南蘇丹) -text(Kenya) text(is:a:neighboring:state:to) text(इथियोपिया) -text(South:Sudan) text(is:placed:in) text(وسط:إفريقيا) -text(Sudán:del:Sur) text(was:placed:in) text(Afrika) -text(جنوب:السودان) text(was:a:neighboring:state:to) text(Uganda) -text(दक्षिण:सूडान) text(borders:with) text(جمهورية:الكونغو:الديمقراطية) -text(Zuid-Soedan) text(borders) text(肯尼亚) -text(南蘇丹) text(is:butted:against) text(جمهورية:إفريقيا:الوسطى) -text(South:Sudan) text(was:butted:against) text(Sudán) -text(Sudán:del:Sur) text(was:adjacent:to) text(埃塞俄比亚) -text(घाना) text(is:adjacent:to) text(Burkina:Faso) -text(Ghana) text(neighbors) text(Costa:de:Marfil) -text(迦納) text(is:a:neighboring:country:of) text(Togo) -text(طاجيكستان) text(can:be:found:in) text(Asia:Central) -text(ताजीकिस्तान) text(was:situated:in) text(Asia) -text(塔吉克斯坦) text(was:a:neighboring:country:of) text(चीनी:जनवादी:गणराज्य) -text(Tadzjikistan) text(neighbors:with) text(Kirgizië) -text(Tajikistan) text(was:a:neighbor:of) text(أفغانستان) -text(Tayikistán) text(is:a:neighbor:of) text(Uzbekistan) -text(मार्शल:द्वीपसमूह) text(is:situated:in) text(密克羅尼西亞群島) -text(Marshalleilanden) text(is:located:in) text(Oceanía) -text(Cameroon) text(was:located:in) text(África:Central) -text(الكاميرون) text(can:be:found:in) text(África) -text(喀麦隆) text(is:a:neighboring:state:to) text(تشاد) -text(Kameroen) text(was:a:neighboring:state:to) text(Congo-Brazzaville) -text(कैमरुन) text(borders:with) text(Gabon) -text(Camerún) text(borders) text(भूमध्यरेखीय:गिनी) -text(Cameroon) text(is:butted:against) text(República:Centroafricana) -text(الكاميرون) text(was:butted:against) text(Nigeria) -text(Nauru) text(was:positioned:in) text(माइक्रोनीशिया) -text(瑙鲁) text(is:positioned:in) text(大洋洲) -text(泰國) text(was:adjacent:to) text(كمبوديا) -text(थाईलैंड) text(is:adjacent:to) text(緬甸) -text(Thailand) text(neighbors) text(老撾) -text(تايلاند) text(is:a:neighboring:country:of) text(Malaysia) -text(Sudan) text(was:a:neighboring:country:of) text(चाड) -text(Soedan) text(neighbors:with) text(लीबिया) -text(السودان) text(was:a:neighbor:of) text(جنوب:السودان) -text(सूडान) text(is:a:neighbor:of) text(Eritrea) -text(苏丹) text(is:a:neighboring:state:to) text(Centraal-Afrikaanse:Republiek) -text(Sudán) text(was:a:neighboring:state:to) text(مصر) -text(Sudan) text(borders:with) text(Etiopía) -text(乍得) text(was:sited:in) text(Centraal-Afrika) -text(Chad) text(is:sited:in) text(अफ्रीका) -text(Chad) text(borders) text(Libië) -text(Tsjaad) text(is:butted:against) text(नाइजर) -text(تشاد) text(was:butted:against) text(दक्षिण:सूडान) -text(चाड) text(was:adjacent:to) text(喀麦隆) -text(乍得) text(is:adjacent:to) text(मध्य:अफ़्रीकी:गणराज्य) -text(Chad) text(neighbors) text(奈及利亞) -text(萬那杜) text(was:localized:in) text(Melanesia) -text(Vanuatu) text(is:localized:in) text(Oceanië) -text(الرأس:الأخضر) text(was:present:in) text(पश्चिमी:अफ्रीका) -text(Kaapverdië) text(is:present:in) text(إفريقيا) -text(福克蘭群島) text(is:still:in) text(Zuid-Amerika) -text(Islas:Malvinas) text(was:still:in) text(Amerika) -text(利比里亞) text(was:currently:in) text(西非) -text(Liberia) text(is:currently:in) text(非洲) -text(लाइबेरिया) text(is:a:neighboring:country:of) text(कोत:दिव्वार) -text(ليبيريا) text(was:a:neighboring:country:of) text(塞拉利昂) -text(Liberia) text(neighbors:with) text(Guinea) -text(कम्बोडिया) text(is:placed:in) text(दक्षिण:पूर्व:एशिया) -text(Camboya) text(was:placed:in) text(Azië) -text(Cambodja) text(was:a:neighbor:of) text(Vietnam) -text(Cambodia) text(is:a:neighbor:of) text(Thailand) -text(柬埔寨) text(is:a:neighboring:state:to) text(Laos) -text(Zimbabwe) text(was:a:neighboring:state:to) text(ज़ाम्बिया) -text(ज़िम्बाब्वे) text(borders:with) text(दक्षिण:अफ़्रीका) -text(Zimbabue) text(borders) text(Botswana) -text(Zimbabwe) text(is:butted:against) text(莫桑比克) -text(कोमोरोस) text(can:be:found:in) text(East:Africa) -text(Comoras) text(was:situated:in) text(Africa) -text(關島) text(is:situated:in) text(ميكرونيسيا) -text(Guam) text(is:located:in) text(Oceania) -text(बहामास) text(was:located:in) text(Caribbean) -text(The:Bahamas) text(can:be:found:in) text(América) -text(Lebanon) text(was:positioned:in) text(West:Asia) -text(Líbano) text(is:positioned:in) text(Asia) -text(لبنان) text(was:butted:against) text(Israël) -text(Libanon) text(was:adjacent:to) text(敘利亞) -text(Saint:Martin) text(was:sited:in) text(الكاريبي) -text(सेंट:मार्टिन) text(is:sited:in) text(أمريكتان) -text(圣马丁岛) text(is:adjacent:to) text(San:Martín) -text(Ethiopia) text(was:localized:in) text(África:Oriental) -text(إثيوبيا) text(is:localized:in) text(Afrika) -text(Ethiopië) text(neighbors) text(Somalia) -text(इथियोपिया) text(is:a:neighboring:country:of) text(كينيا) -text(埃塞俄比亚) text(was:a:neighboring:country:of) text(Eritrea) -text(Etiopía) text(neighbors:with) text(Zuid-Soedan) -text(Ethiopia) text(was:a:neighbor:of) text(Djibouti) -text(إثيوبيا) text(is:a:neighbor:of) text(Soedan) -text(Amerikaanse:Maagdeneilanden) text(was:present:in) text(加勒比地区) -text(美屬維爾京群島) text(is:present:in) text(Americas) -text(गिनी-बिसाऊ) text(is:still:in) text(West:Africa) -text(Guinee-Bissau) text(was:still:in) text(África) -text(畿內亞比紹) text(is:a:neighboring:state:to) text(غينيا) -text(غينيا:بيساو) text(was:a:neighboring:state:to) text(السنغال) -text(Libya) text(was:currently:in) text(North:Africa) -text(利比亞) text(is:currently:in) text(अफ्रीका) -text(Libia) text(borders:with) text(Chad) -text(ليبيا) text(borders) text(Túnez) -text(लीबिया) text(is:butted:against) text(النيجر) -text(Libië) text(was:butted:against) text(الجزائر) -text(Libya) text(was:adjacent:to) text(Egypt) -text(利比亞) text(is:adjacent:to) text(السودان) -text(भूटान) text(is:placed:in) text(جنوب:آسيا) -text(بوتان) text(was:placed:in) text(亞洲) -text(Bhutan) text(neighbors) text(República:Popular:China) -text(不丹) text(is:a:neighboring:country:of) text(الهند) -text(ماكاو) text(can:be:found:in) text(شرق:آسيا) -text(Macao) text(was:situated:in) text(آسيا) -text(澳門) text(was:a:neighboring:country:of) text(الصين) -text(法屬玻里尼西亞) text(is:situated:in) text(بولنيزيا) -text(French:Polynesia) text(is:located:in) text(ओशिआनिया) -text(Somalië) text(was:located:in) text(شرق:إفريقيا) -text(索馬里) text(can:be:found:in) text(إفريقيا) -text(Somalia) text(neighbors:with) text(Yibuti) -text(सोमालिया) text(was:a:neighbor:of) text(Kenia) -text(الصومال) text(is:a:neighbor:of) text(Ethiopië) -text(Saint:Barthélemy) text(was:positioned:in) text(Caraïben) -text(聖巴泰勒米) text(is:positioned:in) text(美洲) -text(Rusia) text(was:sited:in) text(Europa:Oriental) -text(Russia) text(is:sited:in) text(Europa) -text(Rusland) text(is:a:neighboring:state:to) text(युक्रेन) -text(रूस) text(was:a:neighboring:state:to) text(Wit-Rusland) -text(روسيا) text(borders:with) text(People's:Republic:of:China) -text(俄罗斯) text(borders) text(哈萨克斯坦) -text(Rusia) text(is:butted:against) text(Noruega) -text(Russia) text(was:butted:against) text(पोलैंड) -text(Rusland) text(was:adjacent:to) text(Azerbaiyán) -text(रूस) text(is:adjacent:to) text(Lithuania) -text(روسيا) text(neighbors) text(إستونيا) -text(俄罗斯) text(is:a:neighboring:country:of) text(North:Korea) -text(Rusia) text(was:a:neighboring:country:of) text(फ़िनलैण्ड) -text(Russia) text(neighbors:with) text(Mongolië) -text(Rusland) text(was:a:neighbor:of) text(Letonia) -text(रूस) text(is:a:neighbor:of) text(جورجيا) -text(Nieuw-Zeeland) text(was:localized:in) text(nan) -text(Nueva:Zelanda) text(is:localized:in) text(أوقيانوسيا) -text(पनामा) text(was:present:in) text(Centraal-Amerika) -text(بنما) text(is:present:in) text(महाअमेरिका) -text(Panamá) text(is:a:neighboring:state:to) text(كوستاريكا) -text(巴拿馬) text(was:a:neighboring:state:to) text(كولومبيا) -text(Papúa:Nueva:Guinea) text(is:still:in) text(Melanesia) -text(पापुआ:न्यू:गिनी) text(was:still:in) text(Oceanía) -text(بابوا:غينيا:الجديدة) text(borders:with) text(Indonesia) -text(朝鮮民主主義人民共和國) text(borders) text(Volksrepubliek:China) -text(उत्तर:कोरिया) text(is:butted:against) text(Zuid-Korea) -text(Noord-Korea) text(was:butted:against) text(روسيا) -text(拉脫維亞) text(was:currently:in) text(北歐) -text(لاتفيا) text(is:currently:in) text(欧洲) -text(Letland) text(was:adjacent:to) text(Lituania) -text(लातविया) text(is:adjacent:to) text(بيلاروس) -text(Latvia) text(neighbors) text(俄罗斯) -text(Letonia) text(is:a:neighboring:country:of) text(愛沙尼亞) -text(Oman) text(is:placed:in) text(غرب:آسيا) -text(ओमान) text(was:placed:in) text(एशिया) -text(سلطنة:عمان) text(was:a:neighboring:country:of) text(السعودية) -text(阿曼) text(neighbors:with) text(اليمن) -text(Oman) text(was:a:neighbor:of) text(Emiratos:Árabes:Unidos) -text(圣皮埃尔和密克隆) text(can:be:found:in) text(North:America) -text(सन्त:पियर:और:मिकलान) text(was:situated:in) text(Amerika) -text(馬提尼克) text(is:situated:in) text(कैरिबिया) -text(मार्टीनिक) text(is:located:in) text(América) -text(المملكة:المتحدة) text(was:located:in) text(Northern:Europe) -text(United:Kingdom) text(can:be:found:in) text(Europa) -text(英国) text(is:a:neighbor:of) text(United:Kingdom) -text(इज़राइल) text(was:positioned:in) text(पश्चिमी:एशिया) -text(إسرائيل) text(is:positioned:in) text(Asia) -text(Israel) text(is:a:neighboring:state:to) text(黎巴嫩) -text(Israel) text(was:a:neighboring:state:to) text(मिस्र) -text(以色列) text(borders:with) text(Jordan) -text(Israël) text(borders) text(Syrië) -text(澤西) text(was:sited:in) text(Europa:del:Norte) -text(Jersey) text(is:sited:in) text(यूरोप) -text(पिटकेर्न:द्वीपसमूह) text(was:localized:in) text(पोलीनेशिया) -text(جزر:بيتكيرن) text(is:localized:in) text(大洋洲) -text(Togo) text(was:present:in) text(África:Occidental) -text(توغو) text(is:present:in) text(非洲) -text(Togo) text(is:butted:against) text(布吉納法索) -text(टोगो) text(was:butted:against) text(غانا) -text(多哥) text(was:adjacent:to) text(Benin) -text(كيريباتي) text(is:still:in) text(Micronesia) -text(किरिबाती) text(was:still:in) text(Oceanië) -text(伊朗) text(was:currently:in) text(南亚) -text(إيران) text(is:currently:in) text(Azië) -text(Irán) text(is:adjacent:to) text(Afghanistan) -text(Iran) text(neighbors) text(Turkmenistán) -text(ईरान) text(is:a:neighboring:country:of) text(Turkey) -text(Iran) text(was:a:neighboring:country:of) text(亞美尼亞) -text(伊朗) text(neighbors:with) text(Azerbaijan) -text(إيران) text(was:a:neighbor:of) text(पाकिस्तान) -text(Irán) text(is:a:neighbor:of) text(इराक) -text(सेंट:मार्टिन:की:सामूहिकता) text(is:placed:in) text(Caribe) -text(Sint-Maarten) text(was:placed:in) text(أمريكتان) -text(法屬聖馬丁) text(is:a:neighboring:state:to) text(San:Martín) -text(多明尼加) text(can:be:found:in) text(Caribbean) -text(Dominicaanse:Republiek) text(was:situated:in) text(Americas) -text(Dominican:Republic) text(was:a:neighboring:state:to) text(Haiti) -text(الدنمارك) text(borders:with) text(Germany) -text(Bermudas) text(is:situated:in) text(北美洲) -text(百慕大) text(is:located:in) text(美洲) -text(Chile) text(borders) text(Argentinië) -text(تشيلي) text(is:butted:against) text(Bolivia) -text(Chile) text(was:butted:against) text(Perú) -text(كوسوفو) text(was:located:in) text(Oost-Europa) -text(Kosovo) text(can:be:found:in) text(أوروبا) -text(科索沃) text(was:adjacent:to) text(塞爾維亞) -text(Kosovo) text(is:adjacent:to) text(Albania) -text(कोसोवो:गणराज्य) text(neighbors) text(مقدونيا:الشمالية) -text(Kosovo) text(is:a:neighboring:country:of) text(मॉन्टेनीग्रो) -text(سانت:كيتس:ونيفيس) text(was:positioned:in) text(الكاريبي) -text(San:Cristóbal:y:Nieves) text(is:positioned:in) text(महाअमेरिका) -text(Eritrea) text(was:a:neighboring:country:of) text(جيبوتي) -text(इरित्रिया) text(neighbors:with) text(सूडान) -text(إرتريا) text(was:a:neighbor:of) text(इथियोपिया) -text(赤道几内亚) text(was:sited:in) text(中部非洲) -text(غينيا:الاستوائية) text(is:sited:in) text(Africa) -text(Equatorial:Guinea) text(is:a:neighbor:of) text(加蓬) -text(Equatoriaal-Guinea) text(is:a:neighboring:state:to) text(Kameroen) -text(Níger) text(was:localized:in) text(غرب:إفريقيا) -text(Niger) text(is:localized:in) text(Afrika) -text(Niger) text(was:a:neighboring:state:to) text(Tsjaad) -text(尼日尔) text(borders:with) text(Libia) -text(नाइजर) text(borders) text(बुर्किना:फासो) -text(النيجر) text(is:butted:against) text(बेनिन) -text(Níger) text(was:butted:against) text(माली) -text(Niger) text(was:adjacent:to) text(阿爾及利亞) -text(Niger) text(is:adjacent:to) text(नाइजीरिया) -text(Anguilla) text(was:present:in) text(加勒比地区) -text(Anguila) text(is:present:in) text(Amerika) -text(Rwanda) text(is:still:in) text(Oost-Afrika) -text(Rwanda) text(was:still:in) text(África) -text(रवाण्डा) text(neighbors) text(बुरुण्डी) -text(رواندا) text(is:a:neighboring:country:of) text(Tanzania) -text(Ruanda) text(was:a:neighboring:country:of) text(烏干達) -text(卢旺达) text(neighbors:with) text(कांगो:लोकतान्त्रिक:गणराज्य) -text(الإمارات:العربية:المتحدة) text(was:currently:in) text(西亚) -text(阿拉伯联合酋长国) text(is:currently:in) text(Asia) -text(संयुक्त:अरब:अमीरात) text(was:a:neighbor:of) text(Omán) -text(Verenigde:Arabische:Emiraten) text(is:a:neighbor:of) text(沙特阿拉伯) -text(Estonia) text(is:placed:in) text(Noord-Europa) -text(एस्टोनिया) text(was:placed:in) text(Europe) -text(Estonia) text(is:a:neighboring:state:to) text(拉脫維亞) -text(Estland) text(was:a:neighboring:state:to) text(Rusia) -text(Greece) text(can:be:found:in) text(दक्षिणी:यूरोप) -text(希腊) text(was:situated:in) text(Europa) -text(Griekenland) text(borders:with) text(बुल्गारिया) -text(Grecia) text(borders) text(Albania) -text(اليونان) text(is:butted:against) text(उत्तर:मैसिडोनिया) -text(यूनान) text(was:butted:against) text(تركيا) -text(Senegal) text(is:situated:in) text(West-Afrika) -text(Senegal) text(is:located:in) text(अफ्रीका) -text(सेनेगल) text(was:adjacent:to) text(Guinea-Bisáu) -text(Senegal) text(is:adjacent:to) text(Mauritania) -text(塞内加尔) text(neighbors) text(Mali) -text(السنغال) text(is:a:neighboring:country:of) text(岡比亞) -text(Senegal) text(was:a:neighboring:country:of) text(Guinea) -text(गुआदेलूप) text(was:located:in) text(Caraïben) -text(Guadeloupe) text(can:be:found:in) text(América) -text(Monaco) text(neighbors:with) text(法國) -text(Djibouti) text(was:a:neighbor:of) text(厄立特里亞) -text(जिबूती) text(is:a:neighbor:of) text(Somalia) -text(吉布提) text(is:a:neighboring:state:to) text(埃塞俄比亚) -text(इंडोनेशिया) text(was:a:neighboring:state:to) text(Papoea-Nieuw-Guinea) -text(إندونيسيا) text(borders:with) text(東帝汶) -text(Indonesië) text(borders) text(Malasia) -text(Islas:Vírgenes:Británicas) text(was:positioned:in) text(कैरिबिया) -text(Britse:Maagdeneilanden) text(is:positioned:in) text(أمريكتان) -text(库克群岛) text(was:sited:in) text(Polynesia) -text(Cook:Islands) text(is:sited:in) text(Oceania) -text(أوغندا) text(was:localized:in) text(पूर्वी:अफ्रीका) -text(Uganda) text(is:localized:in) text(إفريقيا) -text(Oeganda) text(is:butted:against) text(Tanzania) -text(युगाण्डा) text(was:butted:against) text(Congo-Kinshasa) -text(Uganda) text(was:adjacent:to) text(कीनिया) -text(烏干達) text(is:adjacent:to) text(南蘇丹) -text(أوغندا) text(neighbors) text(Rwanda) -text(Noord-Macedonië) text(was:present:in) text(南欧) -text(北马其顿) text(is:present:in) text(欧洲) -text(Macedonia:del:Norte) text(is:a:neighboring:country:of) text(كوسوفو) -text(North:Macedonia) text(was:a:neighboring:country:of) text(Greece) -text(مقدونيا:الشمالية) text(neighbors:with) text(अल्बानिया) -text(उत्तर:मैसिडोनिया) text(was:a:neighbor:of) text(Servië) -text(Noord-Macedonië) text(is:a:neighbor:of) text(Bulgaria) -text(ट्यूनिशिया) text(is:still:in) text(Noord-Afrika) -text(突尼西亞) text(was:still:in) text(非洲) -text(Tunesië) text(is:a:neighboring:state:to) text(ليبيا) -text(Tunisia) text(was:a:neighboring:state:to) text(Algerije) -text(الإكوادور) text(borders:with) text(पेरू) -text(Ecuador) text(borders) text(Colombia) -text(Brasil) text(was:currently:in) text(南美洲) -text(Brazilië) text(is:currently:in) text(Americas) -text(Brazil) text(is:butted:against) text(玻利維亞) -text(ब्राज़ील) text(was:butted:against) text(कोलम्बिया) -text(البرازيل) text(was:adjacent:to) text(巴拉圭) -text(巴西) text(is:adjacent:to) text(Uruguay) -text(Brasil) text(neighbors) text(غويانا:الفرنسية) -text(Brazilië) text(is:a:neighboring:country:of) text(Suriname) -text(Brazil) text(was:a:neighboring:country:of) text(वेनेज़ुएला) -text(ब्राज़ील) text(neighbors:with) text(अर्जेण्टीना) -text(البرازيل) text(was:a:neighbor:of) text(غيانا) -text(巴西) text(is:a:neighbor:of) text(Peru) -text(Paraguay) text(is:placed:in) text(América:del:Sur) -text(पैराग्वे) text(was:placed:in) text(美洲) -text(Paraguay) text(is:a:neighboring:state:to) text(الأرجنتين) -text(Paraguay) text(was:a:neighboring:state:to) text(Brasil) -text(باراغواي) text(borders:with) text(बोलिविया) -text(فنلندا) text(can:be:found:in) text(उत्तरी:यूरोप) -text(Finlandia) text(was:situated:in) text(Europa) -text(Finland) text(borders) text(Noorwegen) -text(芬蘭) text(is:butted:against) text(स्वीडन) -text(Finland) text(was:butted:against) text(Russia) -text(Jordanië) text(was:adjacent:to) text(Saudi:Arabia) -text(जॉर्डन) text(is:adjacent:to) text(इज़राइल) -text(約旦) text(neighbors) text(Iraq) -text(Jordania) text(is:a:neighboring:country:of) text(سوريا) -text(تيمور:الشرقية) text(was:a:neighboring:country:of) text(印度尼西亚) -text(Montenegro) text(is:situated:in) text(Southern:Europe) -text(Montenegro) text(is:located:in) text(यूरोप) -text(الجبل:الأسود) text(neighbors:with) text(Kosovo) -text(Montenegro) text(was:a:neighbor:of) text(البوسنة:والهرسك) -text(蒙特內哥羅) text(is:a:neighbor:of) text(Kroatië) -text(मॉन्टेनीग्रो) text(is:a:neighboring:state:to) text(Serbia) -text(Montenegro) text(was:a:neighboring:state:to) text(ألبانيا) -text(秘鲁) text(was:located:in) text(South:America) -text(بيرو) text(can:be:found:in) text(महाअमेरिका) -text(Peru) text(borders:with) text(Ecuador) -text(Perú) text(borders) text(بوليفيا) -text(पेरू) text(is:butted:against) text(चिली) -text(Peru) text(was:butted:against) text(Brazilië) -text(秘鲁) text(was:adjacent:to) text(哥伦比亚) -text(مونتسيرات) text(was:positioned:in) text(Caribe) -text(Montserrat) text(is:positioned:in) text(Amerika) -text(Oekraïne) text(was:sited:in) text(أوروبا:الشرقية) -text(أوكرانيا) text(is:sited:in) text(أوروبا) -text(烏克蘭) text(is:adjacent:to) text(स्लोवाकिया) -text(Ucrania) text(neighbors) text(बेलारूस) -text(Ukraine) text(is:a:neighboring:country:of) text(Polen) -text(युक्रेन) text(was:a:neighboring:country:of) text(Rusland) -text(Oekraïne) text(neighbors:with) text(المجر) -text(أوكرانيا) text(was:a:neighbor:of) text(摩爾多瓦) -text(烏克蘭) text(is:a:neighbor:of) text(रोमानिया) -text(Dominica) text(was:localized:in) text(Caribbean) -text(多米尼克) text(is:localized:in) text(América) -text(تركمانستان) text(is:a:neighboring:state:to) text(كازاخستان) -text(तुर्कमेनिस्तान) text(was:a:neighboring:state:to) text(阿富汗) -text(土庫曼斯坦) text(borders:with) text(أوزبكستان) -text(Turkmenistan) text(borders) text(Iran) -text(ग्वेर्नसे) text(was:present:in) text(أوروبا:الشمالية) -text(Guernsey) text(is:present:in) text(Europe) -text(Gibraltar) text(is:still:in) text(أوروبا:الجنوبية) -text(Gibraltar) text(was:still:in) text(Europa) -text(直布羅陀) text(is:butted:against) text(Spanje) -text(स्विट्ज़रलैण्ड) text(was:currently:in) text(西欧) -text(瑞士) text(is:currently:in) text(欧洲) -text(Zwitserland) text(was:butted:against) text(Duitsland) -text(سويسرا) text(was:adjacent:to) text(Italië) -text(Suiza) text(is:adjacent:to) text(النمسا) -text(Switzerland) text(neighbors) text(फ़्रान्स) -text(स्विट्ज़रलैण्ड) text(is:a:neighboring:country:of) text(列支敦斯登) -text(ऑस्ट्रिया) text(is:placed:in) text(Europa:Occidental) -text(Oostenrijk) text(was:placed:in) text(Europa) -text(Austria) text(was:a:neighboring:country:of) text(Alemania) -text(奧地利) text(neighbors:with) text(Eslovaquia) -text(Austria) text(was:a:neighbor:of) text(سلوفينيا) -text(النمسا) text(is:a:neighbor:of) text(Italia) -text(ऑस्ट्रिया) text(is:a:neighboring:state:to) text(瑞士) -text(Oostenrijk) text(was:a:neighboring:state:to) text(Hungary) -text(Austria) text(borders:with) text(Liechtenstein) -text(奧地利) text(borders) text(República:Checa) -text(匈牙利) text(is:butted:against) text(Ucrania) -text(हंगरी) text(was:butted:against) text(Slovakia) -text(Hongarije) text(was:adjacent:to) text(斯洛文尼亞) -text(Hungría) text(is:adjacent:to) text(Croatia) -text(المجر) text(neighbors) text(Austria) -text(Hungary) text(is:a:neighboring:country:of) text(सर्बिया) -text(匈牙利) text(was:a:neighboring:country:of) text(Roemenië) -text(馬拉威) text(can:be:found:in) text(东部非洲) -text(Malaui) text(was:situated:in) text(Africa) -text(Malawi) text(neighbors:with) text(贊比亞) -text(مالاوي) text(was:a:neighbor:of) text(坦桑尼亞) -text(मलावी) text(is:a:neighbor:of) text(Mozambique) -text(Hong:Kong) text(is:a:neighboring:state:to) text(中华人民共和国) -text(Liechtenstein) text(is:situated:in) text(पश्चिमी:यूरोप) -text(Liechtenstein) text(is:located:in) text(यूरोप) -text(ليختنشتاين) text(was:a:neighboring:state:to) text(Zwitserland) -text(लिक्टेन्स्टाइन) text(borders:with) text(النمسا) -text(बारबाडोस) text(was:located:in) text(الكاريبي) -text(باربادوس) text(can:be:found:in) text(أمريكتان) -text(जॉर्जिया) text(was:positioned:in) text(Zuidwest-Azië) -text(Georgia) text(is:positioned:in) text(亞洲) -text(格鲁吉亚) text(borders) text(أرمينيا) -text(Georgië) text(is:butted:against) text(Azerbeidzjan) -text(Georgia) text(was:butted:against) text(रूस) -text(جورجيا) text(was:adjacent:to) text(तुर्की) -text(Albanië) text(was:sited:in) text(Zuid-Europa) -text(阿爾巴尼亞) text(is:sited:in) text(أوروبا) -text(Albania) text(is:adjacent:to) text(Montenegro) -text(Albania) text(neighbors) text(北马其顿) -text(अल्बानिया) text(is:a:neighboring:country:of) text(科索沃) -text(ألبانيا) text(was:a:neighboring:country:of) text(希腊) -text(科威特) text(was:localized:in) text(Asia:Occidental) -text(الكويت) text(is:localized:in) text(آسيا) -text(Koeweit) text(neighbors:with) text(सउदी:अरब) -text(Kuwait) text(was:a:neighbor:of) text(Irak) -text(南非) text(was:present:in) text(إفريقيا:الجنوبية) -text(South:Africa) text(is:present:in) text(Afrika) -text(Sudáfrica) text(is:a:neighbor:of) text(Mozambique) -text(Zuid-Afrika) text(is:a:neighboring:state:to) text(Botswana) -text(جنوب:إفريقيا) text(was:a:neighboring:state:to) text(إسواتيني) -text(दक्षिण:अफ़्रीका) text(borders:with) text(زيمبابوي) -text(南非) text(borders) text(Namibië) -text(South:Africa) text(is:butted:against) text(Lesotho) -text(هايتي) text(is:still:in) text(加勒比地区) -text(हैती) text(was:still:in) text(Americas) -text(Haïti) text(was:butted:against) text(جمهورية:الدومينيكان) -text(Afganistán) text(was:currently:in) text(दक्षिण:एशिया) -text(Afghanistan) text(is:currently:in) text(एशिया) -text(अफ़्ग़ानिस्तान) text(was:adjacent:to) text(Turkmenistan) -text(أفغانستان) text(is:adjacent:to) text(चीनी:जनवादी:गणराज्य) -text(Afghanistan) text(neighbors) text(طاجيكستان) -text(阿富汗) text(is:a:neighboring:country:of) text(Oezbekistan) -text(Afganistán) text(was:a:neighboring:country:of) text(ईरान) -text(Afghanistan) text(neighbors:with) text(Pakistan) -text(सिंगापुर) text(is:placed:in) text(Southeast:Asia) -text(Singapore) text(was:placed:in) text(Asia) -text(貝南) text(can:be:found:in) text(पश्चिमी:अफ्रीका) -text(Benin) text(was:situated:in) text(África) -text(بنين) text(was:a:neighbor:of) text(尼日尔) -text(Benín) text(is:a:neighbor:of) text(بوركينا:فاسو) -text(Benin) text(is:a:neighboring:state:to) text(Togo) -text(बेनिन) text(was:a:neighboring:state:to) text(Nigeria) -text(ऑलैण्ड:द्वीपसमूह) text(is:situated:in) text(北歐) -text(Åland) text(is:located:in) text(Europe) -text(Croacia) text(was:located:in) text(Europa:del:Sur) -text(克羅地亞) text(can:be:found:in) text(Europa) -text(क्रोएशिया) text(borders:with) text(स्लोवेनिया) -text(كرواتيا) text(borders) text(Bosnia:y:Herzegovina) -text(Kroatië) text(is:butted:against) text(हंगरी) -text(Croatia) text(was:butted:against) text(صربيا) -text(Croacia) text(was:adjacent:to) text(الجبل:الأسود) -text(Zweden) text(was:positioned:in) text(Northern:Europe) -text(Sweden) text(is:positioned:in) text(欧洲) -text(السويد) text(is:adjacent:to) text(नॉर्वे) -text(瑞典) text(neighbors) text(फ़िनलैण्ड) -text(मेक्सिको) text(is:a:neighboring:country:of) text(Belize) -text(墨西哥) text(was:a:neighboring:country:of) text(Estados:Unidos) -text(المكسيك) text(neighbors:with) text(غواتيمالا) -text(格陵兰) text(was:sited:in) text(Noord-Amerika) -text(جرينلاند) text(is:sited:in) text(美洲) -text(皮特凯恩群岛) text(was:localized:in) text(nan) -text(पिटकेर्न:द्वीपसमूह) text(is:localized:in) text(ओशिआनिया) -text(Nepal) text(was:present:in) text(Asia:del:Sur) -text(नेपाल) text(is:present:in) text(Azië) -text(نيبال) text(was:a:neighbor:of) text(República:Popular:China) -text(Nepal) text(is:a:neighbor:of) text(India) -text(Guatemala) text(is:a:neighboring:state:to) text(बेलीज़) -text(危地马拉) text(was:a:neighboring:state:to) text(薩爾瓦多) -text(Guatemala) text(borders:with) text(Mexico) -text(Guatemala) text(borders) text(洪都拉斯) -text(South:Korea) text(is:still:in) text(Oost-Azië) -text(كوريا:الجنوبية) text(was:still:in) text(Asia) -text(大韩民国) text(is:butted:against) text(كوريا:الشمالية) -text(Moldavië) text(was:currently:in) text(东欧) -text(Moldavia) text(is:currently:in) text(Europa) -text(مولدوفا) text(was:butted:against) text(Ukraine) -text(मोल्डोवा) text(was:adjacent:to) text(رومانيا) -text(Mauritius) text(is:placed:in) text(East:Africa) -text(Mauritius) text(was:placed:in) text(अफ्रीका) -text(白俄羅斯) text(is:adjacent:to) text(युक्रेन) -text(Belarus) text(neighbors) text(波蘭) -text(Bielorrusia) text(is:a:neighboring:country:of) text(Litouwen) -text(Wit-Rusland) text(was:a:neighboring:country:of) text(روسيا) -text(بيلاروس) text(neighbors:with) text(لاتفيا) -text(Bangladesh) text(was:a:neighbor:of) text(Birmania) -text(孟加拉國) text(is:a:neighbor:of) text(भारत) -text(Maleisië) text(can:be:found:in) text(Zuidoost-Azië) -text(ماليزيا) text(was:situated:in) text(亞洲) -text(馬來西亞) text(is:a:neighboring:state:to) text(Tailandia) -text(मलेशिया) text(was:a:neighboring:state:to) text(Indonesia) -text(Malaysia) text(borders:with) text(Brunei) -text(波斯尼亚和黑塞哥维那) text(is:situated:in) text(दक्षिणी:यूरोप) -text(Bosnië:en:Herzegovina) text(is:located:in) text(यूरोप) -text(बोस्निया:और:हर्ज़ेगोविना) text(borders) text(Serbia) -text(Bosnia:and:Herzegovina) text(is:butted:against) text(克羅地亞) -text(البوسنة:والهرسك) text(was:butted:against) text(Montenegro) -text(卢森堡) text(was:located:in) text(Western:Europe) -text(Luxemburgo) text(can:be:found:in) text(أوروبا) -text(لوكسمبورغ) text(was:adjacent:to) text(德國) -text(लक्ज़मबर्ग) text(is:adjacent:to) text(بلجيكا) -text(Luxembourg) text(neighbors) text(France) -text(意大利) text(was:positioned:in) text(南欧) -text(इटली) text(is:positioned:in) text(Europe) -text(إيطاليا) text(is:a:neighboring:country:of) text(Eslovenia) -text(Italy) text(was:a:neighboring:country:of) text(سويسرا) -text(Italië) text(neighbors:with) text(ऑस्ट्रिया) -text(Italia) text(was:a:neighbor:of) text(Frankrijk) -text(意大利) text(is:a:neighbor:of) text(वैटिकन:नगर) -text(इटली) text(is:a:neighboring:state:to) text(San:Marino) -text(أذربيجان) text(was:sited:in) text(West:Asia) -text(अज़रबैजान) text(is:sited:in) text(آسيا) -text(阿塞拜疆) text(was:a:neighboring:state:to) text(Turquía) -text(Azerbaiyán) text(borders:with) text(Armenia) -text(Azerbaijan) text(borders) text(俄罗斯) -text(Azerbeidzjan) text(is:butted:against) text(Iran) -text(أذربيجان) text(was:butted:against) text(जॉर्जिया) -text(हॉण्डुरस) text(was:localized:in) text(Central:America) -text(Honduras) text(is:localized:in) text(महाअमेरिका) -text(هندوراس) text(was:adjacent:to) text(ग्वाटेमाला) -text(Honduras) text(is:adjacent:to) text(尼加拉瓜) -text(Honduras) text(neighbors) text(El:Salvador) -text(Mali) text(was:present:in) text(西非) -text(马里) text(is:present:in) text(إفريقيا) -text(Mali) text(is:a:neighboring:country:of) text(Burkina:Faso) -text(مالي) text(was:a:neighboring:country:of) text(गिनी) -text(माली) text(neighbors:with) text(मॉरीतानिया) -text(Mali) text(was:a:neighbor:of) text(नाइजर) -text(Mali) text(is:a:neighbor:of) text(Senegal) -text(马里) text(is:a:neighboring:state:to) text(Algeria) -text(Mali) text(was:a:neighboring:state:to) text(科特迪瓦) -text(中華民國) text(is:still:in) text(पूर्वी:एशिया) -text(Taiwan) text(was:still:in) text(एशिया) -text(Argelia) text(was:currently:in) text(Norte:de:África) -text(अल्जीरिया) text(is:currently:in) text(非洲) -text(الجزائر) text(borders:with) text(लीबिया) -text(阿爾及利亞) text(borders) text(تونس) -text(Algerije) text(is:butted:against) text(毛里塔尼亞) -text(Algeria) text(was:butted:against) text(Marokko) -text(Argelia) text(was:adjacent:to) text(النيجر) -text(अल्जीरिया) text(is:adjacent:to) text(مالي) -text(الجزائر) text(neighbors) text(Sahrawi:Arab:Democratic:Republic) -text(Frans-Guyana) text(is:a:neighboring:country:of) text(Brazil) -text(फ़्रान्सीसी:गुयाना) text(was:a:neighboring:country:of) text(سورينام) -text(Jemen) text(is:placed:in) text(غرب:آسيا) -text(Yemen) text(was:placed:in) text(Asia) -text(Yemen) text(neighbors:with) text(Oman) -text(यमन) text(was:a:neighbor:of) text(Arabia:Saudí) -text(Puerto:Rico) text(can:be:found:in) text(Caraïben) -text(波多黎各) text(was:situated:in) text(Amerika) -text(سانت:فينسنت:والغرينادين) text(is:situated:in) text(कैरिबिया) -text(सन्त:विन्सेण्ट:और:ग्रेनाडाइन्स) text(is:located:in) text(América) -text(Venezuela) text(is:a:neighbor:of) text(ब्राज़ील) -text(Venezuela) text(is:a:neighboring:state:to) text(Guyana) -text(فنزويلا) text(was:a:neighboring:state:to) text(Colombia) -text(格瑞那達) text(was:located:in) text(Caribe) -text(Grenada) text(can:be:found:in) text(أمريكتان) -text(美國) text(borders:with) text(加拿大) -text(الولايات:المتحدة) text(borders) text(Mexico) -text(Tokelau) text(was:positioned:in) text(Polynesië) -text(توكيلاو) text(is:positioned:in) text(أوقيانوسيا) -text(Slovenië) text(was:sited:in) text(Southern:Europe) -text(Slovenia) text(is:sited:in) text(Europa) -text(سلوفينيا) text(is:butted:against) text(Oostenrijk) -text(斯洛文尼亞) text(was:butted:against) text(क्रोएशिया) -text(स्लोवेनिया) text(was:adjacent:to) text(إيطاليا) -text(Eslovenia) text(is:adjacent:to) text(Hongarije) -text(الفلبين) text(was:localized:in) text(Sudeste:Asiático) -text(फ़िलीपीन्स) text(is:localized:in) text(Azië) -text(Micronesia) text(was:present:in) text(Micronesië) -text(密克羅尼西亞群島) text(is:present:in) text(Oceanía) -text(الصين) text(is:still:in) text(Asia:Oriental) -text(People's:Republic:of:China) text(was:still:in) text(Asia) -text(Volksrepubliek:China) text(neighbors) text(अफ़्ग़ानिस्तान) -text(中华人民共和国) text(is:a:neighboring:country:of) text(Bhutan) -text(चीनी:जनवादी:गणराज्य) text(was:a:neighboring:country:of) text(Macau) -text(República:Popular:China) text(neighbors:with) text(印度) -text(الصين) text(was:a:neighbor:of) text(Kazakhstan) -text(People's:Republic:of:China) text(is:a:neighbor:of) text(Kirguistán) -text(Volksrepubliek:China) text(is:a:neighboring:state:to) text(ताजीकिस्तान) -text(中华人民共和国) text(was:a:neighboring:state:to) text(Laos) -text(चीनी:जनवादी:गणराज्य) text(borders:with) text(Rusia) -text(República:Popular:China) text(borders) text(Corea:del:Norte) -text(الصين) text(is:butted:against) text(Myanmar) -text(People's:Republic:of:China) text(was:butted:against) text(Pakistan) -text(Volksrepubliek:China) text(was:adjacent:to) text(मंगोलिया) -text(中华人民共和国) text(is:adjacent:to) text(हांगकांग) -text(चीनी:जनवादी:गणराज्य) text(neighbors) text(越南) -text(الغابون) text(was:currently:in) text(Central:Africa) -text(गबॉन) text(is:currently:in) text(Africa) -text(Gabón) text(is:a:neighboring:country:of) text(Guinea:Ecuatorial) -text(Gabon) text(was:a:neighboring:country:of) text(Republic:of:the:Congo) -text(Gabon) text(neighbors:with) text(कैमरुन) -text(United:States:Minor:Outlying:Islands) text(is:placed:in) text(أمريكا:الشمالية) -text(संयुक्त:राज्य:अमेरिका:के:छोटे:दूरस्थ:द्वीपसमूह) text(was:placed:in) text(Americas) -text(Andorra) text(can:be:found:in) text(أوروبا:الجنوبية) -text(Andorra) text(was:situated:in) text(欧洲) -text(安道尔) text(was:a:neighbor:of) text(西班牙) -text(Andorra) text(is:a:neighbor:of) text(فرنسا) -text(Samoa) text(is:situated:in) text(Polinesia) -text(Samoa) text(is:located:in) text(大洋洲) -text(The:Gambia) text(was:located:in) text(West:Africa) -text(غامبيا) text(can:be:found:in) text(Afrika) -text(गाम्बिया) text(is:a:neighboring:state:to) text(सेनेगल) -text(Pedro:Miguel) text(was:positioned:in) text(पश्चिमी:एशिया) -text(nan) text(is:positioned:in) text(亞洲) -text(Pedro:Miguel) text(was:a:neighboring:state:to) text(الأردن) -text(nan) text(borders:with) text(Egipto) -text(Pedro:Miguel) text(borders) text(إسرائيل) -text(Reunión) text(was:sited:in) text(África:Oriental) -text(ريونيون) text(is:sited:in) text(África) -text(Francia) text(was:localized:in) text(أوروبا:الغربية) -text(法國) text(is:localized:in) text(Europa) -text(फ़्रान्स) text(is:butted:against) text(ألمانيا) -text(France) text(was:butted:against) text(Luxemburg) -text(Frankrijk) text(was:adjacent:to) text(Italy) -text(فرنسا) text(is:adjacent:to) text(अण्डोरा) -text(Francia) text(neighbors) text(Suiza) -text(法國) text(is:a:neighboring:country:of) text(موناكو) -text(फ़्रान्स) text(was:a:neighboring:country:of) text(Belgium) -text(France) text(neighbors:with) text(Spain) -text(منغوليا) text(was:present:in) text(東亞) -text(Mongolia) text(is:present:in) text(آسيا) -text(蒙古國) text(was:a:neighbor:of) text(República:Popular:China) -text(Mongolia) text(is:a:neighbor:of) text(Russia) -text(लिथुआनिया) text(is:still:in) text(Europa:del:Norte) -text(ليتوانيا) text(was:still:in) text(यूरोप) -text(立陶宛) text(is:a:neighboring:state:to) text(Poland) -text(Lithuania) text(was:a:neighboring:state:to) text(Letland) -text(Lituania) text(borders:with) text(बेलारूस) -text(Litouwen) text(borders) text(Rusland) -text(Kaaimaneilanden) text(was:currently:in) text(Caribbean) -text(جزر:كايمان) text(is:currently:in) text(美洲) -text(圣卢西亚) text(is:placed:in) text(الكاريبي) -text(Santa:Lucía) text(was:placed:in) text(महाअमेरिका) -text(Curaçao) text(can:be:found:in) text(加勒比地区) -text(库拉索) text(was:situated:in) text(Amerika) -text(Caraïben) text(is:situated:in) text(América) -text(Zuid-Azië) text(is:located:in) text(एशिया) -text(मध्य:अफ्रीका) text(was:located:in) text(अफ्रीका) -text(Noord-Europa) text(can:be:found:in) text(أوروبا) -text(Zuid-Europa) text(was:positioned:in) text(Europe) -text(西亚) text(is:positioned:in) text(Asia) -text(أمريكا:الجنوبية) text(was:sited:in) text(أمريكتان) -text(玻里尼西亞) text(is:sited:in) text(Oceanië) -text(nan) text(was:localized:in) text(Oceania) -text(West-Europa) text(is:localized:in) text(Europa) -text(شرق:إفريقيا) text(was:present:in) text(إفريقيا) -text(África:Occidental) text(is:present:in) text(非洲) -text(Eastern:Europe) text(is:still:in) text(欧洲) -text(केंद्रीय:अमेरिका) text(was:still:in) text(Americas) -text(América:del:Norte) text(was:currently:in) text(美洲) -text(جنوب:شرق:آسيا) text(is:currently:in) text(Azië) -text(Southern:Africa) text(is:placed:in) text(Africa) -text(East:Asia) text(was:placed:in) text(Asia) -text(北部非洲) text(can:be:found:in) text(Afrika) -text(मॅलानिशिया) text(was:situated:in) text(ओशिआनिया) -text(माइक्रोनीशिया) text(is:situated:in) text(أوقيانوسيا) -text(中亚) text(is:located:in) text(亞洲) -text(Centraal-Europa) text(was:located:in) text(Europa) \ No newline at end of file diff --git a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_relation2text.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_relation2text.tsv index 3520a42..4b80f8e 100644 --- a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_relation2text.tsv +++ b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_relation2text.tsv @@ -1,1063 +1,1063 @@ -palau text(was:localized:in) micronesia -palau text(is:localized:in) oceania -maldives text(was:present:in) southern_asia -maldives text(is:present:in) asia -brunei text(is:still:in) south-eastern_asia -brunei text(was:still:in) asia -brunei text(is:a:neighboring:state:to) malaysia -japan text(was:currently:in) eastern_asia -japan text(is:currently:in) asia -netherlands text(was:a:neighboring:state:to) germany -netherlands text(borders:with) belgium -turkey text(borders) armenia -turkey text(is:butted:against) azerbaijan -turkey text(was:butted:against) iran -turkey text(was:adjacent:to) greece -turkey text(is:adjacent:to) georgia -turkey text(neighbors) bulgaria -turkey text(is:a:neighboring:country:of) iraq -turkey text(was:a:neighboring:country:of) syria -angola text(is:placed:in) middle_africa -angola text(was:placed:in) africa -angola text(neighbors:with) dr_congo -angola text(was:a:neighbor:of) namibia -angola text(is:a:neighbor:of) zambia -angola text(is:a:neighboring:state:to) republic_of_the_congo -armenia text(can:be:found:in) western_asia -armenia text(was:situated:in) asia -armenia text(was:a:neighboring:state:to) georgia -armenia text(borders:with) azerbaijan -armenia text(borders) iran -armenia text(is:butted:against) turkey -antigua_and_barbuda text(is:situated:in) caribbean -antigua_and_barbuda text(is:located:in) americas -swaziland text(was:located:in) southern_africa -swaziland text(can:be:found:in) africa -swaziland text(was:butted:against) south_africa -swaziland text(was:adjacent:to) mozambique -wallis_and_futuna text(was:positioned:in) polynesia -wallis_and_futuna text(is:positioned:in) oceania -uruguay text(was:sited:in) south_america -uruguay text(is:sited:in) americas -uruguay text(is:adjacent:to) argentina +palau text(is:positioned:in) micronesia +palau text(was:sited:in) oceania +maldives text(is:sited:in) southern_asia +maldives text(is:placed:in) asia +brunei text(was:placed:in) south-eastern_asia +brunei text(was:localized:in) asia +brunei text(was:a:neighboring:country:of) malaysia +japan text(is:localized:in) eastern_asia +japan text(was:present:in) asia +netherlands text(was:adjacent:to) germany +netherlands text(is:adjacent:to) belgium +turkey text(was:a:neighbor:of) armenia +turkey text(is:a:neighbor:of) azerbaijan +turkey text(is:a:neighboring:state:to) iran +turkey text(was:a:neighboring:state:to) greece +turkey text(borders:with) georgia +turkey text(neighbors:withborders) bulgaria +turkey text(neighbors) iraq +turkey text(is:butted:against) syria +angola text(is:present:in) middle_africa +angola text(is:still:in) africa +angola text(was:butted:against) dr_congo +angola text(is:a:neighboring:country:of) namibia +angola text(was:a:neighboring:country:of) zambia +angola text(was:adjacent:to) republic_of_the_congo +armenia text(was:still:in) western_asia +armenia text(was:currently:in) asia +armenia text(is:adjacent:to) georgia +armenia text(was:a:neighbor:of) azerbaijan +armenia text(is:a:neighbor:of) iran +armenia text(is:a:neighboring:state:to) turkey +antigua_and_barbuda text(is:currently:in) caribbean +antigua_and_barbuda text(was:situated:in) americas +swaziland text(is:situated:in) southern_africa +swaziland text(is:located:in) africa +swaziland text(was:a:neighboring:state:to) south_africa +swaziland text(borders:with) mozambique +wallis_and_futuna text(was:located:in) polynesia +wallis_and_futuna text(could:be:found:in) oceania +uruguay text(can:be:found:in) south_america +uruguay text(was:positioned:in) americas +uruguay text(neighbors:withborders) argentina uruguay text(neighbors) brazil -zambia text(was:localized:in) eastern_africa -zambia text(is:localized:in) africa -zambia text(is:a:neighboring:country:of) tanzania -zambia text(was:a:neighboring:country:of) mozambique -zambia text(neighbors:with) dr_congo -zambia text(was:a:neighbor:of) angola -zambia text(is:a:neighbor:of) botswana -zambia text(is:a:neighboring:state:to) zimbabwe -zambia text(was:a:neighboring:state:to) namibia -zambia text(borders:with) malawi -cyprus text(was:present:in) eastern_europe -cyprus text(is:present:in) europe -cyprus text(borders) united_kingdom -ireland text(is:still:in) northern_europe -ireland text(was:still:in) europe -ireland text(is:butted:against) united_kingdom -burundi text(was:currently:in) eastern_africa -burundi text(is:currently:in) africa -burundi text(was:butted:against) dr_congo -burundi text(was:adjacent:to) rwanda -burundi text(is:adjacent:to) tanzania -central_african_republic text(is:placed:in) middle_africa -central_african_republic text(was:placed:in) africa -central_african_republic text(neighbors) chad -central_african_republic text(is:a:neighboring:country:of) republic_of_the_congo -central_african_republic text(was:a:neighboring:country:of) dr_congo -central_african_republic text(neighbors:with) south_sudan -central_african_republic text(was:a:neighbor:of) cameroon -central_african_republic text(is:a:neighbor:of) sudan -tonga text(can:be:found:in) polynesia -tonga text(was:situated:in) oceania -ivory_coast text(is:situated:in) western_africa -ivory_coast text(is:located:in) africa -ivory_coast text(is:a:neighboring:state:to) burkina_faso -ivory_coast text(was:a:neighboring:state:to) ghana -ivory_coast text(borders:with) liberia -ivory_coast text(borders) mali -ivory_coast text(is:butted:against) guinea -sierra_leone text(was:butted:against) liberia -sierra_leone text(was:adjacent:to) guinea -mayotte text(was:located:in) eastern_africa -mayotte text(can:be:found:in) africa -poland text(is:adjacent:to) germany -poland text(neighbors) ukraine +zambia text(is:positioned:in) eastern_africa +zambia text(was:sited:in) africa +zambia text(is:butted:against) tanzania +zambia text(was:butted:against) mozambique +zambia text(is:a:neighboring:country:of) dr_congo +zambia text(was:a:neighboring:country:of) angola +zambia text(was:adjacent:to) botswana +zambia text(is:adjacent:to) zimbabwe +zambia text(was:a:neighbor:of) namibia +zambia text(is:a:neighbor:of) malawi +cyprus text(is:sited:in) eastern_europe +cyprus text(is:placed:in) europe +cyprus text(is:a:neighboring:state:to) united_kingdom +ireland text(was:placed:in) northern_europe +ireland text(was:localized:in) europe +ireland text(was:a:neighboring:state:to) united_kingdom +burundi text(is:localized:in) eastern_africa +burundi text(was:present:in) africa +burundi text(borders:with) dr_congo +burundi text(neighbors:withborders) rwanda +burundi text(neighbors) tanzania +central_african_republic text(is:present:in) middle_africa +central_african_republic text(is:still:in) africa +central_african_republic text(is:butted:against) chad +central_african_republic text(was:butted:against) republic_of_the_congo +central_african_republic text(is:a:neighboring:country:of) dr_congo +central_african_republic text(was:a:neighboring:country:of) south_sudan +central_african_republic text(was:adjacent:to) cameroon +central_african_republic text(is:adjacent:to) sudan +tonga text(was:still:in) polynesia +tonga text(was:currently:in) oceania +ivory_coast text(is:currently:in) western_africa +ivory_coast text(was:situated:in) africa +ivory_coast text(was:a:neighbor:of) burkina_faso +ivory_coast text(is:a:neighbor:of) ghana +ivory_coast text(is:a:neighboring:state:to) liberia +ivory_coast text(was:a:neighboring:state:to) mali +ivory_coast text(borders:with) guinea +sierra_leone text(neighbors:withborders) liberia +sierra_leone text(neighbors) guinea +mayotte text(is:situated:in) eastern_africa +mayotte text(is:located:in) africa +poland text(is:butted:against) germany +poland text(was:butted:against) ukraine poland text(is:a:neighboring:country:of) slovakia poland text(was:a:neighboring:country:of) belarus -poland text(neighbors:with) russia -poland text(was:a:neighbor:of) lithuania -poland text(is:a:neighbor:of) czechia -kazakhstan text(was:positioned:in) central_asia -kazakhstan text(is:positioned:in) asia -kazakhstan text(is:a:neighboring:state:to) turkmenistan -kazakhstan text(was:a:neighboring:state:to) china -kazakhstan text(borders:with) kyrgyzstan -kazakhstan text(borders) uzbekistan -kazakhstan text(is:butted:against) russia -uzbekistan text(was:sited:in) central_asia -uzbekistan text(is:sited:in) asia -uzbekistan text(was:butted:against) afghanistan -uzbekistan text(was:adjacent:to) turkmenistan -uzbekistan text(is:adjacent:to) kazakhstan -uzbekistan text(neighbors) kyrgyzstan -uzbekistan text(is:a:neighboring:country:of) tajikistan -turks_and_caicos_islands text(was:localized:in) caribbean -turks_and_caicos_islands text(is:localized:in) americas -new_caledonia text(was:present:in) melanesia -new_caledonia text(is:present:in) oceania -pakistan text(was:a:neighboring:country:of) china -pakistan text(neighbors:with) afghanistan +poland text(was:adjacent:to) russia +poland text(is:adjacent:to) lithuania +poland text(was:a:neighbor:of) czechia +kazakhstan text(was:located:in) central_asia +kazakhstan text(could:be:found:in) asia +kazakhstan text(is:a:neighbor:of) turkmenistan +kazakhstan text(is:a:neighboring:state:to) china +kazakhstan text(was:a:neighboring:state:to) kyrgyzstan +kazakhstan text(borders:with) uzbekistan +kazakhstan text(neighbors:withborders) russia +uzbekistan text(can:be:found:in) central_asia +uzbekistan text(was:positioned:in) asia +uzbekistan text(neighbors) afghanistan +uzbekistan text(is:butted:against) turkmenistan +uzbekistan text(was:butted:against) kazakhstan +uzbekistan text(is:a:neighboring:country:of) kyrgyzstan +uzbekistan text(was:a:neighboring:country:of) tajikistan +turks_and_caicos_islands text(is:positioned:in) caribbean +turks_and_caicos_islands text(was:sited:in) americas +new_caledonia text(is:sited:in) melanesia +new_caledonia text(is:placed:in) oceania +pakistan text(was:adjacent:to) china +pakistan text(is:adjacent:to) afghanistan pakistan text(was:a:neighbor:of) iran pakistan text(is:a:neighbor:of) india -argentina text(is:still:in) south_america -argentina text(was:still:in) americas +argentina text(was:placed:in) south_america +argentina text(was:localized:in) americas argentina text(is:a:neighboring:state:to) bolivia argentina text(was:a:neighboring:state:to) chile argentina text(borders:with) brazil -argentina text(borders) paraguay -argentina text(is:butted:against) uruguay -cuba text(was:currently:in) caribbean -cuba text(is:currently:in) americas -serbia text(was:butted:against) macedonia -serbia text(was:adjacent:to) montenegro -serbia text(is:adjacent:to) kosovo -serbia text(neighbors) bosnia_and_herzegovina -serbia text(is:a:neighboring:country:of) croatia -serbia text(was:a:neighboring:country:of) hungary -serbia text(neighbors:with) bulgaria -serbia text(was:a:neighbor:of) romania -czechia text(is:placed:in) eastern_europe -czechia text(was:placed:in) europe -czechia text(is:a:neighbor:of) germany -czechia text(is:a:neighboring:state:to) austria -czechia text(was:a:neighboring:state:to) poland -czechia text(borders:with) slovakia -nicaragua text(borders) honduras +argentina text(neighbors:withborders) paraguay +argentina text(neighbors) uruguay +cuba text(is:localized:in) caribbean +cuba text(was:present:in) americas +serbia text(is:butted:against) macedonia +serbia text(was:butted:against) montenegro +serbia text(is:a:neighboring:country:of) kosovo +serbia text(was:a:neighboring:country:of) bosnia_and_herzegovina +serbia text(was:adjacent:to) croatia +serbia text(is:adjacent:to) hungary +serbia text(was:a:neighbor:of) bulgaria +serbia text(is:a:neighbor:of) romania +czechia text(is:present:in) eastern_europe +czechia text(is:still:in) europe +czechia text(is:a:neighboring:state:to) germany +czechia text(was:a:neighboring:state:to) austria +czechia text(borders:with) poland +czechia text(neighbors:withborders) slovakia +nicaragua text(neighbors) honduras nicaragua text(is:butted:against) costa_rica -vietnam text(can:be:found:in) south-eastern_asia -vietnam text(was:situated:in) asia +vietnam text(was:still:in) south-eastern_asia +vietnam text(was:currently:in) asia vietnam text(was:butted:against) cambodia -vietnam text(was:adjacent:to) laos -vietnam text(is:adjacent:to) china -niue text(is:situated:in) polynesia -niue text(is:located:in) oceania -canada text(was:located:in) northern_america -canada text(can:be:found:in) americas -canada text(neighbors) united_states -slovakia text(is:a:neighboring:country:of) ukraine -slovakia text(was:a:neighboring:country:of) poland -slovakia text(neighbors:with) austria -slovakia text(was:a:neighbor:of) hungary -slovakia text(is:a:neighbor:of) czechia -mozambique text(is:a:neighboring:state:to) tanzania -mozambique text(was:a:neighboring:state:to) swaziland -mozambique text(borders:with) zimbabwe -mozambique text(borders) zambia -mozambique text(is:butted:against) malawi -mozambique text(was:butted:against) south_africa -aruba text(was:positioned:in) caribbean -aruba text(is:positioned:in) americas -bolivia text(was:sited:in) south_america -bolivia text(is:sited:in) americas -bolivia text(was:adjacent:to) chile -bolivia text(is:adjacent:to) brazil -bolivia text(neighbors) paraguay -bolivia text(is:a:neighboring:country:of) argentina -bolivia text(was:a:neighboring:country:of) peru -colombia text(was:localized:in) south_america -colombia text(is:localized:in) americas -colombia text(neighbors:with) ecuador -colombia text(was:a:neighbor:of) brazil -colombia text(is:a:neighbor:of) panama -colombia text(is:a:neighboring:state:to) venezuela -colombia text(was:a:neighboring:state:to) peru -fiji text(was:present:in) melanesia -fiji text(is:present:in) oceania -republic_of_the_congo text(borders:with) gabon -republic_of_the_congo text(borders) dr_congo -republic_of_the_congo text(is:butted:against) angola -republic_of_the_congo text(was:butted:against) cameroon +vietnam text(is:a:neighboring:country:of) laos +vietnam text(was:a:neighboring:country:of) china +niue text(is:currently:in) polynesia +niue text(was:situated:in) oceania +canada text(is:situated:in) northern_america +canada text(is:located:in) americas +canada text(was:adjacent:to) united_states +slovakia text(is:adjacent:to) ukraine +slovakia text(was:a:neighbor:of) poland +slovakia text(is:a:neighbor:of) austria +slovakia text(is:a:neighboring:state:to) hungary +slovakia text(was:a:neighboring:state:to) czechia +mozambique text(borders:with) tanzania +mozambique text(neighbors:withborders) swaziland +mozambique text(neighbors) zimbabwe +mozambique text(is:butted:against) zambia +mozambique text(was:butted:against) malawi +mozambique text(is:a:neighboring:country:of) south_africa +aruba text(was:located:in) caribbean +aruba text(could:be:found:in) americas +bolivia text(can:be:found:in) south_america +bolivia text(was:positioned:in) americas +bolivia text(was:a:neighboring:country:of) chile +bolivia text(was:adjacent:to) brazil +bolivia text(is:adjacent:to) paraguay +bolivia text(was:a:neighbor:of) argentina +bolivia text(is:a:neighbor:of) peru +colombia text(is:positioned:in) south_america +colombia text(was:sited:in) americas +colombia text(is:a:neighboring:state:to) ecuador +colombia text(was:a:neighboring:state:to) brazil +colombia text(borders:with) panama +colombia text(neighbors:withborders) venezuela +colombia text(neighbors) peru +fiji text(is:sited:in) melanesia +fiji text(is:placed:in) oceania +republic_of_the_congo text(is:butted:against) gabon +republic_of_the_congo text(was:butted:against) dr_congo +republic_of_the_congo text(is:a:neighboring:country:of) angola +republic_of_the_congo text(was:a:neighboring:country:of) cameroon republic_of_the_congo text(was:adjacent:to) central_african_republic saudi_arabia text(is:adjacent:to) qatar -saudi_arabia text(neighbors) united_arab_emirates -saudi_arabia text(is:a:neighboring:country:of) jordan -saudi_arabia text(was:a:neighboring:country:of) yemen -saudi_arabia text(neighbors:with) oman -saudi_arabia text(was:a:neighbor:of) kuwait -saudi_arabia text(is:a:neighbor:of) iraq -el_salvador text(is:still:in) central_america -el_salvador text(was:still:in) americas -el_salvador text(is:a:neighboring:state:to) guatemala -el_salvador text(was:a:neighboring:state:to) honduras -madagascar text(was:currently:in) eastern_africa -madagascar text(is:currently:in) africa -australia text(is:placed:in) australia_and_new_zealand -australia text(was:placed:in) oceania -namibia text(can:be:found:in) southern_africa -namibia text(was:situated:in) africa -namibia text(borders:with) zambia -namibia text(borders) angola -namibia text(is:butted:against) south_africa -namibia text(was:butted:against) botswana -tuvalu text(is:situated:in) polynesia -tuvalu text(is:located:in) oceania -svalbard_and_jan_mayen text(was:located:in) northern_europe -svalbard_and_jan_mayen text(can:be:found:in) europe -isle_of_man text(was:positioned:in) northern_europe -isle_of_man text(is:positioned:in) europe -guyana text(was:adjacent:to) brazil -guyana text(is:adjacent:to) suriname -guyana text(neighbors) venezuela -vatican_city text(was:sited:in) southern_europe -vatican_city text(is:sited:in) europe -vatican_city text(is:a:neighboring:country:of) italy -british_indian_ocean_territory text(was:localized:in) eastern_africa -british_indian_ocean_territory text(is:localized:in) africa -nigeria text(was:present:in) western_africa -nigeria text(is:present:in) africa -nigeria text(was:a:neighboring:country:of) chad -nigeria text(neighbors:with) niger -nigeria text(was:a:neighbor:of) cameroon -nigeria text(is:a:neighbor:of) benin -germany text(is:a:neighboring:state:to) denmark -germany text(was:a:neighboring:state:to) netherlands -germany text(borders:with) poland -germany text(borders) luxembourg -germany text(is:butted:against) belgium -germany text(was:butted:against) switzerland -germany text(was:adjacent:to) austria -germany text(is:adjacent:to) france -germany text(neighbors) czechia -burkina_faso text(is:a:neighboring:country:of) togo -burkina_faso text(was:a:neighboring:country:of) benin -burkina_faso text(neighbors:with) niger -burkina_faso text(was:a:neighbor:of) ghana -burkina_faso text(is:a:neighbor:of) mali -burkina_faso text(is:a:neighboring:state:to) ivory_coast -tanzania text(was:a:neighboring:state:to) uganda -tanzania text(borders:with) mozambique -tanzania text(borders) dr_congo -tanzania text(is:butted:against) kenya -tanzania text(was:butted:against) rwanda -tanzania text(was:adjacent:to) zambia -tanzania text(is:adjacent:to) malawi -tanzania text(neighbors) burundi -northern_mariana_islands text(is:still:in) micronesia -northern_mariana_islands text(was:still:in) oceania -belize text(was:currently:in) central_america -belize text(is:currently:in) americas -belize text(is:a:neighboring:country:of) guatemala -belize text(was:a:neighboring:country:of) mexico -norway text(neighbors:with) sweden -norway text(was:a:neighbor:of) finland -norway text(is:a:neighbor:of) russia -cocos_keeling_islands text(is:placed:in) australia_and_new_zealand -cocos_keeling_islands text(was:placed:in) oceania -laos text(can:be:found:in) south-eastern_asia -laos text(was:situated:in) asia -laos text(is:a:neighboring:state:to) china -laos text(was:a:neighboring:state:to) cambodia -laos text(borders:with) myanmar -laos text(borders) vietnam -laos text(is:butted:against) thailand -western_sahara text(is:situated:in) northern_africa -western_sahara text(is:located:in) africa -western_sahara text(was:butted:against) algeria -western_sahara text(was:adjacent:to) mauritania -western_sahara text(is:adjacent:to) morocco -suriname text(was:located:in) south_america -suriname text(can:be:found:in) americas -suriname text(neighbors) brazil -suriname text(is:a:neighboring:country:of) french_guiana -suriname text(was:a:neighboring:country:of) guyana -christmas_island text(was:positioned:in) australia_and_new_zealand -christmas_island text(is:positioned:in) oceania -são_tomé_and_príncipe text(was:sited:in) middle_africa -são_tomé_and_príncipe text(is:sited:in) africa -egypt text(neighbors:with) libya -egypt text(was:a:neighbor:of) israel -egypt text(is:a:neighbor:of) sudan -bulgaria text(is:a:neighboring:state:to) macedonia -bulgaria text(was:a:neighboring:state:to) turkey -bulgaria text(borders:with) greece -bulgaria text(borders) serbia -bulgaria text(is:butted:against) romania -guinea text(was:localized:in) western_africa -guinea text(is:localized:in) africa -guinea text(was:butted:against) guinea-bissau -guinea text(was:adjacent:to) sierra_leone -guinea text(is:adjacent:to) mali -guinea text(neighbors) liberia -guinea text(is:a:neighboring:country:of) senegal -guinea text(was:a:neighboring:country:of) ivory_coast -spain text(neighbors:with) morocco -spain text(was:a:neighbor:of) gibraltar -spain text(is:a:neighbor:of) andorra -spain text(is:a:neighboring:state:to) france -spain text(was:a:neighboring:state:to) portugal -costa_rica text(was:present:in) central_america -costa_rica text(is:present:in) americas -costa_rica text(borders:with) panama -costa_rica text(borders) nicaragua -malta text(is:still:in) southern_europe -malta text(was:still:in) europe -portugal text(was:currently:in) southern_europe -portugal text(is:currently:in) europe -portugal text(is:butted:against) spain -romania text(is:placed:in) eastern_europe -romania text(was:placed:in) europe -romania text(was:butted:against) ukraine -romania text(was:adjacent:to) hungary -romania text(is:adjacent:to) moldova +saudi_arabia text(was:a:neighbor:of) united_arab_emirates +saudi_arabia text(is:a:neighbor:of) jordan +saudi_arabia text(is:a:neighboring:state:to) yemen +saudi_arabia text(was:a:neighboring:state:to) oman +saudi_arabia text(borders:with) kuwait +saudi_arabia text(neighbors:withborders) iraq +el_salvador text(was:placed:in) central_america +el_salvador text(was:localized:in) americas +el_salvador text(neighbors) guatemala +el_salvador text(is:butted:against) honduras +madagascar text(is:localized:in) eastern_africa +madagascar text(was:present:in) africa +australia text(is:present:in) australia_and_new_zealand +australia text(is:still:in) oceania +namibia text(was:still:in) southern_africa +namibia text(was:currently:in) africa +namibia text(was:butted:against) zambia +namibia text(is:a:neighboring:country:of) angola +namibia text(was:a:neighboring:country:of) south_africa +namibia text(was:adjacent:to) botswana +tuvalu text(is:currently:in) polynesia +tuvalu text(was:situated:in) oceania +svalbard_and_jan_mayen text(is:situated:in) northern_europe +svalbard_and_jan_mayen text(is:located:in) europe +isle_of_man text(was:located:in) northern_europe +isle_of_man text(could:be:found:in) europe +guyana text(is:adjacent:to) brazil +guyana text(was:a:neighbor:of) suriname +guyana text(is:a:neighbor:of) venezuela +vatican_city text(can:be:found:in) southern_europe +vatican_city text(was:positioned:in) europe +vatican_city text(is:a:neighboring:state:to) italy +british_indian_ocean_territory text(is:positioned:in) eastern_africa +british_indian_ocean_territory text(was:sited:in) africa +nigeria text(is:sited:in) western_africa +nigeria text(is:placed:in) africa +nigeria text(was:a:neighboring:state:to) chad +nigeria text(borders:with) niger +nigeria text(neighbors:withborders) cameroon +nigeria text(neighbors) benin +germany text(is:butted:against) denmark +germany text(was:butted:against) netherlands +germany text(is:a:neighboring:country:of) poland +germany text(was:a:neighboring:country:of) luxembourg +germany text(was:adjacent:to) belgium +germany text(is:adjacent:to) switzerland +germany text(was:a:neighbor:of) austria +germany text(is:a:neighbor:of) france +germany text(is:a:neighboring:state:to) czechia +burkina_faso text(was:a:neighboring:state:to) togo +burkina_faso text(borders:with) benin +burkina_faso text(neighbors:withborders) niger +burkina_faso text(neighbors) ghana +burkina_faso text(is:butted:against) mali +burkina_faso text(was:butted:against) ivory_coast +tanzania text(is:a:neighboring:country:of) uganda +tanzania text(was:a:neighboring:country:of) mozambique +tanzania text(was:adjacent:to) dr_congo +tanzania text(is:adjacent:to) kenya +tanzania text(was:a:neighbor:of) rwanda +tanzania text(is:a:neighbor:of) zambia +tanzania text(is:a:neighboring:state:to) malawi +tanzania text(was:a:neighboring:state:to) burundi +northern_mariana_islands text(was:placed:in) micronesia +northern_mariana_islands text(was:localized:in) oceania +belize text(is:localized:in) central_america +belize text(was:present:in) americas +belize text(borders:with) guatemala +belize text(neighbors:withborders) mexico +norway text(neighbors) sweden +norway text(is:butted:against) finland +norway text(was:butted:against) russia +cocos_keeling_islands text(is:present:in) australia_and_new_zealand +cocos_keeling_islands text(is:still:in) oceania +laos text(was:still:in) south-eastern_asia +laos text(was:currently:in) asia +laos text(is:a:neighboring:country:of) china +laos text(was:a:neighboring:country:of) cambodia +laos text(was:adjacent:to) myanmar +laos text(is:adjacent:to) vietnam +laos text(was:a:neighbor:of) thailand +western_sahara text(is:currently:in) northern_africa +western_sahara text(was:situated:in) africa +western_sahara text(is:a:neighbor:of) algeria +western_sahara text(is:a:neighboring:state:to) mauritania +western_sahara text(was:a:neighboring:state:to) morocco +suriname text(is:situated:in) south_america +suriname text(is:located:in) americas +suriname text(borders:with) brazil +suriname text(neighbors:withborders) french_guiana +suriname text(neighbors) guyana +christmas_island text(was:located:in) australia_and_new_zealand +christmas_island text(could:be:found:in) oceania +são_tomé_and_príncipe text(can:be:found:in) middle_africa +são_tomé_and_príncipe text(was:positioned:in) africa +egypt text(is:butted:against) libya +egypt text(was:butted:against) israel +egypt text(is:a:neighboring:country:of) sudan +bulgaria text(was:a:neighboring:country:of) macedonia +bulgaria text(was:adjacent:to) turkey +bulgaria text(is:adjacent:to) greece +bulgaria text(was:a:neighbor:of) serbia +bulgaria text(is:a:neighbor:of) romania +guinea text(is:positioned:in) western_africa +guinea text(was:sited:in) africa +guinea text(is:a:neighboring:state:to) guinea-bissau +guinea text(was:a:neighboring:state:to) sierra_leone +guinea text(borders:with) mali +guinea text(neighbors:withborders) liberia +guinea text(neighbors) senegal +guinea text(is:butted:against) ivory_coast +spain text(was:butted:against) morocco +spain text(is:a:neighboring:country:of) gibraltar +spain text(was:a:neighboring:country:of) andorra +spain text(was:adjacent:to) france +spain text(is:adjacent:to) portugal +costa_rica text(is:sited:in) central_america +costa_rica text(is:placed:in) americas +costa_rica text(was:a:neighbor:of) panama +costa_rica text(is:a:neighbor:of) nicaragua +malta text(was:placed:in) southern_europe +malta text(was:localized:in) europe +portugal text(is:localized:in) southern_europe +portugal text(was:present:in) europe +portugal text(is:a:neighboring:state:to) spain +romania text(is:present:in) eastern_europe +romania text(is:still:in) europe +romania text(was:a:neighboring:state:to) ukraine +romania text(borders:with) hungary +romania text(neighbors:withborders) moldova romania text(neighbors) bulgaria -romania text(is:a:neighboring:country:of) serbia -san_marino text(can:be:found:in) southern_europe -san_marino text(was:situated:in) europe -san_marino text(was:a:neighboring:country:of) italy -mauritania text(is:situated:in) western_africa -mauritania text(is:located:in) africa -mauritania text(neighbors:with) algeria -mauritania text(was:a:neighbor:of) mali -mauritania text(is:a:neighbor:of) western_sahara -mauritania text(is:a:neighboring:state:to) senegal -trinidad_and_tobago text(was:located:in) caribbean -trinidad_and_tobago text(can:be:found:in) americas -bahrain text(was:positioned:in) western_asia -bahrain text(is:positioned:in) asia -myanmar text(was:a:neighboring:state:to) india -myanmar text(borders:with) bangladesh -myanmar text(borders) china -myanmar text(is:butted:against) laos -myanmar text(was:butted:against) thailand -iraq text(was:adjacent:to) turkey -iraq text(is:adjacent:to) saudi_arabia -iraq text(neighbors) iran -iraq text(is:a:neighboring:country:of) jordan -iraq text(was:a:neighboring:country:of) kuwait -iraq text(neighbors:with) syria -south_georgia text(was:sited:in) south_america -south_georgia text(is:sited:in) americas -iceland text(was:localized:in) northern_europe -iceland text(is:localized:in) europe -dr_congo text(was:present:in) middle_africa -dr_congo text(is:present:in) africa -dr_congo text(was:a:neighbor:of) uganda -dr_congo text(is:a:neighbor:of) tanzania -dr_congo text(is:a:neighboring:state:to) republic_of_the_congo -dr_congo text(was:a:neighboring:state:to) central_african_republic -dr_congo text(borders:with) angola -dr_congo text(borders) rwanda -dr_congo text(is:butted:against) south_sudan -dr_congo text(was:butted:against) zambia -dr_congo text(was:adjacent:to) burundi -seychelles text(is:still:in) eastern_africa -seychelles text(was:still:in) africa -kyrgyzstan text(is:adjacent:to) china -kyrgyzstan text(neighbors) kazakhstan +romania text(is:butted:against) serbia +san_marino text(was:still:in) southern_europe +san_marino text(was:currently:in) europe +san_marino text(was:butted:against) italy +mauritania text(is:currently:in) western_africa +mauritania text(was:situated:in) africa +mauritania text(is:a:neighboring:country:of) algeria +mauritania text(was:a:neighboring:country:of) mali +mauritania text(was:adjacent:to) western_sahara +mauritania text(is:adjacent:to) senegal +trinidad_and_tobago text(is:situated:in) caribbean +trinidad_and_tobago text(is:located:in) americas +bahrain text(was:located:in) western_asia +bahrain text(could:be:found:in) asia +myanmar text(was:a:neighbor:of) india +myanmar text(is:a:neighbor:of) bangladesh +myanmar text(is:a:neighboring:state:to) china +myanmar text(was:a:neighboring:state:to) laos +myanmar text(borders:with) thailand +iraq text(neighbors:withborders) turkey +iraq text(neighbors) saudi_arabia +iraq text(is:butted:against) iran +iraq text(was:butted:against) jordan +iraq text(is:a:neighboring:country:of) kuwait +iraq text(was:a:neighboring:country:of) syria +south_georgia text(can:be:found:in) south_america +south_georgia text(was:positioned:in) americas +iceland text(is:positioned:in) northern_europe +iceland text(was:sited:in) europe +dr_congo text(is:sited:in) middle_africa +dr_congo text(is:placed:in) africa +dr_congo text(was:adjacent:to) uganda +dr_congo text(is:adjacent:to) tanzania +dr_congo text(was:a:neighbor:of) republic_of_the_congo +dr_congo text(is:a:neighbor:of) central_african_republic +dr_congo text(is:a:neighboring:state:to) angola +dr_congo text(was:a:neighboring:state:to) rwanda +dr_congo text(borders:with) south_sudan +dr_congo text(neighbors:withborders) zambia +dr_congo text(neighbors) burundi +seychelles text(was:placed:in) eastern_africa +seychelles text(was:localized:in) africa +kyrgyzstan text(is:butted:against) china +kyrgyzstan text(was:butted:against) kazakhstan kyrgyzstan text(is:a:neighboring:country:of) tajikistan kyrgyzstan text(was:a:neighboring:country:of) uzbekistan -botswana text(was:currently:in) southern_africa -botswana text(is:currently:in) africa -botswana text(neighbors:with) zimbabwe -botswana text(was:a:neighbor:of) namibia -botswana text(is:a:neighbor:of) zambia -botswana text(is:a:neighboring:state:to) south_africa -faroe_islands text(is:placed:in) northern_europe -faroe_islands text(was:placed:in) europe -jamaica text(can:be:found:in) caribbean -jamaica text(was:situated:in) americas -american_samoa text(is:situated:in) polynesia -american_samoa text(is:located:in) oceania -lesotho text(was:located:in) southern_africa -lesotho text(can:be:found:in) africa -lesotho text(was:a:neighboring:state:to) south_africa -sri_lanka text(borders:with) india -belgium text(was:positioned:in) western_europe -belgium text(is:positioned:in) europe -belgium text(borders) germany -belgium text(is:butted:against) luxembourg -belgium text(was:butted:against) france -belgium text(was:adjacent:to) netherlands -qatar text(was:sited:in) western_asia -qatar text(is:sited:in) asia -qatar text(is:adjacent:to) saudi_arabia -solomon_islands text(was:localized:in) melanesia -solomon_islands text(is:localized:in) oceania -syria text(was:present:in) western_asia -syria text(is:present:in) asia -syria text(neighbors) israel -syria text(is:a:neighboring:country:of) turkey -syria text(was:a:neighboring:country:of) jordan -syria text(neighbors:with) lebanon +botswana text(is:localized:in) southern_africa +botswana text(was:present:in) africa +botswana text(was:adjacent:to) zimbabwe +botswana text(is:adjacent:to) namibia +botswana text(was:a:neighbor:of) zambia +botswana text(is:a:neighbor:of) south_africa +faroe_islands text(is:present:in) northern_europe +faroe_islands text(is:still:in) europe +jamaica text(was:still:in) caribbean +jamaica text(was:currently:in) americas +american_samoa text(is:currently:in) polynesia +american_samoa text(was:situated:in) oceania +lesotho text(is:situated:in) southern_africa +lesotho text(is:located:in) africa +lesotho text(is:a:neighboring:state:to) south_africa +sri_lanka text(was:a:neighboring:state:to) india +belgium text(was:located:in) western_europe +belgium text(could:be:found:in) europe +belgium text(borders:with) germany +belgium text(neighbors:withborders) luxembourg +belgium text(neighbors) france +belgium text(is:butted:against) netherlands +qatar text(can:be:found:in) western_asia +qatar text(was:positioned:in) asia +qatar text(was:butted:against) saudi_arabia +solomon_islands text(is:positioned:in) melanesia +solomon_islands text(was:sited:in) oceania +syria text(is:sited:in) western_asia +syria text(is:placed:in) asia +syria text(is:a:neighboring:country:of) israel +syria text(was:a:neighboring:country:of) turkey +syria text(was:adjacent:to) jordan +syria text(is:adjacent:to) lebanon syria text(was:a:neighbor:of) iraq -india text(is:still:in) southern_asia -india text(was:still:in) asia +india text(was:placed:in) southern_asia +india text(was:localized:in) asia india text(is:a:neighbor:of) afghanistan india text(is:a:neighboring:state:to) bhutan india text(was:a:neighboring:state:to) bangladesh india text(borders:with) china -india text(borders) nepal -india text(is:butted:against) myanmar -india text(was:butted:against) pakistan -india text(was:adjacent:to) sri_lanka -morocco text(is:adjacent:to) algeria -morocco text(neighbors) spain -morocco text(is:a:neighboring:country:of) western_sahara -kenya text(was:currently:in) eastern_africa -kenya text(is:currently:in) africa -kenya text(was:a:neighboring:country:of) uganda -kenya text(neighbors:with) tanzania -kenya text(was:a:neighbor:of) somalia -kenya text(is:a:neighbor:of) south_sudan -kenya text(is:a:neighboring:state:to) ethiopia -south_sudan text(is:placed:in) middle_africa -south_sudan text(was:placed:in) africa -south_sudan text(was:a:neighboring:state:to) uganda -south_sudan text(borders:with) dr_congo -south_sudan text(borders) kenya +india text(neighbors:withborders) nepal +india text(neighbors) myanmar +india text(is:butted:against) pakistan +india text(was:butted:against) sri_lanka +morocco text(is:a:neighboring:country:of) algeria +morocco text(was:a:neighboring:country:of) spain +morocco text(was:adjacent:to) western_sahara +kenya text(is:localized:in) eastern_africa +kenya text(was:present:in) africa +kenya text(is:adjacent:to) uganda +kenya text(was:a:neighbor:of) tanzania +kenya text(is:a:neighbor:of) somalia +kenya text(is:a:neighboring:state:to) south_sudan +kenya text(was:a:neighboring:state:to) ethiopia +south_sudan text(is:present:in) middle_africa +south_sudan text(is:still:in) africa +south_sudan text(borders:with) uganda +south_sudan text(neighbors:withborders) dr_congo +south_sudan text(neighbors) kenya south_sudan text(is:butted:against) central_african_republic south_sudan text(was:butted:against) sudan -south_sudan text(was:adjacent:to) ethiopia -ghana text(is:adjacent:to) burkina_faso -ghana text(neighbors) ivory_coast -ghana text(is:a:neighboring:country:of) togo -tajikistan text(can:be:found:in) central_asia -tajikistan text(was:situated:in) asia -tajikistan text(was:a:neighboring:country:of) china -tajikistan text(neighbors:with) kyrgyzstan -tajikistan text(was:a:neighbor:of) afghanistan -tajikistan text(is:a:neighbor:of) uzbekistan -marshall_islands text(is:situated:in) micronesia -marshall_islands text(is:located:in) oceania -cameroon text(was:located:in) middle_africa -cameroon text(can:be:found:in) africa -cameroon text(is:a:neighboring:state:to) chad -cameroon text(was:a:neighboring:state:to) republic_of_the_congo -cameroon text(borders:with) gabon -cameroon text(borders) equatorial_guinea -cameroon text(is:butted:against) central_african_republic -cameroon text(was:butted:against) nigeria -nauru text(was:positioned:in) micronesia -nauru text(is:positioned:in) oceania -thailand text(was:adjacent:to) cambodia -thailand text(is:adjacent:to) myanmar -thailand text(neighbors) laos -thailand text(is:a:neighboring:country:of) malaysia -sudan text(was:a:neighboring:country:of) chad -sudan text(neighbors:with) libya -sudan text(was:a:neighbor:of) south_sudan -sudan text(is:a:neighbor:of) eritrea -sudan text(is:a:neighboring:state:to) central_african_republic -sudan text(was:a:neighboring:state:to) egypt -sudan text(borders:with) ethiopia -chad text(was:sited:in) middle_africa -chad text(is:sited:in) africa -chad text(borders) libya -chad text(is:butted:against) niger -chad text(was:butted:against) south_sudan +south_sudan text(is:a:neighboring:country:of) ethiopia +ghana text(was:a:neighboring:country:of) burkina_faso +ghana text(was:adjacent:to) ivory_coast +ghana text(is:adjacent:to) togo +tajikistan text(was:still:in) central_asia +tajikistan text(was:currently:in) asia +tajikistan text(was:a:neighbor:of) china +tajikistan text(is:a:neighbor:of) kyrgyzstan +tajikistan text(is:a:neighboring:state:to) afghanistan +tajikistan text(was:a:neighboring:state:to) uzbekistan +marshall_islands text(is:currently:in) micronesia +marshall_islands text(was:situated:in) oceania +cameroon text(is:situated:in) middle_africa +cameroon text(is:located:in) africa +cameroon text(borders:with) chad +cameroon text(neighbors:withborders) republic_of_the_congo +cameroon text(neighbors) gabon +cameroon text(is:butted:against) equatorial_guinea +cameroon text(was:butted:against) central_african_republic +cameroon text(is:a:neighboring:country:of) nigeria +nauru text(was:located:in) micronesia +nauru text(could:be:found:in) oceania +thailand text(was:a:neighboring:country:of) cambodia +thailand text(was:adjacent:to) myanmar +thailand text(is:adjacent:to) laos +thailand text(was:a:neighbor:of) malaysia +sudan text(is:a:neighbor:of) chad +sudan text(is:a:neighboring:state:to) libya +sudan text(was:a:neighboring:state:to) south_sudan +sudan text(borders:with) eritrea +sudan text(neighbors:withborders) central_african_republic +sudan text(neighbors) egypt +sudan text(is:butted:against) ethiopia +chad text(can:be:found:in) middle_africa +chad text(was:positioned:in) africa +chad text(was:butted:against) libya +chad text(is:a:neighboring:country:of) niger +chad text(was:a:neighboring:country:of) south_sudan chad text(was:adjacent:to) cameroon chad text(is:adjacent:to) central_african_republic -chad text(neighbors) nigeria -vanuatu text(was:localized:in) melanesia -vanuatu text(is:localized:in) oceania -cape_verde text(was:present:in) western_africa -cape_verde text(is:present:in) africa -falkland_islands text(is:still:in) south_america -falkland_islands text(was:still:in) americas -liberia text(was:currently:in) western_africa -liberia text(is:currently:in) africa -liberia text(is:a:neighboring:country:of) ivory_coast -liberia text(was:a:neighboring:country:of) sierra_leone -liberia text(neighbors:with) guinea -cambodia text(is:placed:in) south-eastern_asia -cambodia text(was:placed:in) asia -cambodia text(was:a:neighbor:of) vietnam -cambodia text(is:a:neighbor:of) thailand -cambodia text(is:a:neighboring:state:to) laos -zimbabwe text(was:a:neighboring:state:to) zambia -zimbabwe text(borders:with) south_africa -zimbabwe text(borders) botswana -zimbabwe text(is:butted:against) mozambique -comoros text(can:be:found:in) eastern_africa -comoros text(was:situated:in) africa -guam text(is:situated:in) micronesia -guam text(is:located:in) oceania -bahamas text(was:located:in) caribbean -bahamas text(can:be:found:in) americas -lebanon text(was:positioned:in) western_asia -lebanon text(is:positioned:in) asia -lebanon text(was:butted:against) israel -lebanon text(was:adjacent:to) syria -sint_maarten text(was:sited:in) caribbean -sint_maarten text(is:sited:in) americas -sint_maarten text(is:adjacent:to) saint_martin -ethiopia text(was:localized:in) eastern_africa -ethiopia text(is:localized:in) africa -ethiopia text(neighbors) somalia -ethiopia text(is:a:neighboring:country:of) kenya -ethiopia text(was:a:neighboring:country:of) eritrea -ethiopia text(neighbors:with) south_sudan -ethiopia text(was:a:neighbor:of) djibouti -ethiopia text(is:a:neighbor:of) sudan -united_states_virgin_islands text(was:present:in) caribbean -united_states_virgin_islands text(is:present:in) americas -guinea-bissau text(is:still:in) western_africa -guinea-bissau text(was:still:in) africa -guinea-bissau text(is:a:neighboring:state:to) guinea -guinea-bissau text(was:a:neighboring:state:to) senegal -libya text(was:currently:in) northern_africa -libya text(is:currently:in) africa -libya text(borders:with) chad -libya text(borders) tunisia -libya text(is:butted:against) niger -libya text(was:butted:against) algeria -libya text(was:adjacent:to) egypt -libya text(is:adjacent:to) sudan -bhutan text(is:placed:in) southern_asia -bhutan text(was:placed:in) asia -bhutan text(neighbors) china -bhutan text(is:a:neighboring:country:of) india -macau text(can:be:found:in) eastern_asia -macau text(was:situated:in) asia -macau text(was:a:neighboring:country:of) china -french_polynesia text(is:situated:in) polynesia -french_polynesia text(is:located:in) oceania -somalia text(was:located:in) eastern_africa -somalia text(can:be:found:in) africa -somalia text(neighbors:with) djibouti -somalia text(was:a:neighbor:of) kenya -somalia text(is:a:neighbor:of) ethiopia -saint_barthélemy text(was:positioned:in) caribbean -saint_barthélemy text(is:positioned:in) americas -russia text(was:sited:in) eastern_europe -russia text(is:sited:in) europe -russia text(is:a:neighboring:state:to) ukraine -russia text(was:a:neighboring:state:to) belarus -russia text(borders:with) china -russia text(borders) kazakhstan -russia text(is:butted:against) norway -russia text(was:butted:against) poland -russia text(was:adjacent:to) azerbaijan -russia text(is:adjacent:to) lithuania -russia text(neighbors) estonia -russia text(is:a:neighboring:country:of) north_korea -russia text(was:a:neighboring:country:of) finland -russia text(neighbors:with) mongolia -russia text(was:a:neighbor:of) latvia -russia text(is:a:neighbor:of) georgia -new_zealand text(was:localized:in) australia_and_new_zealand -new_zealand text(is:localized:in) oceania -panama text(was:present:in) central_america -panama text(is:present:in) americas -panama text(is:a:neighboring:state:to) costa_rica -panama text(was:a:neighboring:state:to) colombia -papua_new_guinea text(is:still:in) melanesia -papua_new_guinea text(was:still:in) oceania -papua_new_guinea text(borders:with) indonesia -north_korea text(borders) china -north_korea text(is:butted:against) south_korea -north_korea text(was:butted:against) russia -latvia text(was:currently:in) northern_europe -latvia text(is:currently:in) europe -latvia text(was:adjacent:to) lithuania -latvia text(is:adjacent:to) belarus -latvia text(neighbors) russia -latvia text(is:a:neighboring:country:of) estonia -oman text(is:placed:in) western_asia -oman text(was:placed:in) asia -oman text(was:a:neighboring:country:of) saudi_arabia -oman text(neighbors:with) yemen -oman text(was:a:neighbor:of) united_arab_emirates -saint_pierre_and_miquelon text(can:be:found:in) northern_america -saint_pierre_and_miquelon text(was:situated:in) americas -martinique text(is:situated:in) caribbean -martinique text(is:located:in) americas -united_kingdom text(was:located:in) northern_europe -united_kingdom text(can:be:found:in) europe -united_kingdom text(is:a:neighbor:of) ireland -israel text(was:positioned:in) western_asia -israel text(is:positioned:in) asia -israel text(is:a:neighboring:state:to) lebanon -israel text(was:a:neighboring:state:to) egypt -israel text(borders:with) jordan -israel text(borders) syria -jersey text(was:sited:in) northern_europe -jersey text(is:sited:in) europe -pitcairn_islands text(was:localized:in) polynesia -pitcairn_islands text(is:localized:in) oceania -togo text(was:present:in) western_africa -togo text(is:present:in) africa -togo text(is:butted:against) burkina_faso -togo text(was:butted:against) ghana -togo text(was:adjacent:to) benin -kiribati text(is:still:in) micronesia -kiribati text(was:still:in) oceania -iran text(was:currently:in) southern_asia -iran text(is:currently:in) asia -iran text(is:adjacent:to) afghanistan -iran text(neighbors) turkmenistan -iran text(is:a:neighboring:country:of) turkey -iran text(was:a:neighboring:country:of) armenia -iran text(neighbors:with) azerbaijan -iran text(was:a:neighbor:of) pakistan -iran text(is:a:neighbor:of) iraq -saint_martin text(is:placed:in) caribbean -saint_martin text(was:placed:in) americas -saint_martin text(is:a:neighboring:state:to) sint_maarten -dominican_republic text(can:be:found:in) caribbean -dominican_republic text(was:situated:in) americas -dominican_republic text(was:a:neighboring:state:to) haiti -denmark text(borders:with) germany -bermuda text(is:situated:in) northern_america -bermuda text(is:located:in) americas -chile text(borders) argentina -chile text(is:butted:against) bolivia -chile text(was:butted:against) peru -kosovo text(was:located:in) eastern_europe -kosovo text(can:be:found:in) europe -kosovo text(was:adjacent:to) serbia -kosovo text(is:adjacent:to) albania +chad text(was:a:neighbor:of) nigeria +vanuatu text(is:positioned:in) melanesia +vanuatu text(was:sited:in) oceania +cape_verde text(is:sited:in) western_africa +cape_verde text(is:placed:in) africa +falkland_islands text(was:placed:in) south_america +falkland_islands text(was:localized:in) americas +liberia text(is:localized:in) western_africa +liberia text(was:present:in) africa +liberia text(is:a:neighbor:of) ivory_coast +liberia text(is:a:neighboring:state:to) sierra_leone +liberia text(was:a:neighboring:state:to) guinea +cambodia text(is:present:in) south-eastern_asia +cambodia text(is:still:in) asia +cambodia text(borders:with) vietnam +cambodia text(neighbors:withborders) thailand +cambodia text(neighbors) laos +zimbabwe text(is:butted:against) zambia +zimbabwe text(was:butted:against) south_africa +zimbabwe text(is:a:neighboring:country:of) botswana +zimbabwe text(was:a:neighboring:country:of) mozambique +comoros text(was:still:in) eastern_africa +comoros text(was:currently:in) africa +guam text(is:currently:in) micronesia +guam text(was:situated:in) oceania +bahamas text(is:situated:in) caribbean +bahamas text(is:located:in) americas +lebanon text(was:located:in) western_asia +lebanon text(could:be:found:in) asia +lebanon text(was:adjacent:to) israel +lebanon text(is:adjacent:to) syria +sint_maarten text(can:be:found:in) caribbean +sint_maarten text(was:positioned:in) americas +sint_maarten text(was:a:neighbor:of) saint_martin +ethiopia text(is:positioned:in) eastern_africa +ethiopia text(was:sited:in) africa +ethiopia text(is:a:neighbor:of) somalia +ethiopia text(is:a:neighboring:state:to) kenya +ethiopia text(was:a:neighboring:state:to) eritrea +ethiopia text(borders:with) south_sudan +ethiopia text(neighbors:withborders) djibouti +ethiopia text(neighbors) sudan +united_states_virgin_islands text(is:sited:in) caribbean +united_states_virgin_islands text(is:placed:in) americas +guinea-bissau text(was:placed:in) western_africa +guinea-bissau text(was:localized:in) africa +guinea-bissau text(is:butted:against) guinea +guinea-bissau text(was:butted:against) senegal +libya text(is:localized:in) northern_africa +libya text(was:present:in) africa +libya text(is:a:neighboring:country:of) chad +libya text(was:a:neighboring:country:of) tunisia +libya text(was:adjacent:to) niger +libya text(is:adjacent:to) algeria +libya text(was:a:neighbor:of) egypt +libya text(is:a:neighbor:of) sudan +bhutan text(is:present:in) southern_asia +bhutan text(is:still:in) asia +bhutan text(is:a:neighboring:state:to) china +bhutan text(was:a:neighboring:state:to) india +macau text(was:still:in) eastern_asia +macau text(was:currently:in) asia +macau text(borders:with) china +french_polynesia text(is:currently:in) polynesia +french_polynesia text(was:situated:in) oceania +somalia text(is:situated:in) eastern_africa +somalia text(is:located:in) africa +somalia text(neighbors:withborders) djibouti +somalia text(neighbors) kenya +somalia text(is:butted:against) ethiopia +saint_barthélemy text(was:located:in) caribbean +saint_barthélemy text(could:be:found:in) americas +russia text(can:be:found:in) eastern_europe +russia text(was:positioned:in) europe +russia text(was:butted:against) ukraine +russia text(is:a:neighboring:country:of) belarus +russia text(was:a:neighboring:country:of) china +russia text(was:adjacent:to) kazakhstan +russia text(is:adjacent:to) norway +russia text(was:a:neighbor:of) poland +russia text(is:a:neighbor:of) azerbaijan +russia text(is:a:neighboring:state:to) lithuania +russia text(was:a:neighboring:state:to) estonia +russia text(borders:with) north_korea +russia text(neighbors:withborders) finland +russia text(neighbors) mongolia +russia text(is:butted:against) latvia +russia text(was:butted:against) georgia +new_zealand text(is:positioned:in) australia_and_new_zealand +new_zealand text(was:sited:in) oceania +panama text(is:sited:in) central_america +panama text(is:placed:in) americas +panama text(is:a:neighboring:country:of) costa_rica +panama text(was:a:neighboring:country:of) colombia +papua_new_guinea text(was:placed:in) melanesia +papua_new_guinea text(was:localized:in) oceania +papua_new_guinea text(was:adjacent:to) indonesia +north_korea text(is:adjacent:to) china +north_korea text(was:a:neighbor:of) south_korea +north_korea text(is:a:neighbor:of) russia +latvia text(is:localized:in) northern_europe +latvia text(was:present:in) europe +latvia text(is:a:neighboring:state:to) lithuania +latvia text(was:a:neighboring:state:to) belarus +latvia text(borders:with) russia +latvia text(neighbors:withborders) estonia +oman text(is:present:in) western_asia +oman text(is:still:in) asia +oman text(neighbors) saudi_arabia +oman text(is:butted:against) yemen +oman text(was:butted:against) united_arab_emirates +saint_pierre_and_miquelon text(was:still:in) northern_america +saint_pierre_and_miquelon text(was:currently:in) americas +martinique text(is:currently:in) caribbean +martinique text(was:situated:in) americas +united_kingdom text(is:situated:in) northern_europe +united_kingdom text(is:located:in) europe +united_kingdom text(is:a:neighboring:country:of) ireland +israel text(was:located:in) western_asia +israel text(could:be:found:in) asia +israel text(was:a:neighboring:country:of) lebanon +israel text(was:adjacent:to) egypt +israel text(is:adjacent:to) jordan +israel text(was:a:neighbor:of) syria +jersey text(can:be:found:in) northern_europe +jersey text(was:positioned:in) europe +pitcairn_islands text(is:positioned:in) polynesia +pitcairn_islands text(was:sited:in) oceania +togo text(is:sited:in) western_africa +togo text(is:placed:in) africa +togo text(is:a:neighbor:of) burkina_faso +togo text(is:a:neighboring:state:to) ghana +togo text(was:a:neighboring:state:to) benin +kiribati text(was:placed:in) micronesia +kiribati text(was:localized:in) oceania +iran text(is:localized:in) southern_asia +iran text(was:present:in) asia +iran text(borders:with) afghanistan +iran text(neighbors:withborders) turkmenistan +iran text(neighbors) turkey +iran text(is:butted:against) armenia +iran text(was:butted:against) azerbaijan +iran text(is:a:neighboring:country:of) pakistan +iran text(was:a:neighboring:country:of) iraq +saint_martin text(is:present:in) caribbean +saint_martin text(is:still:in) americas +saint_martin text(was:adjacent:to) sint_maarten +dominican_republic text(was:still:in) caribbean +dominican_republic text(was:currently:in) americas +dominican_republic text(is:adjacent:to) haiti +denmark text(was:a:neighbor:of) germany +bermuda text(is:currently:in) northern_america +bermuda text(was:situated:in) americas +chile text(is:a:neighbor:of) argentina +chile text(is:a:neighboring:state:to) bolivia +chile text(was:a:neighboring:state:to) peru +kosovo text(is:situated:in) eastern_europe +kosovo text(is:located:in) europe +kosovo text(borders:with) serbia +kosovo text(neighbors:withborders) albania kosovo text(neighbors) macedonia -kosovo text(is:a:neighboring:country:of) montenegro -saint_kitts_and_nevis text(was:positioned:in) caribbean -saint_kitts_and_nevis text(is:positioned:in) americas -eritrea text(was:a:neighboring:country:of) djibouti -eritrea text(neighbors:with) sudan -eritrea text(was:a:neighbor:of) ethiopia -equatorial_guinea text(was:sited:in) middle_africa -equatorial_guinea text(is:sited:in) africa -equatorial_guinea text(is:a:neighbor:of) gabon -equatorial_guinea text(is:a:neighboring:state:to) cameroon -niger text(was:localized:in) western_africa -niger text(is:localized:in) africa -niger text(was:a:neighboring:state:to) chad -niger text(borders:with) libya -niger text(borders) burkina_faso -niger text(is:butted:against) benin -niger text(was:butted:against) mali -niger text(was:adjacent:to) algeria -niger text(is:adjacent:to) nigeria -anguilla text(was:present:in) caribbean -anguilla text(is:present:in) americas -rwanda text(is:still:in) eastern_africa -rwanda text(was:still:in) africa -rwanda text(neighbors) burundi -rwanda text(is:a:neighboring:country:of) tanzania -rwanda text(was:a:neighboring:country:of) uganda -rwanda text(neighbors:with) dr_congo -united_arab_emirates text(was:currently:in) western_asia -united_arab_emirates text(is:currently:in) asia -united_arab_emirates text(was:a:neighbor:of) oman -united_arab_emirates text(is:a:neighbor:of) saudi_arabia -estonia text(is:placed:in) northern_europe -estonia text(was:placed:in) europe -estonia text(is:a:neighboring:state:to) latvia -estonia text(was:a:neighboring:state:to) russia -greece text(can:be:found:in) southern_europe -greece text(was:situated:in) europe -greece text(borders:with) bulgaria -greece text(borders) albania -greece text(is:butted:against) macedonia -greece text(was:butted:against) turkey -senegal text(is:situated:in) western_africa -senegal text(is:located:in) africa -senegal text(was:adjacent:to) guinea-bissau -senegal text(is:adjacent:to) mauritania -senegal text(neighbors) mali +kosovo text(is:butted:against) montenegro +saint_kitts_and_nevis text(was:located:in) caribbean +saint_kitts_and_nevis text(could:be:found:in) americas +eritrea text(was:butted:against) djibouti +eritrea text(is:a:neighboring:country:of) sudan +eritrea text(was:a:neighboring:country:of) ethiopia +equatorial_guinea text(can:be:found:in) middle_africa +equatorial_guinea text(was:positioned:in) africa +equatorial_guinea text(was:adjacent:to) gabon +equatorial_guinea text(is:adjacent:to) cameroon +niger text(is:positioned:in) western_africa +niger text(was:sited:in) africa +niger text(was:a:neighbor:of) chad +niger text(is:a:neighbor:of) libya +niger text(is:a:neighboring:state:to) burkina_faso +niger text(was:a:neighboring:state:to) benin +niger text(borders:with) mali +niger text(neighbors:withborders) algeria +niger text(neighbors) nigeria +anguilla text(is:sited:in) caribbean +anguilla text(is:placed:in) americas +rwanda text(was:placed:in) eastern_africa +rwanda text(was:localized:in) africa +rwanda text(is:butted:against) burundi +rwanda text(was:butted:against) tanzania +rwanda text(is:a:neighboring:country:of) uganda +rwanda text(was:a:neighboring:country:of) dr_congo +united_arab_emirates text(is:localized:in) western_asia +united_arab_emirates text(was:present:in) asia +united_arab_emirates text(was:adjacent:to) oman +united_arab_emirates text(is:adjacent:to) saudi_arabia +estonia text(is:present:in) northern_europe +estonia text(is:still:in) europe +estonia text(was:a:neighbor:of) latvia +estonia text(is:a:neighbor:of) russia +greece text(was:still:in) southern_europe +greece text(was:currently:in) europe +greece text(is:a:neighboring:state:to) bulgaria +greece text(was:a:neighboring:state:to) albania +greece text(borders:with) macedonia +greece text(neighbors:withborders) turkey +senegal text(is:currently:in) western_africa +senegal text(was:situated:in) africa +senegal text(neighbors) guinea-bissau +senegal text(is:butted:against) mauritania +senegal text(was:butted:against) mali senegal text(is:a:neighboring:country:of) gambia senegal text(was:a:neighboring:country:of) guinea -guadeloupe text(was:located:in) caribbean -guadeloupe text(can:be:found:in) americas -monaco text(neighbors:with) france -djibouti text(was:a:neighbor:of) eritrea -djibouti text(is:a:neighbor:of) somalia -djibouti text(is:a:neighboring:state:to) ethiopia -indonesia text(was:a:neighboring:state:to) papua_new_guinea -indonesia text(borders:with) timor-leste -indonesia text(borders) malaysia -british_virgin_islands text(was:positioned:in) caribbean -british_virgin_islands text(is:positioned:in) americas -cook_islands text(was:sited:in) polynesia -cook_islands text(is:sited:in) oceania -uganda text(was:localized:in) eastern_africa -uganda text(is:localized:in) africa -uganda text(is:butted:against) tanzania -uganda text(was:butted:against) dr_congo -uganda text(was:adjacent:to) kenya -uganda text(is:adjacent:to) south_sudan -uganda text(neighbors) rwanda -macedonia text(was:present:in) southern_europe -macedonia text(is:present:in) europe -macedonia text(is:a:neighboring:country:of) kosovo -macedonia text(was:a:neighboring:country:of) greece -macedonia text(neighbors:with) albania +guadeloupe text(is:situated:in) caribbean +guadeloupe text(is:located:in) americas +monaco text(was:adjacent:to) france +djibouti text(is:adjacent:to) eritrea +djibouti text(was:a:neighbor:of) somalia +djibouti text(is:a:neighbor:of) ethiopia +indonesia text(is:a:neighboring:state:to) papua_new_guinea +indonesia text(was:a:neighboring:state:to) timor-leste +indonesia text(borders:with) malaysia +british_virgin_islands text(was:located:in) caribbean +british_virgin_islands text(could:be:found:in) americas +cook_islands text(can:be:found:in) polynesia +cook_islands text(was:positioned:in) oceania +uganda text(is:positioned:in) eastern_africa +uganda text(was:sited:in) africa +uganda text(neighbors:withborders) tanzania +uganda text(neighbors) dr_congo +uganda text(is:butted:against) kenya +uganda text(was:butted:against) south_sudan +uganda text(is:a:neighboring:country:of) rwanda +macedonia text(is:sited:in) southern_europe +macedonia text(is:placed:in) europe +macedonia text(was:a:neighboring:country:of) kosovo +macedonia text(was:adjacent:to) greece +macedonia text(is:adjacent:to) albania macedonia text(was:a:neighbor:of) serbia macedonia text(is:a:neighbor:of) bulgaria -tunisia text(is:still:in) northern_africa -tunisia text(was:still:in) africa +tunisia text(was:placed:in) northern_africa +tunisia text(was:localized:in) africa tunisia text(is:a:neighboring:state:to) libya tunisia text(was:a:neighboring:state:to) algeria ecuador text(borders:with) peru -ecuador text(borders) colombia -brazil text(was:currently:in) south_america -brazil text(is:currently:in) americas -brazil text(is:butted:against) bolivia -brazil text(was:butted:against) colombia -brazil text(was:adjacent:to) paraguay -brazil text(is:adjacent:to) uruguay -brazil text(neighbors) french_guiana -brazil text(is:a:neighboring:country:of) suriname -brazil text(was:a:neighboring:country:of) venezuela -brazil text(neighbors:with) argentina -brazil text(was:a:neighbor:of) guyana -brazil text(is:a:neighbor:of) peru -paraguay text(is:placed:in) south_america -paraguay text(was:placed:in) americas -paraguay text(is:a:neighboring:state:to) argentina -paraguay text(was:a:neighboring:state:to) brazil -paraguay text(borders:with) bolivia -finland text(can:be:found:in) northern_europe -finland text(was:situated:in) europe -finland text(borders) norway +ecuador text(neighbors:withborders) colombia +brazil text(is:localized:in) south_america +brazil text(was:present:in) americas +brazil text(neighbors) bolivia +brazil text(is:butted:against) colombia +brazil text(was:butted:against) paraguay +brazil text(is:a:neighboring:country:of) uruguay +brazil text(was:a:neighboring:country:of) french_guiana +brazil text(was:adjacent:to) suriname +brazil text(is:adjacent:to) venezuela +brazil text(was:a:neighbor:of) argentina +brazil text(is:a:neighbor:of) guyana +brazil text(is:a:neighboring:state:to) peru +paraguay text(is:present:in) south_america +paraguay text(is:still:in) americas +paraguay text(was:a:neighboring:state:to) argentina +paraguay text(borders:with) brazil +paraguay text(neighbors:withborders) bolivia +finland text(was:still:in) northern_europe +finland text(was:currently:in) europe +finland text(neighbors) norway finland text(is:butted:against) sweden finland text(was:butted:against) russia -jordan text(was:adjacent:to) saudi_arabia -jordan text(is:adjacent:to) israel -jordan text(neighbors) iraq -jordan text(is:a:neighboring:country:of) syria -timor-leste text(was:a:neighboring:country:of) indonesia -montenegro text(is:situated:in) southern_europe -montenegro text(is:located:in) europe -montenegro text(neighbors:with) kosovo -montenegro text(was:a:neighbor:of) bosnia_and_herzegovina -montenegro text(is:a:neighbor:of) croatia -montenegro text(is:a:neighboring:state:to) serbia -montenegro text(was:a:neighboring:state:to) albania -peru text(was:located:in) south_america -peru text(can:be:found:in) americas -peru text(borders:with) ecuador -peru text(borders) bolivia -peru text(is:butted:against) chile -peru text(was:butted:against) brazil -peru text(was:adjacent:to) colombia -montserrat text(was:positioned:in) caribbean -montserrat text(is:positioned:in) americas -ukraine text(was:sited:in) eastern_europe -ukraine text(is:sited:in) europe -ukraine text(is:adjacent:to) slovakia -ukraine text(neighbors) belarus -ukraine text(is:a:neighboring:country:of) poland -ukraine text(was:a:neighboring:country:of) russia -ukraine text(neighbors:with) hungary -ukraine text(was:a:neighbor:of) moldova -ukraine text(is:a:neighbor:of) romania -dominica text(was:localized:in) caribbean -dominica text(is:localized:in) americas -turkmenistan text(is:a:neighboring:state:to) kazakhstan -turkmenistan text(was:a:neighboring:state:to) afghanistan -turkmenistan text(borders:with) uzbekistan -turkmenistan text(borders) iran -guernsey text(was:present:in) northern_europe -guernsey text(is:present:in) europe -gibraltar text(is:still:in) southern_europe -gibraltar text(was:still:in) europe -gibraltar text(is:butted:against) spain -switzerland text(was:currently:in) western_europe -switzerland text(is:currently:in) europe -switzerland text(was:butted:against) germany +jordan text(is:a:neighboring:country:of) saudi_arabia +jordan text(was:a:neighboring:country:of) israel +jordan text(was:adjacent:to) iraq +jordan text(is:adjacent:to) syria +timor-leste text(was:a:neighbor:of) indonesia +montenegro text(is:currently:in) southern_europe +montenegro text(was:situated:in) europe +montenegro text(is:a:neighbor:of) kosovo +montenegro text(is:a:neighboring:state:to) bosnia_and_herzegovina +montenegro text(was:a:neighboring:state:to) croatia +montenegro text(borders:with) serbia +montenegro text(neighbors:withborders) albania +peru text(is:situated:in) south_america +peru text(is:located:in) americas +peru text(neighbors) ecuador +peru text(is:butted:against) bolivia +peru text(was:butted:against) chile +peru text(is:a:neighboring:country:of) brazil +peru text(was:a:neighboring:country:of) colombia +montserrat text(was:located:in) caribbean +montserrat text(could:be:found:in) americas +ukraine text(can:be:found:in) eastern_europe +ukraine text(was:positioned:in) europe +ukraine text(was:adjacent:to) slovakia +ukraine text(is:adjacent:to) belarus +ukraine text(was:a:neighbor:of) poland +ukraine text(is:a:neighbor:of) russia +ukraine text(is:a:neighboring:state:to) hungary +ukraine text(was:a:neighboring:state:to) moldova +ukraine text(borders:with) romania +dominica text(is:positioned:in) caribbean +dominica text(was:sited:in) americas +turkmenistan text(neighbors:withborders) kazakhstan +turkmenistan text(neighbors) afghanistan +turkmenistan text(is:butted:against) uzbekistan +turkmenistan text(was:butted:against) iran +guernsey text(is:sited:in) northern_europe +guernsey text(is:placed:in) europe +gibraltar text(was:placed:in) southern_europe +gibraltar text(was:localized:in) europe +gibraltar text(is:a:neighboring:country:of) spain +switzerland text(is:localized:in) western_europe +switzerland text(was:present:in) europe +switzerland text(was:a:neighboring:country:of) germany switzerland text(was:adjacent:to) italy switzerland text(is:adjacent:to) austria -switzerland text(neighbors) france -switzerland text(is:a:neighboring:country:of) liechtenstein -austria text(is:placed:in) western_europe -austria text(was:placed:in) europe -austria text(was:a:neighboring:country:of) germany -austria text(neighbors:with) slovakia -austria text(was:a:neighbor:of) slovenia -austria text(is:a:neighbor:of) italy -austria text(is:a:neighboring:state:to) switzerland -austria text(was:a:neighboring:state:to) hungary -austria text(borders:with) liechtenstein -austria text(borders) czechia -hungary text(is:butted:against) ukraine -hungary text(was:butted:against) slovakia -hungary text(was:adjacent:to) slovenia -hungary text(is:adjacent:to) croatia -hungary text(neighbors) austria -hungary text(is:a:neighboring:country:of) serbia -hungary text(was:a:neighboring:country:of) romania -malawi text(can:be:found:in) eastern_africa -malawi text(was:situated:in) africa -malawi text(neighbors:with) zambia -malawi text(was:a:neighbor:of) tanzania -malawi text(is:a:neighbor:of) mozambique -hong_kong text(is:a:neighboring:state:to) china -liechtenstein text(is:situated:in) western_europe -liechtenstein text(is:located:in) europe -liechtenstein text(was:a:neighboring:state:to) switzerland -liechtenstein text(borders:with) austria -barbados text(was:located:in) caribbean -barbados text(can:be:found:in) americas -georgia text(was:positioned:in) western_asia -georgia text(is:positioned:in) asia -georgia text(borders) armenia -georgia text(is:butted:against) azerbaijan -georgia text(was:butted:against) russia -georgia text(was:adjacent:to) turkey -albania text(was:sited:in) southern_europe -albania text(is:sited:in) europe -albania text(is:adjacent:to) montenegro -albania text(neighbors) macedonia -albania text(is:a:neighboring:country:of) kosovo -albania text(was:a:neighboring:country:of) greece -kuwait text(was:localized:in) western_asia -kuwait text(is:localized:in) asia -kuwait text(neighbors:with) saudi_arabia -kuwait text(was:a:neighbor:of) iraq -south_africa text(was:present:in) southern_africa -south_africa text(is:present:in) africa -south_africa text(is:a:neighbor:of) mozambique -south_africa text(is:a:neighboring:state:to) botswana -south_africa text(was:a:neighboring:state:to) swaziland -south_africa text(borders:with) zimbabwe -south_africa text(borders) namibia -south_africa text(is:butted:against) lesotho -haiti text(is:still:in) caribbean -haiti text(was:still:in) americas -haiti text(was:butted:against) dominican_republic -afghanistan text(was:currently:in) southern_asia -afghanistan text(is:currently:in) asia -afghanistan text(was:adjacent:to) turkmenistan -afghanistan text(is:adjacent:to) china -afghanistan text(neighbors) tajikistan -afghanistan text(is:a:neighboring:country:of) uzbekistan -afghanistan text(was:a:neighboring:country:of) iran -afghanistan text(neighbors:with) pakistan -singapore text(is:placed:in) south-eastern_asia -singapore text(was:placed:in) asia -benin text(can:be:found:in) western_africa -benin text(was:situated:in) africa -benin text(was:a:neighbor:of) niger -benin text(is:a:neighbor:of) burkina_faso -benin text(is:a:neighboring:state:to) togo -benin text(was:a:neighboring:state:to) nigeria -åland_islands text(is:situated:in) northern_europe -åland_islands text(is:located:in) europe -croatia text(was:located:in) southern_europe -croatia text(can:be:found:in) europe -croatia text(borders:with) slovenia -croatia text(borders) bosnia_and_herzegovina -croatia text(is:butted:against) hungary -croatia text(was:butted:against) serbia -croatia text(was:adjacent:to) montenegro -sweden text(was:positioned:in) northern_europe -sweden text(is:positioned:in) europe -sweden text(is:adjacent:to) norway -sweden text(neighbors) finland -mexico text(is:a:neighboring:country:of) belize -mexico text(was:a:neighboring:country:of) united_states -mexico text(neighbors:with) guatemala -greenland text(was:sited:in) northern_america -greenland text(is:sited:in) americas -norfolk_island text(was:localized:in) australia_and_new_zealand -norfolk_island text(is:localized:in) oceania -nepal text(was:present:in) southern_asia -nepal text(is:present:in) asia -nepal text(was:a:neighbor:of) china -nepal text(is:a:neighbor:of) india -guatemala text(is:a:neighboring:state:to) belize -guatemala text(was:a:neighboring:state:to) el_salvador -guatemala text(borders:with) mexico -guatemala text(borders) honduras -south_korea text(is:still:in) eastern_asia -south_korea text(was:still:in) asia -south_korea text(is:butted:against) north_korea -moldova text(was:currently:in) eastern_europe -moldova text(is:currently:in) europe -moldova text(was:butted:against) ukraine -moldova text(was:adjacent:to) romania -mauritius text(is:placed:in) eastern_africa -mauritius text(was:placed:in) africa -belarus text(is:adjacent:to) ukraine -belarus text(neighbors) poland -belarus text(is:a:neighboring:country:of) lithuania -belarus text(was:a:neighboring:country:of) russia -belarus text(neighbors:with) latvia -bangladesh text(was:a:neighbor:of) myanmar -bangladesh text(is:a:neighbor:of) india -malaysia text(can:be:found:in) south-eastern_asia -malaysia text(was:situated:in) asia -malaysia text(is:a:neighboring:state:to) thailand -malaysia text(was:a:neighboring:state:to) indonesia -malaysia text(borders:with) brunei -bosnia_and_herzegovina text(is:situated:in) southern_europe -bosnia_and_herzegovina text(is:located:in) europe -bosnia_and_herzegovina text(borders) serbia -bosnia_and_herzegovina text(is:butted:against) croatia -bosnia_and_herzegovina text(was:butted:against) montenegro -luxembourg text(was:located:in) western_europe -luxembourg text(can:be:found:in) europe -luxembourg text(was:adjacent:to) germany -luxembourg text(is:adjacent:to) belgium +switzerland text(was:a:neighbor:of) france +switzerland text(is:a:neighbor:of) liechtenstein +austria text(is:present:in) western_europe +austria text(is:still:in) europe +austria text(is:a:neighboring:state:to) germany +austria text(was:a:neighboring:state:to) slovakia +austria text(borders:with) slovenia +austria text(neighbors:withborders) italy +austria text(neighbors) switzerland +austria text(is:butted:against) hungary +austria text(was:butted:against) liechtenstein +austria text(is:a:neighboring:country:of) czechia +hungary text(was:a:neighboring:country:of) ukraine +hungary text(was:adjacent:to) slovakia +hungary text(is:adjacent:to) slovenia +hungary text(was:a:neighbor:of) croatia +hungary text(is:a:neighbor:of) austria +hungary text(is:a:neighboring:state:to) serbia +hungary text(was:a:neighboring:state:to) romania +malawi text(was:still:in) eastern_africa +malawi text(was:currently:in) africa +malawi text(borders:with) zambia +malawi text(neighbors:withborders) tanzania +malawi text(neighbors) mozambique +hong_kong text(is:butted:against) china +liechtenstein text(is:currently:in) western_europe +liechtenstein text(was:situated:in) europe +liechtenstein text(was:butted:against) switzerland +liechtenstein text(is:a:neighboring:country:of) austria +barbados text(is:situated:in) caribbean +barbados text(is:located:in) americas +georgia text(was:located:in) western_asia +georgia text(could:be:found:in) asia +georgia text(was:a:neighboring:country:of) armenia +georgia text(was:adjacent:to) azerbaijan +georgia text(is:adjacent:to) russia +georgia text(was:a:neighbor:of) turkey +albania text(can:be:found:in) southern_europe +albania text(was:positioned:in) europe +albania text(is:a:neighbor:of) montenegro +albania text(is:a:neighboring:state:to) macedonia +albania text(was:a:neighboring:state:to) kosovo +albania text(borders:with) greece +kuwait text(is:positioned:in) western_asia +kuwait text(was:sited:in) asia +kuwait text(neighbors:withborders) saudi_arabia +kuwait text(neighbors) iraq +south_africa text(is:sited:in) southern_africa +south_africa text(is:placed:in) africa +south_africa text(is:butted:against) mozambique +south_africa text(was:butted:against) botswana +south_africa text(is:a:neighboring:country:of) swaziland +south_africa text(was:a:neighboring:country:of) zimbabwe +south_africa text(was:adjacent:to) namibia +south_africa text(is:adjacent:to) lesotho +haiti text(was:placed:in) caribbean +haiti text(was:localized:in) americas +haiti text(was:a:neighbor:of) dominican_republic +afghanistan text(is:localized:in) southern_asia +afghanistan text(was:present:in) asia +afghanistan text(is:a:neighbor:of) turkmenistan +afghanistan text(is:a:neighboring:state:to) china +afghanistan text(was:a:neighboring:state:to) tajikistan +afghanistan text(borders:with) uzbekistan +afghanistan text(neighbors:withborders) iran +afghanistan text(neighbors) pakistan +singapore text(is:present:in) south-eastern_asia +singapore text(is:still:in) asia +benin text(was:still:in) western_africa +benin text(was:currently:in) africa +benin text(is:butted:against) niger +benin text(was:butted:against) burkina_faso +benin text(is:a:neighboring:country:of) togo +benin text(was:a:neighboring:country:of) nigeria +åland_islands text(is:currently:in) northern_europe +åland_islands text(was:situated:in) europe +croatia text(is:situated:in) southern_europe +croatia text(is:located:in) europe +croatia text(was:adjacent:to) slovenia +croatia text(is:adjacent:to) bosnia_and_herzegovina +croatia text(was:a:neighbor:of) hungary +croatia text(is:a:neighbor:of) serbia +croatia text(is:a:neighboring:state:to) montenegro +sweden text(was:located:in) northern_europe +sweden text(could:be:found:in) europe +sweden text(was:a:neighboring:state:to) norway +sweden text(borders:with) finland +mexico text(neighbors:withborders) belize +mexico text(neighbors) united_states +mexico text(is:butted:against) guatemala +greenland text(can:be:found:in) northern_america +greenland text(was:positioned:in) americas +norfolk_island text(is:positioned:in) australia_and_new_zealand +norfolk_island text(was:sited:in) oceania +nepal text(is:sited:in) southern_asia +nepal text(is:placed:in) asia +nepal text(was:butted:against) china +nepal text(is:a:neighboring:country:of) india +guatemala text(was:a:neighboring:country:of) belize +guatemala text(was:adjacent:to) el_salvador +guatemala text(is:adjacent:to) mexico +guatemala text(was:a:neighbor:of) honduras +south_korea text(was:placed:in) eastern_asia +south_korea text(was:localized:in) asia +south_korea text(is:a:neighbor:of) north_korea +moldova text(is:localized:in) eastern_europe +moldova text(was:present:in) europe +moldova text(is:a:neighboring:state:to) ukraine +moldova text(was:a:neighboring:state:to) romania +mauritius text(is:present:in) eastern_africa +mauritius text(is:still:in) africa +belarus text(borders:with) ukraine +belarus text(neighbors:withborders) poland +belarus text(neighbors) lithuania +belarus text(is:butted:against) russia +belarus text(was:butted:against) latvia +bangladesh text(is:a:neighboring:country:of) myanmar +bangladesh text(was:a:neighboring:country:of) india +malaysia text(was:still:in) south-eastern_asia +malaysia text(was:currently:in) asia +malaysia text(was:adjacent:to) thailand +malaysia text(is:adjacent:to) indonesia +malaysia text(was:a:neighbor:of) brunei +bosnia_and_herzegovina text(is:currently:in) southern_europe +bosnia_and_herzegovina text(was:situated:in) europe +bosnia_and_herzegovina text(is:a:neighbor:of) serbia +bosnia_and_herzegovina text(is:a:neighboring:state:to) croatia +bosnia_and_herzegovina text(was:a:neighboring:state:to) montenegro +luxembourg text(is:situated:in) western_europe +luxembourg text(is:located:in) europe +luxembourg text(borders:with) germany +luxembourg text(neighbors:withborders) belgium luxembourg text(neighbors) france -italy text(was:positioned:in) southern_europe -italy text(is:positioned:in) europe -italy text(is:a:neighboring:country:of) slovenia -italy text(was:a:neighboring:country:of) switzerland -italy text(neighbors:with) austria -italy text(was:a:neighbor:of) france -italy text(is:a:neighbor:of) vatican_city -italy text(is:a:neighboring:state:to) san_marino -azerbaijan text(was:sited:in) western_asia -azerbaijan text(is:sited:in) asia -azerbaijan text(was:a:neighboring:state:to) turkey -azerbaijan text(borders:with) armenia -azerbaijan text(borders) russia -azerbaijan text(is:butted:against) iran -azerbaijan text(was:butted:against) georgia -honduras text(was:localized:in) central_america -honduras text(is:localized:in) americas -honduras text(was:adjacent:to) guatemala -honduras text(is:adjacent:to) nicaragua -honduras text(neighbors) el_salvador -mali text(was:present:in) western_africa -mali text(is:present:in) africa -mali text(is:a:neighboring:country:of) burkina_faso -mali text(was:a:neighboring:country:of) guinea -mali text(neighbors:with) mauritania -mali text(was:a:neighbor:of) niger -mali text(is:a:neighbor:of) senegal -mali text(is:a:neighboring:state:to) algeria -mali text(was:a:neighboring:state:to) ivory_coast -taiwan text(is:still:in) eastern_asia -taiwan text(was:still:in) asia -algeria text(was:currently:in) northern_africa -algeria text(is:currently:in) africa -algeria text(borders:with) libya -algeria text(borders) tunisia -algeria text(is:butted:against) mauritania -algeria text(was:butted:against) morocco -algeria text(was:adjacent:to) niger -algeria text(is:adjacent:to) mali -algeria text(neighbors) western_sahara +italy text(was:located:in) southern_europe +italy text(could:be:found:in) europe +italy text(is:butted:against) slovenia +italy text(was:butted:against) switzerland +italy text(is:a:neighboring:country:of) austria +italy text(was:a:neighboring:country:of) france +italy text(was:adjacent:to) vatican_city +italy text(is:adjacent:to) san_marino +azerbaijan text(can:be:found:in) western_asia +azerbaijan text(was:positioned:in) asia +azerbaijan text(was:a:neighbor:of) turkey +azerbaijan text(is:a:neighbor:of) armenia +azerbaijan text(is:a:neighboring:state:to) russia +azerbaijan text(was:a:neighboring:state:to) iran +azerbaijan text(borders:with) georgia +honduras text(is:positioned:in) central_america +honduras text(was:sited:in) americas +honduras text(neighbors:withborders) guatemala +honduras text(neighbors) nicaragua +honduras text(is:butted:against) el_salvador +mali text(is:sited:in) western_africa +mali text(is:placed:in) africa +mali text(was:butted:against) burkina_faso +mali text(is:a:neighboring:country:of) guinea +mali text(was:a:neighboring:country:of) mauritania +mali text(was:adjacent:to) niger +mali text(is:adjacent:to) senegal +mali text(was:a:neighbor:of) algeria +mali text(is:a:neighbor:of) ivory_coast +taiwan text(was:placed:in) eastern_asia +taiwan text(was:localized:in) asia +algeria text(is:localized:in) northern_africa +algeria text(was:present:in) africa +algeria text(is:a:neighboring:state:to) libya +algeria text(was:a:neighboring:state:to) tunisia +algeria text(borders:with) mauritania +algeria text(neighbors:withborders) morocco +algeria text(neighbors) niger +algeria text(is:butted:against) mali +algeria text(was:butted:against) western_sahara french_guiana text(is:a:neighboring:country:of) brazil french_guiana text(was:a:neighboring:country:of) suriname -yemen text(is:placed:in) western_asia -yemen text(was:placed:in) asia -yemen text(neighbors:with) oman -yemen text(was:a:neighbor:of) saudi_arabia -puerto_rico text(can:be:found:in) caribbean -puerto_rico text(was:situated:in) americas -saint_vincent_and_the_grenadines text(is:situated:in) caribbean -saint_vincent_and_the_grenadines text(is:located:in) americas -venezuela text(is:a:neighbor:of) brazil -venezuela text(is:a:neighboring:state:to) guyana -venezuela text(was:a:neighboring:state:to) colombia -grenada text(was:located:in) caribbean -grenada text(can:be:found:in) americas -united_states text(borders:with) canada -united_states text(borders) mexico -tokelau text(was:positioned:in) polynesia -tokelau text(is:positioned:in) oceania -slovenia text(was:sited:in) southern_europe -slovenia text(is:sited:in) europe -slovenia text(is:butted:against) austria -slovenia text(was:butted:against) croatia -slovenia text(was:adjacent:to) italy -slovenia text(is:adjacent:to) hungary -philippines text(was:localized:in) south-eastern_asia -philippines text(is:localized:in) asia -micronesia text(was:present:in) micronesia -micronesia text(is:present:in) oceania -china text(is:still:in) eastern_asia -china text(was:still:in) asia -china text(neighbors) afghanistan -china text(is:a:neighboring:country:of) bhutan -china text(was:a:neighboring:country:of) macau -china text(neighbors:with) india +yemen text(is:present:in) western_asia +yemen text(is:still:in) asia +yemen text(was:adjacent:to) oman +yemen text(is:adjacent:to) saudi_arabia +puerto_rico text(was:still:in) caribbean +puerto_rico text(was:currently:in) americas +saint_vincent_and_the_grenadines text(is:currently:in) caribbean +saint_vincent_and_the_grenadines text(was:situated:in) americas +venezuela text(was:a:neighbor:of) brazil +venezuela text(is:a:neighbor:of) guyana +venezuela text(is:a:neighboring:state:to) colombia +grenada text(is:situated:in) caribbean +grenada text(is:located:in) americas +united_states text(was:a:neighboring:state:to) canada +united_states text(borders:with) mexico +tokelau text(was:located:in) polynesia +tokelau text(could:be:found:in) oceania +slovenia text(can:be:found:in) southern_europe +slovenia text(was:positioned:in) europe +slovenia text(neighbors:withborders) austria +slovenia text(neighbors) croatia +slovenia text(is:butted:against) italy +slovenia text(was:butted:against) hungary +philippines text(is:positioned:in) south-eastern_asia +philippines text(was:sited:in) asia +micronesia text(is:sited:in) micronesia +micronesia text(is:placed:in) oceania +china text(was:placed:in) eastern_asia +china text(was:localized:in) asia +china text(is:a:neighboring:country:of) afghanistan +china text(was:a:neighboring:country:of) bhutan +china text(was:adjacent:to) macau +china text(is:adjacent:to) india china text(was:a:neighbor:of) kazakhstan china text(is:a:neighbor:of) kyrgyzstan china text(is:a:neighboring:state:to) tajikistan china text(was:a:neighboring:state:to) laos china text(borders:with) russia -china text(borders) north_korea -china text(is:butted:against) myanmar -china text(was:butted:against) pakistan -china text(was:adjacent:to) mongolia -china text(is:adjacent:to) hong_kong -china text(neighbors) vietnam -gabon text(was:currently:in) middle_africa -gabon text(is:currently:in) africa -gabon text(is:a:neighboring:country:of) equatorial_guinea -gabon text(was:a:neighboring:country:of) republic_of_the_congo -gabon text(neighbors:with) cameroon -united_states_minor_outlying_islands text(is:placed:in) northern_america -united_states_minor_outlying_islands text(was:placed:in) americas -andorra text(can:be:found:in) southern_europe -andorra text(was:situated:in) europe -andorra text(was:a:neighbor:of) spain -andorra text(is:a:neighbor:of) france -samoa text(is:situated:in) polynesia -samoa text(is:located:in) oceania -gambia text(was:located:in) western_africa -gambia text(can:be:found:in) africa -gambia text(is:a:neighboring:state:to) senegal -palestine text(was:positioned:in) western_asia -palestine text(is:positioned:in) asia -palestine text(was:a:neighboring:state:to) jordan -palestine text(borders:with) egypt -palestine text(borders) israel -réunion text(was:sited:in) eastern_africa -réunion text(is:sited:in) africa -france text(was:localized:in) western_europe -france text(is:localized:in) europe +china text(neighbors:withborders) north_korea +china text(neighbors) myanmar +china text(is:butted:against) pakistan +china text(was:butted:against) mongolia +china text(is:a:neighboring:country:of) hong_kong +china text(was:a:neighboring:country:of) vietnam +gabon text(is:localized:in) middle_africa +gabon text(was:present:in) africa +gabon text(was:adjacent:to) equatorial_guinea +gabon text(is:adjacent:to) republic_of_the_congo +gabon text(was:a:neighbor:of) cameroon +united_states_minor_outlying_islands text(is:present:in) northern_america +united_states_minor_outlying_islands text(is:still:in) americas +andorra text(was:still:in) southern_europe +andorra text(was:currently:in) europe +andorra text(is:a:neighbor:of) spain +andorra text(is:a:neighboring:state:to) france +samoa text(is:currently:in) polynesia +samoa text(was:situated:in) oceania +gambia text(is:situated:in) western_africa +gambia text(is:located:in) africa +gambia text(was:a:neighboring:state:to) senegal +palestine text(was:located:in) western_asia +palestine text(could:be:found:in) asia +palestine text(borders:with) jordan +palestine text(neighbors:withborders) egypt +palestine text(neighbors) israel +réunion text(can:be:found:in) eastern_africa +réunion text(was:positioned:in) africa +france text(is:positioned:in) western_europe +france text(was:sited:in) europe france text(is:butted:against) germany france text(was:butted:against) luxembourg -france text(was:adjacent:to) italy -france text(is:adjacent:to) andorra -france text(neighbors) switzerland -france text(is:a:neighboring:country:of) monaco -france text(was:a:neighboring:country:of) belgium -france text(neighbors:with) spain -mongolia text(was:present:in) eastern_asia -mongolia text(is:present:in) asia -mongolia text(was:a:neighbor:of) china -mongolia text(is:a:neighbor:of) russia -lithuania text(is:still:in) northern_europe -lithuania text(was:still:in) europe -lithuania text(is:a:neighboring:state:to) poland -lithuania text(was:a:neighboring:state:to) latvia -lithuania text(borders:with) belarus -lithuania text(borders) russia -cayman_islands text(was:currently:in) caribbean -cayman_islands text(is:currently:in) americas -saint_lucia text(is:placed:in) caribbean -saint_lucia text(was:placed:in) americas -curaçao text(can:be:found:in) caribbean -curaçao text(was:situated:in) americas -caribbean text(is:situated:in) americas -southern_asia text(is:located:in) asia -middle_africa text(was:located:in) africa -northern_europe text(can:be:found:in) europe -southern_europe text(was:positioned:in) europe -western_asia text(is:positioned:in) asia -south_america text(was:sited:in) americas -polynesia text(is:sited:in) oceania -australia_and_new_zealand text(was:localized:in) oceania -western_europe text(is:localized:in) europe -eastern_africa text(was:present:in) africa -western_africa text(is:present:in) africa -eastern_europe text(is:still:in) europe -central_america text(was:still:in) americas -northern_america text(was:currently:in) americas -south-eastern_asia text(is:currently:in) asia -southern_africa text(is:placed:in) africa -eastern_asia text(was:placed:in) asia -northern_africa text(can:be:found:in) africa -melanesia text(was:situated:in) oceania -micronesia text(is:situated:in) oceania -central_asia text(is:located:in) asia -central_europe text(was:located:in) europe \ No newline at end of file +france text(is:a:neighboring:country:of) italy +france text(was:a:neighboring:country:of) andorra +france text(was:adjacent:to) switzerland +france text(is:adjacent:to) monaco +france text(was:a:neighbor:of) belgium +france text(is:a:neighbor:of) spain +mongolia text(is:sited:in) eastern_asia +mongolia text(is:placed:in) asia +mongolia text(is:a:neighboring:state:to) china +mongolia text(was:a:neighboring:state:to) russia +lithuania text(was:placed:in) northern_europe +lithuania text(was:localized:in) europe +lithuania text(borders:with) poland +lithuania text(neighbors:withborders) latvia +lithuania text(neighbors) belarus +lithuania text(is:butted:against) russia +cayman_islands text(is:localized:in) caribbean +cayman_islands text(was:present:in) americas +saint_lucia text(is:present:in) caribbean +saint_lucia text(is:still:in) americas +curaçao text(was:still:in) caribbean +curaçao text(was:currently:in) americas +caribbean text(is:currently:in) americas +southern_asia text(was:situated:in) asia +middle_africa text(is:situated:in) africa +northern_europe text(is:located:in) europe +southern_europe text(was:located:in) europe +western_asia text(could:be:found:in) asia +south_america text(can:be:found:in) americas +polynesia text(was:positioned:in) oceania +australia_and_new_zealand text(is:positioned:in) oceania +western_europe text(was:sited:in) europe +eastern_africa text(is:sited:in) africa +western_africa text(is:placed:in) africa +eastern_europe text(was:placed:in) europe +central_america text(was:localized:in) americas +northern_america text(is:localized:in) americas +south-eastern_asia text(was:present:in) asia +southern_africa text(is:present:in) africa +eastern_asia text(is:still:in) asia +northern_africa text(was:still:in) africa +melanesia text(was:currently:in) oceania +micronesia text(is:currently:in) oceania +central_asia text(was:situated:in) asia +central_europe text(is:situated:in) europe \ No newline at end of file diff --git a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_relation2text_traintest.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_relation2text_traintest.tsv new file mode 100644 index 0000000..b5a2883 --- /dev/null +++ b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_relation2text_traintest.tsv @@ -0,0 +1,1063 @@ +palau text(is:positioned:in) micronesia +palau text(was:localized:in) oceania +maldives text(is:localized:in) southern_asia +maldives text(was:present:in) asia +brunei text(is:present:in) south-eastern_asia +brunei text(is:still:in) asia +brunei text(was:a:neighboring:country:of) malaysia +japan text(was:still:in) eastern_asia +japan text(was:currently:in) asia +netherlands text(was:a:neighbor:of) belgium +turkey text(is:a:neighbor:of) armenia +turkey text(is:a:neighboring:state:to) azerbaijan +turkey text(was:a:neighboring:state:to) iran +turkey text(borders:with) greece +turkey text(neighbors:withborders) georgia +angola text(is:currently:in) middle_africa +angola text(was:situated:in) africa +angola text(neighbors) dr_congo +angola text(is:butted:against) namibia +angola text(was:butted:against) republic_of_the_congo +armenia text(is:situated:in) western_asia +armenia text(is:located:in) asia +armenia text(is:a:neighboring:country:of) georgia +armenia text(was:a:neighboring:country:of) azerbaijan +armenia text(was:a:neighbor:of) iran +armenia text(is:a:neighbor:of) turkey +antigua_and_barbuda text(was:located:in) caribbean +antigua_and_barbuda text(could:be:found:in) americas +swaziland text(can:be:found:in) southern_africa +swaziland text(was:positioned:in) africa +swaziland text(is:a:neighboring:state:to) south_africa +swaziland text(was:a:neighboring:state:to) mozambique +wallis_and_futuna text(is:positioned:in) polynesia +wallis_and_futuna text(was:localized:in) oceania +uruguay text(is:localized:in) south_america +uruguay text(was:present:in) americas +uruguay text(borders:with) argentina +uruguay text(neighbors:withborders) brazil +cyprus text(is:present:in) eastern_europe +cyprus text(is:still:in) europe +cyprus text(neighbors) united_kingdom +ireland text(was:still:in) northern_europe +ireland text(was:currently:in) europe +ireland text(is:butted:against) united_kingdom +burundi text(is:currently:in) eastern_africa +burundi text(was:situated:in) africa +burundi text(was:butted:against) dr_congo +burundi text(is:a:neighboring:country:of) rwanda +central_african_republic text(is:situated:in) middle_africa +central_african_republic text(is:located:in) africa +central_african_republic text(was:a:neighboring:country:of) chad +central_african_republic text(was:a:neighbor:of) republic_of_the_congo +central_african_republic text(is:a:neighbor:of) dr_congo +central_african_republic text(is:a:neighboring:state:to) south_sudan +central_african_republic text(was:a:neighboring:state:to) cameroon +tonga text(was:located:in) polynesia +tonga text(could:be:found:in) oceania +ivory_coast text(can:be:found:in) western_africa +ivory_coast text(was:positioned:in) africa +ivory_coast text(borders:with) liberia +ivory_coast text(neighbors:withborders) mali +ivory_coast text(neighbors) guinea +sierra_leone text(is:butted:against) liberia +sierra_leone text(was:butted:against) guinea +mayotte text(is:positioned:in) eastern_africa +mayotte text(was:localized:in) africa +poland text(is:a:neighboring:country:of) ukraine +poland text(was:a:neighboring:country:of) slovakia +poland text(was:a:neighbor:of) belarus +poland text(is:a:neighbor:of) russia +poland text(is:a:neighboring:state:to) lithuania +uzbekistan text(is:localized:in) central_asia +uzbekistan text(was:present:in) asia +uzbekistan text(was:a:neighboring:state:to) afghanistan +uzbekistan text(borders:with) turkmenistan +uzbekistan text(neighbors:withborders) kyrgyzstan +uzbekistan text(neighbors) tajikistan +turks_and_caicos_islands text(is:present:in) caribbean +turks_and_caicos_islands text(is:still:in) americas +new_caledonia text(was:still:in) melanesia +new_caledonia text(was:currently:in) oceania +pakistan text(is:butted:against) china +pakistan text(was:butted:against) afghanistan +pakistan text(is:a:neighboring:country:of) iran +pakistan text(was:a:neighboring:country:of) india +argentina text(is:currently:in) south_america +argentina text(was:situated:in) americas +argentina text(was:a:neighbor:of) bolivia +argentina text(is:a:neighbor:of) chile +argentina text(is:a:neighboring:state:to) brazil +argentina text(was:a:neighboring:state:to) paraguay +argentina text(borders:with) uruguay +cuba text(is:situated:in) caribbean +cuba text(is:located:in) americas +serbia text(neighbors:withborders) macedonia +serbia text(neighbors) montenegro +serbia text(is:butted:against) bosnia_and_herzegovina +serbia text(was:butted:against) croatia +serbia text(is:a:neighboring:country:of) romania +vietnam text(was:located:in) south-eastern_asia +vietnam text(could:be:found:in) asia +vietnam text(was:a:neighboring:country:of) cambodia +vietnam text(was:a:neighbor:of) laos +vietnam text(is:a:neighbor:of) china +niue text(can:be:found:in) polynesia +niue text(was:positioned:in) oceania +canada text(is:positioned:in) northern_america +canada text(was:localized:in) americas +slovakia text(is:a:neighboring:state:to) ukraine +slovakia text(was:a:neighboring:state:to) poland +slovakia text(borders:with) austria +mozambique text(neighbors:withborders) swaziland +mozambique text(neighbors) malawi +mozambique text(is:butted:against) south_africa +aruba text(is:localized:in) caribbean +aruba text(was:present:in) americas +bolivia text(is:present:in) south_america +bolivia text(is:still:in) americas +bolivia text(was:butted:against) chile +bolivia text(is:a:neighboring:country:of) brazil +bolivia text(was:a:neighboring:country:of) paraguay +bolivia text(was:a:neighbor:of) argentina +bolivia text(is:a:neighbor:of) peru +colombia text(was:still:in) south_america +colombia text(was:currently:in) americas +colombia text(is:a:neighboring:state:to) brazil +colombia text(was:a:neighboring:state:to) peru +fiji text(is:currently:in) melanesia +fiji text(was:situated:in) oceania +republic_of_the_congo text(borders:with) gabon +republic_of_the_congo text(neighbors:withborders) dr_congo +republic_of_the_congo text(neighbors) angola +republic_of_the_congo text(is:butted:against) cameroon +republic_of_the_congo text(was:butted:against) central_african_republic +el_salvador text(is:situated:in) central_america +el_salvador text(is:located:in) americas +el_salvador text(is:a:neighboring:country:of) guatemala +el_salvador text(was:a:neighboring:country:of) honduras +madagascar text(was:located:in) eastern_africa +madagascar text(could:be:found:in) africa +australia text(can:be:found:in) australia_and_new_zealand +australia text(was:positioned:in) oceania +namibia text(is:positioned:in) southern_africa +namibia text(was:localized:in) africa +namibia text(was:a:neighbor:of) angola +namibia text(is:a:neighbor:of) south_africa +tuvalu text(is:localized:in) polynesia +tuvalu text(was:present:in) oceania +svalbard_and_jan_mayen text(is:present:in) northern_europe +svalbard_and_jan_mayen text(is:still:in) europe +isle_of_man text(was:still:in) northern_europe +isle_of_man text(was:currently:in) europe +vatican_city text(is:currently:in) southern_europe +vatican_city text(was:situated:in) europe +vatican_city text(is:a:neighboring:state:to) italy +british_indian_ocean_territory text(is:situated:in) eastern_africa +british_indian_ocean_territory text(is:located:in) africa +nigeria text(was:located:in) western_africa +nigeria text(could:be:found:in) africa +nigeria text(was:a:neighboring:state:to) chad +nigeria text(borders:with) niger +nigeria text(neighbors:withborders) cameroon +nigeria text(neighbors) benin +northern_mariana_islands text(can:be:found:in) micronesia +northern_mariana_islands text(was:positioned:in) oceania +belize text(is:positioned:in) central_america +belize text(was:localized:in) americas +belize text(is:butted:against) guatemala +belize text(was:butted:against) mexico +cocos_keeling_islands text(is:localized:in) australia_and_new_zealand +cocos_keeling_islands text(was:present:in) oceania +laos text(is:present:in) south-eastern_asia +laos text(is:still:in) asia +laos text(is:a:neighboring:country:of) china +laos text(was:a:neighboring:country:of) cambodia +laos text(was:a:neighbor:of) vietnam +western_sahara text(was:still:in) northern_africa +western_sahara text(was:currently:in) africa +western_sahara text(is:a:neighbor:of) algeria +western_sahara text(is:a:neighboring:state:to) mauritania +western_sahara text(was:a:neighboring:state:to) morocco +christmas_island text(is:currently:in) australia_and_new_zealand +christmas_island text(was:situated:in) oceania +são_tomé_and_príncipe text(is:situated:in) middle_africa +são_tomé_and_príncipe text(is:located:in) africa +guinea text(was:located:in) western_africa +guinea text(could:be:found:in) africa +guinea text(borders:with) sierra_leone +guinea text(neighbors:withborders) mali +guinea text(neighbors) liberia +guinea text(is:butted:against) senegal +guinea text(was:butted:against) ivory_coast +costa_rica text(can:be:found:in) central_america +costa_rica text(was:positioned:in) americas +malta text(is:positioned:in) southern_europe +malta text(was:localized:in) europe +portugal text(is:localized:in) southern_europe +portugal text(was:present:in) europe +romania text(is:present:in) eastern_europe +romania text(is:still:in) europe +romania text(is:a:neighboring:country:of) ukraine +romania text(was:a:neighboring:country:of) moldova +romania text(was:a:neighbor:of) serbia +san_marino text(was:still:in) southern_europe +san_marino text(was:currently:in) europe +san_marino text(is:a:neighbor:of) italy +mauritania text(is:currently:in) western_africa +mauritania text(was:situated:in) africa +mauritania text(is:a:neighboring:state:to) algeria +mauritania text(was:a:neighboring:state:to) mali +mauritania text(borders:with) western_sahara +mauritania text(neighbors:withborders) senegal +trinidad_and_tobago text(is:situated:in) caribbean +trinidad_and_tobago text(is:located:in) americas +bahrain text(was:located:in) western_asia +bahrain text(could:be:found:in) asia +south_georgia text(can:be:found:in) south_america +south_georgia text(was:positioned:in) americas +iceland text(is:positioned:in) northern_europe +iceland text(was:localized:in) europe +dr_congo text(is:localized:in) middle_africa +dr_congo text(was:present:in) africa +dr_congo text(neighbors) uganda +dr_congo text(is:butted:against) republic_of_the_congo +dr_congo text(was:butted:against) central_african_republic +dr_congo text(is:a:neighboring:country:of) angola +dr_congo text(was:a:neighboring:country:of) rwanda +dr_congo text(was:a:neighbor:of) south_sudan +dr_congo text(is:a:neighbor:of) burundi +seychelles text(is:present:in) eastern_africa +seychelles text(is:still:in) africa +kyrgyzstan text(is:a:neighboring:state:to) china +kyrgyzstan text(was:a:neighboring:state:to) tajikistan +kyrgyzstan text(borders:with) uzbekistan +faroe_islands text(was:still:in) northern_europe +faroe_islands text(was:currently:in) europe +jamaica text(is:currently:in) caribbean +jamaica text(was:situated:in) americas +american_samoa text(is:situated:in) polynesia +american_samoa text(is:located:in) oceania +lesotho text(was:located:in) southern_africa +lesotho text(could:be:found:in) africa +lesotho text(neighbors:withborders) south_africa +sri_lanka text(neighbors) india +belgium text(can:be:found:in) western_europe +belgium text(was:positioned:in) europe +belgium text(is:butted:against) luxembourg +belgium text(was:butted:against) france +belgium text(is:a:neighboring:country:of) netherlands +qatar text(is:positioned:in) western_asia +qatar text(was:localized:in) asia +solomon_islands text(is:localized:in) melanesia +solomon_islands text(was:present:in) oceania +india text(is:present:in) southern_asia +india text(is:still:in) asia +india text(was:a:neighboring:country:of) afghanistan +india text(was:a:neighbor:of) bangladesh +india text(is:a:neighbor:of) china +india text(is:a:neighboring:state:to) nepal +india text(was:a:neighboring:state:to) pakistan +india text(borders:with) sri_lanka +morocco text(neighbors:withborders) algeria +morocco text(neighbors) western_sahara +kenya text(was:still:in) eastern_africa +kenya text(was:currently:in) africa +kenya text(is:butted:against) uganda +kenya text(was:butted:against) somalia +kenya text(is:a:neighboring:country:of) south_sudan +kenya text(was:a:neighboring:country:of) ethiopia +south_sudan text(is:currently:in) middle_africa +south_sudan text(was:situated:in) africa +south_sudan text(was:a:neighbor:of) uganda +south_sudan text(is:a:neighbor:of) dr_congo +south_sudan text(is:a:neighboring:state:to) kenya +south_sudan text(was:a:neighboring:state:to) central_african_republic +south_sudan text(borders:with) ethiopia +tajikistan text(is:situated:in) central_asia +tajikistan text(is:located:in) asia +tajikistan text(neighbors:withborders) china +tajikistan text(neighbors) kyrgyzstan +tajikistan text(is:butted:against) afghanistan +tajikistan text(was:butted:against) uzbekistan +marshall_islands text(was:located:in) micronesia +marshall_islands text(could:be:found:in) oceania +cameroon text(can:be:found:in) middle_africa +cameroon text(was:positioned:in) africa +cameroon text(is:a:neighboring:country:of) chad +cameroon text(was:a:neighboring:country:of) republic_of_the_congo +cameroon text(was:a:neighbor:of) gabon +cameroon text(is:a:neighbor:of) equatorial_guinea +cameroon text(is:a:neighboring:state:to) central_african_republic +cameroon text(was:a:neighboring:state:to) nigeria +nauru text(is:positioned:in) micronesia +nauru text(was:localized:in) oceania +chad text(is:localized:in) middle_africa +chad text(was:present:in) africa +chad text(borders:with) libya +chad text(neighbors:withborders) niger +chad text(neighbors) south_sudan +chad text(is:butted:against) cameroon +chad text(was:butted:against) central_african_republic +chad text(is:a:neighboring:country:of) nigeria +vanuatu text(is:present:in) melanesia +vanuatu text(is:still:in) oceania +cape_verde text(was:still:in) western_africa +cape_verde text(was:currently:in) africa +falkland_islands text(is:currently:in) south_america +falkland_islands text(was:situated:in) americas +liberia text(is:situated:in) western_africa +liberia text(is:located:in) africa +liberia text(was:a:neighboring:country:of) ivory_coast +liberia text(was:a:neighbor:of) sierra_leone +liberia text(is:a:neighbor:of) guinea +cambodia text(was:located:in) south-eastern_asia +cambodia text(could:be:found:in) asia +cambodia text(is:a:neighboring:state:to) vietnam +cambodia text(was:a:neighboring:state:to) laos +comoros text(can:be:found:in) eastern_africa +comoros text(was:positioned:in) africa +guam text(is:positioned:in) micronesia +guam text(was:localized:in) oceania +bahamas text(is:localized:in) caribbean +bahamas text(was:present:in) americas +lebanon text(is:present:in) western_asia +lebanon text(is:still:in) asia +lebanon text(borders:with) israel +sint_maarten text(was:still:in) caribbean +sint_maarten text(was:currently:in) americas +ethiopia text(is:currently:in) eastern_africa +ethiopia text(was:situated:in) africa +ethiopia text(neighbors:withborders) somalia +ethiopia text(neighbors) kenya +ethiopia text(is:butted:against) south_sudan +united_states_virgin_islands text(is:situated:in) caribbean +united_states_virgin_islands text(is:located:in) americas +libya text(was:located:in) northern_africa +libya text(could:be:found:in) africa +libya text(was:butted:against) chad +libya text(is:a:neighboring:country:of) tunisia +libya text(was:a:neighboring:country:of) niger +libya text(was:a:neighbor:of) algeria +french_polynesia text(can:be:found:in) polynesia +french_polynesia text(was:positioned:in) oceania +somalia text(is:positioned:in) eastern_africa +somalia text(was:localized:in) africa +somalia text(is:a:neighbor:of) kenya +somalia text(is:a:neighboring:state:to) ethiopia +saint_barthélemy text(is:localized:in) caribbean +saint_barthélemy text(was:present:in) americas +russia text(is:present:in) eastern_europe +russia text(is:still:in) europe +russia text(was:a:neighboring:state:to) ukraine +russia text(borders:with) belarus +russia text(neighbors:withborders) china +russia text(neighbors) poland +russia text(is:butted:against) azerbaijan +russia text(was:butted:against) lithuania +russia text(is:a:neighboring:country:of) estonia +russia text(was:a:neighboring:country:of) north_korea +russia text(was:a:neighbor:of) finland +russia text(is:a:neighbor:of) latvia +russia text(is:a:neighboring:state:to) georgia +new_zealand text(was:still:in) australia_and_new_zealand +new_zealand text(was:currently:in) oceania +papua_new_guinea text(is:currently:in) melanesia +papua_new_guinea text(was:situated:in) oceania +north_korea text(was:a:neighboring:state:to) china +north_korea text(borders:with) south_korea +north_korea text(neighbors:withborders) russia +latvia text(is:situated:in) northern_europe +latvia text(is:located:in) europe +latvia text(neighbors) lithuania +latvia text(is:butted:against) belarus +latvia text(was:butted:against) russia +latvia text(is:a:neighboring:country:of) estonia +oman text(was:located:in) western_asia +oman text(could:be:found:in) asia +oman text(was:a:neighboring:country:of) yemen +oman text(was:a:neighbor:of) united_arab_emirates +saint_pierre_and_miquelon text(can:be:found:in) northern_america +saint_pierre_and_miquelon text(was:positioned:in) americas +martinique text(is:positioned:in) caribbean +martinique text(was:localized:in) americas +united_kingdom text(is:localized:in) northern_europe +united_kingdom text(was:present:in) europe +united_kingdom text(is:a:neighbor:of) ireland +israel text(is:present:in) western_asia +israel text(is:still:in) asia +israel text(is:a:neighboring:state:to) lebanon +jersey text(was:still:in) northern_europe +jersey text(was:currently:in) europe +pitcairn_islands text(is:currently:in) polynesia +pitcairn_islands text(was:situated:in) oceania +togo text(is:situated:in) western_africa +togo text(is:located:in) africa +togo text(was:a:neighboring:state:to) benin +kiribati text(was:located:in) micronesia +kiribati text(could:be:found:in) oceania +iran text(can:be:found:in) southern_asia +iran text(was:positioned:in) asia +iran text(borders:with) afghanistan +iran text(neighbors:withborders) turkmenistan +iran text(neighbors) turkey +iran text(is:butted:against) armenia +iran text(was:butted:against) azerbaijan +iran text(is:a:neighboring:country:of) pakistan +dominican_republic text(is:positioned:in) caribbean +dominican_republic text(was:localized:in) americas +dominican_republic text(was:a:neighboring:country:of) haiti +bermuda text(is:localized:in) northern_america +bermuda text(was:present:in) americas +chile text(was:a:neighbor:of) argentina +chile text(is:a:neighbor:of) bolivia +chile text(is:a:neighboring:state:to) peru +saint_kitts_and_nevis text(is:present:in) caribbean +saint_kitts_and_nevis text(is:still:in) americas +equatorial_guinea text(was:still:in) middle_africa +equatorial_guinea text(was:currently:in) africa +equatorial_guinea text(was:a:neighboring:state:to) gabon +equatorial_guinea text(borders:with) cameroon +niger text(is:currently:in) western_africa +niger text(was:situated:in) africa +niger text(neighbors:withborders) chad +niger text(neighbors) libya +niger text(is:butted:against) benin +niger text(was:butted:against) mali +niger text(is:a:neighboring:country:of) algeria +niger text(was:a:neighboring:country:of) nigeria +anguilla text(is:situated:in) caribbean +anguilla text(is:located:in) americas +rwanda text(was:located:in) eastern_africa +rwanda text(could:be:found:in) africa +rwanda text(was:a:neighbor:of) burundi +rwanda text(is:a:neighbor:of) uganda +rwanda text(is:a:neighboring:state:to) dr_congo +united_arab_emirates text(can:be:found:in) western_asia +united_arab_emirates text(was:positioned:in) asia +united_arab_emirates text(was:a:neighboring:state:to) oman +estonia text(is:positioned:in) northern_europe +estonia text(was:localized:in) europe +estonia text(borders:with) latvia +estonia text(neighbors:withborders) russia +greece text(is:localized:in) southern_europe +greece text(was:present:in) europe +greece text(neighbors) albania +greece text(is:butted:against) macedonia +greece text(was:butted:against) turkey +senegal text(is:present:in) western_africa +senegal text(is:still:in) africa +senegal text(is:a:neighboring:country:of) mauritania +senegal text(was:a:neighboring:country:of) mali +senegal text(was:a:neighbor:of) gambia +senegal text(is:a:neighbor:of) guinea +guadeloupe text(was:still:in) caribbean +guadeloupe text(was:currently:in) americas +british_virgin_islands text(is:currently:in) caribbean +british_virgin_islands text(was:situated:in) americas +cook_islands text(is:situated:in) polynesia +cook_islands text(is:located:in) oceania +uganda text(was:located:in) eastern_africa +uganda text(could:be:found:in) africa +uganda text(is:a:neighboring:state:to) dr_congo +uganda text(was:a:neighboring:state:to) kenya +uganda text(borders:with) south_sudan +uganda text(neighbors:withborders) rwanda +macedonia text(can:be:found:in) southern_europe +macedonia text(was:positioned:in) europe +macedonia text(neighbors) greece +macedonia text(is:butted:against) albania +macedonia text(was:butted:against) serbia +tunisia text(is:positioned:in) northern_africa +tunisia text(was:localized:in) africa +tunisia text(is:a:neighboring:country:of) libya +tunisia text(was:a:neighboring:country:of) algeria +brazil text(is:localized:in) south_america +brazil text(was:present:in) americas +brazil text(was:a:neighbor:of) bolivia +brazil text(is:a:neighbor:of) colombia +brazil text(is:a:neighboring:state:to) paraguay +brazil text(was:a:neighboring:state:to) uruguay +brazil text(borders:with) argentina +brazil text(neighbors:withborders) peru +paraguay text(is:present:in) south_america +paraguay text(is:still:in) americas +paraguay text(neighbors) argentina +paraguay text(is:butted:against) brazil +paraguay text(was:butted:against) bolivia +finland text(was:still:in) northern_europe +finland text(was:currently:in) europe +finland text(is:a:neighboring:country:of) sweden +finland text(was:a:neighboring:country:of) russia +montenegro text(is:currently:in) southern_europe +montenegro text(was:situated:in) europe +montenegro text(was:a:neighbor:of) bosnia_and_herzegovina +montenegro text(is:a:neighbor:of) croatia +montenegro text(is:a:neighboring:state:to) serbia +montenegro text(was:a:neighboring:state:to) albania +peru text(is:situated:in) south_america +peru text(is:located:in) americas +peru text(borders:with) bolivia +peru text(neighbors:withborders) chile +peru text(neighbors) brazil +peru text(is:butted:against) colombia +montserrat text(was:located:in) caribbean +montserrat text(could:be:found:in) americas +ukraine text(can:be:found:in) eastern_europe +ukraine text(was:positioned:in) europe +ukraine text(was:butted:against) slovakia +ukraine text(is:a:neighboring:country:of) belarus +ukraine text(was:a:neighboring:country:of) poland +ukraine text(was:a:neighbor:of) russia +ukraine text(is:a:neighbor:of) moldova +ukraine text(is:a:neighboring:state:to) romania +dominica text(is:positioned:in) caribbean +dominica text(was:localized:in) americas +turkmenistan text(was:a:neighboring:state:to) afghanistan +turkmenistan text(borders:with) uzbekistan +turkmenistan text(neighbors:withborders) iran +guernsey text(is:localized:in) northern_europe +guernsey text(was:present:in) europe +gibraltar text(is:present:in) southern_europe +gibraltar text(is:still:in) europe +switzerland text(was:still:in) western_europe +switzerland text(was:currently:in) europe +switzerland text(neighbors) italy +switzerland text(is:butted:against) austria +switzerland text(was:butted:against) france +switzerland text(is:a:neighboring:country:of) liechtenstein +austria text(is:currently:in) western_europe +austria text(was:situated:in) europe +austria text(was:a:neighboring:country:of) slovakia +austria text(was:a:neighbor:of) slovenia +austria text(is:a:neighbor:of) italy +austria text(is:a:neighboring:state:to) switzerland +austria text(was:a:neighboring:state:to) liechtenstein +malawi text(is:situated:in) eastern_africa +malawi text(is:located:in) africa +malawi text(borders:with) mozambique +hong_kong text(neighbors:withborders) china +liechtenstein text(was:located:in) western_europe +liechtenstein text(could:be:found:in) europe +liechtenstein text(neighbors) switzerland +liechtenstein text(is:butted:against) austria +barbados text(can:be:found:in) caribbean +barbados text(was:positioned:in) americas +georgia text(is:positioned:in) western_asia +georgia text(was:localized:in) asia +georgia text(was:butted:against) armenia +georgia text(is:a:neighboring:country:of) azerbaijan +georgia text(was:a:neighboring:country:of) russia +georgia text(was:a:neighbor:of) turkey +albania text(is:localized:in) southern_europe +albania text(was:present:in) europe +albania text(is:a:neighbor:of) montenegro +albania text(is:a:neighboring:state:to) macedonia +albania text(was:a:neighboring:state:to) greece +kuwait text(is:present:in) western_asia +kuwait text(is:still:in) asia +south_africa text(was:still:in) southern_africa +south_africa text(was:currently:in) africa +south_africa text(borders:with) mozambique +south_africa text(neighbors:withborders) swaziland +south_africa text(neighbors) namibia +south_africa text(is:butted:against) lesotho +haiti text(is:currently:in) caribbean +haiti text(was:situated:in) americas +haiti text(was:butted:against) dominican_republic +afghanistan text(is:situated:in) southern_asia +afghanistan text(is:located:in) asia +afghanistan text(is:a:neighboring:country:of) turkmenistan +afghanistan text(was:a:neighboring:country:of) china +afghanistan text(was:a:neighbor:of) tajikistan +afghanistan text(is:a:neighbor:of) uzbekistan +afghanistan text(is:a:neighboring:state:to) iran +afghanistan text(was:a:neighboring:state:to) pakistan +singapore text(was:located:in) south-eastern_asia +singapore text(could:be:found:in) asia +benin text(can:be:found:in) western_africa +benin text(was:positioned:in) africa +benin text(borders:with) niger +benin text(neighbors:withborders) togo +benin text(neighbors) nigeria +åland_islands text(is:positioned:in) northern_europe +åland_islands text(was:localized:in) europe +croatia text(is:localized:in) southern_europe +croatia text(was:present:in) europe +croatia text(is:butted:against) slovenia +croatia text(was:butted:against) bosnia_and_herzegovina +croatia text(is:a:neighboring:country:of) serbia +croatia text(was:a:neighboring:country:of) montenegro +sweden text(is:present:in) northern_europe +sweden text(is:still:in) europe +sweden text(was:a:neighbor:of) finland +mexico text(is:a:neighbor:of) belize +mexico text(is:a:neighboring:state:to) guatemala +greenland text(was:still:in) northern_america +greenland text(was:currently:in) americas +norfolk_island text(is:currently:in) australia_and_new_zealand +norfolk_island text(was:situated:in) oceania +nepal text(is:situated:in) southern_asia +nepal text(is:located:in) asia +nepal text(was:a:neighboring:state:to) china +nepal text(borders:with) india +guatemala text(neighbors:withborders) belize +guatemala text(neighbors) el_salvador +guatemala text(is:butted:against) mexico +guatemala text(was:butted:against) honduras +south_korea text(was:located:in) eastern_asia +south_korea text(could:be:found:in) asia +south_korea text(is:a:neighboring:country:of) north_korea +moldova text(can:be:found:in) eastern_europe +moldova text(was:positioned:in) europe +moldova text(was:a:neighboring:country:of) ukraine +moldova text(was:a:neighbor:of) romania +mauritius text(is:positioned:in) eastern_africa +mauritius text(was:localized:in) africa +belarus text(is:a:neighbor:of) ukraine +belarus text(is:a:neighboring:state:to) poland +belarus text(was:a:neighboring:state:to) lithuania +belarus text(borders:with) russia +belarus text(neighbors:withborders) latvia +bangladesh text(neighbors) india +malaysia text(is:localized:in) south-eastern_asia +malaysia text(was:present:in) asia +malaysia text(is:butted:against) brunei +bosnia_and_herzegovina text(is:present:in) southern_europe +bosnia_and_herzegovina text(is:still:in) europe +bosnia_and_herzegovina text(was:butted:against) serbia +bosnia_and_herzegovina text(is:a:neighboring:country:of) croatia +bosnia_and_herzegovina text(was:a:neighboring:country:of) montenegro +luxembourg text(was:still:in) western_europe +luxembourg text(was:currently:in) europe +luxembourg text(was:a:neighbor:of) belgium +luxembourg text(is:a:neighbor:of) france +italy text(is:currently:in) southern_europe +italy text(was:situated:in) europe +italy text(is:a:neighboring:state:to) slovenia +italy text(was:a:neighboring:state:to) switzerland +italy text(borders:with) austria +italy text(neighbors:withborders) france +italy text(neighbors) vatican_city +italy text(is:butted:against) san_marino +azerbaijan text(is:situated:in) western_asia +azerbaijan text(is:located:in) asia +azerbaijan text(was:butted:against) turkey +azerbaijan text(is:a:neighboring:country:of) armenia +azerbaijan text(was:a:neighboring:country:of) russia +azerbaijan text(was:a:neighbor:of) iran +azerbaijan text(is:a:neighbor:of) georgia +honduras text(was:located:in) central_america +honduras text(could:be:found:in) americas +honduras text(is:a:neighboring:state:to) guatemala +honduras text(was:a:neighboring:state:to) el_salvador +mali text(can:be:found:in) western_africa +mali text(was:positioned:in) africa +mali text(borders:with) guinea +mali text(neighbors:withborders) mauritania +mali text(neighbors) niger +mali text(is:butted:against) senegal +mali text(was:butted:against) algeria +mali text(is:a:neighboring:country:of) ivory_coast +taiwan text(is:positioned:in) eastern_asia +taiwan text(was:localized:in) asia +algeria text(is:localized:in) northern_africa +algeria text(was:present:in) africa +algeria text(was:a:neighboring:country:of) libya +algeria text(was:a:neighbor:of) tunisia +algeria text(is:a:neighbor:of) mauritania +algeria text(is:a:neighboring:state:to) morocco +algeria text(was:a:neighboring:state:to) niger +algeria text(borders:with) mali +algeria text(neighbors:withborders) western_sahara +yemen text(is:present:in) western_asia +yemen text(is:still:in) asia +yemen text(neighbors) oman +puerto_rico text(was:still:in) caribbean +puerto_rico text(was:currently:in) americas +saint_vincent_and_the_grenadines text(is:currently:in) caribbean +saint_vincent_and_the_grenadines text(was:situated:in) americas +grenada text(is:situated:in) caribbean +grenada text(is:located:in) americas +tokelau text(was:located:in) polynesia +tokelau text(could:be:found:in) oceania +slovenia text(can:be:found:in) southern_europe +slovenia text(was:positioned:in) europe +slovenia text(is:butted:against) austria +slovenia text(was:butted:against) croatia +slovenia text(is:a:neighboring:country:of) italy +philippines text(is:positioned:in) south-eastern_asia +philippines text(was:localized:in) asia +micronesia text(is:localized:in) micronesia +micronesia text(was:present:in) oceania +china text(is:present:in) eastern_asia +china text(is:still:in) asia +china text(was:a:neighboring:country:of) afghanistan +china text(was:a:neighbor:of) india +china text(is:a:neighbor:of) kyrgyzstan +china text(is:a:neighboring:state:to) tajikistan +china text(was:a:neighboring:state:to) laos +china text(borders:with) russia +china text(neighbors:withborders) north_korea +china text(neighbors) pakistan +china text(is:butted:against) hong_kong +china text(was:butted:against) vietnam +gabon text(was:still:in) middle_africa +gabon text(was:currently:in) africa +gabon text(is:a:neighboring:country:of) equatorial_guinea +gabon text(was:a:neighboring:country:of) republic_of_the_congo +gabon text(was:a:neighbor:of) cameroon +united_states_minor_outlying_islands text(is:currently:in) northern_america +united_states_minor_outlying_islands text(was:situated:in) americas +andorra text(is:situated:in) southern_europe +andorra text(is:located:in) europe +andorra text(is:a:neighbor:of) france +samoa text(was:located:in) polynesia +samoa text(could:be:found:in) oceania +gambia text(can:be:found:in) western_africa +gambia text(was:positioned:in) africa +gambia text(is:a:neighboring:state:to) senegal +palestine text(is:positioned:in) western_asia +palestine text(was:localized:in) asia +palestine text(was:a:neighboring:state:to) israel +réunion text(is:localized:in) eastern_africa +réunion text(was:present:in) africa +france text(is:present:in) western_europe +france text(is:still:in) europe +france text(borders:with) luxembourg +france text(neighbors:withborders) italy +france text(neighbors) andorra +france text(is:butted:against) switzerland +france text(was:butted:against) belgium +lithuania text(was:still:in) northern_europe +lithuania text(was:currently:in) europe +lithuania text(is:a:neighboring:country:of) poland +lithuania text(was:a:neighboring:country:of) latvia +lithuania text(was:a:neighbor:of) belarus +lithuania text(is:a:neighbor:of) russia +cayman_islands text(is:currently:in) caribbean +cayman_islands text(was:situated:in) americas +saint_lucia text(is:situated:in) caribbean +saint_lucia text(is:located:in) americas +curaçao text(was:located:in) caribbean +curaçao text(could:be:found:in) americas +caribbean text(can:be:found:in) americas +southern_asia text(was:positioned:in) asia +middle_africa text(is:positioned:in) africa +northern_europe text(was:localized:in) europe +southern_europe text(is:localized:in) europe +western_asia text(was:present:in) asia +south_america text(is:present:in) americas +polynesia text(is:still:in) oceania +australia_and_new_zealand text(was:still:in) oceania +western_europe text(was:currently:in) europe +eastern_africa text(is:currently:in) africa +western_africa text(was:situated:in) africa +eastern_europe text(is:situated:in) europe +central_america text(is:located:in) americas +northern_america text(was:located:in) americas +south-eastern_asia text(could:be:found:in) asia +southern_africa text(can:be:found:in) africa +eastern_asia text(was:positioned:in) asia +northern_africa text(is:positioned:in) africa +melanesia text(was:localized:in) oceania +micronesia text(is:localized:in) oceania +central_asia text(was:present:in) asia +central_europe text(is:present:in) europe +netherlands text(was:a:neighboring:country:of) germany +turkey text(was:a:neighbor:of) bulgaria +turkey text(is:a:neighbor:of) iraq +turkey text(is:a:neighboring:state:to) syria +angola text(was:a:neighboring:state:to) zambia +zambia text(is:positioned:in) eastern_africa +zambia text(was:localized:in) africa +zambia text(borders:with) tanzania +zambia text(neighbors:withborders) mozambique +zambia text(neighbors) dr_congo +zambia text(is:butted:against) angola +zambia text(was:butted:against) botswana +zambia text(is:a:neighboring:country:of) zimbabwe +zambia text(was:a:neighboring:country:of) namibia +zambia text(was:a:neighbor:of) malawi +burundi text(is:a:neighbor:of) tanzania +central_african_republic text(is:a:neighboring:state:to) sudan +ivory_coast text(was:a:neighboring:state:to) burkina_faso +ivory_coast text(borders:with) ghana +poland text(neighbors:withborders) germany +poland text(neighbors) czechia +kazakhstan text(is:localized:in) central_asia +kazakhstan text(was:present:in) asia +kazakhstan text(is:butted:against) turkmenistan +kazakhstan text(was:butted:against) china +kazakhstan text(is:a:neighboring:country:of) kyrgyzstan +kazakhstan text(was:a:neighboring:country:of) uzbekistan +kazakhstan text(was:a:neighbor:of) russia +uzbekistan text(is:a:neighbor:of) kazakhstan +serbia text(is:a:neighboring:state:to) kosovo +serbia text(was:a:neighboring:state:to) hungary +serbia text(borders:with) bulgaria +czechia text(is:present:in) eastern_europe +czechia text(is:still:in) europe +czechia text(neighbors:withborders) germany +czechia text(neighbors) austria +czechia text(is:butted:against) poland +czechia text(was:butted:against) slovakia +nicaragua text(is:a:neighboring:country:of) honduras +nicaragua text(was:a:neighboring:country:of) costa_rica +canada text(was:a:neighbor:of) united_states +slovakia text(is:a:neighbor:of) hungary +slovakia text(is:a:neighboring:state:to) czechia +mozambique text(was:a:neighboring:state:to) tanzania +mozambique text(borders:with) zimbabwe +mozambique text(neighbors:withborders) zambia +colombia text(neighbors) ecuador +colombia text(is:butted:against) panama +colombia text(was:butted:against) venezuela +saudi_arabia text(is:a:neighboring:country:of) qatar +saudi_arabia text(was:a:neighboring:country:of) united_arab_emirates +saudi_arabia text(was:a:neighbor:of) jordan +saudi_arabia text(is:a:neighbor:of) yemen +saudi_arabia text(is:a:neighboring:state:to) oman +saudi_arabia text(was:a:neighboring:state:to) kuwait +saudi_arabia text(borders:with) iraq +namibia text(neighbors:withborders) zambia +namibia text(neighbors) botswana +guyana text(is:butted:against) brazil +guyana text(was:butted:against) suriname +guyana text(is:a:neighboring:country:of) venezuela +germany text(was:a:neighboring:country:of) denmark +germany text(was:a:neighbor:of) netherlands +germany text(is:a:neighbor:of) poland +germany text(is:a:neighboring:state:to) luxembourg +germany text(was:a:neighboring:state:to) belgium +germany text(borders:with) switzerland +germany text(neighbors:withborders) austria +germany text(neighbors) france +germany text(is:butted:against) czechia +burkina_faso text(was:butted:against) togo +burkina_faso text(is:a:neighboring:country:of) benin +burkina_faso text(was:a:neighboring:country:of) niger +burkina_faso text(was:a:neighbor:of) ghana +burkina_faso text(is:a:neighbor:of) mali +burkina_faso text(is:a:neighboring:state:to) ivory_coast +tanzania text(was:a:neighboring:state:to) uganda +tanzania text(borders:with) mozambique +tanzania text(neighbors:withborders) dr_congo +tanzania text(neighbors) kenya +tanzania text(is:butted:against) rwanda +tanzania text(was:butted:against) zambia +tanzania text(is:a:neighboring:country:of) malawi +tanzania text(was:a:neighboring:country:of) burundi +norway text(was:a:neighbor:of) sweden +norway text(is:a:neighbor:of) finland +norway text(is:a:neighboring:state:to) russia +laos text(was:a:neighboring:state:to) myanmar +laos text(borders:with) thailand +suriname text(was:still:in) south_america +suriname text(was:currently:in) americas +suriname text(neighbors:withborders) brazil +suriname text(neighbors) french_guiana +suriname text(is:butted:against) guyana +egypt text(was:butted:against) libya +egypt text(is:a:neighboring:country:of) israel +egypt text(was:a:neighboring:country:of) sudan +bulgaria text(was:a:neighbor:of) macedonia +bulgaria text(is:a:neighbor:of) turkey +bulgaria text(is:a:neighboring:state:to) greece +bulgaria text(was:a:neighboring:state:to) serbia +bulgaria text(borders:with) romania +guinea text(neighbors:withborders) guinea-bissau +spain text(neighbors) morocco +spain text(is:butted:against) gibraltar +spain text(was:butted:against) andorra +spain text(is:a:neighboring:country:of) france +spain text(was:a:neighboring:country:of) portugal +costa_rica text(was:a:neighbor:of) panama +costa_rica text(is:a:neighbor:of) nicaragua +portugal text(is:a:neighboring:state:to) spain +romania text(was:a:neighboring:state:to) hungary +romania text(borders:with) bulgaria +myanmar text(neighbors:withborders) india +myanmar text(neighbors) bangladesh +myanmar text(is:butted:against) china +myanmar text(was:butted:against) laos +myanmar text(is:a:neighboring:country:of) thailand +iraq text(was:a:neighboring:country:of) turkey +iraq text(was:a:neighbor:of) saudi_arabia +iraq text(is:a:neighbor:of) iran +iraq text(is:a:neighboring:state:to) jordan +iraq text(was:a:neighboring:state:to) kuwait +iraq text(borders:with) syria +dr_congo text(neighbors:withborders) tanzania +dr_congo text(neighbors) zambia +kyrgyzstan text(is:butted:against) kazakhstan +botswana text(is:currently:in) southern_africa +botswana text(was:situated:in) africa +botswana text(was:butted:against) zimbabwe +botswana text(is:a:neighboring:country:of) namibia +botswana text(was:a:neighboring:country:of) zambia +botswana text(was:a:neighbor:of) south_africa +belgium text(is:a:neighbor:of) germany +qatar text(is:a:neighboring:state:to) saudi_arabia +syria text(is:situated:in) western_asia +syria text(is:located:in) asia +syria text(was:a:neighboring:state:to) israel +syria text(borders:with) turkey +syria text(neighbors:withborders) jordan +syria text(neighbors) lebanon +syria text(is:butted:against) iraq +india text(was:butted:against) bhutan +india text(is:a:neighboring:country:of) myanmar +morocco text(was:a:neighboring:country:of) spain +kenya text(was:a:neighbor:of) tanzania +south_sudan text(is:a:neighbor:of) sudan +ghana text(is:a:neighboring:state:to) burkina_faso +ghana text(was:a:neighboring:state:to) ivory_coast +ghana text(borders:with) togo +thailand text(neighbors:withborders) cambodia +thailand text(neighbors) myanmar +thailand text(is:butted:against) laos +thailand text(was:butted:against) malaysia +sudan text(is:a:neighboring:country:of) chad +sudan text(was:a:neighboring:country:of) libya +sudan text(was:a:neighbor:of) south_sudan +sudan text(is:a:neighbor:of) eritrea +sudan text(is:a:neighboring:state:to) central_african_republic +sudan text(was:a:neighboring:state:to) egypt +sudan text(borders:with) ethiopia +cambodia text(neighbors:withborders) thailand +zimbabwe text(neighbors) zambia +zimbabwe text(is:butted:against) south_africa +zimbabwe text(was:butted:against) botswana +zimbabwe text(is:a:neighboring:country:of) mozambique +lebanon text(was:a:neighboring:country:of) syria +sint_maarten text(was:a:neighbor:of) saint_martin +ethiopia text(is:a:neighbor:of) eritrea +ethiopia text(is:a:neighboring:state:to) djibouti +ethiopia text(was:a:neighboring:state:to) sudan +guinea-bissau text(was:located:in) western_africa +guinea-bissau text(could:be:found:in) africa +guinea-bissau text(borders:with) guinea +guinea-bissau text(neighbors:withborders) senegal +libya text(neighbors) egypt +libya text(is:butted:against) sudan +bhutan text(can:be:found:in) southern_asia +bhutan text(was:positioned:in) asia +bhutan text(was:butted:against) china +bhutan text(is:a:neighboring:country:of) india +macau text(is:positioned:in) eastern_asia +macau text(was:localized:in) asia +macau text(was:a:neighboring:country:of) china +somalia text(was:a:neighbor:of) djibouti +russia text(is:a:neighbor:of) kazakhstan +russia text(is:a:neighboring:state:to) norway +russia text(was:a:neighboring:state:to) mongolia +panama text(is:localized:in) central_america +panama text(was:present:in) americas +panama text(borders:with) costa_rica +panama text(neighbors:withborders) colombia +papua_new_guinea text(neighbors) indonesia +oman text(is:butted:against) saudi_arabia +israel text(was:butted:against) egypt +israel text(is:a:neighboring:country:of) jordan +israel text(was:a:neighboring:country:of) syria +togo text(was:a:neighbor:of) burkina_faso +togo text(is:a:neighbor:of) ghana +iran text(is:a:neighboring:state:to) iraq +saint_martin text(is:present:in) caribbean +saint_martin text(is:still:in) americas +saint_martin text(was:a:neighboring:state:to) sint_maarten +denmark text(borders:with) germany +kosovo text(was:still:in) eastern_europe +kosovo text(was:currently:in) europe +kosovo text(neighbors:withborders) serbia +kosovo text(neighbors) albania +kosovo text(is:butted:against) macedonia +kosovo text(was:butted:against) montenegro +eritrea text(is:a:neighboring:country:of) djibouti +eritrea text(was:a:neighboring:country:of) sudan +eritrea text(was:a:neighbor:of) ethiopia +niger text(is:a:neighbor:of) burkina_faso +rwanda text(is:a:neighboring:state:to) tanzania +united_arab_emirates text(was:a:neighboring:state:to) saudi_arabia +greece text(borders:with) bulgaria +senegal text(neighbors:withborders) guinea-bissau +monaco text(neighbors) france +djibouti text(is:butted:against) eritrea +djibouti text(was:butted:against) somalia +djibouti text(is:a:neighboring:country:of) ethiopia +indonesia text(was:a:neighboring:country:of) papua_new_guinea +indonesia text(was:a:neighbor:of) timor-leste +indonesia text(is:a:neighbor:of) malaysia +uganda text(is:a:neighboring:state:to) tanzania +macedonia text(was:a:neighboring:state:to) kosovo +macedonia text(borders:with) bulgaria +ecuador text(neighbors:withborders) peru +ecuador text(neighbors) colombia +brazil text(is:butted:against) french_guiana +brazil text(was:butted:against) suriname +brazil text(is:a:neighboring:country:of) venezuela +brazil text(was:a:neighboring:country:of) guyana +finland text(was:a:neighbor:of) norway +jordan text(is:a:neighbor:of) saudi_arabia +jordan text(is:a:neighboring:state:to) israel +jordan text(was:a:neighboring:state:to) iraq +jordan text(borders:with) syria +timor-leste text(neighbors:withborders) indonesia +montenegro text(neighbors) kosovo +peru text(is:butted:against) ecuador +ukraine text(was:butted:against) hungary +turkmenistan text(is:a:neighboring:country:of) kazakhstan +gibraltar text(was:a:neighboring:country:of) spain +switzerland text(was:a:neighbor:of) germany +austria text(is:a:neighbor:of) germany +austria text(is:a:neighboring:state:to) hungary +austria text(was:a:neighboring:state:to) czechia +hungary text(borders:with) ukraine +hungary text(neighbors:withborders) slovakia +hungary text(neighbors) slovenia +hungary text(is:butted:against) croatia +hungary text(was:butted:against) austria +hungary text(is:a:neighboring:country:of) serbia +hungary text(was:a:neighboring:country:of) romania +malawi text(was:a:neighbor:of) zambia +malawi text(is:a:neighbor:of) tanzania +albania text(is:a:neighboring:state:to) kosovo +kuwait text(was:a:neighboring:state:to) saudi_arabia +kuwait text(borders:with) iraq +south_africa text(neighbors:withborders) botswana +south_africa text(neighbors) zimbabwe +benin text(is:butted:against) burkina_faso +croatia text(was:butted:against) hungary +sweden text(is:a:neighboring:country:of) norway +mexico text(was:a:neighboring:country:of) united_states +bangladesh text(was:a:neighbor:of) myanmar +malaysia text(is:a:neighbor:of) thailand +malaysia text(is:a:neighboring:state:to) indonesia +luxembourg text(was:a:neighboring:state:to) germany +honduras text(borders:with) nicaragua +mali text(neighbors:withborders) burkina_faso +french_guiana text(neighbors) brazil +french_guiana text(is:butted:against) suriname +yemen text(was:butted:against) saudi_arabia +venezuela text(is:a:neighboring:country:of) brazil +venezuela text(was:a:neighboring:country:of) guyana +venezuela text(was:a:neighbor:of) colombia +united_states text(is:a:neighbor:of) canada +united_states text(is:a:neighboring:state:to) mexico +slovenia text(was:a:neighboring:state:to) hungary +china text(borders:with) bhutan +china text(neighbors:withborders) macau +china text(neighbors) kazakhstan +china text(is:butted:against) myanmar +china text(was:butted:against) mongolia +andorra text(is:a:neighboring:country:of) spain +palestine text(was:a:neighboring:country:of) jordan +palestine text(was:a:neighbor:of) egypt +france text(is:a:neighbor:of) germany +france text(is:a:neighboring:state:to) monaco +france text(was:a:neighboring:state:to) spain +mongolia text(is:currently:in) eastern_asia +mongolia text(was:situated:in) asia +mongolia text(borders:with) china +mongolia text(neighbors:withborders) russia \ No newline at end of file diff --git a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_country2text.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_country2text.tsv deleted file mode 100644 index b37c3b8..0000000 --- a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_country2text.tsv +++ /dev/null @@ -1,979 +0,0 @@ -text(بالاو) locatedIn text(Micronesia) -text(Palau) locatedIn text(大洋洲) -text(मालदीव) locatedIn text(南亚) -text(Maldivas) locatedIn text(آسيا) -text(ब्रुनेई) locatedIn text(Zuidoost-Azië) -text(Brunéi) locatedIn text(एशिया) -text(Brunei) neighborOf text(Maleisië) -text(日本) locatedIn text(شرق:آسيا) -text(Japan) locatedIn text(Azië) -text(Nederland) neighborOf text(ألمانيا) -text(नीदरलैण्ड) neighborOf text(बेल्जियम) -text(Turkije) neighborOf text(أرمينيا) -text(土耳其) neighborOf text(أذربيجان) -text(تركيا) neighborOf text(伊朗) -text(Turquía) neighborOf text(Greece) -text(Turkey) neighborOf text(جورجيا) -text(तुर्की) neighborOf text(保加利亚) -text(Turkije) neighborOf text(Irak) -text(土耳其) neighborOf text(Syrië) -text(अंगोला) locatedIn text(Centraal-Afrika) -text(Angola) neighborOf text(刚果民主共和国) -text(Angola) neighborOf text(Namibia) -text(安哥拉) neighborOf text(贊比亞) -text(أنغولا) neighborOf text(कांगो:गणराज्य) -text(Armenië) locatedIn text(Asia:Occidental) -text(Armenia) neighborOf text(Georgië) -text(आर्मीनिया) neighborOf text(Azerbeidzjan) -text(亞美尼亞) neighborOf text(Iran) -text(Armenia) neighborOf text(تركيا) -text(أنتيغوا:وباربودا) locatedIn text(加勒比地区) -text(Antigua:and:Barbuda) locatedIn text(美洲) -text(Esuatini) locatedIn text(إفريقيا:الجنوبية) -text(Swaziland) neighborOf text(南非) -text(एस्वातीनी) neighborOf text(موزمبيق) -text(واليس:وفوتونا) locatedIn text(Polynesia) -text(瓦利斯和富圖納) locatedIn text(أوقيانوسيا) -text(उरुग्वे) locatedIn text(South:America) -text(Uruguay) locatedIn text(महाअमेरिका) -text(Uruguay) neighborOf text(阿根廷) -text(Uruguay) neighborOf text(Brasil) -text(Zambia) locatedIn text(África:Oriental) -text(Zambia) neighborOf text(तंज़ानिया) -text(زامبيا) neighborOf text(Mozambique) -text(ज़ाम्बिया) neighborOf text(جمهورية:الكونغو:الديمقراطية) -text(Zambia) neighborOf text(Angola) -text(贊比亞) neighborOf text(波札那) -text(Zambia) neighborOf text(Zimbabue) -text(Zambia) neighborOf text(ناميبيا) -text(زامبيا) neighborOf text(मलावी) -text(塞浦路斯) locatedIn text(Eastern:Europe) -text(Chipre) locatedIn text(Europa) -text(Cyprus) neighborOf text(المملكة:المتحدة) -text(Verenigd:Koninkrijk) locatedIn text(Noord-Europa) -text(यूनाइटेड:किंगडम) locatedIn text(यूरोप) -text(المملكة:المتحدة) neighborOf text(United:Kingdom) -text(Burundi) locatedIn text(पूर्वी:अफ्रीका) -text(بوروندي) neighborOf text(कांगो:लोकतान्त्रिक:गणराज्य) -text(蒲隆地) neighborOf text(रवाण्डा) -text(Burundi) neighborOf text(坦桑尼亞) -text(Central:African:Republic) locatedIn text(África:Central) -text(Centraal-Afrikaanse:Republiek) neighborOf text(चाड) -text(República:Centroafricana) neighborOf text(República:del:Congo) -text(मध्य:अफ़्रीकी:गणराज्य) neighborOf text(República:Democrática:del:Congo) -text(中非共和國) neighborOf text(दक्षिण:सूडान) -text(جمهورية:إفريقيا:الوسطى) neighborOf text(喀麦隆) -text(Central:African:Republic) neighborOf text(السودان) -text(تونغا) locatedIn text(بولنيزيا) -text(Tonga) locatedIn text(Oceanía) -text(कोत:दिव्वार) locatedIn text(पश्चिमी:अफ्रीका) -text(科特迪瓦) neighborOf text(Burkina:Faso) -text(Ivoorkust) neighborOf text(घाना) -text(Costa:de:Marfil) neighborOf text(ليبيريا) -text(Ivory:Coast) neighborOf text(مالي) -text(ساحل:العاج) neighborOf text(غينيا) -text(Sierra:Leona) neighborOf text(Liberia) -text(塞拉利昂) neighborOf text(Guinea) -text(Mayotte) locatedIn text(East:Africa) -text(मेयोट) locatedIn text(अफ्रीका) -text(Polen) neighborOf text(德國) -text(波蘭) neighborOf text(युक्रेन) -text(Poland) neighborOf text(Slovakia) -text(पोलैंड) neighborOf text(白俄羅斯) -text(بولندا) neighborOf text(Russia) -text(Polonia) neighborOf text(Lituania) -text(Polen) neighborOf text(Czech:Republic) -text(कज़ाख़िस्तान) locatedIn text(آسيا:الوسطى) -text(Kazachstan) neighborOf text(Turkmenistan) -text(Kazajistán) neighborOf text(República:Popular:China) -text(哈萨克斯坦) neighborOf text(قرغيزستان) -text(Kazakhstan) neighborOf text(उज़्बेकिस्तान) -text(كازاخستان) neighborOf text(रूस) -text(Uzbekistan) locatedIn text(Central:Asia) -text(أوزبكستان) neighborOf text(أفغانستان) -text(乌兹别克斯坦) neighborOf text(तुर्कमेनिस्तान) -text(Uzbekistán) neighborOf text(कज़ाख़िस्तान) -text(Oezbekistan) neighborOf text(Kyrgyzstan) -text(उज़्बेकिस्तान) neighborOf text(Tadzjikistan) -text(جزر:توركس:وكايكوس) locatedIn text(कैरिबिया) -text(特克斯和凯科斯群岛) locatedIn text(Amerika) -text(新喀里多尼亞) locatedIn text(Melanesia) -text(Nieuw-Caledonië) locatedIn text(ओशिआनिया) -text(Pakistán) neighborOf text(चीनी:जनवादी:गणराज्य) -text(पाकिस्तान) neighborOf text(阿富汗) -text(Pakistan) neighborOf text(إيران) -text(باكستان) neighborOf text(الهند) -text(अर्जेण्टीना) locatedIn text(أمريكا:الجنوبية) -text(Argentinië) neighborOf text(Bolivia) -text(الأرجنتين) neighborOf text(Chili) -text(Argentina) neighborOf text(Brazil) -text(Argentina) neighborOf text(Paraguay) -text(阿根廷) neighborOf text(烏拉圭) -text(Cuba) locatedIn text(Caribbean) -text(क्यूबा) locatedIn text(América) -text(صربيا) neighborOf text(Macedonia:del:Norte) -text(Serbia) neighborOf text(मॉन्टेनीग्रो) -text(塞爾維亞) neighborOf text(科索沃) -text(Servië) neighborOf text(波斯尼亚和黑塞哥维那) -text(सर्बिया) neighborOf text(क्रोएशिया) -text(Serbia) neighborOf text(Hungría) -text(صربيا) neighborOf text(Bulgaria) -text(Serbia) neighborOf text(Romania) -text(Tsjechië) locatedIn text(东欧) -text(جمهورية:التشيك) neighborOf text(जर्मनी) -text(República:Checa) neighborOf text(ऑस्ट्रिया) -text(चेक:गणराज्य) neighborOf text(波蘭) -text(捷克) neighborOf text(Eslovaquia) -text(نيكاراغوا) neighborOf text(Honduras) -text(Nicaragua) neighborOf text(Costa:Rica) -text(Vietnam) locatedIn text(东南亚) -text(越南) locatedIn text(Asia) -text(فيتنام) neighborOf text(Camboya) -text(वियतनाम) neighborOf text(Laos) -text(Vietnam) neighborOf text(Volksrepubliek:China) -text(Niue) locatedIn text(पोलीनेशिया) -text(Niue) locatedIn text(Oceania) -text(कनाडा) locatedIn text(北美洲) -text(كندا) neighborOf text(Verenigde:Staten) -text(斯洛伐克) neighborOf text(أوكرانيا) -text(स्लोवाकिया) neighborOf text(Poland) -text(سلوفاكيا) neighborOf text(奧地利) -text(Slowakije) neighborOf text(المجر) -text(Slovakia) neighborOf text(Czech:Republic) -text(Mozambique) neighborOf text(Tanzania) -text(मोज़ाम्बीक) neighborOf text(Eswatini) -text(莫桑比克) neighborOf text(زيمبابوي) -text(Mozambique) neighborOf text(ज़ाम्बिया) -text(موزمبيق) neighborOf text(Malaui) -text(Mozambique) neighborOf text(दक्षिण:अफ़्रीका) -text(أروبا) locatedIn text(Caraïben) -text(अरूबा) locatedIn text(Americas) -text(Bolivia) locatedIn text(南美洲) -text(Bolivia) neighborOf text(智利) -text(बोलिविया) neighborOf text(巴西) -text(بوليفيا) neighborOf text(Paraguay) -text(玻利維亞) neighborOf text(अर्जेण्टीना) -text(Bolivia) neighborOf text(Perú) -text(Colombia) locatedIn text(América:del:Sur) -text(哥伦比亚) neighborOf text(厄瓜多尔) -text(Colombia) neighborOf text(Brazilië) -text(कोलम्बिया) neighborOf text(Panama) -text(كولومبيا) neighborOf text(فنزويلا) -text(Colombia) neighborOf text(بيرو) -text(斐濟) locatedIn text(Melanesia) -text(फ़िजी) locatedIn text(Oceanië) -text(جمهورية:الكونغو) neighborOf text(الغابون) -text(剛果共和國) neighborOf text(Congo-Kinshasa) -text(Congo-Brazzaville) neighborOf text(अंगोला) -text(Republic:of:the:Congo) neighborOf text(الكاميرون) -text(कांगो:गणराज्य) neighborOf text(Centraal-Afrikaanse:Republiek) -text(السعودية) neighborOf text(Catar) -text(सउदी:अरब) neighborOf text(संयुक्त:अरब:अमीरात) -text(Saudi:Arabia) neighborOf text(Jordan) -text(Saoedi-Arabië) neighborOf text(اليمن) -text(Arabia:Saudí) neighborOf text(Oman) -text(沙特阿拉伯) neighborOf text(科威特) -text(السعودية) neighborOf text(العراق) -text(El:Salvador) locatedIn text(Central:America) -text(अल:साल्वाडोर) neighborOf text(Guatemala) -text(السلفادور) neighborOf text(Honduras) -text(Madagascar) locatedIn text(شرق:إفريقيا) -text(Madagaskar) locatedIn text(非洲) -text(Australië) locatedIn text(nan) -text(澳大利亚) locatedIn text(大洋洲) -text(नामीबिया) locatedIn text(Zuidelijk:Afrika) -text(Namibië) locatedIn text(إفريقيا) -text(纳米比亚) neighborOf text(Zambia) -text(Namibia) neighborOf text(Angola) -text(Namibia) neighborOf text(Zuid-Afrika) -text(ناميبيا) neighborOf text(Botsuana) -text(吐瓦魯) locatedIn text(玻里尼西亞) -text(Tuvalu) locatedIn text(أوقيانوسيا) -text(سفالبارد:ويان:ماين) locatedIn text(Europa:del:Norte) -text(Svalbard:and:Jan:Mayen) locatedIn text(Europe) -text(马恩岛) locatedIn text(北歐) -text(आइल:ऑफ़:मैन) locatedIn text(Europa) -text(圭亚那) neighborOf text(ब्राज़ील) -text(Guyana) neighborOf text(سورينام) -text(غيانا) neighborOf text(委內瑞拉) -text(الفاتيكان) locatedIn text(أوروبا:الجنوبية) -text(Vatican:City) locatedIn text(أوروبا) -text(वैटिकन:नगर) neighborOf text(Italia) -text(ब्रिटिश:हिंद:महासागर:क्षेत्र) locatedIn text(Oost-Afrika) -text(إقليم:المحيط:الهندي:البريطاني) locatedIn text(Africa) -text(Nigeria) locatedIn text(West:Africa) -text(Nigeria) locatedIn text(África) -text(नाइजीरिया) neighborOf text(Chad) -text(奈及利亞) neighborOf text(尼日尔) -text(نيجيريا) neighborOf text(Kameroen) -text(Nigeria) neighborOf text(बेनिन) -text(Duitsland) neighborOf text(Dinamarca) -text(Alemania) neighborOf text(Países:Bajos) -text(Germany) neighborOf text(पोलैंड) -text(ألمانيا) neighborOf text(Luxemburgo) -text(德國) neighborOf text(Bélgica) -text(जर्मनी) neighborOf text(Suiza) -text(Duitsland) neighborOf text(Austria) -text(Alemania) neighborOf text(France) -text(Germany) neighborOf text(Tsjechië) -text(Burkina:Faso) neighborOf text(Togo) -text(بوركينا:فاسو) neighborOf text(Benin) -text(Burkina:Faso) neighborOf text(नाइजर) -text(बुर्किना:फासो) neighborOf text(Ghana) -text(布吉納法索) neighborOf text(Mali) -text(Burkina:Faso) neighborOf text(कोत:दिव्वार) -text(تنزانيا) neighborOf text(Uganda) -text(Tanzania) neighborOf text(Mozambique) -text(Tanzania) neighborOf text(Democratic:Republic:of:the:Congo) -text(तंज़ानिया) neighborOf text(Kenia) -text(坦桑尼亞) neighborOf text(Ruanda) -text(Tanzania) neighborOf text(贊比亞) -text(تنزانيا) neighborOf text(馬拉威) -text(Tanzania) neighborOf text(बुरुण्डी) -text(Northern:Mariana:Islands) locatedIn text(Micronesia) -text(北马里亚纳群岛) locatedIn text(Oceanía) -text(Belize) locatedIn text(أمريكا:الوسطى) -text(बेलीज़) neighborOf text(Guatemala) -text(Belice) neighborOf text(墨西哥) -text(नॉर्वे) neighborOf text(Zweden) -text(النرويج) neighborOf text(Finlandia) -text(Noorwegen) neighborOf text(俄罗斯) -text(islas:Cocos) locatedIn text(nan) -text(科科斯(基林)群島) locatedIn text(ओशिआनिया) -text(Laos) locatedIn text(Southeast:Asia) -text(लाओस) neighborOf text(People's:Republic:of:China) -text(Laos) neighborOf text(कम्बोडिया) -text(لاوس) neighborOf text(ميانمار) -text(老撾) neighborOf text(Vietnam) -text(Laos) neighborOf text(Thailand) -text(Sahrawi:Arab:Democratic:Republic) locatedIn text(उत्तर:अफ़्रीका) -text(República:Árabe:Saharaui:Democrática) neighborOf text(Argelia) -text(सहरावी:अरब:जनतांत्रिक:गणराज्य) neighborOf text(मॉरीतानिया) -text(撒拉威阿拉伯民主共和國) neighborOf text(Marruecos) -text(Suriname) locatedIn text(दक्षिण:अमेरिका) -text(सूरीनाम) neighborOf text(البرازيل) -text(Suriname) neighborOf text(غويانا:الفرنسية) -text(Surinam) neighborOf text(Guyana) -text(جزيرة:عيد:الميلاد) locatedIn text(Australië:en:Nieuw-Zeeland) -text(क्रिसमस:द्वीप) locatedIn text(Oceania) -text(圣多美和普林西比) locatedIn text(وسط:إفريقيا) -text(Sao:Tomé:en:Principe) locatedIn text(Afrika) -text(Egipto) neighborOf text(Libië) -text(Egypte) neighborOf text(Israël) -text(埃及) neighborOf text(Sudan) -text(Bulgaria) neighborOf text(北马其顿) -text(Bulgarije) neighborOf text(Turquía) -text(बुल्गारिया) neighborOf text(यूनान) -text(بلغاريا) neighborOf text(塞爾維亞) -text(保加利亚) neighborOf text(羅馬尼亞) -text(गिनी) locatedIn text(西非) -text(Guinee) neighborOf text(غينيا:بيساو) -text(几内亚) neighborOf text(सिएरा:लियोन) -text(Guinea) neighborOf text(马里) -text(غينيا) neighborOf text(Liberia) -text(Guinea) neighborOf text(Senegal) -text(गिनी) neighborOf text(科特迪瓦) -text(Spanje) neighborOf text(Morocco) -text(إسبانيا) neighborOf text(Gibraltar) -text(España) neighborOf text(Andorra) -text(स्पेन) neighborOf text(Francia) -text(西班牙) neighborOf text(Portugal) -text(كوستاريكا) locatedIn text(Centraal-Amerika) -text(Costa:Rica) neighborOf text(بنما) -text(哥斯达黎加) neighborOf text(Nicaragua) -text(馬耳他) locatedIn text(दक्षिणी:यूरोप) -text(Malta) locatedIn text(欧洲) -text(Portugal) locatedIn text(Southern:Europe) -text(पुर्तगाल) neighborOf text(Spain) -text(Roemenië) locatedIn text(أوروبا:الشرقية) -text(رومانيا) neighborOf text(Oekraïne) -text(रोमानिया) neighborOf text(Hungary) -text(Rumania) neighborOf text(मोल्डोवा) -text(Romania) neighborOf text(Bulgaria) -text(羅馬尼亞) neighborOf text(Servië) -text(San:Marino) locatedIn text(Zuid-Europa) -text(San:Marino) locatedIn text(Europa) -text(सान:मारिनो) neighborOf text(इटली) -text(Mauritanië) locatedIn text(África:Occidental) -text(毛里塔尼亞) locatedIn text(अफ्रीका) -text(Mauritania) neighborOf text(الجزائر) -text(Mauritania) neighborOf text(माली) -text(موريتانيا) neighborOf text(Sahrawi:Arabische:Democratische:Republiek) -text(मॉरीतानिया) neighborOf text(Senegal) -text(千里達及托巴哥) locatedIn text(Caribe) -text(Trinidad:and:Tobago) locatedIn text(أمريكتان) -text(Bahrein) locatedIn text(西亚) -text(البحرين) locatedIn text(Asia) -text(緬甸) neighborOf text(India) -text(Birmania) neighborOf text(Bangladés) -text(Myanmar) neighborOf text(中华人民共和国) -text(म्यान्मार) neighborOf text(Laos) -text(Myanmar) neighborOf text(تايلاند) -text(इराक) neighborOf text(Turkey) -text(Irak) neighborOf text(सउदी:अरब) -text(伊拉克) neighborOf text(Iran) -text(Iraq) neighborOf text(Jordania) -text(Irak) neighborOf text(Kuwait) -text(العراق) neighborOf text(Syria) -text(Islas:Georgias:del:Sur:y:Sandwich:del:Sur) locatedIn text(Zuid-Amerika) -text(दक्षिण:जॉर्जिया:एवं:दक्षिण:सैंडविच:द्वीप:समूह) locatedIn text(美洲) -text(आइसलैण्ड) locatedIn text(أوروبا:الشمالية) -text(Iceland) locatedIn text(यूरोप) -text(刚果民主共和国) locatedIn text(Central:Africa) -text(جمهورية:الكونغو:الديمقراطية) neighborOf text(Uganda) -text(कांगो:लोकतान्त्रिक:गणराज्य) neighborOf text(Tanzania) -text(República:Democrática:del:Congo) neighborOf text(República:del:Congo) -text(Congo-Kinshasa) neighborOf text(República:Centroafricana) -text(Democratic:Republic:of:the:Congo) neighborOf text(Angola) -text(刚果民主共和国) neighborOf text(Rwanda) -text(جمهورية:الكونغو:الديمقراطية) neighborOf text(Sudán:del:Sur) -text(कांगो:लोकतान्त्रिक:गणराज्य) neighborOf text(Zambia) -text(República:Democrática:del:Congo) neighborOf text(Burundi) -text(Seychelles) locatedIn text(东部非洲) -text(سيشل) locatedIn text(非洲) -text(किर्गिज़स्तान) neighborOf text(الصين) -text(Kirgizië) neighborOf text(Kazachstan) -text(Kirguistán) neighborOf text(طاجيكستان) -text(吉尔吉斯斯坦) neighborOf text(Uzbekistan) -text(Botswana) locatedIn text(Southern:Africa) -text(बोत्सवाना) neighborOf text(津巴布韦) -text(بوتسوانا) neighborOf text(नामीबिया) -text(Botswana) neighborOf text(Zambia) -text(波札那) neighborOf text(South:Africa) -text(Islas:Feroe) locatedIn text(Northern:Europe) -text(Faroe:Islands) locatedIn text(Europe) -text(جامايكا) locatedIn text(الكاريبي) -text(牙買加) locatedIn text(महाअमेरिका) -text(美屬薩摩亞) locatedIn text(Polynesië) -text(American:Samoa) locatedIn text(Oceanië) -text(ليسوتو) locatedIn text(दक्षिणी:अफ्रीका) -text(Lesotho) locatedIn text(إفريقيا) -text(莱索托) neighborOf text(Sudáfrica) -text(Sri:Lanka) neighborOf text(भारत) -text(بلجيكا) locatedIn text(Western:Europe) -text(België) neighborOf text(ألمانيا) -text(Belgium) neighborOf text(Luxemburg) -text(比利時) neighborOf text(فرنسا) -text(बेल्जियम) neighborOf text(荷蘭) -text(क़तर) locatedIn text(West:Asia) -text(Qatar) neighborOf text(Saudi:Arabia) -text(सोलोमन:द्वीपसमूह) locatedIn text(ميلانيزيا) -text(Salomonseilanden) locatedIn text(大洋洲) -text(敘利亞) locatedIn text(غرب:آسيا) -text(سوريا) neighborOf text(إسرائيل) -text(सीरिया) neighborOf text(तुर्की) -text(Siria) neighborOf text(الأردن) -text(Syrië) neighborOf text(黎巴嫩) -text(Syria) neighborOf text(इराक) -text(印度) locatedIn text(Asia:del:Sur) -text(India) neighborOf text(अफ़्ग़ानिस्तान) -text(India) neighborOf text(Bhutan) -text(الهند) neighborOf text(孟加拉國) -text(India) neighborOf text(República:Popular:China) -text(भारत) neighborOf text(نيبال) -text(印度) neighborOf text(ميانمار) -text(India) neighborOf text(巴基斯坦) -text(India) neighborOf text(سريلانكا) -text(المغرب) neighborOf text(अल्जीरिया) -text(मोरक्को) neighborOf text(Spanje) -text(摩洛哥) neighborOf text(الجمهورية:العربية:الصحراوية:الديمقراطية) -text(Kenia) locatedIn text(África:Oriental) -text(Kenya) neighborOf text(أوغندا) -text(कीनिया) neighborOf text(तंज़ानिया) -text(肯尼亚) neighborOf text(Somalië) -text(كينيا) neighborOf text(南蘇丹) -text(Kenia) neighborOf text(Etiopía) -text(Zuid-Soedan) locatedIn text(मध्य:अफ्रीका) -text(جنوب:السودان) neighborOf text(Oeganda) -text(South:Sudan) neighborOf text(Congo-Kinshasa) -text(दक्षिण:सूडान) neighborOf text(Kenia) -text(Sudán:del:Sur) neighborOf text(मध्य:अफ़्रीकी:गणराज्य) -text(南蘇丹) neighborOf text(Sudán) -text(Zuid-Soedan) neighborOf text(إثيوبيا) -text(Ghana) neighborOf text(Burkina:Faso) -text(迦納) neighborOf text(Ivoorkust) -text(غانا) neighborOf text(多哥) -text(ताजीकिस्तान) locatedIn text(Centraal-Azië) -text(Tayikistán) neighborOf text(चीनी:जनवादी:गणराज्य) -text(塔吉克斯坦) neighborOf text(قرغيزستان) -text(Tajikistan) neighborOf text(Afghanistan) -text(Tadzjikistan) neighborOf text(أوزبكستان) -text(馬紹爾群島) locatedIn text(ميكرونيسيا) -text(मार्शल:द्वीपसमूह) locatedIn text(أوقيانوسيا) -text(Cameroon) locatedIn text(中部非洲) -text(Camerún) neighborOf text(Tsjaad) -text(कैमरुन) neighborOf text(جمهورية:الكونغو) -text(喀麦隆) neighborOf text(गबॉन) -text(الكاميرون) neighborOf text(赤道几内亚) -text(Kameroen) neighborOf text(中非共和國) -text(Cameroon) neighborOf text(Nigeria) -text(Nauru) locatedIn text(माइक्रोनीशिया) -text(Nauru) locatedIn text(Oceanía) -text(Thailand) neighborOf text(Cambodja) -text(थाईलैंड) neighborOf text(緬甸) -text(泰國) neighborOf text(लाओस) -text(Tailandia) neighborOf text(Malaysia) -text(सूडान) neighborOf text(Chad) -text(苏丹) neighborOf text(ليبيا) -text(Soedan) neighborOf text(جنوب:السودان) -text(السودان) neighborOf text(Eritrea) -text(Sudan) neighborOf text(جمهورية:إفريقيا:الوسطى) -text(Sudán) neighborOf text(مصر) -text(सूडान) neighborOf text(埃塞俄比亚) -text(تشاد) locatedIn text(Centraal-Afrika) -text(乍得) neighborOf text(利比亞) -text(चाड) neighborOf text(Níger) -text(Chad) neighborOf text(South:Sudan) -text(Tsjaad) neighborOf text(Camerún) -text(Chad) neighborOf text(Central:African:Republic) -text(تشاد) neighborOf text(Nigeria) -text(Vanuatu) locatedIn text(मॅलानिशिया) -text(Vanuatu) locatedIn text(ओशिआनिया) -text(केप:वर्दे) locatedIn text(West-Afrika) -text(Cabo:Verde) locatedIn text(Africa) -text(Falkland:Islands) locatedIn text(South:America) -text(Falklandeilanden) locatedIn text(Amerika) -text(Liberia) locatedIn text(غرب:إفريقيا) -text(लाइबेरिया) neighborOf text(Costa:de:Marfil) -text(利比里亞) neighborOf text(سيراليون) -text(ليبيريا) neighborOf text(Guinee) -text(كمبوديا) locatedIn text(جنوب:شرق:آسيا) -text(柬埔寨) neighborOf text(Vietnam) -text(Cambodia) neighborOf text(Thailand) -text(Camboya) neighborOf text(Laos) -text(ज़िम्बाब्वे) neighborOf text(زامبيا) -text(Zimbabwe) neighborOf text(جنوب:إفريقيا) -text(Zimbabwe) neighborOf text(Botsuana) -text(Zimbabue) neighborOf text(मोज़ाम्बीक) -text(Comoren) locatedIn text(पूर्वी:अफ्रीका) -text(葛摩) locatedIn text(África) -text(Guam) locatedIn text(Micronesië) -text(Guam) locatedIn text(Oceania) -text(Bahama's) locatedIn text(加勒比地区) -text(Bahamas) locatedIn text(América) -text(लेबनॉन) locatedIn text(पश्चिमी:एशिया) -text(Libanon) locatedIn text(亞洲) -text(Líbano) neighborOf text(以色列) -text(Lebanon) neighborOf text(敘利亞) -text(سانت:مارتن) locatedIn text(कैरिबिया) -text(San:Martín) locatedIn text(Americas) -text(Sint:Maarten) neighborOf text(San:Martín) -text(इथियोपिया) locatedIn text(East:Africa) -text(Ethiopië) neighborOf text(Somalia) -text(Ethiopia) neighborOf text(Kenya) -text(Etiopía) neighborOf text(Eritrea) -text(إثيوبيا) neighborOf text(दक्षिण:सूडान) -text(埃塞俄比亚) neighborOf text(जिबूती) -text(इथियोपिया) neighborOf text(苏丹) -text(United:States:Virgin:Islands) locatedIn text(Caribbean) -text(Amerikaanse:Maagdeneilanden) locatedIn text(أمريكتان) -text(Guinea-Bisáu) locatedIn text(पश्चिमी:अफ्रीका) -text(Guinea-Bissau) locatedIn text(Afrika) -text(畿內亞比紹) neighborOf text(几内亚) -text(Guinee-Bissau) neighborOf text(塞内加尔) -text(Libya) locatedIn text(Norte:de:África) -text(Libia) neighborOf text(乍得) -text(लीबिया) neighborOf text(تونس) -text(Libië) neighborOf text(النيجر) -text(ليبيا) neighborOf text(Algerije) -text(利比亞) neighborOf text(Egypt) -text(Libya) neighborOf text(Soedan) -text(Bhutan) locatedIn text(Zuid-Azië) -text(भूटान) locatedIn text(آسيا) -text(不丹) neighborOf text(Volksrepubliek:China) -text(بوتان) neighborOf text(الهند) -text(Macau) locatedIn text(East:Asia) -text(Macao) locatedIn text(एशिया) -text(澳門) neighborOf text(People's:Republic:of:China) -text(Polinesia:Francesa) locatedIn text(Polinesia) -text(بولنيزيا:الفرنسية) locatedIn text(Oceanië) -text(الصومال) locatedIn text(شرق:إفريقيا) -text(सोमालिया) neighborOf text(吉布提) -text(Somalia) neighborOf text(कीनिया) -text(索馬里) neighborOf text(Ethiopië) -text(聖巴泰勒米) locatedIn text(Caraïben) -text(San:Bartolomé) locatedIn text(美洲) -text(روسيا) locatedIn text(Europa:Oriental) -text(Rusia) neighborOf text(Ukraine) -text(Rusland) neighborOf text(बेलारूस) -text(Russia) neighborOf text(中华人民共和国) -text(रूस) neighborOf text(Kazajistán) -text(俄罗斯) neighborOf text(挪威) -text(روسيا) neighborOf text(بولندا) -text(Rusia) neighborOf text(Azerbaiyán) -text(Rusland) neighborOf text(Litouwen) -text(Russia) neighborOf text(إستونيا) -text(रूस) neighborOf text(Corea:del:Norte) -text(俄罗斯) neighborOf text(Finland) -text(روسيا) neighborOf text(Mongolia) -text(Rusia) neighborOf text(拉脫維亞) -text(Rusland) neighborOf text(Georgia) -text(न्यूज़ीलैंड) locatedIn text(nan) -text(Nueva:Zelanda) locatedIn text(大洋洲) -text(Panamá) locatedIn text(América:Central) -text(Panama) locatedIn text(महाअमेरिका) -text(巴拿馬) neighborOf text(Costa:Rica) -text(पनामा) neighborOf text(Colombia) -text(بابوا:غينيا:الجديدة) locatedIn text(美拉尼西亞) -text(Papoea-Nieuw-Guinea) neighborOf text(Indonesië) -text(उत्तर:कोरिया) neighborOf text(الصين) -text(كوريا:الشمالية) neighborOf text(South:Korea) -text(朝鮮民主主義人民共和國) neighborOf text(Russia) -text(Letonia) locatedIn text(उत्तरी:यूरोप) -text(लातविया) neighborOf text(लिथुआनिया) -text(Letland) neighborOf text(Bielorrusia) -text(لاتفيا) neighborOf text(रूस) -text(Latvia) neighborOf text(Estonia) -text(سلطنة:عمان) locatedIn text(Zuidwest-Azië) -text(ओमान) neighborOf text(Saoedi-Arabië) -text(阿曼) neighborOf text(Yemen) -text(Oman) neighborOf text(阿拉伯联合酋长国) -text(Saint-Pierre:en:Miquelon) locatedIn text(أمريكا:الشمالية) -text(Saint:Pierre:and:Miquelon) locatedIn text(Amerika) -text(Martinica) locatedIn text(Caribe) -text(Martinique) locatedIn text(América) -text(英国) locatedIn text(Noord-Europa) -text(Verenigd:Koninkrijk) locatedIn text(Europa) -text(यूनाइटेड:किंगडम) neighborOf text(United:Kingdom) -text(Israel) locatedIn text(Asia:Occidental) -text(Israel) neighborOf text(لبنان) -text(इज़राइल) neighborOf text(मिस्र) -text(Israël) neighborOf text(約旦) -text(إسرائيل) neighborOf text(سوريا) -text(جيرزي) locatedIn text(Europa:del:Norte) -text(जर्सी) locatedIn text(أوروبا) -text(Pitcairn:Islands) locatedIn text(Polynesia) -text(皮特凯恩群岛) locatedIn text(أوقيانوسيا) -text(टोगो) locatedIn text(West:Africa) -text(توغو) neighborOf text(بوركينا:فاسو) -text(Togo) neighborOf text(Ghana) -text(Togo) neighborOf text(貝南) -text(किरिबाती) locatedIn text(密克羅尼西亞群島) -text(吉里巴斯) locatedIn text(Oceanía) -text(ईरान) locatedIn text(جنوب:آسيا) -text(Irán) neighborOf text(Afghanistan) -text(伊朗) neighborOf text(Turkmenistán) -text(Iran) neighborOf text(Turkije) -text(إيران) neighborOf text(أرمينيا) -text(Iran) neighborOf text(Azerbaijan) -text(ईरान) neighborOf text(Pakistan) -text(Irán) neighborOf text(Irak) -text(Sint-Maarten) locatedIn text(الكاريبي) -text(सेंट:मार्टिन:की:सामूहिकता) locatedIn text(Americas) -text(تجمع:سان:مارتين) neighborOf text(सेंट:मार्टिन) -text(Dominicaanse:Republiek) locatedIn text(加勒比地区) -text(डोमिनिकन:गणराज्य) locatedIn text(أمريكتان) -text(República:Dominicana) neighborOf text(Haiti) -text(डेनमार्क) neighborOf text(德國) -text(Bermuda) locatedIn text(América:del:Norte) -text(Bermudas) locatedIn text(美洲) -text(تشيلي) neighborOf text(Argentinië) -text(चिली) neighborOf text(Bolivia) -text(Chile) neighborOf text(Peru) -text(Kosovo) locatedIn text(पूर्वी:यूरोप) -text(कोसोवो:गणराज्य) neighborOf text(सर्बिया) -text(Kosovo) neighborOf text(Albanië) -text(Kosovo) neighborOf text(Noord-Macedonië) -text(كوسوفو) neighborOf text(Montenegro) -text(Saint:Kitts:and:Nevis) locatedIn text(कैरिबिया) -text(سانت:كيتس:ونيفيس) locatedIn text(महाअमेरिका) -text(इरित्रिया) neighborOf text(Djibouti) -text(厄立特里亞) neighborOf text(السودان) -text(Eritrea) neighborOf text(Ethiopia) -text(भूमध्यरेखीय:गिनी) locatedIn text(África:Central) -text(Guinea:Ecuatorial) locatedIn text(अफ्रीका) -text(Equatorial:Guinea) neighborOf text(Gabon) -text(غينيا:الاستوائية) neighborOf text(कैमरुन) -text(Niger) locatedIn text(西非) -text(Niger) neighborOf text(चाड) -text(尼日尔) neighborOf text(Libia) -text(नाइजर) neighborOf text(Burkina:Faso) -text(Níger) neighborOf text(بنين) -text(النيجر) neighborOf text(Mali) -text(Niger) neighborOf text(Algeria) -text(Niger) neighborOf text(नाइजीरिया) -text(安圭拉) locatedIn text(Caribbean) -text(Anguilla) locatedIn text(Amerika) -text(رواندا) locatedIn text(Oost-Afrika) -text(卢旺达) neighborOf text(Burundi) -text(Rwanda) neighborOf text(坦桑尼亞) -text(रवाण्डा) neighborOf text(烏干達) -text(Ruanda) neighborOf text(Democratic:Republic:of:the:Congo) -text(الإمارات:العربية:المتحدة) locatedIn text(西亚) -text(Verenigde:Arabische:Emiraten) neighborOf text(Omán) -text(United:Arab:Emirates) neighborOf text(Arabia:Saudí) -text(Estland) locatedIn text(北歐) -text(एस्टोनिया) locatedIn text(欧洲) -text(Estonia) neighborOf text(拉脫維亞) -text(愛沙尼亞) neighborOf text(俄罗斯) -text(Griekenland) locatedIn text(Europa:del:Sur) -text(Grecia) neighborOf text(Bulgaria) -text(希腊) neighborOf text(Albania) -text(اليونان) neighborOf text(North:Macedonia) -text(Greece) neighborOf text(土耳其) -text(Senegal) locatedIn text(África:Occidental) -text(सेनेगल) locatedIn text(非洲) -text(السنغال) neighborOf text(गिनी-बिसाऊ) -text(Senegal) neighborOf text(Mauritanië) -text(Senegal) neighborOf text(Mali) -text(塞内加尔) neighborOf text(Gambia) -text(Senegal) neighborOf text(Guinea) -text(غوادلوب) locatedIn text(Caraïben) -text(瓜德羅普) locatedIn text(América) -text(Monaco) neighborOf text(फ़्रान्स) -text(Djibouti) neighborOf text(إرتريا) -text(Yibuti) neighborOf text(Somalië) -text(جيبوتي) neighborOf text(Etiopía) -text(इंडोनेशिया) neighborOf text(Papua:New:Guinea) -text(Indonesia) neighborOf text(Oost-Timor) -text(印度尼西亚) neighborOf text(Malasia) -text(Islas:Vírgenes:Británicas) locatedIn text(Caribe) -text(ब्रिटिश:वर्जिन:द्वीपसमूह) locatedIn text(Americas) -text(库克群岛) locatedIn text(بولنيزيا) -text(Cookeilanden) locatedIn text(ओशिआनिया) -text(युगाण्डा) locatedIn text(东部非洲) -text(Uganda) neighborOf text(Tanzania) -text(Uganda) neighborOf text(刚果民主共和国) -text(أوغندا) neighborOf text(肯尼亚) -text(Oeganda) neighborOf text(Sudán:del:Sur) -text(烏干達) neighborOf text(Rwanda) -text(مقدونيا:الشمالية) locatedIn text(南欧) -text(उत्तर:मैसिडोनिया) neighborOf text(科索沃) -text(Macedonia:del:Norte) neighborOf text(यूनान) -text(北马其顿) neighborOf text(Albania) -text(Noord-Macedonië) neighborOf text(Serbia) -text(North:Macedonia) neighborOf text(Bulgarije) -text(Túnez) locatedIn text(شمال:إفريقيا) -text(突尼西亞) locatedIn text(إفريقيا) -text(Tunisia) neighborOf text(लीबिया) -text(ट्यूनिशिया) neighborOf text(阿爾及利亞) -text(Ecuador) neighborOf text(पेरू) -text(ईक्वाडोर) neighborOf text(哥伦比亚) -text(Brasil) locatedIn text(أمريكا:الجنوبية) -text(Brazil) neighborOf text(Bolivia) -text(巴西) neighborOf text(Colombia) -text(Brazilië) neighborOf text(巴拉圭) -text(ब्राज़ील) neighborOf text(الأوروغواي) -text(البرازيل) neighborOf text(法屬圭亞那) -text(Brasil) neighborOf text(蘇利南) -text(Brazil) neighborOf text(Venezuela) -text(巴西) neighborOf text(الأرجنتين) -text(Brazilië) neighborOf text(Guyana) -text(ब्राज़ील) neighborOf text(秘鲁) -text(पैराग्वे) locatedIn text(南美洲) -text(Paraguay) locatedIn text(أمريكتان) -text(باراغواي) neighborOf text(Argentina) -text(Paraguay) neighborOf text(البرازيل) -text(Paraguay) neighborOf text(बोलिविया) -text(芬蘭) locatedIn text(أوروبا:الشمالية) -text(فنلندا) neighborOf text(Norway) -text(Finland) neighborOf text(स्वीडन) -text(फ़िनलैण्ड) neighborOf text(روسيا) -text(Jordanië) neighborOf text(沙特阿拉伯) -text(जॉर्डन) neighborOf text(以色列) -text(Jordan) neighborOf text(伊拉克) -text(Jordania) neighborOf text(सीरिया) -text(تيمور:الشرقية) neighborOf text(إندونيسيا) -text(الجبل:الأسود) locatedIn text(أوروبا:الجنوبية) -text(蒙特內哥羅) neighborOf text(Kosovo) -text(Montenegro) neighborOf text(Bosnia:and:Herzegovina) -text(Montenegro) neighborOf text(Kroatië) -text(मॉन्टेनीग्रो) neighborOf text(صربيا) -text(Montenegro) neighborOf text(ألبانيا) -text(Peru) locatedIn text(América:del:Sur) -text(Perú) neighborOf text(الإكوادور) -text(بيرو) neighborOf text(بوليفيا) -text(Peru) neighborOf text(Chile) -text(पेरू) neighborOf text(Brasil) -text(秘鲁) neighborOf text(कोलम्बिया) -text(Montserrat) locatedIn text(الكاريبي) -text(蒙塞拉特島) locatedIn text(美洲) -text(Ucrania) locatedIn text(Oost-Europa) -text(烏克蘭) neighborOf text(Eslovaquia) -text(युक्रेन) neighborOf text(Belarus) -text(أوكرانيا) neighborOf text(Polonia) -text(Oekraïne) neighborOf text(Rusia) -text(Ukraine) neighborOf text(匈牙利) -text(Ucrania) neighborOf text(Moldova) -text(烏克蘭) neighborOf text(Roemenië) -text(Dominica) locatedIn text(加勒比地区) -text(多米尼克) locatedIn text(महाअमेरिका) -text(Turkmenistan) neighborOf text(哈萨克斯坦) -text(تركمانستان) neighborOf text(Afganistán) -text(土庫曼斯坦) neighborOf text(乌兹别克斯坦) -text(Turkmenistan) neighborOf text(伊朗) -text(Guernsey) locatedIn text(Northern:Europe) -text(Guernsey) locatedIn text(Europa) -text(直布羅陀) locatedIn text(दक्षिणी:यूरोप) -text(جبل:طارق) neighborOf text(إسبانيا) -text(स्विट्ज़रलैण्ड) locatedIn text(西欧) -text(瑞士) neighborOf text(जर्मनी) -text(سويسرا) neighborOf text(Italy) -text(Zwitserland) neighborOf text(Austria) -text(Switzerland) neighborOf text(法國) -text(Suiza) neighborOf text(लिक्टेन्स्टाइन) -text(Oostenrijk) locatedIn text(पश्चिमी:यूरोप) -text(النمسا) neighborOf text(Duitsland) -text(ऑस्ट्रिया) neighborOf text(斯洛伐克) -text(奧地利) neighborOf text(斯洛文尼亞) -text(Austria) neighborOf text(إيطاليا) -text(Austria) neighborOf text(स्विट्ज़रलैण्ड) -text(Oostenrijk) neighborOf text(Hongarije) -text(النمسا) neighborOf text(Liechtenstein) -text(ऑस्ट्रिया) neighborOf text(جمهورية:التشيك) -text(हंगरी) neighborOf text(युक्रेन) -text(Hungría) neighborOf text(स्लोवाकिया) -text(المجر) neighborOf text(Eslovenia) -text(Hungary) neighborOf text(Croatia) -text(匈牙利) neighborOf text(奧地利) -text(Hongarije) neighborOf text(Serbia) -text(हंगरी) neighborOf text(رومانيا) -text(مالاوي) locatedIn text(África:Oriental) -text(Malawi) neighborOf text(ज़ाम्बिया) -text(Malawi) neighborOf text(تنزانيا) -text(मलावी) neighborOf text(莫桑比克) -text(هونغ:كونغ) neighborOf text(República:Popular:China) -text(ليختنشتاين) locatedIn text(West-Europa) -text(Liechtenstein) locatedIn text(यूरोप) -text(列支敦斯登) neighborOf text(瑞士) -text(Liechtenstein) neighborOf text(Austria) -text(Barbados) locatedIn text(कैरिबिया) -text(باربادوس) locatedIn text(Amerika) -text(जॉर्जिया) locatedIn text(West:Asia) -text(格鲁吉亚) neighborOf text(Armenië) -text(Georgia) neighborOf text(阿塞拜疆) -text(جورجيا) neighborOf text(Rusland) -text(Georgië) neighborOf text(تركيا) -text(阿爾巴尼亞) locatedIn text(Southern:Europe) -text(अल्बानिया) locatedIn text(Europe) -text(Albanië) neighborOf text(الجبل:الأسود) -text(Albania) neighborOf text(مقدونيا:الشمالية) -text(Albania) neighborOf text(कोसोवो:गणराज्य) -text(ألبانيا) neighborOf text(Griekenland) -text(Kuwait) locatedIn text(غرب:آسيا) -text(कुवैत) neighborOf text(السعودية) -text(Koeweit) neighborOf text(Iraq) -text(南非) locatedIn text(南部非洲) -text(दक्षिण:अफ़्रीका) neighborOf text(Mozambique) -text(Zuid-Afrika) neighborOf text(Botswana) -text(South:Africa) neighborOf text(斯威士兰) -text(Sudáfrica) neighborOf text(زيمبابوي) -text(جنوب:إفريقيا) neighborOf text(Namibië) -text(南非) neighborOf text(Lesoto) -text(हैती) locatedIn text(Caribbean) -text(هايتي) locatedIn text(América) -text(海地) neighborOf text(Dominican:Republic) -text(أفغانستان) locatedIn text(दक्षिण:एशिया) -text(阿富汗) neighborOf text(तुर्कमेनिस्तान) -text(अफ़्ग़ानिस्तान) neighborOf text(चीनी:जनवादी:गणराज्य) -text(Afghanistan) neighborOf text(طاجيكستان) -text(Afghanistan) neighborOf text(Uzbekistán) -text(Afganistán) neighborOf text(Iran) -text(أفغانستان) neighborOf text(Pakistán) -text(新加坡) locatedIn text(Sudeste:Asiático) -text(Singapore) locatedIn text(Azië) -text(Benin) locatedIn text(West-Afrika) -text(Benín) neighborOf text(尼日尔) -text(बेनिन) neighborOf text(बुर्किना:फासो) -text(Benin) neighborOf text(Togo) -text(貝南) neighborOf text(奈及利亞) -text(Åland) locatedIn text(उत्तरी:यूरोप) -text(جزر:أولاند) locatedIn text(Europa) -text(Croacia) locatedIn text(Zuid-Europa) -text(克羅地亞) neighborOf text(Slovenië) -text(كرواتيا) neighborOf text(Bosnië:en:Herzegovina) -text(क्रोएशिया) neighborOf text(Hungría) -text(Kroatië) neighborOf text(塞爾維亞) -text(Croatia) neighborOf text(蒙特內哥羅) -text(Sweden) locatedIn text(Noord-Europa) -text(السويد) neighborOf text(Noruega) -text(瑞典) neighborOf text(Finlandia) -text(México) neighborOf text(بليز) -text(Mexico) neighborOf text(美國) -text(Mexico) neighborOf text(危地马拉) -text(Groenlandia) locatedIn text(उत्तर:अमेरिका) -text(ग्रीनलैण्ड) locatedIn text(Americas) -text(皮特凯恩群岛) locatedIn text(Australia:and:New:Zealand) -text(Islas:Pitcairn) locatedIn text(Oceania) -text(नेपाल) locatedIn text(South:Asia) -text(尼泊爾) locatedIn text(Asia) -text(Nepal) neighborOf text(Volksrepubliek:China) -text(Nepal) neighborOf text(India) -text(ग्वाटेमाला) neighborOf text(伯利兹) -text(غواتيمالا) neighborOf text(薩爾瓦多) -text(Guatemala) neighborOf text(मेक्सिको) -text(Guatemala) neighborOf text(Honduras) -text(كوريا:الجنوبية) locatedIn text(Oost-Azië) -text(Zuid-Korea) neighborOf text(North:Korea) -text(Moldavië) locatedIn text(Eastern:Europe) -text(摩爾多瓦) locatedIn text(أوروبا) -text(مولدوفا) neighborOf text(أوكرانيا) -text(Moldavia) neighborOf text(रोमानिया) -text(Mauricio) locatedIn text(पूर्वी:अफ्रीका) -text(मॉरिशस) locatedIn text(Africa) -text(Wit-Rusland) neighborOf text(Oekraïne) -text(بيلاروس) neighborOf text(Polen) -text(白俄羅斯) neighborOf text(ليتوانيا) -text(बेलारूस) neighborOf text(Russia) -text(Bielorrusia) neighborOf text(Letonia) -text(Bangladesh) neighborOf text(Birmania) -text(Bangladesh) neighborOf text(भारत) -text(मलेशिया) locatedIn text(दक्षिण:पूर्व:एशिया) -text(ماليزيا) neighborOf text(تايلاند) -text(馬來西亞) neighborOf text(Indonesia) -text(Maleisië) neighborOf text(بروناي) -text(Bosnia:y:Herzegovina) locatedIn text(Europa:del:Sur) -text(बोस्निया:और:हर्ज़ेगोविना) neighborOf text(Servië) -text(البوسنة:والهرسك) neighborOf text(Croacia) -text(波斯尼亚和黑塞哥维那) neighborOf text(Montenegro) -text(लक्ज़मबर्ग) locatedIn text(Europa:Occidental) -text(卢森堡) neighborOf text(Alemania) -text(لوكسمبورغ) neighborOf text(Bélgica) -text(Luxembourg) neighborOf text(Frankrijk) -text(意大利) locatedIn text(南欧) -text(Italië) locatedIn text(欧洲) -text(Italia) neighborOf text(سلوفينيا) -text(इटली) neighborOf text(سويسرا) -text(Italy) neighborOf text(Austria) -text(إيطاليا) neighborOf text(France) -text(意大利) neighborOf text(梵蒂岡城國) -text(Italië) neighborOf text(San:Marino) -text(अज़रबैजान) locatedIn text(पश्चिमी:एशिया) -text(أذربيجان) neighborOf text(Turquía) -text(Azerbeidzjan) neighborOf text(Armenia) -text(Azerbaiyán) neighborOf text(रूस) -text(Azerbaijan) neighborOf text(إيران) -text(阿塞拜疆) neighborOf text(Georgia) -text(हॉण्डुरस) locatedIn text(中美洲) -text(هندوراس) neighborOf text(Guatemala) -text(洪都拉斯) neighborOf text(निकारागुआ) -text(Honduras) neighborOf text(El:Salvador) -text(مالي) locatedIn text(غرب:إفريقيا) -text(Mali) neighborOf text(布吉納法索) -text(马里) neighborOf text(غينيا) -text(माली) neighborOf text(毛里塔尼亞) -text(Mali) neighborOf text(नाइजर) -text(Mali) neighborOf text(सेनेगल) -text(مالي) neighborOf text(Argelia) -text(Mali) neighborOf text(Ivory:Coast) -text(República:de:China) locatedIn text(पूर्वी:एशिया) -text(Taiwan) locatedIn text(Asia) -text(الجزائر) locatedIn text(北部非洲) -text(अल्जीरिया) neighborOf text(Libië) -text(Algerije) neighborOf text(Tunesië) -text(Algeria) neighborOf text(Mauritania) -text(阿爾及利亞) neighborOf text(Marokko) -text(Argelia) neighborOf text(Níger) -text(الجزائر) neighborOf text(马里) -text(अल्जीरिया) neighborOf text(Sahrawi:Arab:Democratic:Republic) -text(Guayana:Francesa) neighborOf text(Brazil) -text(Frans-Guyana) neighborOf text(سورينام) -text(Jemen) locatedIn text(Zuidwest-Azië) -text(也门) neighborOf text(Oman) -text(Yemen) neighborOf text(सउदी:अरब) -text(Puerto:Rico) locatedIn text(Caraïben) -text(Puerto:Rico) locatedIn text(أمريكتان) -text(Saint:Vincent:en:de:Grenadines) locatedIn text(Caribe) -text(Saint:Vincent:and:the:Grenadines) locatedIn text(美洲) -text(वेनेज़ुएला) neighborOf text(巴西) -text(Venezuela) neighborOf text(गयाना) -text(Venezuela) neighborOf text(كولومبيا) -text(格瑞那達) locatedIn text(الكاريبي) -text(Grenada) locatedIn text(महाअमेरिका) -text(United:States) neighborOf text(加拿大) -text(संयुक्त:राज्य:अमेरिका) neighborOf text(المكسيك) -text(Tokelau) locatedIn text(पोलीनेशिया) -text(टोकेलाऊ) locatedIn text(Oceanië) -text(Slovenia) locatedIn text(أوروبا:الجنوبية) -text(स्लोवेनिया) neighborOf text(Oostenrijk) -text(斯洛文尼亞) neighborOf text(克羅地亞) -text(Eslovenia) neighborOf text(Italia) -text(Slovenië) neighborOf text(المجر) -text(फ़िलीपीन्स) locatedIn text(Zuidoost-Azië) -text(菲律賓) locatedIn text(亞洲) -text(Micronesia) locatedIn text(Micronesia) -text(ميكرونيسيا) locatedIn text(大洋洲) -text(People's:Republic:of:China) locatedIn text(Asia:Oriental) -text(中华人民共和国) neighborOf text(阿富汗) -text(الصين) neighborOf text(Bután) -text(República:Popular:China) neighborOf text(Macau) -text(चीनी:जनवादी:गणराज्य) neighborOf text(印度) -text(Volksrepubliek:China) neighborOf text(Kazakhstan) -text(People's:Republic:of:China) neighborOf text(Kyrgyzstan) -text(中华人民共和国) neighborOf text(ताजीकिस्तान) -text(الصين) neighborOf text(لاوس) -text(República:Popular:China) neighborOf text(俄罗斯) -text(चीनी:जनवादी:गणराज्य) neighborOf text(Noord-Korea) -text(Volksrepubliek:China) neighborOf text(Myanmar) -text(People's:Republic:of:China) neighborOf text(पाकिस्तान) -text(中华人民共和国) neighborOf text(Mongolia) -text(الصين) neighborOf text(香港) -text(República:Popular:China) neighborOf text(越南) -text(Gabón) locatedIn text(وسط:إفريقيا) -text(加蓬) neighborOf text(Equatoriaal-Guinea) -text(Gabon) neighborOf text(剛果共和國) -text(الغابون) neighborOf text(喀麦隆) -text(Islas:ultramarinas:de:Estados:Unidos) locatedIn text(North:America) -text(美国本土外小岛屿) locatedIn text(Amerika) -text(Andorra) locatedIn text(दक्षिणी:यूरोप) -text(安道尔) neighborOf text(España) -text(Andorra) neighborOf text(Francia) -text(समोआ) locatedIn text(玻里尼西亞) -text(Samoa) locatedIn text(أوقيانوسيا) -text(Gambia) locatedIn text(पश्चिमी:अफ्रीका) -text(岡比亞) locatedIn text(África) -text(The:Gambia) neighborOf text(السنغال) -text(Pedro:Miguel) locatedIn text(Asia:Occidental) -text(nan) locatedIn text(آسيا) -text(Pedro:Miguel) neighborOf text(الأردن) -text(Pedro:Miguel) neighborOf text(Egipto) -text(nan) neighborOf text(Israel) -text(ريونيون) locatedIn text(East:Africa) -text(Réunion) locatedIn text(Afrika) -text(فرنسا) locatedIn text(أوروبا:الغربية) -text(फ़्रान्स) neighborOf text(Germany) -text(法國) neighborOf text(Luxemburgo) -text(Frankrijk) neighborOf text(इटली) -text(France) neighborOf text(अण्डोरा) -text(Francia) neighborOf text(Zwitserland) -text(فرنسا) neighborOf text(Mónaco) -text(फ़्रान्स) neighborOf text(بلجيكا) -text(法國) neighborOf text(स्पेन) -text(منغوليا) locatedIn text(東亞) -text(蒙古國) locatedIn text(एशिया) -text(Mongolië) neighborOf text(चीनी:जनवादी:गणराज्य) -text(मंगोलिया) neighborOf text(روسيا) -text(立陶宛) locatedIn text(Europa:del:Norte) -text(Lithuania) neighborOf text(波蘭) -text(Lituania) neighborOf text(लातविया) -text(Litouwen) neighborOf text(Belarus) -text(लिथुआनिया) neighborOf text(Rusia) -text(Cayman:Islands) locatedIn text(加勒比地区) -text(केमन:द्वीपसमूह) locatedIn text(América) -text(Saint:Lucia) locatedIn text(कैरिबिया) -text(Saint:Lucia) locatedIn text(Americas) -text(Curazao) locatedIn text(Caribbean) -text(Curaçao) locatedIn text(أمريكتان) -text(Caraïben) locatedIn text(美洲) -text(南亚) locatedIn text(Azië) -text(Central:Africa) locatedIn text(अफ्रीका) -text(北歐) locatedIn text(Europa) -text(Southern:Europe) locatedIn text(यूरोप) -text(西亚) locatedIn text(Asia) -text(दक्षिण:अमेरिका) locatedIn text(महाअमेरिका) -text(Polynesië) locatedIn text(Oceanía) -text(nan) locatedIn text(ओशिआनिया) -text(Western:Europe) locatedIn text(Europe) -text(شرق:إفريقيا) locatedIn text(非洲) -text(West:Africa) locatedIn text(إفريقيا) -text(东欧) locatedIn text(Europa) -text(केंद्रीय:अमेरिका) locatedIn text(Amerika) -text(Noord-Amerika) locatedIn text(América) -text(东南亚) locatedIn text(Asia) -text(África:austral) locatedIn text(Africa) -text(شرق:آسيا) locatedIn text(亞洲) -text(Noord-Afrika) locatedIn text(África) -text(Melanesië) locatedIn text(Oceania) -text(माइक्रोनीशिया) locatedIn text(Oceanië) -text(中亚) locatedIn text(آسيا) -text(中欧) locatedIn text(أوروبا) \ No newline at end of file diff --git a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_country2text_relation2text.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_country2text_relation2text.tsv deleted file mode 100644 index 7741b5d..0000000 --- a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_country2text_relation2text.tsv +++ /dev/null @@ -1,979 +0,0 @@ -text(Palaos) text(can:be:found:in) text(ميكرونيسيا) -text(بالاو) text(was:positioned:in) text(Oceanía) -text(المالديف) text(is:positioned:in) text(South:Asia) -text(Maldives) text(was:sited:in) text(آسيا) -text(بروناي) text(is:sited:in) text(东南亚) -text(ब्रुनेई) text(was:localized:in) text(एशिया) -text(Brunei) text(is:butted:against) text(Malasia) -text(Japan) text(is:localized:in) text(شرق:آسيا) -text(Japón) text(was:present:in) text(Asia) -text(هولندا) text(was:butted:against) text(जर्मनी) -text(Netherlands) text(was:adjacent:to) text(België) -text(土耳其) text(is:adjacent:to) text(Armenië) -text(Turkije) text(neighbors) text(अज़रबैजान) -text(Turkey) text(is:a:neighboring:country:of) text(伊朗) -text(تركيا) text(was:a:neighboring:country:of) text(Griekenland) -text(तुर्की) text(neighbors:with) text(Georgia) -text(Turquía) text(was:a:neighbor:of) text(Bulgarije) -text(土耳其) text(is:a:neighbor:of) text(Irak) -text(Turkije) text(is:a:neighboring:state:to) text(Syria) -text(安哥拉) text(is:present:in) text(وسط:إفريقيا) -text(أنغولا) text(was:a:neighboring:state:to) text(Democratic:Republic:of:the:Congo) -text(अंगोला) text(borders:with) text(नामीबिया) -text(Angola) text(borders) text(Zambia) -text(Angola) text(is:butted:against) text(جمهورية:الكونغو) -text(आर्मीनिया) text(is:still:in) text(Zuidwest-Azië) -text(Armenia) text(was:butted:against) text(格鲁吉亚) -text(亞美尼亞) text(was:adjacent:to) text(阿塞拜疆) -text(أرمينيا) text(is:adjacent:to) text(إيران) -text(Armenia) text(neighbors) text(Turkey) -text(安提瓜和巴布达) text(was:still:in) text(कैरिबिया) -text(Antigua:y:Barbuda) text(was:currently:in) text(महाअमेरिका) -text(एस्वातीनी) text(is:currently:in) text(南部非洲) -text(斯威士兰) text(is:a:neighboring:country:of) text(Sudáfrica) -text(Eswatini) text(was:a:neighboring:country:of) text(Mozambique) -text(瓦利斯和富圖納) text(is:placed:in) text(بولنيزيا) -text(واليس:وفوتونا) text(was:placed:in) text(大洋洲) -text(उरुग्वे) text(can:be:found:in) text(दक्षिण:अमेरिका) -text(الأوروغواي) text(was:situated:in) text(Amerika) -text(烏拉圭) text(neighbors:with) text(Argentina) -text(Uruguay) text(was:a:neighbor:of) text(البرازيل) -text(Zambia) text(is:situated:in) text(Oost-Afrika) -text(زامبيا) text(is:a:neighbor:of) text(तंज़ानिया) -text(Zambia) text(is:a:neighboring:state:to) text(موزمبيق) -text(ज़ाम्बिया) text(was:a:neighboring:state:to) text(República:Democrática:del:Congo) -text(贊比亞) text(borders:with) text(Angola) -text(Zambia) text(borders) text(波札那) -text(Zambia) text(is:butted:against) text(津巴布韦) -text(زامبيا) text(was:butted:against) text(Namibia) -text(Zambia) text(was:adjacent:to) text(Malawi) -text(قبرص) text(is:located:in) text(पूर्वी:यूरोप) -text(Chipre) text(was:located:in) text(यूरोप) -text(Cyprus) text(is:adjacent:to) text(यूनाइटेड:किंगडम) -text(यूनाइटेड:किंगडम) text(can:be:found:in) text(उत्तरी:यूरोप) -text(英国) text(was:positioned:in) text(أوروبا) -text(Verenigd:Koninkrijk) text(neighbors) text(Reino:Unido) -text(بوروندي) text(is:positioned:in) text(पूर्वी:अफ्रीका) -text(Burundi) text(is:a:neighboring:country:of) text(刚果民主共和国) -text(Burundi) text(was:a:neighboring:country:of) text(Rwanda) -text(蒲隆地) text(neighbors:with) text(Tanzania) -text(中非共和國) text(was:sited:in) text(África:Central) -text(Central:African:Republic) text(was:a:neighbor:of) text(تشاد) -text(جمهورية:إفريقيا:الوسطى) text(is:a:neighbor:of) text(剛果共和國) -text(República:Centroafricana) text(is:a:neighboring:state:to) text(جمهورية:الكونغو:الديمقراطية) -text(Centraal-Afrikaanse:Republiek) text(was:a:neighboring:state:to) text(South:Sudan) -text(मध्य:अफ़्रीकी:गणराज्य) text(borders:with) text(Camerún) -text(中非共和國) text(borders) text(苏丹) -text(تونغا) text(is:sited:in) text(पोलीनेशिया) -text(टोंगा) text(was:localized:in) text(Oceanië) -text(Ivoorkust) text(is:localized:in) text(غرب:إفريقيا) -text(ساحل:العاج) text(is:butted:against) text(Burkina:Faso) -text(Ivory:Coast) text(was:butted:against) text(Ghana) -text(Costa:de:Marfil) text(was:adjacent:to) text(Liberia) -text(कोत:दिव्वार) text(is:adjacent:to) text(माली) -text(科特迪瓦) text(neighbors) text(Guinee) -text(سيراليون) text(is:a:neighboring:country:of) text(利比里亞) -text(Sierra:Leona) text(was:a:neighboring:country:of) text(几内亚) -text(مايوت) text(was:present:in) text(东部非洲) -text(Mayotte) text(is:present:in) text(África) -text(بولندا) text(neighbors:with) text(Germany) -text(Polonia) text(was:a:neighbor:of) text(Oekraïne) -text(पोलैंड) text(is:a:neighbor:of) text(斯洛伐克) -text(Polen) text(is:a:neighboring:state:to) text(白俄羅斯) -text(波蘭) text(was:a:neighboring:state:to) text(रूस) -text(Poland) text(borders:with) text(लिथुआनिया) -text(بولندا) text(borders) text(捷克) -text(कज़ाख़िस्तान) text(is:still:in) text(Centraal-Azië) -text(Kazajistán) text(is:butted:against) text(Turkmenistán) -text(Kazachstan) text(was:butted:against) text(الصين) -text(哈萨克斯坦) text(was:adjacent:to) text(吉尔吉斯斯坦) -text(كازاخستان) text(is:adjacent:to) text(Uzbekistán) -text(Kazakhstan) text(neighbors) text(روسيا) -text(उज़्बेकिस्तान) text(was:still:in) text(मध्य:एशिया) -text(乌兹别克斯坦) text(is:a:neighboring:country:of) text(أفغانستان) -text(Uzbekistan) text(was:a:neighboring:country:of) text(تركمانستان) -text(أوزبكستان) text(neighbors:with) text(कज़ाख़िस्तान) -text(Oezbekistan) text(was:a:neighbor:of) text(Kyrgyzstan) -text(Uzbekistán) text(is:a:neighbor:of) text(塔吉克斯坦) -text(तुर्क:और:केकोस:द्वीपसमूह) text(was:currently:in) text(Caribe) -text(جزر:توركس:وكايكوس) text(is:currently:in) text(América) -text(Nueva:Caledonia) text(is:placed:in) text(ميلانيزيا) -text(كاليدونيا:الجديدة) text(was:placed:in) text(Oceania) -text(Pakistán) text(is:a:neighboring:state:to) text(People's:Republic:of:China) -text(巴基斯坦) text(was:a:neighboring:state:to) text(Afghanistan) -text(باكستان) text(borders:with) text(Irán) -text(पाकिस्तान) text(borders) text(India) -text(Argentina) text(can:be:found:in) text(Zuid-Amerika) -text(阿根廷) text(is:butted:against) text(Bolivia) -text(Argentinië) text(was:butted:against) text(智利) -text(अर्जेण्टीना) text(was:adjacent:to) text(巴西) -text(الأرجنتين) text(is:adjacent:to) text(巴拉圭) -text(Argentina) text(neighbors) text(Uruguay) -text(क्यूबा) text(was:situated:in) text(Caribbean) -text(Cuba) text(is:situated:in) text(أمريكتان) -text(塞爾維亞) text(is:a:neighboring:country:of) text(Macedonia:del:Norte) -text(Servië) text(was:a:neighboring:country:of) text(蒙特內哥羅) -text(Serbia) text(neighbors:with) text(Kosovo) -text(सर्बिया) text(was:a:neighbor:of) text(Bosnia:y:Herzegovina) -text(صربيا) text(is:a:neighbor:of) text(كرواتيا) -text(Serbia) text(is:a:neighboring:state:to) text(Hungría) -text(塞爾維亞) text(was:a:neighboring:state:to) text(بلغاريا) -text(Servië) text(borders:with) text(羅馬尼亞) -text(Czech:Republic) text(is:located:in) text(Europa:Oriental) -text(चेक:गणराज्य) text(borders) text(Duitsland) -text(جمهورية:التشيك) text(is:butted:against) text(Austria) -text(Tsjechië) text(was:butted:against) text(Polonia) -text(República:Checa) text(was:adjacent:to) text(سلوفاكيا) -text(Nicaragua) text(is:adjacent:to) text(洪都拉斯) -text(نيكاراغوا) text(neighbors) text(Costa:Rica) -text(Vietnam) text(was:located:in) text(दक्षिण:पूर्व:एशिया) -text(Vietnam) text(can:be:found:in) text(Azië) -text(वियतनाम) text(is:a:neighboring:country:of) text(كمبوديا) -text(فيتنام) text(was:a:neighboring:country:of) text(لاوس) -text(Vietnam) text(neighbors:with) text(Volksrepubliek:China) -text(निउए) text(was:positioned:in) text(Polynesia) -text(Niue) text(is:positioned:in) text(ओशिआनिया) -text(कनाडा) text(was:sited:in) text(उत्तर:अमेरिका) -text(Canada) text(was:a:neighbor:of) text(Verenigde:Staten) -text(Slowakije) text(is:a:neighbor:of) text(أوكرانيا) -text(स्लोवाकिया) text(is:a:neighboring:state:to) text(पोलैंड) -text(Eslovaquia) text(was:a:neighboring:state:to) text(奧地利) -text(Slovakia) text(borders:with) text(المجر) -text(斯洛伐克) text(borders) text(捷克) -text(मोज़ाम्बीक) text(is:butted:against) text(تنزانيا) -text(莫桑比克) text(was:butted:against) text(Swaziland) -text(Mozambique) text(was:adjacent:to) text(Zimbabwe) -text(Mozambique) text(is:adjacent:to) text(ज़ाम्बिया) -text(Mozambique) text(neighbors) text(馬拉威) -text(موزمبيق) text(is:a:neighboring:country:of) text(Zuid-Afrika) -text(أروبا) text(is:sited:in) text(الكاريبي) -text(अरूबा) text(was:localized:in) text(Americas) -text(Bolivia) text(is:localized:in) text(南美洲) -text(Bolivia) text(was:a:neighboring:country:of) text(Chili) -text(玻利維亞) text(neighbors:with) text(Brasil) -text(बोलिविया) text(was:a:neighbor:of) text(Paraguay) -text(بوليفيا) text(is:a:neighbor:of) text(Argentina) -text(Bolivia) text(is:a:neighboring:state:to) text(بيرو) -text(Colombia) text(was:present:in) text(América:del:Sur) -text(كولومبيا) text(was:a:neighboring:state:to) text(厄瓜多尔) -text(Colombia) text(borders:with) text(Brazilië) -text(कोलम्बिया) text(borders) text(Panama) -text(哥伦比亚) text(is:butted:against) text(Venezuela) -text(Colombia) text(was:butted:against) text(Peru) -text(फ़िजी) text(is:present:in) text(美拉尼西亞) -text(Fiyi) text(is:still:in) text(أوقيانوسيا) -text(कांगो:गणराज्य) text(was:adjacent:to) text(加蓬) -text(República:del:Congo) text(is:adjacent:to) text(कांगो:लोकतान्त्रिक:गणराज्य) -text(Congo-Brazzaville) text(neighbors) text(安哥拉) -text(Republic:of:the:Congo) text(is:a:neighboring:country:of) text(Cameroon) -text(جمهورية:الكونغو) text(was:a:neighboring:country:of) text(Central:African:Republic) -text(Saoedi-Arabië) text(neighbors:with) text(卡塔尔) -text(السعودية) text(was:a:neighbor:of) text(United:Arab:Emirates) -text(沙特阿拉伯) text(is:a:neighbor:of) text(Jordan) -text(Saudi:Arabia) text(is:a:neighboring:state:to) text(也门) -text(सउदी:अरब) text(was:a:neighboring:state:to) text(ओमान) -text(Arabia:Saudí) text(borders:with) text(कुवैत) -text(Saoedi-Arabië) text(borders) text(伊拉克) -text(السلفادور) text(was:still:in) text(أمريكا:الوسطى) -text(अल:साल्वाडोर) text(is:butted:against) text(غواتيمالا) -text(El:Salvador) text(was:butted:against) text(हॉण्डुरस) -text(Madagaskar) text(was:currently:in) text(East:Africa) -text(مدغشقر) text(is:currently:in) text(अफ्रीका) -text(Australië) text(is:placed:in) text(Australia:and:New:Zealand) -text(أستراليا) text(was:placed:in) text(Oceanía) -text(ناميبيا) text(can:be:found:in) text(दक्षिणी:अफ्रीका) -text(Namibia) text(was:situated:in) text(إفريقيا) -text(纳米比亚) text(was:adjacent:to) text(贊比亞) -text(Namibië) text(is:adjacent:to) text(أنغولا) -text(नामीबिया) text(neighbors) text(جنوب:إفريقيا) -text(Namibia) text(is:a:neighboring:country:of) text(बोत्सवाना) -text(توفالو) text(is:situated:in) text(Polynesië) -text(吐瓦魯) text(is:located:in) text(大洋洲) -text(Svalbard:and:Jan:Mayen) text(was:located:in) text(أوروبا:الشمالية) -text(Svalbard:y:Jan:Mayen) text(can:be:found:in) text(Europe) -text(Isla:de:Man) text(was:positioned:in) text(北歐) -text(جزيرة:مان) text(is:positioned:in) text(Europa) -text(Guyana) text(was:a:neighboring:country:of) text(Brazil) -text(Guyana) text(neighbors:with) text(सूरीनाम) -text(圭亚那) text(was:a:neighbor:of) text(委內瑞拉) -text(Vaticaanstad) text(was:sited:in) text(Europa:del:Sur) -text(Vatican:City) text(is:sited:in) text(欧洲) -text(الفاتيكان) text(is:a:neighbor:of) text(Italië) -text(British:Indian:Ocean:Territory) text(was:localized:in) text(África:Oriental) -text(ब्रिटिश:हिंद:महासागर:क्षेत्र) text(is:localized:in) text(非洲) -text(نيجيريا) text(was:present:in) text(West-Afrika) -text(Nigeria) text(is:present:in) text(Africa) -text(Nigeria) text(is:a:neighboring:state:to) text(चाड) -text(奈及利亞) text(was:a:neighboring:state:to) text(Níger) -text(नाइजीरिया) text(borders:with) text(الكاميرون) -text(Nigeria) text(borders) text(貝南) -text(Alemania) text(is:butted:against) text(丹麥) -text(德國) text(was:butted:against) text(Nederland) -text(ألمانيا) text(was:adjacent:to) text(Polen) -text(जर्मनी) text(is:adjacent:to) text(卢森堡) -text(Germany) text(neighbors) text(比利時) -text(Duitsland) text(is:a:neighboring:country:of) text(Switzerland) -text(Alemania) text(was:a:neighboring:country:of) text(Austria) -text(德國) text(neighbors:with) text(Frankrijk) -text(ألمانيا) text(was:a:neighbor:of) text(Czech:Republic) -text(Burkina:Faso) text(is:a:neighbor:of) text(Togo) -text(布吉納法索) text(is:a:neighboring:state:to) text(Benin) -text(बुर्किना:फासो) text(was:a:neighboring:state:to) text(Niger) -text(بوركينا:فاسو) text(borders:with) text(Ghana) -text(Burkina:Faso) text(borders) text(Mali) -text(Burkina:Faso) text(is:butted:against) text(Ivoorkust) -text(Tanzania) text(was:butted:against) text(Uganda) -text(Tanzania) text(was:adjacent:to) text(मोज़ाम्बीक) -text(坦桑尼亞) text(is:adjacent:to) text(Congo-Kinshasa) -text(तंज़ानिया) text(neighbors) text(Kenia) -text(Tanzania) text(is:a:neighboring:country:of) text(रवाण्डा) -text(تنزانيا) text(was:a:neighboring:country:of) text(Zambia) -text(Tanzania) text(neighbors:with) text(Malaui) -text(Tanzania) text(was:a:neighbor:of) text(Burundi) -text(Northern:Mariana:Islands) text(is:still:in) text(Micronesia) -text(جزر:ماريانا:الشمالية) text(was:still:in) text(Oceanië) -text(Belize) text(was:currently:in) text(América:Central) -text(伯利兹) text(is:a:neighbor:of) text(Guatemala) -text(بليز) text(is:a:neighboring:state:to) text(México) -text(Norway) text(was:a:neighboring:state:to) text(Suecia) -text(挪威) text(borders:with) text(فنلندا) -text(النرويج) text(borders) text(俄罗斯) -text(Cocos:(Keeling):Islands) text(is:currently:in) text(nan) -text(جزر:كوكوس) text(is:placed:in) text(Oceania) -text(Laos) text(was:placed:in) text(Southeast:Asia) -text(लाओस) text(is:butted:against) text(中华人民共和国) -text(老撾) text(was:butted:against) text(कम्बोडिया) -text(Laos) text(was:adjacent:to) text(म्यान्मार) -text(Laos) text(is:adjacent:to) text(越南) -text(لاوس) text(neighbors) text(泰國) -text(الجمهورية:العربية:الصحراوية:الديمقراطية) text(can:be:found:in) text(شمال:إفريقيا) -text(Sahrawi:Arabische:Democratische:Republiek) text(is:a:neighboring:country:of) text(阿爾及利亞) -text(撒拉威阿拉伯民主共和國) text(was:a:neighboring:country:of) text(Mauritania) -text(सहरावी:अरब:जनतांत्रिक:गणराज्य) text(neighbors:with) text(Morocco) -text(Suriname) text(was:situated:in) text(South:America) -text(Surinam) text(was:a:neighbor:of) text(ब्राज़ील) -text(蘇利南) text(is:a:neighbor:of) text(法屬圭亞那) -text(Suriname) text(is:a:neighboring:state:to) text(गयाना) -text(क्रिसमस:द्वीप) text(is:situated:in) text(Australië:en:Nieuw-Zeeland) -text(جزيرة:عيد:الميلاد) text(is:located:in) text(ओशिआनिया) -text(São:Tomé:and:Príncipe) text(was:located:in) text(Centraal-Afrika) -text(साओ:तोमे:और:प्रिन्सिपी) text(can:be:found:in) text(Afrika) -text(埃及) text(was:a:neighboring:state:to) text(Libië) -text(Egypte) text(borders:with) text(Israel) -text(مصر) text(borders) text(Sudán) -text(Bulgaria) text(is:butted:against) text(North:Macedonia) -text(保加利亚) text(was:butted:against) text(تركيا) -text(बुल्गारिया) text(was:adjacent:to) text(Grecia) -text(Bulgaria) text(is:adjacent:to) text(Serbia) -text(Bulgarije) text(neighbors) text(Rumania) -text(Guinea) text(was:positioned:in) text(पश्चिमी:अफ्रीका) -text(غينيا) text(is:a:neighboring:country:of) text(Guinea-Bissau) -text(Guinea) text(was:a:neighboring:country:of) text(सिएरा:लियोन) -text(गिनी) text(neighbors:with) text(Mali) -text(Guinee) text(was:a:neighbor:of) text(Liberia) -text(几内亚) text(is:a:neighbor:of) text(Senegal) -text(Guinea) text(is:a:neighboring:state:to) text(ساحل:العاج) -text(स्पेन) text(was:a:neighboring:state:to) text(मोरक्को) -text(España) text(borders:with) text(जिब्राल्टर) -text(إسبانيا) text(borders) text(أندورا) -text(Spanje) text(is:butted:against) text(فرنسا) -text(西班牙) text(was:butted:against) text(Portugal) -text(कोस्टा:रीका) text(is:positioned:in) text(中美洲) -text(哥斯达黎加) text(was:adjacent:to) text(Panama) -text(Costa:Rica) text(is:adjacent:to) text(निकारागुआ) -text(Malta) text(was:sited:in) text(दक्षिणी:यूरोप) -text(Malta) text(is:sited:in) text(Europa) -text(البرتغال) text(was:localized:in) text(南欧) -text(葡萄牙) text(neighbors) text(Spain) -text(Romania) text(is:localized:in) text(Oost-Europa) -text(रोमानिया) text(is:a:neighboring:country:of) text(烏克蘭) -text(Roemenië) text(was:a:neighboring:country:of) text(Hungary) -text(رومانيا) text(neighbors:with) text(Moldova) -text(羅馬尼亞) text(was:a:neighbor:of) text(بلغاريا) -text(Rumania) text(is:a:neighbor:of) text(सर्बिया) -text(سان:مارينو) text(was:present:in) text(Southern:Europe) -text(सान:मारिनो) text(is:present:in) text(यूरोप) -text(San:Marino) text(is:a:neighboring:state:to) text(Italia) -text(موريتانيا) text(is:still:in) text(西非) -text(Mauritanië) text(was:still:in) text(África) -text(Mauritania) text(was:a:neighboring:state:to) text(Algerije) -text(मॉरीतानिया) text(borders:with) text(马里) -text(毛里塔尼亞) text(borders) text(República:Árabe:Saharaui:Democrática) -text(Mauritania) text(is:butted:against) text(塞内加尔) -text(Trinidad:y:Tobago) text(was:currently:in) text(加勒比地区) -text(त्रिनिदाद:और:टोबैगो) text(is:currently:in) text(美洲) -text(बहरीन) text(is:placed:in) text(Asia:Occidental) -text(البحرين) text(was:placed:in) text(Asia) -text(Myanmar) text(was:butted:against) text(India) -text(ميانمار) text(was:adjacent:to) text(Bangladés) -text(緬甸) text(is:adjacent:to) text(चीनी:जनवादी:गणराज्य) -text(Birmania) text(neighbors) text(Laos) -text(Myanmar) text(is:a:neighboring:country:of) text(थाईलैंड) -text(العراق) text(was:a:neighboring:country:of) text(तुर्की) -text(इराक) text(neighbors:with) text(السعودية) -text(Iraq) text(was:a:neighbor:of) text(Iran) -text(Irak) text(is:a:neighbor:of) text(Jordanië) -text(Irak) text(is:a:neighboring:state:to) text(Kuwait) -text(伊拉克) text(was:a:neighboring:state:to) text(Siria) -text(Zuid-Georgia:en:de:Zuidelijke:Sandwicheilanden) text(can:be:found:in) text(أمريكا:الجنوبية) -text(جورجيا:الجنوبية:وجزر:ساندويتش:الجنوبية) text(was:situated:in) text(महाअमेरिका) -text(冰島) text(is:situated:in) text(Northern:Europe) -text(आइसलैण्ड) text(is:located:in) text(أوروبا) -text(Democratic:Republic:of:the:Congo) text(was:located:in) text(中部非洲) -text(República:Democrática:del:Congo) text(borders:with) text(Oeganda) -text(刚果民主共和国) text(borders) text(坦桑尼亞) -text(جمهورية:الكونغو:الديمقراطية) text(is:butted:against) text(剛果共和國) -text(कांगो:लोकतान्त्रिक:गणराज्य) text(was:butted:against) text(جمهورية:إفريقيا:الوسطى) -text(Congo-Kinshasa) text(was:adjacent:to) text(अंगोला) -text(Democratic:Republic:of:the:Congo) text(is:adjacent:to) text(رواندا) -text(República:Democrática:del:Congo) text(neighbors) text(Sudán:del:Sur) -text(刚果民主共和国) text(is:a:neighboring:country:of) text(Zambia) -text(جمهورية:الكونغو:الديمقراطية) text(was:a:neighboring:country:of) text(बुरुण्डी) -text(Seychellen) text(can:be:found:in) text(شرق:إفريقيا) -text(Seychelles) text(was:positioned:in) text(अफ्रीका) -text(قرغيزستان) text(neighbors:with) text(República:Popular:China) -text(किर्गिज़स्तान) text(was:a:neighbor:of) text(Kazajistán) -text(Kirgizië) text(is:a:neighbor:of) text(Tadzjikistan) -text(Kirguistán) text(is:a:neighboring:state:to) text(उज़्बेकिस्तान) -text(Botsuana) text(is:positioned:in) text(Zuidelijk:Afrika) -text(بوتسوانا) text(was:a:neighboring:state:to) text(ज़िम्बाब्वे) -text(Botswana) text(borders:with) text(ناميبيا) -text(Botswana) text(borders) text(زامبيا) -text(波札那) text(is:butted:against) text(दक्षिण:अफ़्रीका) -text(جزر:فارو) text(was:sited:in) text(Europa:del:Norte) -text(Faeröer) text(is:sited:in) text(Europe) -text(जमैका) text(was:localized:in) text(Caraïben) -text(牙買加) text(is:localized:in) text(Amerika) -text(Amerikaans-Samoa) text(was:present:in) text(Polinesia) -text(Samoa:Americana) text(is:present:in) text(أوقيانوسيا) -text(लेसोथो) text(is:still:in) text(África:austral) -text(Lesoto) text(was:still:in) text(إفريقيا) -text(莱索托) text(was:butted:against) text(南非) -text(श्रीलंका) text(was:adjacent:to) text(الهند) -text(बेल्जियम) text(was:currently:in) text(西欧) -text(Bélgica) text(is:adjacent:to) text(जर्मनी) -text(بلجيكا) text(neighbors) text(Luxemburgo) -text(Belgium) text(is:a:neighboring:country:of) text(Francia) -text(België) text(was:a:neighboring:country:of) text(荷蘭) -text(Qatar) text(is:currently:in) text(West:Asia) -text(Qatar) text(neighbors:with) text(沙特阿拉伯) -text(所罗门群岛) text(is:placed:in) text(Melanesië) -text(جزر:سليمان) text(was:placed:in) text(Oceanía) -text(सीरिया) text(can:be:found:in) text(غرب:آسيا) -text(敘利亞) text(was:a:neighbor:of) text(Israel) -text(Syrië) text(is:a:neighbor:of) text(Turquía) -text(سوريا) text(is:a:neighboring:state:to) text(जॉर्डन) -text(Syria) text(was:a:neighboring:state:to) text(लेबनॉन) -text(Siria) text(borders:with) text(العراق) -text(India) text(was:situated:in) text(جنوب:آسيا) -text(भारत) text(borders) text(阿富汗) -text(印度) text(is:butted:against) text(Bután) -text(India) text(was:butted:against) text(بنغلاديش) -text(India) text(was:adjacent:to) text(الصين) -text(الهند) text(is:adjacent:to) text(尼泊爾) -text(India) text(neighbors) text(म्यान्मार) -text(भारत) text(is:a:neighboring:country:of) text(Pakistan) -text(印度) text(was:a:neighboring:country:of) text(سريلانكا) -text(Marruecos) text(neighbors:with) text(Algeria) -text(المغرب) text(was:a:neighbor:of) text(स्पेन) -text(摩洛哥) text(is:a:neighbor:of) text(Sahrawi:Arab:Democratic:Republic) -text(Kenya) text(is:situated:in) text(Oost-Afrika) -text(肯尼亚) text(is:a:neighboring:state:to) text(युगाण्डा) -text(كينيا) text(was:a:neighboring:state:to) text(तंज़ानिया) -text(Kenia) text(borders:with) text(Somalië) -text(कीनिया) text(borders) text(جنوب:السودان) -text(Kenia) text(is:butted:against) text(Etiopía) -text(दक्षिण:सूडान) text(is:located:in) text(Central:Africa) -text(Zuid-Soedan) text(was:butted:against) text(Uganda) -text(南蘇丹) text(was:adjacent:to) text(कांगो:लोकतान्त्रिक:गणराज्य) -text(South:Sudan) text(is:adjacent:to) text(Kenya) -text(Sudán:del:Sur) text(neighbors) text(República:Centroafricana) -text(جنوب:السودان) text(is:a:neighboring:country:of) text(Sudan) -text(दक्षिण:सूडान) text(was:a:neighboring:country:of) text(Ethiopia) -text(घाना) text(neighbors:with) text(Burkina:Faso) -text(Ghana) text(was:a:neighbor:of) text(Ivory:Coast) -text(迦納) text(is:a:neighbor:of) text(توغو) -text(Tajikistan) text(was:located:in) text(آسيا:الوسطى) -text(Tayikistán) text(is:a:neighboring:state:to) text(People's:Republic:of:China) -text(طاجيكستان) text(was:a:neighboring:state:to) text(吉尔吉斯斯坦) -text(ताजीकिस्तान) text(borders:with) text(Afganistán) -text(塔吉克斯坦) text(borders) text(乌兹别克斯坦) -text(Marshall:Islands) text(can:be:found:in) text(Micronesia) -text(جزر:مارشال) text(was:positioned:in) text(大洋洲) -text(喀麦隆) text(is:positioned:in) text(मध्य:अफ्रीका) -text(Kameroen) text(is:butted:against) text(乍得) -text(कैमरुन) text(was:butted:against) text(कांगो:गणराज्य) -text(Camerún) text(was:adjacent:to) text(الغابون) -text(Cameroon) text(is:adjacent:to) text(भूमध्यरेखीय:गिनी) -text(الكاميرون) text(neighbors) text(Centraal-Afrikaanse:Republiek) -text(喀麦隆) text(is:a:neighboring:country:of) text(نيجيريا) -text(नौरु) text(was:sited:in) text(Micronesië) -text(Nauru) text(is:sited:in) text(Oceanië) -text(Thailand) text(was:a:neighboring:country:of) text(Camboya) -text(تايلاند) text(neighbors:with) text(Myanmar) -text(Thailand) text(was:a:neighbor:of) text(लाओस) -text(Tailandia) text(is:a:neighbor:of) text(Maleisië) -text(Soedan) text(is:a:neighboring:state:to) text(Chad) -text(السودان) text(was:a:neighboring:state:to) text(Libya) -text(सूडान) text(borders:with) text(Zuid-Soedan) -text(苏丹) text(borders) text(Eritrea) -text(Sudán) text(is:butted:against) text(मध्य:अफ़्रीकी:गणराज्य) -text(Sudan) text(was:butted:against) text(Egypt) -text(Soedan) text(was:adjacent:to) text(إثيوبيا) -text(Chad) text(was:localized:in) text(وسط:إفريقيا) -text(Tsjaad) text(is:adjacent:to) text(利比亞) -text(تشاد) text(neighbors) text(Niger) -text(चाड) text(is:a:neighboring:country:of) text(南蘇丹) -text(乍得) text(was:a:neighboring:country:of) text(Kameroen) -text(Chad) text(neighbors:with) text(中非共和國) -text(Chad) text(was:a:neighbor:of) text(Nigeria) -text(वानूआटू) text(is:localized:in) text(Melanesia) -text(Vanuatu) text(was:present:in) text(Oceania) -text(केप:वर्दे) text(is:present:in) text(West:Africa) -text(Cape:Verde) text(is:still:in) text(非洲) -text(Falkland:Islands) text(was:still:in) text(दक्षिण:अमेरिका) -text(جزر:فوكلاند) text(was:currently:in) text(América) -text(लाइबेरिया) text(is:currently:in) text(África:Occidental) -text(ليبيريا) text(is:a:neighbor:of) text(Costa:de:Marfil) -text(Liberia) text(is:a:neighboring:state:to) text(Sierra:Leone) -text(Liberia) text(was:a:neighboring:state:to) text(غينيا) -text(Cambodja) text(is:placed:in) text(Zuidoost-Azië) -text(Cambodia) text(borders:with) text(Vietnam) -text(柬埔寨) text(borders) text(泰國) -text(كمبوديا) text(is:butted:against) text(老撾) -text(Zimbabue) text(was:butted:against) text(Zambia) -text(Zimbabwe) text(was:adjacent:to) text(South:Africa) -text(زيمبابوي) text(is:adjacent:to) text(बोत्सवाना) -text(津巴布韦) text(neighbors) text(莫桑比克) -text(جزر:القمر) text(was:placed:in) text(पूर्वी:अफ्रीका) -text(葛摩) text(can:be:found:in) text(Africa) -text(Guam) text(was:situated:in) text(密克羅尼西亞群島) -text(Guam) text(is:situated:in) text(ओशिआनिया) -text(巴哈馬) text(is:located:in) text(कैरिबिया) -text(Bahamas) text(was:located:in) text(أمريكتان) -text(Lebanon) text(can:be:found:in) text(पश्चिमी:एशिया) -text(Líbano) text(was:positioned:in) text(亞洲) -text(لبنان) text(is:a:neighboring:country:of) text(以色列) -text(Libanon) text(was:a:neighboring:country:of) text(सीरिया) -text(سانت:مارتن) text(is:positioned:in) text(Caribe) -text(Sint:Maarten) text(was:sited:in) text(Americas) -text(Saint:Martin) text(neighbors:with) text(Saint-Martin) -text(Ethiopië) text(is:sited:in) text(东部非洲) -text(इथियोपिया) text(was:a:neighbor:of) text(索馬里) -text(埃塞俄比亚) text(is:a:neighbor:of) text(肯尼亚) -text(Etiopía) text(is:a:neighboring:state:to) text(Eritrea) -text(Ethiopia) text(was:a:neighboring:state:to) text(South:Sudan) -text(إثيوبيا) text(borders:with) text(Djibouti) -text(Ethiopië) text(borders) text(السودان) -text(Islas:Vírgenes:de:los:Estados:Unidos) text(was:localized:in) text(Caribbean) -text(جزر:العذراء:التابعة:الولايات:المتحدة) text(is:localized:in) text(美洲) -text(गिनी-बिसाऊ) text(was:present:in) text(غرب:إفريقيا) -text(Guinee-Bissau) text(is:present:in) text(Afrika) -text(畿內亞比紹) text(is:butted:against) text(Guinea) -text(غينيا:بيساو) text(was:butted:against) text(السنغال) -text(Libia) text(is:still:in) text(उत्तर:अफ़्रीका) -text(ليبيا) text(was:adjacent:to) text(Tsjaad) -text(लीबिया) text(is:adjacent:to) text(Túnez) -text(Libië) text(neighbors) text(尼日尔) -text(Libya) text(is:a:neighboring:country:of) text(Argelia) -text(利比亞) text(was:a:neighboring:country:of) text(मिस्र) -text(Libia) text(neighbors:with) text(सूडान) -text(भूटान) text(was:still:in) text(南亚) -text(بوتان) text(was:currently:in) text(آسيا) -text(Bhutan) text(was:a:neighbor:of) text(Volksrepubliek:China) -text(不丹) text(is:a:neighbor:of) text(India) -text(Macau) text(is:currently:in) text(Oost-Azië) -text(मकाउ) text(is:placed:in) text(एशिया) -text(ماكاو) text(is:a:neighboring:state:to) text(中华人民共和国) -text(फ़्रान्सीसी:पॉलिनेशिया) text(was:placed:in) text(玻里尼西亞) -text(Frans-Polynesië) text(can:be:found:in) text(أوقيانوسيا) -text(Somalia) text(was:situated:in) text(East:Africa) -text(सोमालिया) text(was:a:neighboring:state:to) text(Yibuti) -text(الصومال) text(borders:with) text(كينيا) -text(Somalia) text(borders) text(इथियोपिया) -text(सेंट:बार्थेलेमी) text(is:situated:in) text(الكاريبي) -text(San:Bartolomé) text(is:located:in) text(महाअमेरिका) -text(Rusia) text(was:located:in) text(أوروبا:الشرقية) -text(Russia) text(is:butted:against) text(Ucrania) -text(Rusland) text(was:butted:against) text(Belarus) -text(रूस) text(was:adjacent:to) text(चीनी:जनवादी:गणराज्य) -text(روسيا) text(is:adjacent:to) text(Kazachstan) -text(俄罗斯) text(neighbors) text(Noruega) -text(Rusia) text(is:a:neighboring:country:of) text(波蘭) -text(Russia) text(was:a:neighboring:country:of) text(Azerbaiyán) -text(Rusland) text(neighbors:with) text(ليتوانيا) -text(रूस) text(was:a:neighbor:of) text(إستونيا) -text(روسيا) text(is:a:neighbor:of) text(North:Korea) -text(俄罗斯) text(is:a:neighboring:state:to) text(Finlandia) -text(Rusia) text(was:a:neighboring:state:to) text(Mongolië) -text(Russia) text(borders:with) text(लातविया) -text(Rusland) text(borders) text(Georgië) -text(نيوزيلندا) text(can:be:found:in) text(nan) -text(New:Zealand) text(was:positioned:in) text(Oceanía) -text(पनामा) text(is:positioned:in) text(Centraal-Amerika) -text(بنما) text(was:sited:in) text(Amerika) -text(Panamá) text(is:butted:against) text(Costa:Rica) -text(巴拿馬) text(was:butted:against) text(Colombia) -text(巴布亚新几内亚) text(is:sited:in) text(Melanesia) -text(Papua:New:Guinea) text(was:adjacent:to) text(Indonesia) -text(朝鮮民主主義人民共和國) text(is:adjacent:to) text(República:Popular:China) -text(उत्तर:कोरिया) text(neighbors) text(Corea:del:Sur) -text(Noord-Korea) text(is:a:neighboring:country:of) text(रूस) -text(Latvia) text(was:localized:in) text(Noord-Europa) -text(Letonia) text(was:a:neighboring:country:of) text(立陶宛) -text(拉脫維亞) text(neighbors:with) text(Bielorrusia) -text(لاتفيا) text(was:a:neighbor:of) text(روسيا) -text(Letland) text(is:a:neighbor:of) text(愛沙尼亞) -text(سلطنة:عمان) text(is:localized:in) text(西亚) -text(阿曼) text(is:a:neighboring:state:to) text(Saudi:Arabia) -text(Oman) text(was:a:neighboring:state:to) text(اليمن) -text(Omán) text(borders:with) text(Emiratos:Árabes:Unidos) -text(San:Pedro:y:Miquelón) text(was:present:in) text(North:America) -text(Saint:Pierre:and:Miquelon) text(is:present:in) text(América) -text(Martinique) text(is:still:in) text(加勒比地区) -text(Martinica) text(was:still:in) text(أمريكتان) -text(Verenigd:Koninkrijk) text(was:currently:in) text(उत्तरी:यूरोप) -text(المملكة:المتحدة) text(is:currently:in) text(Europa) -text(United:Kingdom) text(borders) text(المملكة:المتحدة) -text(Israël) text(is:placed:in) text(Zuidwest-Azië) -text(इज़राइल) text(is:butted:against) text(黎巴嫩) -text(إسرائيل) text(was:butted:against) text(Egipto) -text(Israel) text(was:adjacent:to) text(約旦) -text(Israel) text(is:adjacent:to) text(敘利亞) -text(Jersey) text(was:placed:in) text(أوروبا:الشمالية) -text(जर्सी) text(can:be:found:in) text(欧洲) -text(Pitcairn:Islands) text(was:situated:in) text(بولنيزيا) -text(Pitcairneilanden) text(is:situated:in) text(大洋洲) -text(Togo) text(is:located:in) text(West-Afrika) -text(टोगो) text(neighbors) text(布吉納法索) -text(多哥) text(is:a:neighboring:country:of) text(غانا) -text(Togo) text(was:a:neighboring:country:of) text(بنين) -text(Kiribati) text(was:located:in) text(माइक्रोनीशिया) -text(Kiribati) text(can:be:found:in) text(Oceanië) -text(ईरान) text(was:positioned:in) text(दक्षिण:एशिया) -text(Iran) text(neighbors:with) text(Afghanistan) -text(伊朗) text(was:a:neighbor:of) text(तुर्कमेनिस्तान) -text(إيران) text(is:a:neighbor:of) text(土耳其) -text(Irán) text(is:a:neighboring:state:to) text(Armenië) -text(Iran) text(was:a:neighboring:state:to) text(Azerbaijan) -text(ईरान) text(borders:with) text(Pakistan) -text(Iran) text(borders) text(इराक) -text(تجمع:سان:مارتين) text(is:positioned:in) text(Caraïben) -text(San:Martín) text(was:sited:in) text(Americas) -text(सेंट:मार्टिन:की:सामूहिकता) text(is:butted:against) text(सेंट:मार्टिन) -text(República:Dominicana) text(is:sited:in) text(कैरिबिया) -text(डोमिनिकन:गणराज्य) text(was:localized:in) text(美洲) -text(多明尼加) text(was:butted:against) text(Haití) -text(Denmark) text(was:adjacent:to) text(Germany) -text(Bermuda) text(is:localized:in) text(北美洲) -text(برمودا) text(was:present:in) text(महाअमेरिका) -text(Chile) text(is:adjacent:to) text(阿根廷) -text(تشيلي) text(neighbors) text(Bolivia) -text(Chile) text(is:a:neighboring:country:of) text(Perú) -text(कोसोवो:गणराज्य) text(is:present:in) text(东欧) -text(Kosovo) text(was:a:neighboring:country:of) text(صربيا) -text(كوسوفو) text(neighbors:with) text(Albanië) -text(Kosovo) text(was:a:neighbor:of) text(مقدونيا:الشمالية) -text(科索沃) text(is:a:neighbor:of) text(मॉन्टेनीग्रो) -text(聖克里斯多福及尼維斯) text(is:still:in) text(Caribe) -text(Saint:Kitts:en:Nevis) text(was:still:in) text(Amerika) -text(Eritrea) text(is:a:neighboring:state:to) text(جيبوتي) -text(इरित्रिया) text(was:a:neighboring:state:to) text(苏丹) -text(إرتريا) text(borders:with) text(埃塞俄比亚) -text(赤道几内亚) text(was:currently:in) text(África:Central) -text(غينيا:الاستوائية) text(is:currently:in) text(África) -text(Equatorial:Guinea) text(borders) text(गबॉन) -text(Equatoriaal-Guinea) text(is:butted:against) text(कैमरुन) -text(नाइजर) text(is:placed:in) text(पश्चिमी:अफ्रीका) -text(النيجر) text(was:butted:against) text(تشاد) -text(Níger) text(was:adjacent:to) text(ليبيا) -text(Niger) text(is:adjacent:to) text(बुर्किना:फासो) -text(Niger) text(neighbors) text(Benín) -text(尼日尔) text(is:a:neighboring:country:of) text(Mali) -text(नाइजर) text(was:a:neighboring:country:of) text(अल्जीरिया) -text(النيجر) text(neighbors:with) text(Nigeria) -text(अंगुइला) text(was:placed:in) text(Caribbean) -text(أنغويلا) text(can:be:found:in) text(América) -text(Ruanda) text(was:situated:in) text(África:Oriental) -text(卢旺达) text(was:a:neighbor:of) text(بوروندي) -text(Rwanda) text(is:a:neighbor:of) text(Tanzania) -text(Rwanda) text(is:a:neighboring:state:to) text(烏干達) -text(रवाण्डा) text(was:a:neighboring:state:to) text(Congo-Kinshasa) -text(الإمارات:العربية:المتحدة) text(is:situated:in) text(Asia:Occidental) -text(阿拉伯联合酋长国) text(borders:with) text(Oman) -text(संयुक्त:अरब:अमीरात) text(borders) text(सउदी:अरब) -text(Estonia) text(is:located:in) text(北歐) -text(एस्टोनिया) text(was:located:in) text(Europa) -text(Estonia) text(is:butted:against) text(लातविया) -text(Estland) text(was:butted:against) text(俄罗斯) -text(اليونان) text(can:be:found:in) text(أوروبا:الجنوبية) -text(यूनान) text(was:adjacent:to) text(Bulgaria) -text(Greece) text(is:adjacent:to) text(阿爾巴尼亞) -text(希腊) text(neighbors) text(उत्तर:मैसिडोनिया) -text(Griekenland) text(is:a:neighboring:country:of) text(Turkije) -text(Senegal) text(was:positioned:in) text(西非) -text(Senegal) text(is:positioned:in) text(अफ्रीका) -text(सेनेगल) text(was:a:neighboring:country:of) text(Guinea-Bisáu) -text(Senegal) text(neighbors:with) text(موريتانيا) -text(塞内加尔) text(was:a:neighbor:of) text(مالي) -text(السنغال) text(is:a:neighbor:of) text(Gambia) -text(Senegal) text(is:a:neighboring:state:to) text(गिनी) -text(Guadeloupe) text(was:sited:in) text(الكاريبي) -text(غوادلوب) text(is:sited:in) text(أمريكتان) -text(मोनाको) text(was:a:neighboring:state:to) text(法國) -text(Djibouti) text(borders:with) text(厄立特里亞) -text(जिबूती) text(borders) text(Somalië) -text(吉布提) text(is:butted:against) text(Etiopía) -text(इंडोनेशिया) text(was:butted:against) text(Papúa:Nueva:Guinea) -text(إندونيسيا) text(was:adjacent:to) text(Oost-Timor) -text(Indonesië) text(is:adjacent:to) text(ماليزيا) -text(ब्रिटिश:वर्जिन:द्वीपसमूह) text(was:localized:in) text(加勒比地区) -text(英屬維爾京群島) text(is:localized:in) text(Americas) -text(جزر:كوك) text(was:present:in) text(पोलीनेशिया) -text(Islas:Cook) text(is:present:in) text(Oceania) -text(أوغندا) text(is:still:in) text(شرق:إفريقيا) -text(Uganda) text(neighbors) text(تنزانيا) -text(Oeganda) text(is:a:neighboring:country:of) text(Democratic:Republic:of:the:Congo) -text(युगाण्डा) text(was:a:neighboring:country:of) text(Kenia) -text(Uganda) text(neighbors:with) text(Sudán:del:Sur) -text(烏干達) text(was:a:neighbor:of) text(رواندا) -text(Noord-Macedonië) text(was:still:in) text(Zuid-Europa) -text(北马其顿) text(is:a:neighbor:of) text(Kosovo) -text(Macedonia:del:Norte) text(is:a:neighboring:state:to) text(Grecia) -text(North:Macedonia) text(was:a:neighboring:state:to) text(Albania) -text(مقدونيا:الشمالية) text(borders:with) text(Serbia) -text(उत्तर:मैसिडोनिया) text(borders) text(保加利亚) -text(ट्यूनिशिया) text(was:currently:in) text(North:Africa) -text(突尼西亞) text(is:currently:in) text(إفريقيا) -text(Tunesië) text(is:butted:against) text(लीबिया) -text(Tunisia) text(was:butted:against) text(الجزائر) -text(Ecuador) text(was:adjacent:to) text(पेरू) -text(ईक्वाडोर) text(is:adjacent:to) text(كولومبيا) -text(البرازيل) text(is:placed:in) text(Zuid-Amerika) -text(巴西) text(neighbors) text(Bolivia) -text(Brasil) text(is:a:neighboring:country:of) text(Colombia) -text(Brazilië) text(was:a:neighboring:country:of) text(पैराग्वे) -text(Brazil) text(neighbors:with) text(Uruguay) -text(ब्राज़ील) text(was:a:neighbor:of) text(French:Guiana) -text(البرازيل) text(is:a:neighbor:of) text(سورينام) -text(巴西) text(is:a:neighboring:state:to) text(वेनेज़ुएला) -text(Brasil) text(was:a:neighboring:state:to) text(Argentinië) -text(Brazilië) text(borders:with) text(غيانا) -text(Brazil) text(borders) text(Peru) -text(Paraguay) text(was:placed:in) text(南美洲) -text(Paraguay) text(can:be:found:in) text(美洲) -text(باراغواي) text(is:butted:against) text(अर्जेण्टीना) -text(巴拉圭) text(was:butted:against) text(ब्राज़ील) -text(Paraguay) text(was:adjacent:to) text(玻利維亞) -text(Finland) text(was:situated:in) text(Northern:Europe) -text(芬蘭) text(is:adjacent:to) text(Noorwegen) -text(Finland) text(neighbors) text(स्वीडन) -text(फ़िनलैण्ड) text(is:a:neighboring:country:of) text(Rusia) -text(Jordania) text(was:a:neighboring:country:of) text(Arabia:Saudí) -text(الأردن) text(neighbors:with) text(以色列) -text(Jordan) text(was:a:neighbor:of) text(Iraq) -text(Jordanië) text(is:a:neighbor:of) text(Syrië) -text(Timor:Oriental) text(is:a:neighboring:state:to) text(印度尼西亚) -text(Montenegro) text(is:situated:in) text(Europa:del:Sur) -text(Montenegro) text(was:a:neighboring:state:to) text(कोसोवो:गणराज्य) -text(الجبل:الأسود) text(borders:with) text(波斯尼亚和黑塞哥维那) -text(Montenegro) text(borders) text(Kroatië) -text(蒙特內哥羅) text(is:butted:against) text(塞爾維亞) -text(मॉन्टेनीग्रो) text(was:butted:against) text(Albania) -text(秘鲁) text(is:located:in) text(América:del:Sur) -text(بيرو) text(was:adjacent:to) text(الإكوادور) -text(Peru) text(is:adjacent:to) text(बोलिविया) -text(Perú) text(neighbors) text(चिली) -text(पेरू) text(is:a:neighboring:country:of) text(البرازيل) -text(Peru) text(was:a:neighboring:country:of) text(कोलम्बिया) -text(Montserrat) text(was:located:in) text(Caraïben) -text(Montserrat) text(can:be:found:in) text(महाअमेरिका) -text(Ukraine) text(was:positioned:in) text(Eastern:Europe) -text(युक्रेन) text(neighbors:with) text(سلوفاكيا) -text(Oekraïne) text(was:a:neighbor:of) text(Wit-Rusland) -text(أوكرانيا) text(is:a:neighbor:of) text(Poland) -text(烏克蘭) text(is:a:neighboring:state:to) text(Russia) -text(Ucrania) text(was:a:neighboring:state:to) text(匈牙利) -text(Ukraine) text(borders:with) text(摩爾多瓦) -text(युक्रेन) text(borders) text(Romania) -text(Dominica) text(is:positioned:in) text(कैरिबिया) -text(دومينيكا) text(was:sited:in) text(Amerika) -text(土庫曼斯坦) text(is:butted:against) text(哈萨克斯坦) -text(Turkmenistan) text(was:butted:against) text(अफ़्ग़ानिस्तान) -text(Turkmenistan) text(was:adjacent:to) text(Uzbekistan) -text(Turkmenistán) text(is:adjacent:to) text(伊朗) -text(根西) text(is:sited:in) text(Europa:del:Norte) -text(Guernsey) text(was:localized:in) text(यूरोप) -text(Gibraltar) text(is:localized:in) text(दक्षिणी:यूरोप) -text(جبل:طارق) text(neighbors) text(España) -text(स्विट्ज़रलैण्ड) text(was:present:in) text(Europa:Occidental) -text(瑞士) text(is:a:neighboring:country:of) text(Duitsland) -text(Zwitserland) text(was:a:neighboring:country:of) text(意大利) -text(سويسرا) text(neighbors:with) text(النمسا) -text(Suiza) text(was:a:neighbor:of) text(फ़्रान्स) -text(Switzerland) text(is:a:neighbor:of) text(列支敦斯登) -text(ऑस्ट्रिया) text(is:present:in) text(पश्चिमी:यूरोप) -text(Oostenrijk) text(is:a:neighboring:state:to) text(Alemania) -text(Austria) text(was:a:neighboring:state:to) text(Slowakije) -text(奧地利) text(borders:with) text(Slovenië) -text(Austria) text(borders) text(इटली) -text(النمسا) text(is:butted:against) text(स्विट्ज़रलैण्ड) -text(ऑस्ट्रिया) text(was:butted:against) text(हंगरी) -text(Oostenrijk) text(was:adjacent:to) text(Liechtenstein) -text(Austria) text(is:adjacent:to) text(चेक:गणराज्य) -text(Hongarije) text(neighbors) text(Oekraïne) -text(Hungría) text(is:a:neighboring:country:of) text(स्लोवाकिया) -text(المجر) text(was:a:neighboring:country:of) text(Slovenia) -text(Hungary) text(neighbors:with) text(Croatia) -text(匈牙利) text(was:a:neighbor:of) text(奧地利) -text(हंगरी) text(is:a:neighbor:of) text(Servië) -text(Hongarije) text(is:a:neighboring:state:to) text(रोमानिया) -text(Malawi) text(is:still:in) text(Oost-Afrika) -text(مالاوي) text(was:a:neighboring:state:to) text(ज़ाम्बिया) -text(मलावी) text(borders:with) text(Tanzania) -text(Malawi) text(borders) text(Mozambique) -text(Hongkong) text(is:butted:against) text(الصين) -text(Liechtenstein) text(was:still:in) text(Western:Europe) -text(Liechtenstein) text(was:currently:in) text(أوروبا) -text(ليختنشتاين) text(was:butted:against) text(瑞士) -text(लिक्टेन्स्टाइन) text(was:adjacent:to) text(Austria) -text(巴巴多斯) text(is:currently:in) text(Caribe) -text(Barbados) text(is:placed:in) text(América) -text(Georgia) text(was:placed:in) text(West:Asia) -text(جورجيا) text(is:adjacent:to) text(आर्मीनिया) -text(जॉर्जिया) text(neighbors) text(Azerbeidzjan) -text(Georgia) text(is:a:neighboring:country:of) text(Rusland) -text(格鲁吉亚) text(was:a:neighboring:country:of) text(Turkey) -text(अल्बानिया) text(can:be:found:in) text(南欧) -text(ألبانيا) text(was:situated:in) text(Europe) -text(Albanië) text(neighbors:with) text(Montenegro) -text(阿爾巴尼亞) text(was:a:neighbor:of) text(Noord-Macedonië) -text(Albania) text(is:a:neighbor:of) text(Kosovo) -text(Albania) text(is:a:neighboring:state:to) text(اليونان) -text(科威特) text(is:situated:in) text(غرب:آسيا) -text(الكويت) text(was:a:neighboring:state:to) text(Saoedi-Arabië) -text(Koeweit) text(borders:with) text(Irak) -text(Sudáfrica) text(is:located:in) text(إفريقيا:الجنوبية) -text(Zuid-Afrika) text(borders) text(Mozambique) -text(جنوب:إفريقيا) text(is:butted:against) text(Botsuana) -text(दक्षिण:अफ़्रीका) text(was:butted:against) text(Esuatini) -text(南非) text(was:adjacent:to) text(Zimbabwe) -text(South:Africa) text(is:adjacent:to) text(Namibia) -text(Sudáfrica) text(neighbors) text(Lesotho) -text(海地) text(was:located:in) text(Caribbean) -text(Haiti) text(can:be:found:in) text(أمريكتان) -text(هايتي) text(is:a:neighboring:country:of) text(Dominicaanse:Republiek) -text(أفغانستان) text(was:positioned:in) text(Asia:del:Sur) -text(Afghanistan) text(was:a:neighboring:country:of) text(تركمانستان) -text(阿富汗) text(neighbors:with) text(People's:Republic:of:China) -text(Afganistán) text(was:a:neighbor:of) text(Tadzjikistan) -text(Afghanistan) text(is:a:neighbor:of) text(أوزبكستان) -text(अफ़्ग़ानिस्तान) text(is:a:neighboring:state:to) text(إيران) -text(أفغانستان) text(was:a:neighboring:state:to) text(Pakistán) -text(Singapur) text(is:positioned:in) text(Sudeste:Asiático) -text(Singapore) text(was:sited:in) text(Asia) -text(Benin) text(is:sited:in) text(West:Africa) -text(बेनिन) text(borders:with) text(Níger) -text(貝南) text(borders) text(بوركينا:فاسو) -text(Benin) text(is:butted:against) text(Togo) -text(بنين) text(was:butted:against) text(奈及利亞) -text(Åland) text(was:localized:in) text(Noord-Europa) -text(جزر:أولاند) text(is:localized:in) text(Europa) -text(Croacia) text(was:present:in) text(Southern:Europe) -text(克羅地亞) text(was:adjacent:to) text(سلوفينيا) -text(क्रोएशिया) text(is:adjacent:to) text(Bosnië:en:Herzegovina) -text(كرواتيا) text(neighbors) text(Hungría) -text(Kroatië) text(is:a:neighboring:country:of) text(Serbia) -text(Croatia) text(was:a:neighboring:country:of) text(Montenegro) -text(Zweden) text(is:present:in) text(उत्तरी:यूरोप) -text(Sweden) text(neighbors:with) text(नॉर्वे) -text(السويد) text(was:a:neighbor:of) text(فنلندا) -text(मेक्सिको) text(is:a:neighbor:of) text(Belice) -text(墨西哥) text(is:a:neighboring:state:to) text(United:States) -text(المكسيك) text(was:a:neighboring:state:to) text(危地马拉) -text(Groenland) text(is:still:in) text(Noord-Amerika) -text(Groenlandia) text(was:still:in) text(Americas) -text(Pitcairn:Islands) text(was:currently:in) text(nan) -text(Pitcairneilanden) text(is:currently:in) text(ओशिआनिया) -text(Nepal) text(is:placed:in) text(Zuid-Azië) -text(Nepal) text(was:placed:in) text(Azië) -text(नेपाल) text(borders:with) text(Volksrepubliek:China) -text(نيبال) text(borders) text(India) -text(Guatemala) text(is:butted:against) text(Belize) -text(Guatemala) text(was:butted:against) text(El:Salvador) -text(ग्वाटेमाला) text(was:adjacent:to) text(Mexico) -text(غواتيمالا) text(is:adjacent:to) text(Honduras) -text(दक्षिण:कोरिया) text(can:be:found:in) text(पूर्वी:एशिया) -text(Zuid-Korea) text(neighbors) text(كوريا:الشمالية) -text(Moldavië) text(was:situated:in) text(पूर्वी:यूरोप) -text(Moldavia) text(is:situated:in) text(欧洲) -text(مولدوفا) text(is:a:neighboring:country:of) text(أوكرانيا) -text(मोल्डोवा) text(was:a:neighboring:country:of) text(Roemenië) -text(毛里求斯) text(is:located:in) text(पूर्वी:अफ्रीका) -text(मॉरिशस) text(was:located:in) text(非洲) -text(بيلاروس) text(neighbors:with) text(烏克蘭) -text(बेलारूस) text(was:a:neighbor:of) text(بولندا) -text(白俄羅斯) text(is:a:neighbor:of) text(Lithuania) -text(Belarus) text(is:a:neighboring:state:to) text(रूस) -text(Bielorrusia) text(was:a:neighboring:state:to) text(Latvia) -text(बांग्लादेश) text(borders:with) text(ميانمار) -text(Bangladesh) text(borders) text(الهند) -text(馬來西亞) text(can:be:found:in) text(جنوب:شرق:آسيا) -text(मलेशिया) text(is:butted:against) text(थाईलैंड) -text(Malaysia) text(was:butted:against) text(Indonesia) -text(Malasia) text(was:adjacent:to) text(Brunéi) -text(बोस्निया:और:हर्ज़ेगोविना) text(was:positioned:in) text(أوروبا:الجنوبية) -text(Bosnia:and:Herzegovina) text(is:adjacent:to) text(सर्बिया) -text(البوسنة:والهرسك) text(neighbors) text(Croacia) -text(Bosnia:y:Herzegovina) text(is:a:neighboring:country:of) text(الجبل:الأسود) -text(لوكسمبورغ) text(is:positioned:in) text(أوروبا:الغربية) -text(लक्ज़मबर्ग) text(was:a:neighboring:country:of) text(德國) -text(Luxembourg) text(neighbors:with) text(比利時) -text(Luxemburg) text(was:a:neighbor:of) text(France) -text(إيطاليا) text(was:sited:in) text(Zuid-Europa) -text(Italy) text(is:sited:in) text(Europa) -text(Italië) text(is:a:neighbor:of) text(斯洛文尼亞) -text(Italia) text(is:a:neighboring:state:to) text(Zwitserland) -text(意大利) text(was:a:neighboring:state:to) text(النمسا) -text(इटली) text(borders:with) text(Frankrijk) -text(إيطاليا) text(borders) text(梵蒂岡城國) -text(Italy) text(is:butted:against) text(San:Marino) -text(أذربيجان) text(was:localized:in) text(पश्चिमी:एशिया) -text(अज़रबैजान) text(was:butted:against) text(تركيا) -text(阿塞拜疆) text(was:adjacent:to) text(Armenia) -text(Azerbaiyán) text(is:adjacent:to) text(روسيا) -text(Azerbaijan) text(neighbors) text(Irán) -text(Azerbeidzjan) text(is:a:neighboring:country:of) text(Georgië) -text(هندوراس) text(is:localized:in) text(Central:America) -text(Honduras) text(was:a:neighboring:country:of) text(Guatemala) -text(Honduras) text(neighbors:with) text(Nicaragua) -text(洪都拉斯) text(was:a:neighbor:of) text(薩爾瓦多) -text(माली) text(was:present:in) text(África:Occidental) -text(Mali) text(is:a:neighbor:of) text(Burkina:Faso) -text(Mali) text(is:a:neighboring:state:to) text(Guinee) -text(马里) text(was:a:neighboring:state:to) text(Mauritanië) -text(Mali) text(borders:with) text(Niger) -text(مالي) text(borders) text(Senegal) -text(माली) text(is:butted:against) text(阿爾及利亞) -text(Mali) text(was:butted:against) text(कोत:दिव्वार) -text(تايوان) text(is:present:in) text(Asia:Oriental) -text(Taiwan) text(is:still:in) text(Asia) -text(Algerije) text(was:still:in) text(Noord-Afrika) -text(Algeria) text(was:adjacent:to) text(Libië) -text(Argelia) text(is:adjacent:to) text(تونس) -text(अल्जीरिया) text(neighbors) text(Mauritania) -text(الجزائر) text(is:a:neighboring:country:of) text(Marokko) -text(阿爾及利亞) text(was:a:neighboring:country:of) text(Niger) -text(Algerije) text(neighbors:with) text(Mali) -text(Algeria) text(was:a:neighbor:of) text(الجمهورية:العربية:الصحراوية:الديمقراطية) -text(Guayana:Francesa) text(is:a:neighbor:of) text(巴西) -text(غويانا:الفرنسية) text(is:a:neighboring:state:to) text(सूरीनाम) -text(Jemen) text(was:currently:in) text(西亚) -text(Yemen) text(was:a:neighboring:state:to) text(ओमान) -text(Yemen) text(borders:with) text(السعودية) -text(بورتوريكو) text(is:currently:in) text(الكاريبي) -text(Puerto:Rico) text(is:placed:in) text(美洲) -text(San:Vicente:y:las:Granadinas) text(was:placed:in) text(加勒比地区) -text(圣文森特和格林纳丁斯) text(can:be:found:in) text(महाअमेरिका) -text(Venezuela) text(borders) text(Brasil) -text(Venezuela) text(is:butted:against) text(Guyana) -text(فنزويلا) text(was:butted:against) text(哥伦比亚) -text(Grenada) text(was:situated:in) text(Caraïben) -text(غرينادا) text(is:situated:in) text(Amerika) -text(संयुक्त:राज्य:अमेरिका) text(was:adjacent:to) text(Canada) -text(Estados:Unidos) text(is:adjacent:to) text(Mexico) -text(托克劳) text(is:located:in) text(Polynesia) -text(Tokelau) text(was:located:in) text(أوقيانوسيا) -text(स्लोवेनिया) text(can:be:found:in) text(Europa:del:Sur) -text(Eslovenia) text(neighbors) text(ऑस्ट्रिया) -text(Slovenië) text(is:a:neighboring:country:of) text(克羅地亞) -text(Slovenia) text(was:a:neighboring:country:of) text(Italië) -text(سلوفينيا) text(neighbors:with) text(المجر) -text(Philippines) text(was:positioned:in) text(东南亚) -text(Filipijnen) text(is:positioned:in) text(亞洲) -text(ميكرونيسيا) text(was:sited:in) text(Micronesia) -text(Micronesia) text(is:sited:in) text(Oceanía) -text(中华人民共和国) text(was:localized:in) text(東亞) -text(चीनी:जनवादी:गणराज्य) text(was:a:neighbor:of) text(Afghanistan) -text(República:Popular:China) text(is:a:neighbor:of) text(Bhutan) -text(الصين) text(is:a:neighboring:state:to) text(Macao) -text(People's:Republic:of:China) text(was:a:neighboring:state:to) text(India) -text(Volksrepubliek:China) text(borders:with) text(كازاخستان) -text(中华人民共和国) text(borders) text(Kyrgyzstan) -text(चीनी:जनवादी:गणराज्य) text(is:butted:against) text(Tajikistan) -text(República:Popular:China) text(was:butted:against) text(Laos) -text(الصين) text(was:adjacent:to) text(俄罗斯) -text(People's:Republic:of:China) text(is:adjacent:to) text(Corea:del:Norte) -text(Volksrepubliek:China) text(neighbors) text(緬甸) -text(中华人民共和国) text(is:a:neighboring:country:of) text(巴基斯坦) -text(चीनी:जनवादी:गणराज्य) text(was:a:neighboring:country:of) text(मंगोलिया) -text(República:Popular:China) text(neighbors:with) text(香港) -text(الصين) text(was:a:neighbor:of) text(Vietnam) -text(Gabón) text(is:localized:in) text(Centraal-Afrika) -text(Gabon) text(is:a:neighbor:of) text(Guinea:Ecuatorial) -text(Gabon) text(is:a:neighboring:state:to) text(República:del:Congo) -text(加蓬) text(was:a:neighboring:state:to) text(Camerún) -text(Amerikaanse:Kleinere:Afgelegen:Eilanden) text(was:present:in) text(أمريكا:الشمالية) -text(美国本土外小岛屿) text(is:present:in) text(América) -text(Andorra) text(is:still:in) text(दक्षिणी:यूरोप) -text(Andorra) text(borders:with) text(إسبانيا) -text(安道尔) text(borders) text(فرنسا) -text(萨摩亚) text(was:still:in) text(Polynesië) -text(Samoa) text(was:currently:in) text(大洋洲) -text(Gambia) text(is:currently:in) text(غرب:إفريقيا) -text(岡比亞) text(is:placed:in) text(Africa) -text(The:Gambia) text(is:butted:against) text(सेनेगल) -text(nan) text(was:placed:in) text(Zuidwest-Azië) -text(Pedro:Miguel) text(can:be:found:in) text(آسيا) -text(nan) text(was:butted:against) text(जॉर्डन) -text(Pedro:Miguel) text(was:adjacent:to) text(埃及) -text(nan) text(is:adjacent:to) text(Israël) -text(留尼汪) text(was:situated:in) text(东部非洲) -text(Réunion) text(is:situated:in) text(Afrika) -text(Francia) text(is:located:in) text(West-Europa) -text(法國) text(neighbors) text(ألمانيا) -text(फ़्रान्स) text(is:a:neighboring:country:of) text(卢森堡) -text(France) text(was:a:neighboring:country:of) text(Italia) -text(Frankrijk) text(neighbors:with) text(Andorra) -text(فرنسا) text(was:a:neighbor:of) text(سويسرا) -text(Francia) text(is:a:neighbor:of) text(Mónaco) -text(法國) text(is:a:neighboring:state:to) text(बेल्जियम) -text(फ़्रान्स) text(was:a:neighboring:state:to) text(Spanje) -text(منغوليا) text(was:located:in) text(East:Asia) -text(Mongolia) text(can:be:found:in) text(एशिया) -text(蒙古國) text(borders:with) text(People's:Republic:of:China) -text(Mongolia) text(borders) text(Rusia) -text(Lituania) text(was:positioned:in) text(أوروبا:الشمالية) -text(Litouwen) text(is:butted:against) text(Polonia) -text(लिथुआनिया) text(was:butted:against) text(Letonia) -text(ليتوانيا) text(was:adjacent:to) text(Wit-Rusland) -text(立陶宛) text(is:adjacent:to) text(Russia) -text(Cayman:Islands) text(is:positioned:in) text(कैरिबिया) -text(केमन:द्वीपसमूह) text(was:sited:in) text(أمريكتان) -text(Saint:Lucia) text(is:sited:in) text(Caribe) -text(سانت:لوسيا) text(was:localized:in) text(Americas) -text(Curazao) text(is:localized:in) text(Caribbean) -text(Curaçao) text(was:present:in) text(美洲) -text(الكاريبي) text(is:present:in) text(महाअमेरिका) -text(South:Asia) text(is:still:in) text(Asia) -text(中部非洲) text(was:still:in) text(África) -text(北歐) text(was:currently:in) text(यूरोप) -text(南欧) text(is:currently:in) text(أوروبا) -text(Asia:Occidental) text(is:placed:in) text(Azië) -text(South:America) text(was:placed:in) text(Amerika) -text(Polinesia) text(can:be:found:in) text(Oceanië) -text(nan) text(was:situated:in) text(Oceania) -text(西欧) text(is:situated:in) text(Europe) -text(East:Africa) text(is:located:in) text(अफ्रीका) -text(West-Afrika) text(was:located:in) text(إفريقيا) -text(Europa:Oriental) text(can:be:found:in) text(Europa) -text(केंद्रीय:अमेरिका) text(was:positioned:in) text(América) -text(América:del:Norte) text(is:positioned:in) text(أمريكتان) -text(दक्षिण:पूर्व:एशिया) text(was:sited:in) text(Asia) -text(Southern:Africa) text(is:sited:in) text(非洲) -text(شرق:آسيا) text(was:localized:in) text(亞洲) -text(Norte:de:África) text(is:localized:in) text(Africa) -text(मॅलानिशिया) text(was:present:in) text(ओशिआनिया) -text(Micronesië) text(is:present:in) text(أوقيانوسيا) -text(Central:Asia) text(is:still:in) text(آسيا) -text(中欧) text(was:still:in) text(欧洲) \ No newline at end of file diff --git a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_relation2text.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_relation2text.tsv index 4b29673..119b9d7 100644 --- a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_relation2text.tsv +++ b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_relation2text.tsv @@ -1,431 +1,431 @@ -palau text(can:be:found:in) micronesia -palau text(was:positioned:in) oceania -maldives text(is:positioned:in) southern_asia -maldives text(was:sited:in) asia -brunei text(is:sited:in) south-eastern_asia +palau text(is:positioned:in) micronesia +palau text(was:sited:in) oceania +maldives text(is:sited:in) southern_asia +maldives text(is:placed:in) asia +brunei text(was:placed:in) south-eastern_asia brunei text(was:localized:in) asia -brunei text(is:butted:against) malaysia +brunei text(was:a:neighboring:country:of) malaysia japan text(is:localized:in) eastern_asia japan text(was:present:in) asia -netherlands text(was:butted:against) germany -netherlands text(was:adjacent:to) belgium -turkey text(is:adjacent:to) armenia -turkey text(neighbors) azerbaijan -turkey text(is:a:neighboring:country:of) iran -turkey text(was:a:neighboring:country:of) greece -turkey text(neighbors:with) georgia -turkey text(was:a:neighbor:of) bulgaria -turkey text(is:a:neighbor:of) iraq -turkey text(is:a:neighboring:state:to) syria +netherlands text(was:adjacent:to) germany +netherlands text(is:adjacent:to) belgium +turkey text(was:a:neighbor:of) armenia +turkey text(is:a:neighbor:of) azerbaijan +turkey text(is:a:neighboring:state:to) iran +turkey text(was:a:neighboring:state:to) greece +turkey text(borders:with) georgia +turkey text(neighbors:withborders) bulgaria +turkey text(neighbors) iraq +turkey text(is:butted:against) syria angola text(is:present:in) middle_africa -angola text(was:a:neighboring:state:to) dr_congo -angola text(borders:with) namibia -angola text(borders) zambia -angola text(is:butted:against) republic_of_the_congo +angola text(was:butted:against) dr_congo +angola text(is:a:neighboring:country:of) namibia +angola text(was:a:neighboring:country:of) zambia +angola text(was:adjacent:to) republic_of_the_congo armenia text(is:still:in) western_asia -armenia text(was:butted:against) georgia -armenia text(was:adjacent:to) azerbaijan -armenia text(is:adjacent:to) iran -armenia text(neighbors) turkey +armenia text(is:adjacent:to) georgia +armenia text(was:a:neighbor:of) azerbaijan +armenia text(is:a:neighbor:of) iran +armenia text(is:a:neighboring:state:to) turkey antigua_and_barbuda text(was:still:in) caribbean antigua_and_barbuda text(was:currently:in) americas swaziland text(is:currently:in) southern_africa -swaziland text(is:a:neighboring:country:of) south_africa -swaziland text(was:a:neighboring:country:of) mozambique -wallis_and_futuna text(is:placed:in) polynesia -wallis_and_futuna text(was:placed:in) oceania -uruguay text(can:be:found:in) south_america -uruguay text(was:situated:in) americas -uruguay text(neighbors:with) argentina -uruguay text(was:a:neighbor:of) brazil -zambia text(is:situated:in) eastern_africa -zambia text(is:a:neighbor:of) tanzania -zambia text(is:a:neighboring:state:to) mozambique -zambia text(was:a:neighboring:state:to) dr_congo -zambia text(borders:with) angola -zambia text(borders) botswana -zambia text(is:butted:against) zimbabwe -zambia text(was:butted:against) namibia -zambia text(was:adjacent:to) malawi -cyprus text(is:located:in) eastern_europe -cyprus text(was:located:in) europe -cyprus text(is:adjacent:to) united_kingdom -ireland text(can:be:found:in) northern_europe -ireland text(was:positioned:in) europe -ireland text(neighbors) united_kingdom -burundi text(is:positioned:in) eastern_africa -burundi text(is:a:neighboring:country:of) dr_congo -burundi text(was:a:neighboring:country:of) rwanda -burundi text(neighbors:with) tanzania -central_african_republic text(was:sited:in) middle_africa -central_african_republic text(was:a:neighbor:of) chad -central_african_republic text(is:a:neighbor:of) republic_of_the_congo -central_african_republic text(is:a:neighboring:state:to) dr_congo -central_african_republic text(was:a:neighboring:state:to) south_sudan -central_african_republic text(borders:with) cameroon -central_african_republic text(borders) sudan -tonga text(is:sited:in) polynesia +swaziland text(was:a:neighboring:state:to) south_africa +swaziland text(borders:with) mozambique +wallis_and_futuna text(was:situated:in) polynesia +wallis_and_futuna text(is:situated:in) oceania +uruguay text(is:located:in) south_america +uruguay text(was:located:in) americas +uruguay text(neighbors:withborders) argentina +uruguay text(neighbors) brazil +zambia text(could:be:found:in) eastern_africa +zambia text(is:butted:against) tanzania +zambia text(was:butted:against) mozambique +zambia text(is:a:neighboring:country:of) dr_congo +zambia text(was:a:neighboring:country:of) angola +zambia text(was:adjacent:to) botswana +zambia text(is:adjacent:to) zimbabwe +zambia text(was:a:neighbor:of) namibia +zambia text(is:a:neighbor:of) malawi +cyprus text(can:be:found:in) eastern_europe +cyprus text(was:positioned:in) europe +cyprus text(is:a:neighboring:state:to) united_kingdom +ireland text(is:positioned:in) northern_europe +ireland text(was:sited:in) europe +ireland text(was:a:neighboring:state:to) united_kingdom +burundi text(is:sited:in) eastern_africa +burundi text(borders:with) dr_congo +burundi text(neighbors:withborders) rwanda +burundi text(neighbors) tanzania +central_african_republic text(is:placed:in) middle_africa +central_african_republic text(is:butted:against) chad +central_african_republic text(was:butted:against) republic_of_the_congo +central_african_republic text(is:a:neighboring:country:of) dr_congo +central_african_republic text(was:a:neighboring:country:of) south_sudan +central_african_republic text(was:adjacent:to) cameroon +central_african_republic text(is:adjacent:to) sudan +tonga text(was:placed:in) polynesia tonga text(was:localized:in) oceania ivory_coast text(is:localized:in) western_africa -ivory_coast text(is:butted:against) burkina_faso -ivory_coast text(was:butted:against) ghana -ivory_coast text(was:adjacent:to) liberia -ivory_coast text(is:adjacent:to) mali -ivory_coast text(neighbors) guinea -sierra_leone text(is:a:neighboring:country:of) liberia -sierra_leone text(was:a:neighboring:country:of) guinea +ivory_coast text(was:a:neighbor:of) burkina_faso +ivory_coast text(is:a:neighbor:of) ghana +ivory_coast text(is:a:neighboring:state:to) liberia +ivory_coast text(was:a:neighboring:state:to) mali +ivory_coast text(borders:with) guinea +sierra_leone text(neighbors:withborders) liberia +sierra_leone text(neighbors) guinea mayotte text(was:present:in) eastern_africa mayotte text(is:present:in) africa -poland text(neighbors:with) germany -poland text(was:a:neighbor:of) ukraine -poland text(is:a:neighbor:of) slovakia -poland text(is:a:neighboring:state:to) belarus -poland text(was:a:neighboring:state:to) russia -poland text(borders:with) lithuania -poland text(borders) czechia +poland text(is:butted:against) germany +poland text(was:butted:against) ukraine +poland text(is:a:neighboring:country:of) slovakia +poland text(was:a:neighboring:country:of) belarus +poland text(was:adjacent:to) russia +poland text(is:adjacent:to) lithuania +poland text(was:a:neighbor:of) czechia kazakhstan text(is:still:in) central_asia -kazakhstan text(is:butted:against) turkmenistan -kazakhstan text(was:butted:against) china -kazakhstan text(was:adjacent:to) kyrgyzstan -kazakhstan text(is:adjacent:to) uzbekistan -kazakhstan text(neighbors) russia +kazakhstan text(is:a:neighbor:of) turkmenistan +kazakhstan text(is:a:neighboring:state:to) china +kazakhstan text(was:a:neighboring:state:to) kyrgyzstan +kazakhstan text(borders:with) uzbekistan +kazakhstan text(neighbors:withborders) russia uzbekistan text(was:still:in) central_asia -uzbekistan text(is:a:neighboring:country:of) afghanistan -uzbekistan text(was:a:neighboring:country:of) turkmenistan -uzbekistan text(neighbors:with) kazakhstan -uzbekistan text(was:a:neighbor:of) kyrgyzstan -uzbekistan text(is:a:neighbor:of) tajikistan +uzbekistan text(neighbors) afghanistan +uzbekistan text(is:butted:against) turkmenistan +uzbekistan text(was:butted:against) kazakhstan +uzbekistan text(is:a:neighboring:country:of) kyrgyzstan +uzbekistan text(was:a:neighboring:country:of) tajikistan turks_and_caicos_islands text(was:currently:in) caribbean turks_and_caicos_islands text(is:currently:in) americas -new_caledonia text(is:placed:in) melanesia -new_caledonia text(was:placed:in) oceania -pakistan text(is:a:neighboring:state:to) china -pakistan text(was:a:neighboring:state:to) afghanistan -pakistan text(borders:with) iran -pakistan text(borders) india -argentina text(can:be:found:in) south_america -argentina text(is:butted:against) bolivia -argentina text(was:butted:against) chile -argentina text(was:adjacent:to) brazil -argentina text(is:adjacent:to) paraguay +new_caledonia text(was:situated:in) melanesia +new_caledonia text(is:situated:in) oceania +pakistan text(was:adjacent:to) china +pakistan text(is:adjacent:to) afghanistan +pakistan text(was:a:neighbor:of) iran +pakistan text(is:a:neighbor:of) india +argentina text(is:located:in) south_america +argentina text(is:a:neighboring:state:to) bolivia +argentina text(was:a:neighboring:state:to) chile +argentina text(borders:with) brazil +argentina text(neighbors:withborders) paraguay argentina text(neighbors) uruguay -cuba text(was:situated:in) caribbean -cuba text(is:situated:in) americas -serbia text(is:a:neighboring:country:of) macedonia -serbia text(was:a:neighboring:country:of) montenegro -serbia text(neighbors:with) kosovo -serbia text(was:a:neighbor:of) bosnia_and_herzegovina -serbia text(is:a:neighbor:of) croatia -serbia text(is:a:neighboring:state:to) hungary -serbia text(was:a:neighboring:state:to) bulgaria -serbia text(borders:with) romania -czechia text(is:located:in) eastern_europe -czechia text(borders) germany -czechia text(is:butted:against) austria -czechia text(was:butted:against) poland -czechia text(was:adjacent:to) slovakia -nicaragua text(is:adjacent:to) honduras -nicaragua text(neighbors) costa_rica -vietnam text(was:located:in) south-eastern_asia -vietnam text(can:be:found:in) asia -vietnam text(is:a:neighboring:country:of) cambodia -vietnam text(was:a:neighboring:country:of) laos -vietnam text(neighbors:with) china -niue text(was:positioned:in) polynesia -niue text(is:positioned:in) oceania -canada text(was:sited:in) northern_america -canada text(was:a:neighbor:of) united_states -slovakia text(is:a:neighbor:of) ukraine -slovakia text(is:a:neighboring:state:to) poland -slovakia text(was:a:neighboring:state:to) austria -slovakia text(borders:with) hungary -slovakia text(borders) czechia -mozambique text(is:butted:against) tanzania -mozambique text(was:butted:against) swaziland -mozambique text(was:adjacent:to) zimbabwe -mozambique text(is:adjacent:to) zambia -mozambique text(neighbors) malawi +cuba text(was:located:in) caribbean +cuba text(could:be:found:in) americas +serbia text(is:butted:against) macedonia +serbia text(was:butted:against) montenegro +serbia text(is:a:neighboring:country:of) kosovo +serbia text(was:a:neighboring:country:of) bosnia_and_herzegovina +serbia text(was:adjacent:to) croatia +serbia text(is:adjacent:to) hungary +serbia text(was:a:neighbor:of) bulgaria +serbia text(is:a:neighbor:of) romania +czechia text(can:be:found:in) eastern_europe +czechia text(is:a:neighboring:state:to) germany +czechia text(was:a:neighboring:state:to) austria +czechia text(borders:with) poland +czechia text(neighbors:withborders) slovakia +nicaragua text(neighbors) honduras +nicaragua text(is:butted:against) costa_rica +vietnam text(was:positioned:in) south-eastern_asia +vietnam text(is:positioned:in) asia +vietnam text(was:butted:against) cambodia +vietnam text(is:a:neighboring:country:of) laos +vietnam text(was:a:neighboring:country:of) china +niue text(was:sited:in) polynesia +niue text(is:sited:in) oceania +canada text(is:placed:in) northern_america +canada text(was:adjacent:to) united_states +slovakia text(is:adjacent:to) ukraine +slovakia text(was:a:neighbor:of) poland +slovakia text(is:a:neighbor:of) austria +slovakia text(is:a:neighboring:state:to) hungary +slovakia text(was:a:neighboring:state:to) czechia +mozambique text(borders:with) tanzania +mozambique text(neighbors:withborders) swaziland +mozambique text(neighbors) zimbabwe +mozambique text(is:butted:against) zambia +mozambique text(was:butted:against) malawi mozambique text(is:a:neighboring:country:of) south_africa -aruba text(is:sited:in) caribbean +aruba text(was:placed:in) caribbean aruba text(was:localized:in) americas bolivia text(is:localized:in) south_america bolivia text(was:a:neighboring:country:of) chile -bolivia text(neighbors:with) brazil -bolivia text(was:a:neighbor:of) paraguay -bolivia text(is:a:neighbor:of) argentina -bolivia text(is:a:neighboring:state:to) peru +bolivia text(was:adjacent:to) brazil +bolivia text(is:adjacent:to) paraguay +bolivia text(was:a:neighbor:of) argentina +bolivia text(is:a:neighbor:of) peru colombia text(was:present:in) south_america -colombia text(was:a:neighboring:state:to) ecuador -colombia text(borders:with) brazil -colombia text(borders) panama -colombia text(is:butted:against) venezuela -colombia text(was:butted:against) peru +colombia text(is:a:neighboring:state:to) ecuador +colombia text(was:a:neighboring:state:to) brazil +colombia text(borders:with) panama +colombia text(neighbors:withborders) venezuela +colombia text(neighbors) peru fiji text(is:present:in) melanesia fiji text(is:still:in) oceania -republic_of_the_congo text(was:adjacent:to) gabon -republic_of_the_congo text(is:adjacent:to) dr_congo -republic_of_the_congo text(neighbors) angola -republic_of_the_congo text(is:a:neighboring:country:of) cameroon -republic_of_the_congo text(was:a:neighboring:country:of) central_african_republic -saudi_arabia text(neighbors:with) qatar +republic_of_the_congo text(is:butted:against) gabon +republic_of_the_congo text(was:butted:against) dr_congo +republic_of_the_congo text(is:a:neighboring:country:of) angola +republic_of_the_congo text(was:a:neighboring:country:of) cameroon +republic_of_the_congo text(was:adjacent:to) central_african_republic +saudi_arabia text(is:adjacent:to) qatar saudi_arabia text(was:a:neighbor:of) united_arab_emirates saudi_arabia text(is:a:neighbor:of) jordan saudi_arabia text(is:a:neighboring:state:to) yemen saudi_arabia text(was:a:neighboring:state:to) oman saudi_arabia text(borders:with) kuwait -saudi_arabia text(borders) iraq +saudi_arabia text(neighbors:withborders) iraq el_salvador text(was:still:in) central_america -el_salvador text(is:butted:against) guatemala -el_salvador text(was:butted:against) honduras +el_salvador text(neighbors) guatemala +el_salvador text(is:butted:against) honduras madagascar text(was:currently:in) eastern_africa madagascar text(is:currently:in) africa -australia text(is:placed:in) australia_and_new_zealand -australia text(was:placed:in) oceania -namibia text(can:be:found:in) southern_africa -namibia text(was:situated:in) africa -namibia text(was:adjacent:to) zambia -namibia text(is:adjacent:to) angola -namibia text(neighbors) south_africa -namibia text(is:a:neighboring:country:of) botswana -tuvalu text(is:situated:in) polynesia -tuvalu text(is:located:in) oceania -svalbard_and_jan_mayen text(was:located:in) northern_europe -svalbard_and_jan_mayen text(can:be:found:in) europe -isle_of_man text(was:positioned:in) northern_europe -isle_of_man text(is:positioned:in) europe -guyana text(was:a:neighboring:country:of) brazil -guyana text(neighbors:with) suriname -guyana text(was:a:neighbor:of) venezuela -vatican_city text(was:sited:in) southern_europe -vatican_city text(is:sited:in) europe -vatican_city text(is:a:neighbor:of) italy +australia text(was:situated:in) australia_and_new_zealand +australia text(is:situated:in) oceania +namibia text(is:located:in) southern_africa +namibia text(was:located:in) africa +namibia text(was:butted:against) zambia +namibia text(is:a:neighboring:country:of) angola +namibia text(was:a:neighboring:country:of) south_africa +namibia text(was:adjacent:to) botswana +tuvalu text(could:be:found:in) polynesia +tuvalu text(can:be:found:in) oceania +svalbard_and_jan_mayen text(was:positioned:in) northern_europe +svalbard_and_jan_mayen text(is:positioned:in) europe +isle_of_man text(was:sited:in) northern_europe +isle_of_man text(is:sited:in) europe +guyana text(is:adjacent:to) brazil +guyana text(was:a:neighbor:of) suriname +guyana text(is:a:neighbor:of) venezuela +vatican_city text(is:placed:in) southern_europe +vatican_city text(was:placed:in) europe +vatican_city text(is:a:neighboring:state:to) italy british_indian_ocean_territory text(was:localized:in) eastern_africa british_indian_ocean_territory text(is:localized:in) africa nigeria text(was:present:in) western_africa nigeria text(is:present:in) africa -nigeria text(is:a:neighboring:state:to) chad -nigeria text(was:a:neighboring:state:to) niger -nigeria text(borders:with) cameroon -nigeria text(borders) benin +nigeria text(was:a:neighboring:state:to) chad +nigeria text(borders:with) niger +nigeria text(neighbors:withborders) cameroon +nigeria text(neighbors) benin germany text(is:butted:against) denmark germany text(was:butted:against) netherlands -germany text(was:adjacent:to) poland -germany text(is:adjacent:to) luxembourg -germany text(neighbors) belgium -germany text(is:a:neighboring:country:of) switzerland -germany text(was:a:neighboring:country:of) austria -germany text(neighbors:with) france -germany text(was:a:neighbor:of) czechia -burkina_faso text(is:a:neighbor:of) togo -burkina_faso text(is:a:neighboring:state:to) benin -burkina_faso text(was:a:neighboring:state:to) niger -burkina_faso text(borders:with) ghana -burkina_faso text(borders) mali -burkina_faso text(is:butted:against) ivory_coast -tanzania text(was:butted:against) uganda -tanzania text(was:adjacent:to) mozambique -tanzania text(is:adjacent:to) dr_congo -tanzania text(neighbors) kenya -tanzania text(is:a:neighboring:country:of) rwanda -tanzania text(was:a:neighboring:country:of) zambia -tanzania text(neighbors:with) malawi -tanzania text(was:a:neighbor:of) burundi +germany text(is:a:neighboring:country:of) poland +germany text(was:a:neighboring:country:of) luxembourg +germany text(was:adjacent:to) belgium +germany text(is:adjacent:to) switzerland +germany text(was:a:neighbor:of) austria +germany text(is:a:neighbor:of) france +germany text(is:a:neighboring:state:to) czechia +burkina_faso text(was:a:neighboring:state:to) togo +burkina_faso text(borders:with) benin +burkina_faso text(neighbors:withborders) niger +burkina_faso text(neighbors) ghana +burkina_faso text(is:butted:against) mali +burkina_faso text(was:butted:against) ivory_coast +tanzania text(is:a:neighboring:country:of) uganda +tanzania text(was:a:neighboring:country:of) mozambique +tanzania text(was:adjacent:to) dr_congo +tanzania text(is:adjacent:to) kenya +tanzania text(was:a:neighbor:of) rwanda +tanzania text(is:a:neighbor:of) zambia +tanzania text(is:a:neighboring:state:to) malawi +tanzania text(was:a:neighboring:state:to) burundi northern_mariana_islands text(is:still:in) micronesia northern_mariana_islands text(was:still:in) oceania belize text(was:currently:in) central_america -belize text(is:a:neighbor:of) guatemala -belize text(is:a:neighboring:state:to) mexico -norway text(was:a:neighboring:state:to) sweden -norway text(borders:with) finland -norway text(borders) russia +belize text(borders:with) guatemala +belize text(neighbors:withborders) mexico +norway text(neighbors) sweden +norway text(is:butted:against) finland +norway text(was:butted:against) russia cocos_keeling_islands text(is:currently:in) australia_and_new_zealand -cocos_keeling_islands text(is:placed:in) oceania -laos text(was:placed:in) south-eastern_asia -laos text(is:butted:against) china -laos text(was:butted:against) cambodia +cocos_keeling_islands text(was:situated:in) oceania +laos text(is:situated:in) south-eastern_asia +laos text(is:a:neighboring:country:of) china +laos text(was:a:neighboring:country:of) cambodia laos text(was:adjacent:to) myanmar laos text(is:adjacent:to) vietnam -laos text(neighbors) thailand -western_sahara text(can:be:found:in) northern_africa -western_sahara text(is:a:neighboring:country:of) algeria -western_sahara text(was:a:neighboring:country:of) mauritania -western_sahara text(neighbors:with) morocco -suriname text(was:situated:in) south_america -suriname text(was:a:neighbor:of) brazil -suriname text(is:a:neighbor:of) french_guiana -suriname text(is:a:neighboring:state:to) guyana -christmas_island text(is:situated:in) australia_and_new_zealand -christmas_island text(is:located:in) oceania -são_tomé_and_príncipe text(was:located:in) middle_africa -são_tomé_and_príncipe text(can:be:found:in) africa -egypt text(was:a:neighboring:state:to) libya -egypt text(borders:with) israel -egypt text(borders) sudan -bulgaria text(is:butted:against) macedonia -bulgaria text(was:butted:against) turkey -bulgaria text(was:adjacent:to) greece -bulgaria text(is:adjacent:to) serbia -bulgaria text(neighbors) romania -guinea text(was:positioned:in) western_africa -guinea text(is:a:neighboring:country:of) guinea-bissau -guinea text(was:a:neighboring:country:of) sierra_leone -guinea text(neighbors:with) mali -guinea text(was:a:neighbor:of) liberia -guinea text(is:a:neighbor:of) senegal -guinea text(is:a:neighboring:state:to) ivory_coast -spain text(was:a:neighboring:state:to) morocco -spain text(borders:with) gibraltar -spain text(borders) andorra -spain text(is:butted:against) france -spain text(was:butted:against) portugal -costa_rica text(is:positioned:in) central_america -costa_rica text(was:adjacent:to) panama -costa_rica text(is:adjacent:to) nicaragua -malta text(was:sited:in) southern_europe -malta text(is:sited:in) europe +laos text(was:a:neighbor:of) thailand +western_sahara text(is:located:in) northern_africa +western_sahara text(is:a:neighbor:of) algeria +western_sahara text(is:a:neighboring:state:to) mauritania +western_sahara text(was:a:neighboring:state:to) morocco +suriname text(was:located:in) south_america +suriname text(borders:with) brazil +suriname text(neighbors:withborders) french_guiana +suriname text(neighbors) guyana +christmas_island text(could:be:found:in) australia_and_new_zealand +christmas_island text(can:be:found:in) oceania +são_tomé_and_príncipe text(was:positioned:in) middle_africa +são_tomé_and_príncipe text(is:positioned:in) africa +egypt text(is:butted:against) libya +egypt text(was:butted:against) israel +egypt text(is:a:neighboring:country:of) sudan +bulgaria text(was:a:neighboring:country:of) macedonia +bulgaria text(was:adjacent:to) turkey +bulgaria text(is:adjacent:to) greece +bulgaria text(was:a:neighbor:of) serbia +bulgaria text(is:a:neighbor:of) romania +guinea text(was:sited:in) western_africa +guinea text(is:a:neighboring:state:to) guinea-bissau +guinea text(was:a:neighboring:state:to) sierra_leone +guinea text(borders:with) mali +guinea text(neighbors:withborders) liberia +guinea text(neighbors) senegal +guinea text(is:butted:against) ivory_coast +spain text(was:butted:against) morocco +spain text(is:a:neighboring:country:of) gibraltar +spain text(was:a:neighboring:country:of) andorra +spain text(was:adjacent:to) france +spain text(is:adjacent:to) portugal +costa_rica text(is:sited:in) central_america +costa_rica text(was:a:neighbor:of) panama +costa_rica text(is:a:neighbor:of) nicaragua +malta text(is:placed:in) southern_europe +malta text(was:placed:in) europe portugal text(was:localized:in) southern_europe -portugal text(neighbors) spain +portugal text(is:a:neighboring:state:to) spain romania text(is:localized:in) eastern_europe -romania text(is:a:neighboring:country:of) ukraine -romania text(was:a:neighboring:country:of) hungary -romania text(neighbors:with) moldova -romania text(was:a:neighbor:of) bulgaria -romania text(is:a:neighbor:of) serbia +romania text(was:a:neighboring:state:to) ukraine +romania text(borders:with) hungary +romania text(neighbors:withborders) moldova +romania text(neighbors) bulgaria +romania text(is:butted:against) serbia san_marino text(was:present:in) southern_europe san_marino text(is:present:in) europe -san_marino text(is:a:neighboring:state:to) italy +san_marino text(was:butted:against) italy mauritania text(is:still:in) western_africa mauritania text(was:still:in) africa -mauritania text(was:a:neighboring:state:to) algeria -mauritania text(borders:with) mali -mauritania text(borders) western_sahara -mauritania text(is:butted:against) senegal +mauritania text(is:a:neighboring:country:of) algeria +mauritania text(was:a:neighboring:country:of) mali +mauritania text(was:adjacent:to) western_sahara +mauritania text(is:adjacent:to) senegal trinidad_and_tobago text(was:currently:in) caribbean trinidad_and_tobago text(is:currently:in) americas -bahrain text(is:placed:in) western_asia -bahrain text(was:placed:in) asia -myanmar text(was:butted:against) india -myanmar text(was:adjacent:to) bangladesh -myanmar text(is:adjacent:to) china -myanmar text(neighbors) laos -myanmar text(is:a:neighboring:country:of) thailand -iraq text(was:a:neighboring:country:of) turkey -iraq text(neighbors:with) saudi_arabia -iraq text(was:a:neighbor:of) iran -iraq text(is:a:neighbor:of) jordan -iraq text(is:a:neighboring:state:to) kuwait -iraq text(was:a:neighboring:state:to) syria -south_georgia text(can:be:found:in) south_america -south_georgia text(was:situated:in) americas -iceland text(is:situated:in) northern_europe -iceland text(is:located:in) europe -dr_congo text(was:located:in) middle_africa -dr_congo text(borders:with) uganda -dr_congo text(borders) tanzania -dr_congo text(is:butted:against) republic_of_the_congo -dr_congo text(was:butted:against) central_african_republic -dr_congo text(was:adjacent:to) angola -dr_congo text(is:adjacent:to) rwanda -dr_congo text(neighbors) south_sudan -dr_congo text(is:a:neighboring:country:of) zambia -dr_congo text(was:a:neighboring:country:of) burundi -seychelles text(can:be:found:in) eastern_africa -seychelles text(was:positioned:in) africa -kyrgyzstan text(neighbors:with) china -kyrgyzstan text(was:a:neighbor:of) kazakhstan -kyrgyzstan text(is:a:neighbor:of) tajikistan -kyrgyzstan text(is:a:neighboring:state:to) uzbekistan -botswana text(is:positioned:in) southern_africa -botswana text(was:a:neighboring:state:to) zimbabwe -botswana text(borders:with) namibia -botswana text(borders) zambia -botswana text(is:butted:against) south_africa -faroe_islands text(was:sited:in) northern_europe -faroe_islands text(is:sited:in) europe +bahrain text(was:situated:in) western_asia +bahrain text(is:situated:in) asia +myanmar text(was:a:neighbor:of) india +myanmar text(is:a:neighbor:of) bangladesh +myanmar text(is:a:neighboring:state:to) china +myanmar text(was:a:neighboring:state:to) laos +myanmar text(borders:with) thailand +iraq text(neighbors:withborders) turkey +iraq text(neighbors) saudi_arabia +iraq text(is:butted:against) iran +iraq text(was:butted:against) jordan +iraq text(is:a:neighboring:country:of) kuwait +iraq text(was:a:neighboring:country:of) syria +south_georgia text(is:located:in) south_america +south_georgia text(was:located:in) americas +iceland text(could:be:found:in) northern_europe +iceland text(can:be:found:in) europe +dr_congo text(was:positioned:in) middle_africa +dr_congo text(was:adjacent:to) uganda +dr_congo text(is:adjacent:to) tanzania +dr_congo text(was:a:neighbor:of) republic_of_the_congo +dr_congo text(is:a:neighbor:of) central_african_republic +dr_congo text(is:a:neighboring:state:to) angola +dr_congo text(was:a:neighboring:state:to) rwanda +dr_congo text(borders:with) south_sudan +dr_congo text(neighbors:withborders) zambia +dr_congo text(neighbors) burundi +seychelles text(is:positioned:in) eastern_africa +seychelles text(was:sited:in) africa +kyrgyzstan text(is:butted:against) china +kyrgyzstan text(was:butted:against) kazakhstan +kyrgyzstan text(is:a:neighboring:country:of) tajikistan +kyrgyzstan text(was:a:neighboring:country:of) uzbekistan +botswana text(is:sited:in) southern_africa +botswana text(was:adjacent:to) zimbabwe +botswana text(is:adjacent:to) namibia +botswana text(was:a:neighbor:of) zambia +botswana text(is:a:neighbor:of) south_africa +faroe_islands text(is:placed:in) northern_europe +faroe_islands text(was:placed:in) europe jamaica text(was:localized:in) caribbean jamaica text(is:localized:in) americas american_samoa text(was:present:in) polynesia american_samoa text(is:present:in) oceania lesotho text(is:still:in) southern_africa lesotho text(was:still:in) africa -lesotho text(was:butted:against) south_africa -sri_lanka text(was:adjacent:to) india +lesotho text(is:a:neighboring:state:to) south_africa +sri_lanka text(was:a:neighboring:state:to) india belgium text(was:currently:in) western_europe -belgium text(is:adjacent:to) germany -belgium text(neighbors) luxembourg -belgium text(is:a:neighboring:country:of) france -belgium text(was:a:neighboring:country:of) netherlands +belgium text(borders:with) germany +belgium text(neighbors:withborders) luxembourg +belgium text(neighbors) france +belgium text(is:butted:against) netherlands qatar text(is:currently:in) western_asia -qatar text(neighbors:with) saudi_arabia -solomon_islands text(is:placed:in) melanesia -solomon_islands text(was:placed:in) oceania -syria text(can:be:found:in) western_asia -syria text(was:a:neighbor:of) israel -syria text(is:a:neighbor:of) turkey -syria text(is:a:neighboring:state:to) jordan -syria text(was:a:neighboring:state:to) lebanon -syria text(borders:with) iraq -india text(was:situated:in) southern_asia -india text(borders) afghanistan -india text(is:butted:against) bhutan -india text(was:butted:against) bangladesh -india text(was:adjacent:to) china -india text(is:adjacent:to) nepal +qatar text(was:butted:against) saudi_arabia +solomon_islands text(was:situated:in) melanesia +solomon_islands text(is:situated:in) oceania +syria text(is:located:in) western_asia +syria text(is:a:neighboring:country:of) israel +syria text(was:a:neighboring:country:of) turkey +syria text(was:adjacent:to) jordan +syria text(is:adjacent:to) lebanon +syria text(was:a:neighbor:of) iraq +india text(was:located:in) southern_asia +india text(is:a:neighbor:of) afghanistan +india text(is:a:neighboring:state:to) bhutan +india text(was:a:neighboring:state:to) bangladesh +india text(borders:with) china +india text(neighbors:withborders) nepal india text(neighbors) myanmar -india text(is:a:neighboring:country:of) pakistan -india text(was:a:neighboring:country:of) sri_lanka -morocco text(neighbors:with) algeria -morocco text(was:a:neighbor:of) spain -morocco text(is:a:neighbor:of) western_sahara -kenya text(is:situated:in) eastern_africa -kenya text(is:a:neighboring:state:to) uganda -kenya text(was:a:neighboring:state:to) tanzania -kenya text(borders:with) somalia -kenya text(borders) south_sudan -kenya text(is:butted:against) ethiopia -south_sudan text(is:located:in) middle_africa -south_sudan text(was:butted:against) uganda -south_sudan text(was:adjacent:to) dr_congo -south_sudan text(is:adjacent:to) kenya -south_sudan text(neighbors) central_african_republic -south_sudan text(is:a:neighboring:country:of) sudan -south_sudan text(was:a:neighboring:country:of) ethiopia -ghana text(neighbors:with) burkina_faso -ghana text(was:a:neighbor:of) ivory_coast -ghana text(is:a:neighbor:of) togo -tajikistan text(was:located:in) central_asia -tajikistan text(is:a:neighboring:state:to) china -tajikistan text(was:a:neighboring:state:to) kyrgyzstan -tajikistan text(borders:with) afghanistan -tajikistan text(borders) uzbekistan -marshall_islands text(can:be:found:in) micronesia -marshall_islands text(was:positioned:in) oceania -cameroon text(is:positioned:in) middle_africa -cameroon text(is:butted:against) chad -cameroon text(was:butted:against) republic_of_the_congo -cameroon text(was:adjacent:to) gabon -cameroon text(is:adjacent:to) equatorial_guinea -cameroon text(neighbors) central_african_republic +india text(is:butted:against) pakistan +india text(was:butted:against) sri_lanka +morocco text(is:a:neighboring:country:of) algeria +morocco text(was:a:neighboring:country:of) spain +morocco text(was:adjacent:to) western_sahara +kenya text(could:be:found:in) eastern_africa +kenya text(is:adjacent:to) uganda +kenya text(was:a:neighbor:of) tanzania +kenya text(is:a:neighbor:of) somalia +kenya text(is:a:neighboring:state:to) south_sudan +kenya text(was:a:neighboring:state:to) ethiopia +south_sudan text(can:be:found:in) middle_africa +south_sudan text(borders:with) uganda +south_sudan text(neighbors:withborders) dr_congo +south_sudan text(neighbors) kenya +south_sudan text(is:butted:against) central_african_republic +south_sudan text(was:butted:against) sudan +south_sudan text(is:a:neighboring:country:of) ethiopia +ghana text(was:a:neighboring:country:of) burkina_faso +ghana text(was:adjacent:to) ivory_coast +ghana text(is:adjacent:to) togo +tajikistan text(was:positioned:in) central_asia +tajikistan text(was:a:neighbor:of) china +tajikistan text(is:a:neighbor:of) kyrgyzstan +tajikistan text(is:a:neighboring:state:to) afghanistan +tajikistan text(was:a:neighboring:state:to) uzbekistan +marshall_islands text(is:positioned:in) micronesia +marshall_islands text(was:sited:in) oceania +cameroon text(is:sited:in) middle_africa +cameroon text(borders:with) chad +cameroon text(neighbors:withborders) republic_of_the_congo +cameroon text(neighbors) gabon +cameroon text(is:butted:against) equatorial_guinea +cameroon text(was:butted:against) central_african_republic cameroon text(is:a:neighboring:country:of) nigeria -nauru text(was:sited:in) micronesia -nauru text(is:sited:in) oceania +nauru text(is:placed:in) micronesia +nauru text(was:placed:in) oceania thailand text(was:a:neighboring:country:of) cambodia -thailand text(neighbors:with) myanmar -thailand text(was:a:neighbor:of) laos -thailand text(is:a:neighbor:of) malaysia -sudan text(is:a:neighboring:state:to) chad -sudan text(was:a:neighboring:state:to) libya -sudan text(borders:with) south_sudan -sudan text(borders) eritrea -sudan text(is:butted:against) central_african_republic -sudan text(was:butted:against) egypt -sudan text(was:adjacent:to) ethiopia +thailand text(was:adjacent:to) myanmar +thailand text(is:adjacent:to) laos +thailand text(was:a:neighbor:of) malaysia +sudan text(is:a:neighbor:of) chad +sudan text(is:a:neighboring:state:to) libya +sudan text(was:a:neighboring:state:to) south_sudan +sudan text(borders:with) eritrea +sudan text(neighbors:withborders) central_african_republic +sudan text(neighbors) egypt +sudan text(is:butted:against) ethiopia chad text(was:localized:in) middle_africa -chad text(is:adjacent:to) libya -chad text(neighbors) niger -chad text(is:a:neighboring:country:of) south_sudan -chad text(was:a:neighboring:country:of) cameroon -chad text(neighbors:with) central_african_republic +chad text(was:butted:against) libya +chad text(is:a:neighboring:country:of) niger +chad text(was:a:neighboring:country:of) south_sudan +chad text(was:adjacent:to) cameroon +chad text(is:adjacent:to) central_african_republic chad text(was:a:neighbor:of) nigeria vanuatu text(is:localized:in) melanesia vanuatu text(was:present:in) oceania @@ -437,34 +437,34 @@ liberia text(is:currently:in) western_africa liberia text(is:a:neighbor:of) ivory_coast liberia text(is:a:neighboring:state:to) sierra_leone liberia text(was:a:neighboring:state:to) guinea -cambodia text(is:placed:in) south-eastern_asia +cambodia text(was:situated:in) south-eastern_asia cambodia text(borders:with) vietnam -cambodia text(borders) thailand -cambodia text(is:butted:against) laos -zimbabwe text(was:butted:against) zambia -zimbabwe text(was:adjacent:to) south_africa -zimbabwe text(is:adjacent:to) botswana -zimbabwe text(neighbors) mozambique -comoros text(was:placed:in) eastern_africa -comoros text(can:be:found:in) africa -guam text(was:situated:in) micronesia -guam text(is:situated:in) oceania -bahamas text(is:located:in) caribbean -bahamas text(was:located:in) americas -lebanon text(can:be:found:in) western_asia -lebanon text(was:positioned:in) asia -lebanon text(is:a:neighboring:country:of) israel -lebanon text(was:a:neighboring:country:of) syria -sint_maarten text(is:positioned:in) caribbean -sint_maarten text(was:sited:in) americas -sint_maarten text(neighbors:with) saint_martin -ethiopia text(is:sited:in) eastern_africa -ethiopia text(was:a:neighbor:of) somalia -ethiopia text(is:a:neighbor:of) kenya -ethiopia text(is:a:neighboring:state:to) eritrea -ethiopia text(was:a:neighboring:state:to) south_sudan -ethiopia text(borders:with) djibouti -ethiopia text(borders) sudan +cambodia text(neighbors:withborders) thailand +cambodia text(neighbors) laos +zimbabwe text(is:butted:against) zambia +zimbabwe text(was:butted:against) south_africa +zimbabwe text(is:a:neighboring:country:of) botswana +zimbabwe text(was:a:neighboring:country:of) mozambique +comoros text(is:situated:in) eastern_africa +comoros text(is:located:in) africa +guam text(was:located:in) micronesia +guam text(could:be:found:in) oceania +bahamas text(can:be:found:in) caribbean +bahamas text(was:positioned:in) americas +lebanon text(is:positioned:in) western_asia +lebanon text(was:sited:in) asia +lebanon text(was:adjacent:to) israel +lebanon text(is:adjacent:to) syria +sint_maarten text(is:sited:in) caribbean +sint_maarten text(is:placed:in) americas +sint_maarten text(was:a:neighbor:of) saint_martin +ethiopia text(was:placed:in) eastern_africa +ethiopia text(is:a:neighbor:of) somalia +ethiopia text(is:a:neighboring:state:to) kenya +ethiopia text(was:a:neighboring:state:to) eritrea +ethiopia text(borders:with) south_sudan +ethiopia text(neighbors:withborders) djibouti +ethiopia text(neighbors) sudan united_states_virgin_islands text(was:localized:in) caribbean united_states_virgin_islands text(is:localized:in) americas guinea-bissau text(was:present:in) western_africa @@ -472,485 +472,485 @@ guinea-bissau text(is:present:in) africa guinea-bissau text(is:butted:against) guinea guinea-bissau text(was:butted:against) senegal libya text(is:still:in) northern_africa -libya text(was:adjacent:to) chad -libya text(is:adjacent:to) tunisia -libya text(neighbors) niger -libya text(is:a:neighboring:country:of) algeria -libya text(was:a:neighboring:country:of) egypt -libya text(neighbors:with) sudan +libya text(is:a:neighboring:country:of) chad +libya text(was:a:neighboring:country:of) tunisia +libya text(was:adjacent:to) niger +libya text(is:adjacent:to) algeria +libya text(was:a:neighbor:of) egypt +libya text(is:a:neighbor:of) sudan bhutan text(was:still:in) southern_asia bhutan text(was:currently:in) asia -bhutan text(was:a:neighbor:of) china -bhutan text(is:a:neighbor:of) india +bhutan text(is:a:neighboring:state:to) china +bhutan text(was:a:neighboring:state:to) india macau text(is:currently:in) eastern_asia -macau text(is:placed:in) asia -macau text(is:a:neighboring:state:to) china -french_polynesia text(was:placed:in) polynesia -french_polynesia text(can:be:found:in) oceania -somalia text(was:situated:in) eastern_africa -somalia text(was:a:neighboring:state:to) djibouti -somalia text(borders:with) kenya -somalia text(borders) ethiopia -saint_barthélemy text(is:situated:in) caribbean -saint_barthélemy text(is:located:in) americas -russia text(was:located:in) eastern_europe -russia text(is:butted:against) ukraine -russia text(was:butted:against) belarus -russia text(was:adjacent:to) china -russia text(is:adjacent:to) kazakhstan -russia text(neighbors) norway -russia text(is:a:neighboring:country:of) poland -russia text(was:a:neighboring:country:of) azerbaijan -russia text(neighbors:with) lithuania -russia text(was:a:neighbor:of) estonia -russia text(is:a:neighbor:of) north_korea -russia text(is:a:neighboring:state:to) finland -russia text(was:a:neighboring:state:to) mongolia -russia text(borders:with) latvia -russia text(borders) georgia -new_zealand text(can:be:found:in) australia_and_new_zealand -new_zealand text(was:positioned:in) oceania -panama text(is:positioned:in) central_america -panama text(was:sited:in) americas -panama text(is:butted:against) costa_rica -panama text(was:butted:against) colombia -papua_new_guinea text(is:sited:in) melanesia +macau text(was:situated:in) asia +macau text(borders:with) china +french_polynesia text(is:situated:in) polynesia +french_polynesia text(is:located:in) oceania +somalia text(was:located:in) eastern_africa +somalia text(neighbors:withborders) djibouti +somalia text(neighbors) kenya +somalia text(is:butted:against) ethiopia +saint_barthélemy text(could:be:found:in) caribbean +saint_barthélemy text(can:be:found:in) americas +russia text(was:positioned:in) eastern_europe +russia text(was:butted:against) ukraine +russia text(is:a:neighboring:country:of) belarus +russia text(was:a:neighboring:country:of) china +russia text(was:adjacent:to) kazakhstan +russia text(is:adjacent:to) norway +russia text(was:a:neighbor:of) poland +russia text(is:a:neighbor:of) azerbaijan +russia text(is:a:neighboring:state:to) lithuania +russia text(was:a:neighboring:state:to) estonia +russia text(borders:with) north_korea +russia text(neighbors:withborders) finland +russia text(neighbors) mongolia +russia text(is:butted:against) latvia +russia text(was:butted:against) georgia +new_zealand text(is:positioned:in) australia_and_new_zealand +new_zealand text(was:sited:in) oceania +panama text(is:sited:in) central_america +panama text(is:placed:in) americas +panama text(is:a:neighboring:country:of) costa_rica +panama text(was:a:neighboring:country:of) colombia +papua_new_guinea text(was:placed:in) melanesia papua_new_guinea text(was:adjacent:to) indonesia north_korea text(is:adjacent:to) china -north_korea text(neighbors) south_korea -north_korea text(is:a:neighboring:country:of) russia +north_korea text(was:a:neighbor:of) south_korea +north_korea text(is:a:neighbor:of) russia latvia text(was:localized:in) northern_europe -latvia text(was:a:neighboring:country:of) lithuania -latvia text(neighbors:with) belarus -latvia text(was:a:neighbor:of) russia -latvia text(is:a:neighbor:of) estonia +latvia text(is:a:neighboring:state:to) lithuania +latvia text(was:a:neighboring:state:to) belarus +latvia text(borders:with) russia +latvia text(neighbors:withborders) estonia oman text(is:localized:in) western_asia -oman text(is:a:neighboring:state:to) saudi_arabia -oman text(was:a:neighboring:state:to) yemen -oman text(borders:with) united_arab_emirates +oman text(neighbors) saudi_arabia +oman text(is:butted:against) yemen +oman text(was:butted:against) united_arab_emirates saint_pierre_and_miquelon text(was:present:in) northern_america saint_pierre_and_miquelon text(is:present:in) americas martinique text(is:still:in) caribbean martinique text(was:still:in) americas united_kingdom text(was:currently:in) northern_europe united_kingdom text(is:currently:in) europe -united_kingdom text(borders) ireland -israel text(is:placed:in) western_asia -israel text(is:butted:against) lebanon -israel text(was:butted:against) egypt -israel text(was:adjacent:to) jordan -israel text(is:adjacent:to) syria -jersey text(was:placed:in) northern_europe -jersey text(can:be:found:in) europe -pitcairn_islands text(was:situated:in) polynesia -pitcairn_islands text(is:situated:in) oceania -togo text(is:located:in) western_africa -togo text(neighbors) burkina_faso -togo text(is:a:neighboring:country:of) ghana -togo text(was:a:neighboring:country:of) benin -kiribati text(was:located:in) micronesia -kiribati text(can:be:found:in) oceania -iran text(was:positioned:in) southern_asia -iran text(neighbors:with) afghanistan -iran text(was:a:neighbor:of) turkmenistan -iran text(is:a:neighbor:of) turkey -iran text(is:a:neighboring:state:to) armenia -iran text(was:a:neighboring:state:to) azerbaijan -iran text(borders:with) pakistan -iran text(borders) iraq -saint_martin text(is:positioned:in) caribbean -saint_martin text(was:sited:in) americas -saint_martin text(is:butted:against) sint_maarten -dominican_republic text(is:sited:in) caribbean +united_kingdom text(is:a:neighboring:country:of) ireland +israel text(was:situated:in) western_asia +israel text(was:a:neighboring:country:of) lebanon +israel text(was:adjacent:to) egypt +israel text(is:adjacent:to) jordan +israel text(was:a:neighbor:of) syria +jersey text(is:situated:in) northern_europe +jersey text(is:located:in) europe +pitcairn_islands text(was:located:in) polynesia +pitcairn_islands text(could:be:found:in) oceania +togo text(can:be:found:in) western_africa +togo text(is:a:neighbor:of) burkina_faso +togo text(is:a:neighboring:state:to) ghana +togo text(was:a:neighboring:state:to) benin +kiribati text(was:positioned:in) micronesia +kiribati text(is:positioned:in) oceania +iran text(was:sited:in) southern_asia +iran text(borders:with) afghanistan +iran text(neighbors:withborders) turkmenistan +iran text(neighbors) turkey +iran text(is:butted:against) armenia +iran text(was:butted:against) azerbaijan +iran text(is:a:neighboring:country:of) pakistan +iran text(was:a:neighboring:country:of) iraq +saint_martin text(is:sited:in) caribbean +saint_martin text(is:placed:in) americas +saint_martin text(was:adjacent:to) sint_maarten +dominican_republic text(was:placed:in) caribbean dominican_republic text(was:localized:in) americas -dominican_republic text(was:butted:against) haiti -denmark text(was:adjacent:to) germany +dominican_republic text(is:adjacent:to) haiti +denmark text(was:a:neighbor:of) germany bermuda text(is:localized:in) northern_america bermuda text(was:present:in) americas -chile text(is:adjacent:to) argentina -chile text(neighbors) bolivia -chile text(is:a:neighboring:country:of) peru +chile text(is:a:neighbor:of) argentina +chile text(is:a:neighboring:state:to) bolivia +chile text(was:a:neighboring:state:to) peru kosovo text(is:present:in) eastern_europe -kosovo text(was:a:neighboring:country:of) serbia -kosovo text(neighbors:with) albania -kosovo text(was:a:neighbor:of) macedonia -kosovo text(is:a:neighbor:of) montenegro +kosovo text(borders:with) serbia +kosovo text(neighbors:withborders) albania +kosovo text(neighbors) macedonia +kosovo text(is:butted:against) montenegro saint_kitts_and_nevis text(is:still:in) caribbean saint_kitts_and_nevis text(was:still:in) americas -eritrea text(is:a:neighboring:state:to) djibouti -eritrea text(was:a:neighboring:state:to) sudan -eritrea text(borders:with) ethiopia +eritrea text(was:butted:against) djibouti +eritrea text(is:a:neighboring:country:of) sudan +eritrea text(was:a:neighboring:country:of) ethiopia equatorial_guinea text(was:currently:in) middle_africa equatorial_guinea text(is:currently:in) africa -equatorial_guinea text(borders) gabon -equatorial_guinea text(is:butted:against) cameroon -niger text(is:placed:in) western_africa -niger text(was:butted:against) chad -niger text(was:adjacent:to) libya -niger text(is:adjacent:to) burkina_faso -niger text(neighbors) benin -niger text(is:a:neighboring:country:of) mali -niger text(was:a:neighboring:country:of) algeria -niger text(neighbors:with) nigeria -anguilla text(was:placed:in) caribbean -anguilla text(can:be:found:in) americas -rwanda text(was:situated:in) eastern_africa -rwanda text(was:a:neighbor:of) burundi -rwanda text(is:a:neighbor:of) tanzania -rwanda text(is:a:neighboring:state:to) uganda -rwanda text(was:a:neighboring:state:to) dr_congo -united_arab_emirates text(is:situated:in) western_asia -united_arab_emirates text(borders:with) oman -united_arab_emirates text(borders) saudi_arabia -estonia text(is:located:in) northern_europe -estonia text(was:located:in) europe -estonia text(is:butted:against) latvia -estonia text(was:butted:against) russia -greece text(can:be:found:in) southern_europe -greece text(was:adjacent:to) bulgaria -greece text(is:adjacent:to) albania -greece text(neighbors) macedonia -greece text(is:a:neighboring:country:of) turkey -senegal text(was:positioned:in) western_africa -senegal text(is:positioned:in) africa -senegal text(was:a:neighboring:country:of) guinea-bissau -senegal text(neighbors:with) mauritania -senegal text(was:a:neighbor:of) mali -senegal text(is:a:neighbor:of) gambia -senegal text(is:a:neighboring:state:to) guinea -guadeloupe text(was:sited:in) caribbean -guadeloupe text(is:sited:in) americas -monaco text(was:a:neighboring:state:to) france -djibouti text(borders:with) eritrea -djibouti text(borders) somalia -djibouti text(is:butted:against) ethiopia -indonesia text(was:butted:against) papua_new_guinea -indonesia text(was:adjacent:to) timor-leste -indonesia text(is:adjacent:to) malaysia +equatorial_guinea text(was:adjacent:to) gabon +equatorial_guinea text(is:adjacent:to) cameroon +niger text(was:situated:in) western_africa +niger text(was:a:neighbor:of) chad +niger text(is:a:neighbor:of) libya +niger text(is:a:neighboring:state:to) burkina_faso +niger text(was:a:neighboring:state:to) benin +niger text(borders:with) mali +niger text(neighbors:withborders) algeria +niger text(neighbors) nigeria +anguilla text(is:situated:in) caribbean +anguilla text(is:located:in) americas +rwanda text(was:located:in) eastern_africa +rwanda text(is:butted:against) burundi +rwanda text(was:butted:against) tanzania +rwanda text(is:a:neighboring:country:of) uganda +rwanda text(was:a:neighboring:country:of) dr_congo +united_arab_emirates text(could:be:found:in) western_asia +united_arab_emirates text(was:adjacent:to) oman +united_arab_emirates text(is:adjacent:to) saudi_arabia +estonia text(can:be:found:in) northern_europe +estonia text(was:positioned:in) europe +estonia text(was:a:neighbor:of) latvia +estonia text(is:a:neighbor:of) russia +greece text(is:positioned:in) southern_europe +greece text(is:a:neighboring:state:to) bulgaria +greece text(was:a:neighboring:state:to) albania +greece text(borders:with) macedonia +greece text(neighbors:withborders) turkey +senegal text(was:sited:in) western_africa +senegal text(is:sited:in) africa +senegal text(neighbors) guinea-bissau +senegal text(is:butted:against) mauritania +senegal text(was:butted:against) mali +senegal text(is:a:neighboring:country:of) gambia +senegal text(was:a:neighboring:country:of) guinea +guadeloupe text(is:placed:in) caribbean +guadeloupe text(was:placed:in) americas +monaco text(was:adjacent:to) france +djibouti text(is:adjacent:to) eritrea +djibouti text(was:a:neighbor:of) somalia +djibouti text(is:a:neighbor:of) ethiopia +indonesia text(is:a:neighboring:state:to) papua_new_guinea +indonesia text(was:a:neighboring:state:to) timor-leste +indonesia text(borders:with) malaysia british_virgin_islands text(was:localized:in) caribbean british_virgin_islands text(is:localized:in) americas cook_islands text(was:present:in) polynesia cook_islands text(is:present:in) oceania uganda text(is:still:in) eastern_africa -uganda text(neighbors) tanzania -uganda text(is:a:neighboring:country:of) dr_congo -uganda text(was:a:neighboring:country:of) kenya -uganda text(neighbors:with) south_sudan -uganda text(was:a:neighbor:of) rwanda +uganda text(neighbors:withborders) tanzania +uganda text(neighbors) dr_congo +uganda text(is:butted:against) kenya +uganda text(was:butted:against) south_sudan +uganda text(is:a:neighboring:country:of) rwanda macedonia text(was:still:in) southern_europe -macedonia text(is:a:neighbor:of) kosovo -macedonia text(is:a:neighboring:state:to) greece -macedonia text(was:a:neighboring:state:to) albania -macedonia text(borders:with) serbia -macedonia text(borders) bulgaria +macedonia text(was:a:neighboring:country:of) kosovo +macedonia text(was:adjacent:to) greece +macedonia text(is:adjacent:to) albania +macedonia text(was:a:neighbor:of) serbia +macedonia text(is:a:neighbor:of) bulgaria tunisia text(was:currently:in) northern_africa tunisia text(is:currently:in) africa -tunisia text(is:butted:against) libya -tunisia text(was:butted:against) algeria -ecuador text(was:adjacent:to) peru -ecuador text(is:adjacent:to) colombia -brazil text(is:placed:in) south_america +tunisia text(is:a:neighboring:state:to) libya +tunisia text(was:a:neighboring:state:to) algeria +ecuador text(borders:with) peru +ecuador text(neighbors:withborders) colombia +brazil text(was:situated:in) south_america brazil text(neighbors) bolivia -brazil text(is:a:neighboring:country:of) colombia -brazil text(was:a:neighboring:country:of) paraguay -brazil text(neighbors:with) uruguay -brazil text(was:a:neighbor:of) french_guiana -brazil text(is:a:neighbor:of) suriname -brazil text(is:a:neighboring:state:to) venezuela -brazil text(was:a:neighboring:state:to) argentina -brazil text(borders:with) guyana -brazil text(borders) peru -paraguay text(was:placed:in) south_america -paraguay text(can:be:found:in) americas -paraguay text(is:butted:against) argentina -paraguay text(was:butted:against) brazil -paraguay text(was:adjacent:to) bolivia -finland text(was:situated:in) northern_europe -finland text(is:adjacent:to) norway -finland text(neighbors) sweden -finland text(is:a:neighboring:country:of) russia -jordan text(was:a:neighboring:country:of) saudi_arabia -jordan text(neighbors:with) israel -jordan text(was:a:neighbor:of) iraq -jordan text(is:a:neighbor:of) syria -timor-leste text(is:a:neighboring:state:to) indonesia -montenegro text(is:situated:in) southern_europe -montenegro text(was:a:neighboring:state:to) kosovo -montenegro text(borders:with) bosnia_and_herzegovina -montenegro text(borders) croatia -montenegro text(is:butted:against) serbia -montenegro text(was:butted:against) albania -peru text(is:located:in) south_america -peru text(was:adjacent:to) ecuador -peru text(is:adjacent:to) bolivia -peru text(neighbors) chile +brazil text(is:butted:against) colombia +brazil text(was:butted:against) paraguay +brazil text(is:a:neighboring:country:of) uruguay +brazil text(was:a:neighboring:country:of) french_guiana +brazil text(was:adjacent:to) suriname +brazil text(is:adjacent:to) venezuela +brazil text(was:a:neighbor:of) argentina +brazil text(is:a:neighbor:of) guyana +brazil text(is:a:neighboring:state:to) peru +paraguay text(is:situated:in) south_america +paraguay text(is:located:in) americas +paraguay text(was:a:neighboring:state:to) argentina +paraguay text(borders:with) brazil +paraguay text(neighbors:withborders) bolivia +finland text(was:located:in) northern_europe +finland text(neighbors) norway +finland text(is:butted:against) sweden +finland text(was:butted:against) russia +jordan text(is:a:neighboring:country:of) saudi_arabia +jordan text(was:a:neighboring:country:of) israel +jordan text(was:adjacent:to) iraq +jordan text(is:adjacent:to) syria +timor-leste text(was:a:neighbor:of) indonesia +montenegro text(could:be:found:in) southern_europe +montenegro text(is:a:neighbor:of) kosovo +montenegro text(is:a:neighboring:state:to) bosnia_and_herzegovina +montenegro text(was:a:neighboring:state:to) croatia +montenegro text(borders:with) serbia +montenegro text(neighbors:withborders) albania +peru text(can:be:found:in) south_america +peru text(neighbors) ecuador +peru text(is:butted:against) bolivia +peru text(was:butted:against) chile peru text(is:a:neighboring:country:of) brazil peru text(was:a:neighboring:country:of) colombia -montserrat text(was:located:in) caribbean -montserrat text(can:be:found:in) americas -ukraine text(was:positioned:in) eastern_europe -ukraine text(neighbors:with) slovakia -ukraine text(was:a:neighbor:of) belarus -ukraine text(is:a:neighbor:of) poland -ukraine text(is:a:neighboring:state:to) russia -ukraine text(was:a:neighboring:state:to) hungary -ukraine text(borders:with) moldova -ukraine text(borders) romania -dominica text(is:positioned:in) caribbean -dominica text(was:sited:in) americas -turkmenistan text(is:butted:against) kazakhstan -turkmenistan text(was:butted:against) afghanistan -turkmenistan text(was:adjacent:to) uzbekistan -turkmenistan text(is:adjacent:to) iran -guernsey text(is:sited:in) northern_europe +montserrat text(was:positioned:in) caribbean +montserrat text(is:positioned:in) americas +ukraine text(was:sited:in) eastern_europe +ukraine text(was:adjacent:to) slovakia +ukraine text(is:adjacent:to) belarus +ukraine text(was:a:neighbor:of) poland +ukraine text(is:a:neighbor:of) russia +ukraine text(is:a:neighboring:state:to) hungary +ukraine text(was:a:neighboring:state:to) moldova +ukraine text(borders:with) romania +dominica text(is:sited:in) caribbean +dominica text(is:placed:in) americas +turkmenistan text(neighbors:withborders) kazakhstan +turkmenistan text(neighbors) afghanistan +turkmenistan text(is:butted:against) uzbekistan +turkmenistan text(was:butted:against) iran +guernsey text(was:placed:in) northern_europe guernsey text(was:localized:in) europe gibraltar text(is:localized:in) southern_europe -gibraltar text(neighbors) spain +gibraltar text(is:a:neighboring:country:of) spain switzerland text(was:present:in) western_europe -switzerland text(is:a:neighboring:country:of) germany -switzerland text(was:a:neighboring:country:of) italy -switzerland text(neighbors:with) austria +switzerland text(was:a:neighboring:country:of) germany +switzerland text(was:adjacent:to) italy +switzerland text(is:adjacent:to) austria switzerland text(was:a:neighbor:of) france switzerland text(is:a:neighbor:of) liechtenstein austria text(is:present:in) western_europe austria text(is:a:neighboring:state:to) germany austria text(was:a:neighboring:state:to) slovakia austria text(borders:with) slovenia -austria text(borders) italy -austria text(is:butted:against) switzerland -austria text(was:butted:against) hungary -austria text(was:adjacent:to) liechtenstein -austria text(is:adjacent:to) czechia -hungary text(neighbors) ukraine -hungary text(is:a:neighboring:country:of) slovakia -hungary text(was:a:neighboring:country:of) slovenia -hungary text(neighbors:with) croatia -hungary text(was:a:neighbor:of) austria -hungary text(is:a:neighbor:of) serbia -hungary text(is:a:neighboring:state:to) romania +austria text(neighbors:withborders) italy +austria text(neighbors) switzerland +austria text(is:butted:against) hungary +austria text(was:butted:against) liechtenstein +austria text(is:a:neighboring:country:of) czechia +hungary text(was:a:neighboring:country:of) ukraine +hungary text(was:adjacent:to) slovakia +hungary text(is:adjacent:to) slovenia +hungary text(was:a:neighbor:of) croatia +hungary text(is:a:neighbor:of) austria +hungary text(is:a:neighboring:state:to) serbia +hungary text(was:a:neighboring:state:to) romania malawi text(is:still:in) eastern_africa -malawi text(was:a:neighboring:state:to) zambia -malawi text(borders:with) tanzania -malawi text(borders) mozambique +malawi text(borders:with) zambia +malawi text(neighbors:withborders) tanzania +malawi text(neighbors) mozambique hong_kong text(is:butted:against) china liechtenstein text(was:still:in) western_europe liechtenstein text(was:currently:in) europe liechtenstein text(was:butted:against) switzerland -liechtenstein text(was:adjacent:to) austria +liechtenstein text(is:a:neighboring:country:of) austria barbados text(is:currently:in) caribbean -barbados text(is:placed:in) americas -georgia text(was:placed:in) western_asia -georgia text(is:adjacent:to) armenia -georgia text(neighbors) azerbaijan -georgia text(is:a:neighboring:country:of) russia -georgia text(was:a:neighboring:country:of) turkey -albania text(can:be:found:in) southern_europe -albania text(was:situated:in) europe -albania text(neighbors:with) montenegro -albania text(was:a:neighbor:of) macedonia -albania text(is:a:neighbor:of) kosovo -albania text(is:a:neighboring:state:to) greece -kuwait text(is:situated:in) western_asia -kuwait text(was:a:neighboring:state:to) saudi_arabia -kuwait text(borders:with) iraq -south_africa text(is:located:in) southern_africa -south_africa text(borders) mozambique -south_africa text(is:butted:against) botswana -south_africa text(was:butted:against) swaziland -south_africa text(was:adjacent:to) zimbabwe -south_africa text(is:adjacent:to) namibia -south_africa text(neighbors) lesotho -haiti text(was:located:in) caribbean -haiti text(can:be:found:in) americas -haiti text(is:a:neighboring:country:of) dominican_republic -afghanistan text(was:positioned:in) southern_asia -afghanistan text(was:a:neighboring:country:of) turkmenistan -afghanistan text(neighbors:with) china -afghanistan text(was:a:neighbor:of) tajikistan -afghanistan text(is:a:neighbor:of) uzbekistan -afghanistan text(is:a:neighboring:state:to) iran -afghanistan text(was:a:neighboring:state:to) pakistan -singapore text(is:positioned:in) south-eastern_asia -singapore text(was:sited:in) asia -benin text(is:sited:in) western_africa -benin text(borders:with) niger -benin text(borders) burkina_faso -benin text(is:butted:against) togo -benin text(was:butted:against) nigeria +barbados text(was:situated:in) americas +georgia text(is:situated:in) western_asia +georgia text(was:a:neighboring:country:of) armenia +georgia text(was:adjacent:to) azerbaijan +georgia text(is:adjacent:to) russia +georgia text(was:a:neighbor:of) turkey +albania text(is:located:in) southern_europe +albania text(was:located:in) europe +albania text(is:a:neighbor:of) montenegro +albania text(is:a:neighboring:state:to) macedonia +albania text(was:a:neighboring:state:to) kosovo +albania text(borders:with) greece +kuwait text(could:be:found:in) western_asia +kuwait text(neighbors:withborders) saudi_arabia +kuwait text(neighbors) iraq +south_africa text(can:be:found:in) southern_africa +south_africa text(is:butted:against) mozambique +south_africa text(was:butted:against) botswana +south_africa text(is:a:neighboring:country:of) swaziland +south_africa text(was:a:neighboring:country:of) zimbabwe +south_africa text(was:adjacent:to) namibia +south_africa text(is:adjacent:to) lesotho +haiti text(was:positioned:in) caribbean +haiti text(is:positioned:in) americas +haiti text(was:a:neighbor:of) dominican_republic +afghanistan text(was:sited:in) southern_asia +afghanistan text(is:a:neighbor:of) turkmenistan +afghanistan text(is:a:neighboring:state:to) china +afghanistan text(was:a:neighboring:state:to) tajikistan +afghanistan text(borders:with) uzbekistan +afghanistan text(neighbors:withborders) iran +afghanistan text(neighbors) pakistan +singapore text(is:sited:in) south-eastern_asia +singapore text(is:placed:in) asia +benin text(was:placed:in) western_africa +benin text(is:butted:against) niger +benin text(was:butted:against) burkina_faso +benin text(is:a:neighboring:country:of) togo +benin text(was:a:neighboring:country:of) nigeria åland_islands text(was:localized:in) northern_europe åland_islands text(is:localized:in) europe croatia text(was:present:in) southern_europe croatia text(was:adjacent:to) slovenia croatia text(is:adjacent:to) bosnia_and_herzegovina -croatia text(neighbors) hungary -croatia text(is:a:neighboring:country:of) serbia -croatia text(was:a:neighboring:country:of) montenegro +croatia text(was:a:neighbor:of) hungary +croatia text(is:a:neighbor:of) serbia +croatia text(is:a:neighboring:state:to) montenegro sweden text(is:present:in) northern_europe -sweden text(neighbors:with) norway -sweden text(was:a:neighbor:of) finland -mexico text(is:a:neighbor:of) belize -mexico text(is:a:neighboring:state:to) united_states -mexico text(was:a:neighboring:state:to) guatemala +sweden text(was:a:neighboring:state:to) norway +sweden text(borders:with) finland +mexico text(neighbors:withborders) belize +mexico text(neighbors) united_states +mexico text(is:butted:against) guatemala greenland text(is:still:in) northern_america greenland text(was:still:in) americas norfolk_island text(was:currently:in) australia_and_new_zealand norfolk_island text(is:currently:in) oceania -nepal text(is:placed:in) southern_asia -nepal text(was:placed:in) asia -nepal text(borders:with) china -nepal text(borders) india -guatemala text(is:butted:against) belize -guatemala text(was:butted:against) el_salvador -guatemala text(was:adjacent:to) mexico -guatemala text(is:adjacent:to) honduras -south_korea text(can:be:found:in) eastern_asia -south_korea text(neighbors) north_korea -moldova text(was:situated:in) eastern_europe -moldova text(is:situated:in) europe -moldova text(is:a:neighboring:country:of) ukraine -moldova text(was:a:neighboring:country:of) romania -mauritius text(is:located:in) eastern_africa -mauritius text(was:located:in) africa -belarus text(neighbors:with) ukraine -belarus text(was:a:neighbor:of) poland -belarus text(is:a:neighbor:of) lithuania -belarus text(is:a:neighboring:state:to) russia -belarus text(was:a:neighboring:state:to) latvia -bangladesh text(borders:with) myanmar -bangladesh text(borders) india -malaysia text(can:be:found:in) south-eastern_asia -malaysia text(is:butted:against) thailand -malaysia text(was:butted:against) indonesia -malaysia text(was:adjacent:to) brunei -bosnia_and_herzegovina text(was:positioned:in) southern_europe -bosnia_and_herzegovina text(is:adjacent:to) serbia -bosnia_and_herzegovina text(neighbors) croatia -bosnia_and_herzegovina text(is:a:neighboring:country:of) montenegro -luxembourg text(is:positioned:in) western_europe -luxembourg text(was:a:neighboring:country:of) germany -luxembourg text(neighbors:with) belgium -luxembourg text(was:a:neighbor:of) france -italy text(was:sited:in) southern_europe -italy text(is:sited:in) europe -italy text(is:a:neighbor:of) slovenia -italy text(is:a:neighboring:state:to) switzerland -italy text(was:a:neighboring:state:to) austria -italy text(borders:with) france -italy text(borders) vatican_city -italy text(is:butted:against) san_marino +nepal text(was:situated:in) southern_asia +nepal text(is:situated:in) asia +nepal text(was:butted:against) china +nepal text(is:a:neighboring:country:of) india +guatemala text(was:a:neighboring:country:of) belize +guatemala text(was:adjacent:to) el_salvador +guatemala text(is:adjacent:to) mexico +guatemala text(was:a:neighbor:of) honduras +south_korea text(is:located:in) eastern_asia +south_korea text(is:a:neighbor:of) north_korea +moldova text(was:located:in) eastern_europe +moldova text(could:be:found:in) europe +moldova text(is:a:neighboring:state:to) ukraine +moldova text(was:a:neighboring:state:to) romania +mauritius text(can:be:found:in) eastern_africa +mauritius text(was:positioned:in) africa +belarus text(borders:with) ukraine +belarus text(neighbors:withborders) poland +belarus text(neighbors) lithuania +belarus text(is:butted:against) russia +belarus text(was:butted:against) latvia +bangladesh text(is:a:neighboring:country:of) myanmar +bangladesh text(was:a:neighboring:country:of) india +malaysia text(is:positioned:in) south-eastern_asia +malaysia text(was:adjacent:to) thailand +malaysia text(is:adjacent:to) indonesia +malaysia text(was:a:neighbor:of) brunei +bosnia_and_herzegovina text(was:sited:in) southern_europe +bosnia_and_herzegovina text(is:a:neighbor:of) serbia +bosnia_and_herzegovina text(is:a:neighboring:state:to) croatia +bosnia_and_herzegovina text(was:a:neighboring:state:to) montenegro +luxembourg text(is:sited:in) western_europe +luxembourg text(borders:with) germany +luxembourg text(neighbors:withborders) belgium +luxembourg text(neighbors) france +italy text(is:placed:in) southern_europe +italy text(was:placed:in) europe +italy text(is:butted:against) slovenia +italy text(was:butted:against) switzerland +italy text(is:a:neighboring:country:of) austria +italy text(was:a:neighboring:country:of) france +italy text(was:adjacent:to) vatican_city +italy text(is:adjacent:to) san_marino azerbaijan text(was:localized:in) western_asia -azerbaijan text(was:butted:against) turkey -azerbaijan text(was:adjacent:to) armenia -azerbaijan text(is:adjacent:to) russia -azerbaijan text(neighbors) iran -azerbaijan text(is:a:neighboring:country:of) georgia +azerbaijan text(was:a:neighbor:of) turkey +azerbaijan text(is:a:neighbor:of) armenia +azerbaijan text(is:a:neighboring:state:to) russia +azerbaijan text(was:a:neighboring:state:to) iran +azerbaijan text(borders:with) georgia honduras text(is:localized:in) central_america -honduras text(was:a:neighboring:country:of) guatemala -honduras text(neighbors:with) nicaragua -honduras text(was:a:neighbor:of) el_salvador +honduras text(neighbors:withborders) guatemala +honduras text(neighbors) nicaragua +honduras text(is:butted:against) el_salvador mali text(was:present:in) western_africa -mali text(is:a:neighbor:of) burkina_faso -mali text(is:a:neighboring:state:to) guinea -mali text(was:a:neighboring:state:to) mauritania -mali text(borders:with) niger -mali text(borders) senegal -mali text(is:butted:against) algeria -mali text(was:butted:against) ivory_coast +mali text(was:butted:against) burkina_faso +mali text(is:a:neighboring:country:of) guinea +mali text(was:a:neighboring:country:of) mauritania +mali text(was:adjacent:to) niger +mali text(is:adjacent:to) senegal +mali text(was:a:neighbor:of) algeria +mali text(is:a:neighbor:of) ivory_coast taiwan text(is:present:in) eastern_asia taiwan text(is:still:in) asia algeria text(was:still:in) northern_africa -algeria text(was:adjacent:to) libya -algeria text(is:adjacent:to) tunisia -algeria text(neighbors) mauritania -algeria text(is:a:neighboring:country:of) morocco -algeria text(was:a:neighboring:country:of) niger -algeria text(neighbors:with) mali -algeria text(was:a:neighbor:of) western_sahara -french_guiana text(is:a:neighbor:of) brazil -french_guiana text(is:a:neighboring:state:to) suriname +algeria text(is:a:neighboring:state:to) libya +algeria text(was:a:neighboring:state:to) tunisia +algeria text(borders:with) mauritania +algeria text(neighbors:withborders) morocco +algeria text(neighbors) niger +algeria text(is:butted:against) mali +algeria text(was:butted:against) western_sahara +french_guiana text(is:a:neighboring:country:of) brazil +french_guiana text(was:a:neighboring:country:of) suriname yemen text(was:currently:in) western_asia -yemen text(was:a:neighboring:state:to) oman -yemen text(borders:with) saudi_arabia +yemen text(was:adjacent:to) oman +yemen text(is:adjacent:to) saudi_arabia puerto_rico text(is:currently:in) caribbean -puerto_rico text(is:placed:in) americas -saint_vincent_and_the_grenadines text(was:placed:in) caribbean -saint_vincent_and_the_grenadines text(can:be:found:in) americas -venezuela text(borders) brazil -venezuela text(is:butted:against) guyana -venezuela text(was:butted:against) colombia -grenada text(was:situated:in) caribbean -grenada text(is:situated:in) americas -united_states text(was:adjacent:to) canada -united_states text(is:adjacent:to) mexico -tokelau text(is:located:in) polynesia -tokelau text(was:located:in) oceania -slovenia text(can:be:found:in) southern_europe -slovenia text(neighbors) austria -slovenia text(is:a:neighboring:country:of) croatia -slovenia text(was:a:neighboring:country:of) italy -slovenia text(neighbors:with) hungary -philippines text(was:positioned:in) south-eastern_asia -philippines text(is:positioned:in) asia -micronesia text(was:sited:in) micronesia -micronesia text(is:sited:in) oceania +puerto_rico text(was:situated:in) americas +saint_vincent_and_the_grenadines text(is:situated:in) caribbean +saint_vincent_and_the_grenadines text(is:located:in) americas +venezuela text(was:a:neighbor:of) brazil +venezuela text(is:a:neighbor:of) guyana +venezuela text(is:a:neighboring:state:to) colombia +grenada text(was:located:in) caribbean +grenada text(could:be:found:in) americas +united_states text(was:a:neighboring:state:to) canada +united_states text(borders:with) mexico +tokelau text(can:be:found:in) polynesia +tokelau text(was:positioned:in) oceania +slovenia text(is:positioned:in) southern_europe +slovenia text(neighbors:withborders) austria +slovenia text(neighbors) croatia +slovenia text(is:butted:against) italy +slovenia text(was:butted:against) hungary +philippines text(was:sited:in) south-eastern_asia +philippines text(is:sited:in) asia +micronesia text(is:placed:in) micronesia +micronesia text(was:placed:in) oceania china text(was:localized:in) eastern_asia -china text(was:a:neighbor:of) afghanistan -china text(is:a:neighbor:of) bhutan -china text(is:a:neighboring:state:to) macau -china text(was:a:neighboring:state:to) india -china text(borders:with) kazakhstan -china text(borders) kyrgyzstan -china text(is:butted:against) tajikistan -china text(was:butted:against) laos -china text(was:adjacent:to) russia -china text(is:adjacent:to) north_korea +china text(is:a:neighboring:country:of) afghanistan +china text(was:a:neighboring:country:of) bhutan +china text(was:adjacent:to) macau +china text(is:adjacent:to) india +china text(was:a:neighbor:of) kazakhstan +china text(is:a:neighbor:of) kyrgyzstan +china text(is:a:neighboring:state:to) tajikistan +china text(was:a:neighboring:state:to) laos +china text(borders:with) russia +china text(neighbors:withborders) north_korea china text(neighbors) myanmar -china text(is:a:neighboring:country:of) pakistan -china text(was:a:neighboring:country:of) mongolia -china text(neighbors:with) hong_kong -china text(was:a:neighbor:of) vietnam +china text(is:butted:against) pakistan +china text(was:butted:against) mongolia +china text(is:a:neighboring:country:of) hong_kong +china text(was:a:neighboring:country:of) vietnam gabon text(is:localized:in) middle_africa -gabon text(is:a:neighbor:of) equatorial_guinea -gabon text(is:a:neighboring:state:to) republic_of_the_congo -gabon text(was:a:neighboring:state:to) cameroon +gabon text(was:adjacent:to) equatorial_guinea +gabon text(is:adjacent:to) republic_of_the_congo +gabon text(was:a:neighbor:of) cameroon united_states_minor_outlying_islands text(was:present:in) northern_america united_states_minor_outlying_islands text(is:present:in) americas andorra text(is:still:in) southern_europe -andorra text(borders:with) spain -andorra text(borders) france +andorra text(is:a:neighbor:of) spain +andorra text(is:a:neighboring:state:to) france samoa text(was:still:in) polynesia samoa text(was:currently:in) oceania gambia text(is:currently:in) western_africa -gambia text(is:placed:in) africa -gambia text(is:butted:against) senegal -palestine text(was:placed:in) western_asia -palestine text(can:be:found:in) asia -palestine text(was:butted:against) jordan -palestine text(was:adjacent:to) egypt -palestine text(is:adjacent:to) israel -réunion text(was:situated:in) eastern_africa -réunion text(is:situated:in) africa -france text(is:located:in) western_europe -france text(neighbors) germany -france text(is:a:neighboring:country:of) luxembourg -france text(was:a:neighboring:country:of) italy -france text(neighbors:with) andorra -france text(was:a:neighbor:of) switzerland -france text(is:a:neighbor:of) monaco -france text(is:a:neighboring:state:to) belgium -france text(was:a:neighboring:state:to) spain -mongolia text(was:located:in) eastern_asia -mongolia text(can:be:found:in) asia -mongolia text(borders:with) china -mongolia text(borders) russia -lithuania text(was:positioned:in) northern_europe -lithuania text(is:butted:against) poland -lithuania text(was:butted:against) latvia -lithuania text(was:adjacent:to) belarus -lithuania text(is:adjacent:to) russia -cayman_islands text(is:positioned:in) caribbean -cayman_islands text(was:sited:in) americas -saint_lucia text(is:sited:in) caribbean +gambia text(was:situated:in) africa +gambia text(was:a:neighboring:state:to) senegal +palestine text(is:situated:in) western_asia +palestine text(is:located:in) asia +palestine text(borders:with) jordan +palestine text(neighbors:withborders) egypt +palestine text(neighbors) israel +réunion text(was:located:in) eastern_africa +réunion text(could:be:found:in) africa +france text(can:be:found:in) western_europe +france text(is:butted:against) germany +france text(was:butted:against) luxembourg +france text(is:a:neighboring:country:of) italy +france text(was:a:neighboring:country:of) andorra +france text(was:adjacent:to) switzerland +france text(is:adjacent:to) monaco +france text(was:a:neighbor:of) belgium +france text(is:a:neighbor:of) spain +mongolia text(was:positioned:in) eastern_asia +mongolia text(is:positioned:in) asia +mongolia text(is:a:neighboring:state:to) china +mongolia text(was:a:neighboring:state:to) russia +lithuania text(was:sited:in) northern_europe +lithuania text(borders:with) poland +lithuania text(neighbors:withborders) latvia +lithuania text(neighbors) belarus +lithuania text(is:butted:against) russia +cayman_islands text(is:sited:in) caribbean +cayman_islands text(is:placed:in) americas +saint_lucia text(was:placed:in) caribbean saint_lucia text(was:localized:in) americas curaçao text(is:localized:in) caribbean curaçao text(was:present:in) americas @@ -959,18 +959,18 @@ southern_asia text(is:still:in) asia middle_africa text(was:still:in) africa northern_europe text(was:currently:in) europe southern_europe text(is:currently:in) europe -western_asia text(is:placed:in) asia -south_america text(was:placed:in) americas -polynesia text(can:be:found:in) oceania -australia_and_new_zealand text(was:situated:in) oceania -western_europe text(is:situated:in) europe -eastern_africa text(is:located:in) africa -western_africa text(was:located:in) africa -eastern_europe text(can:be:found:in) europe -central_america text(was:positioned:in) americas -northern_america text(is:positioned:in) americas -south-eastern_asia text(was:sited:in) asia -southern_africa text(is:sited:in) africa +western_asia text(was:situated:in) asia +south_america text(is:situated:in) americas +polynesia text(is:located:in) oceania +australia_and_new_zealand text(was:located:in) oceania +western_europe text(could:be:found:in) europe +eastern_africa text(can:be:found:in) africa +western_africa text(was:positioned:in) africa +eastern_europe text(is:positioned:in) europe +central_america text(was:sited:in) americas +northern_america text(is:sited:in) americas +south-eastern_asia text(is:placed:in) asia +southern_africa text(was:placed:in) africa eastern_asia text(was:localized:in) asia northern_africa text(is:localized:in) africa melanesia text(was:present:in) oceania diff --git a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_relation2text_traintest.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_relation2text_traintest.tsv new file mode 100644 index 0000000..8b93d13 --- /dev/null +++ b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_relation2text_traintest.tsv @@ -0,0 +1,979 @@ +palau text(is:positioned:in) micronesia +palau text(was:localized:in) oceania +maldives text(is:localized:in) southern_asia +maldives text(was:present:in) asia +brunei text(is:present:in) south-eastern_asia +brunei text(is:still:in) asia +brunei text(was:a:neighboring:country:of) malaysia +japan text(was:still:in) eastern_asia +japan text(was:currently:in) asia +netherlands text(was:a:neighbor:of) belgium +turkey text(is:a:neighbor:of) armenia +turkey text(is:a:neighboring:state:to) azerbaijan +turkey text(was:a:neighboring:state:to) iran +turkey text(borders:with) greece +turkey text(neighbors:withborders) georgia +angola text(is:currently:in) middle_africa +angola text(neighbors) dr_congo +angola text(is:butted:against) namibia +angola text(was:butted:against) republic_of_the_congo +armenia text(was:situated:in) western_asia +armenia text(is:a:neighboring:country:of) georgia +armenia text(was:a:neighboring:country:of) azerbaijan +armenia text(was:a:neighbor:of) iran +armenia text(is:a:neighbor:of) turkey +antigua_and_barbuda text(is:situated:in) caribbean +antigua_and_barbuda text(is:located:in) americas +swaziland text(was:located:in) southern_africa +swaziland text(is:a:neighboring:state:to) south_africa +swaziland text(was:a:neighboring:state:to) mozambique +wallis_and_futuna text(could:be:found:in) polynesia +wallis_and_futuna text(can:be:found:in) oceania +uruguay text(was:positioned:in) south_america +uruguay text(is:positioned:in) americas +uruguay text(borders:with) argentina +uruguay text(neighbors:withborders) brazil +cyprus text(was:localized:in) eastern_europe +cyprus text(is:localized:in) europe +cyprus text(neighbors) united_kingdom +ireland text(was:present:in) northern_europe +ireland text(is:present:in) europe +ireland text(is:butted:against) united_kingdom +burundi text(is:still:in) eastern_africa +burundi text(was:butted:against) dr_congo +burundi text(is:a:neighboring:country:of) rwanda +central_african_republic text(was:still:in) middle_africa +central_african_republic text(was:a:neighboring:country:of) chad +central_african_republic text(was:a:neighbor:of) republic_of_the_congo +central_african_republic text(is:a:neighbor:of) dr_congo +central_african_republic text(is:a:neighboring:state:to) south_sudan +central_african_republic text(was:a:neighboring:state:to) cameroon +tonga text(was:currently:in) polynesia +tonga text(is:currently:in) oceania +ivory_coast text(was:situated:in) western_africa +ivory_coast text(borders:with) liberia +ivory_coast text(neighbors:withborders) mali +ivory_coast text(neighbors) guinea +sierra_leone text(is:butted:against) liberia +sierra_leone text(was:butted:against) guinea +mayotte text(is:situated:in) eastern_africa +mayotte text(is:located:in) africa +poland text(is:a:neighboring:country:of) ukraine +poland text(was:a:neighboring:country:of) slovakia +poland text(was:a:neighbor:of) belarus +poland text(is:a:neighbor:of) russia +poland text(is:a:neighboring:state:to) lithuania +uzbekistan text(was:located:in) central_asia +uzbekistan text(was:a:neighboring:state:to) afghanistan +uzbekistan text(borders:with) turkmenistan +uzbekistan text(neighbors:withborders) kyrgyzstan +uzbekistan text(neighbors) tajikistan +turks_and_caicos_islands text(could:be:found:in) caribbean +turks_and_caicos_islands text(can:be:found:in) americas +new_caledonia text(was:positioned:in) melanesia +new_caledonia text(is:positioned:in) oceania +pakistan text(is:butted:against) china +pakistan text(was:butted:against) afghanistan +pakistan text(is:a:neighboring:country:of) iran +pakistan text(was:a:neighboring:country:of) india +argentina text(was:localized:in) south_america +argentina text(was:a:neighbor:of) bolivia +argentina text(is:a:neighbor:of) chile +argentina text(is:a:neighboring:state:to) brazil +argentina text(was:a:neighboring:state:to) paraguay +argentina text(borders:with) uruguay +cuba text(is:localized:in) caribbean +cuba text(was:present:in) americas +serbia text(neighbors:withborders) macedonia +serbia text(neighbors) montenegro +serbia text(is:butted:against) bosnia_and_herzegovina +serbia text(was:butted:against) croatia +serbia text(is:a:neighboring:country:of) romania +vietnam text(is:present:in) south-eastern_asia +vietnam text(is:still:in) asia +vietnam text(was:a:neighboring:country:of) cambodia +vietnam text(was:a:neighbor:of) laos +vietnam text(is:a:neighbor:of) china +niue text(was:still:in) polynesia +niue text(was:currently:in) oceania +canada text(is:currently:in) northern_america +slovakia text(is:a:neighboring:state:to) ukraine +slovakia text(was:a:neighboring:state:to) poland +slovakia text(borders:with) austria +mozambique text(neighbors:withborders) swaziland +mozambique text(neighbors) malawi +mozambique text(is:butted:against) south_africa +aruba text(was:situated:in) caribbean +aruba text(is:situated:in) americas +bolivia text(is:located:in) south_america +bolivia text(was:butted:against) chile +bolivia text(is:a:neighboring:country:of) brazil +bolivia text(was:a:neighboring:country:of) paraguay +bolivia text(was:a:neighbor:of) argentina +bolivia text(is:a:neighbor:of) peru +colombia text(was:located:in) south_america +colombia text(is:a:neighboring:state:to) brazil +colombia text(was:a:neighboring:state:to) peru +fiji text(could:be:found:in) melanesia +fiji text(can:be:found:in) oceania +republic_of_the_congo text(borders:with) gabon +republic_of_the_congo text(neighbors:withborders) dr_congo +republic_of_the_congo text(neighbors) angola +republic_of_the_congo text(is:butted:against) cameroon +republic_of_the_congo text(was:butted:against) central_african_republic +el_salvador text(was:positioned:in) central_america +el_salvador text(is:a:neighboring:country:of) guatemala +el_salvador text(was:a:neighboring:country:of) honduras +madagascar text(is:positioned:in) eastern_africa +madagascar text(was:localized:in) africa +australia text(is:localized:in) australia_and_new_zealand +australia text(was:present:in) oceania +namibia text(is:present:in) southern_africa +namibia text(is:still:in) africa +namibia text(was:a:neighbor:of) angola +namibia text(is:a:neighbor:of) south_africa +tuvalu text(was:still:in) polynesia +tuvalu text(was:currently:in) oceania +svalbard_and_jan_mayen text(is:currently:in) northern_europe +svalbard_and_jan_mayen text(was:situated:in) europe +isle_of_man text(is:situated:in) northern_europe +isle_of_man text(is:located:in) europe +vatican_city text(was:located:in) southern_europe +vatican_city text(could:be:found:in) europe +vatican_city text(is:a:neighboring:state:to) italy +british_indian_ocean_territory text(can:be:found:in) eastern_africa +british_indian_ocean_territory text(was:positioned:in) africa +nigeria text(is:positioned:in) western_africa +nigeria text(was:localized:in) africa +nigeria text(was:a:neighboring:state:to) chad +nigeria text(borders:with) niger +nigeria text(neighbors:withborders) cameroon +nigeria text(neighbors) benin +northern_mariana_islands text(is:localized:in) micronesia +northern_mariana_islands text(was:present:in) oceania +belize text(is:present:in) central_america +belize text(is:butted:against) guatemala +belize text(was:butted:against) mexico +cocos_keeling_islands text(is:still:in) australia_and_new_zealand +cocos_keeling_islands text(was:still:in) oceania +laos text(was:currently:in) south-eastern_asia +laos text(is:a:neighboring:country:of) china +laos text(was:a:neighboring:country:of) cambodia +laos text(was:a:neighbor:of) vietnam +western_sahara text(is:currently:in) northern_africa +western_sahara text(is:a:neighbor:of) algeria +western_sahara text(is:a:neighboring:state:to) mauritania +western_sahara text(was:a:neighboring:state:to) morocco +christmas_island text(was:situated:in) australia_and_new_zealand +christmas_island text(is:situated:in) oceania +são_tomé_and_príncipe text(is:located:in) middle_africa +são_tomé_and_príncipe text(was:located:in) africa +guinea text(could:be:found:in) western_africa +guinea text(borders:with) sierra_leone +guinea text(neighbors:withborders) mali +guinea text(neighbors) liberia +guinea text(is:butted:against) senegal +guinea text(was:butted:against) ivory_coast +costa_rica text(can:be:found:in) central_america +malta text(was:positioned:in) southern_europe +malta text(is:positioned:in) europe +portugal text(was:localized:in) southern_europe +romania text(is:localized:in) eastern_europe +romania text(is:a:neighboring:country:of) ukraine +romania text(was:a:neighboring:country:of) moldova +romania text(was:a:neighbor:of) serbia +san_marino text(was:present:in) southern_europe +san_marino text(is:present:in) europe +san_marino text(is:a:neighbor:of) italy +mauritania text(is:still:in) western_africa +mauritania text(was:still:in) africa +mauritania text(is:a:neighboring:state:to) algeria +mauritania text(was:a:neighboring:state:to) mali +mauritania text(borders:with) western_sahara +mauritania text(neighbors:withborders) senegal +trinidad_and_tobago text(was:currently:in) caribbean +trinidad_and_tobago text(is:currently:in) americas +bahrain text(was:situated:in) western_asia +bahrain text(is:situated:in) asia +south_georgia text(is:located:in) south_america +south_georgia text(was:located:in) americas +iceland text(could:be:found:in) northern_europe +iceland text(can:be:found:in) europe +dr_congo text(was:positioned:in) middle_africa +dr_congo text(neighbors) uganda +dr_congo text(is:butted:against) republic_of_the_congo +dr_congo text(was:butted:against) central_african_republic +dr_congo text(is:a:neighboring:country:of) angola +dr_congo text(was:a:neighboring:country:of) rwanda +dr_congo text(was:a:neighbor:of) south_sudan +dr_congo text(is:a:neighbor:of) burundi +seychelles text(is:positioned:in) eastern_africa +seychelles text(was:localized:in) africa +kyrgyzstan text(is:a:neighboring:state:to) china +kyrgyzstan text(was:a:neighboring:state:to) tajikistan +kyrgyzstan text(borders:with) uzbekistan +faroe_islands text(is:localized:in) northern_europe +faroe_islands text(was:present:in) europe +jamaica text(is:present:in) caribbean +jamaica text(is:still:in) americas +american_samoa text(was:still:in) polynesia +american_samoa text(was:currently:in) oceania +lesotho text(is:currently:in) southern_africa +lesotho text(was:situated:in) africa +lesotho text(neighbors:withborders) south_africa +sri_lanka text(neighbors) india +belgium text(is:situated:in) western_europe +belgium text(is:butted:against) luxembourg +belgium text(was:butted:against) france +belgium text(is:a:neighboring:country:of) netherlands +qatar text(is:located:in) western_asia +solomon_islands text(was:located:in) melanesia +solomon_islands text(could:be:found:in) oceania +india text(can:be:found:in) southern_asia +india text(was:a:neighboring:country:of) afghanistan +india text(was:a:neighbor:of) bangladesh +india text(is:a:neighbor:of) china +india text(is:a:neighboring:state:to) nepal +india text(was:a:neighboring:state:to) pakistan +india text(borders:with) sri_lanka +morocco text(neighbors:withborders) algeria +morocco text(neighbors) western_sahara +kenya text(was:positioned:in) eastern_africa +kenya text(is:butted:against) uganda +kenya text(was:butted:against) somalia +kenya text(is:a:neighboring:country:of) south_sudan +kenya text(was:a:neighboring:country:of) ethiopia +south_sudan text(is:positioned:in) middle_africa +south_sudan text(was:a:neighbor:of) uganda +south_sudan text(is:a:neighbor:of) dr_congo +south_sudan text(is:a:neighboring:state:to) kenya +south_sudan text(was:a:neighboring:state:to) central_african_republic +south_sudan text(borders:with) ethiopia +tajikistan text(was:localized:in) central_asia +tajikistan text(neighbors:withborders) china +tajikistan text(neighbors) kyrgyzstan +tajikistan text(is:butted:against) afghanistan +tajikistan text(was:butted:against) uzbekistan +marshall_islands text(is:localized:in) micronesia +marshall_islands text(was:present:in) oceania +cameroon text(is:present:in) middle_africa +cameroon text(is:a:neighboring:country:of) chad +cameroon text(was:a:neighboring:country:of) republic_of_the_congo +cameroon text(was:a:neighbor:of) gabon +cameroon text(is:a:neighbor:of) equatorial_guinea +cameroon text(is:a:neighboring:state:to) central_african_republic +cameroon text(was:a:neighboring:state:to) nigeria +nauru text(is:still:in) micronesia +nauru text(was:still:in) oceania +chad text(was:currently:in) middle_africa +chad text(borders:with) libya +chad text(neighbors:withborders) niger +chad text(neighbors) south_sudan +chad text(is:butted:against) cameroon +chad text(was:butted:against) central_african_republic +chad text(is:a:neighboring:country:of) nigeria +vanuatu text(is:currently:in) melanesia +vanuatu text(was:situated:in) oceania +cape_verde text(is:situated:in) western_africa +cape_verde text(is:located:in) africa +falkland_islands text(was:located:in) south_america +falkland_islands text(could:be:found:in) americas +liberia text(can:be:found:in) western_africa +liberia text(was:a:neighboring:country:of) ivory_coast +liberia text(was:a:neighbor:of) sierra_leone +liberia text(is:a:neighbor:of) guinea +cambodia text(was:positioned:in) south-eastern_asia +cambodia text(is:a:neighboring:state:to) vietnam +cambodia text(was:a:neighboring:state:to) laos +comoros text(is:positioned:in) eastern_africa +comoros text(was:localized:in) africa +guam text(is:localized:in) micronesia +guam text(was:present:in) oceania +bahamas text(is:present:in) caribbean +bahamas text(is:still:in) americas +lebanon text(was:still:in) western_asia +lebanon text(was:currently:in) asia +lebanon text(borders:with) israel +sint_maarten text(is:currently:in) caribbean +sint_maarten text(was:situated:in) americas +ethiopia text(is:situated:in) eastern_africa +ethiopia text(neighbors:withborders) somalia +ethiopia text(neighbors) kenya +ethiopia text(is:butted:against) south_sudan +united_states_virgin_islands text(is:located:in) caribbean +united_states_virgin_islands text(was:located:in) americas +libya text(could:be:found:in) northern_africa +libya text(was:butted:against) chad +libya text(is:a:neighboring:country:of) tunisia +libya text(was:a:neighboring:country:of) niger +libya text(was:a:neighbor:of) algeria +french_polynesia text(can:be:found:in) polynesia +french_polynesia text(was:positioned:in) oceania +somalia text(is:positioned:in) eastern_africa +somalia text(is:a:neighbor:of) kenya +somalia text(is:a:neighboring:state:to) ethiopia +saint_barthélemy text(was:localized:in) caribbean +saint_barthélemy text(is:localized:in) americas +russia text(was:present:in) eastern_europe +russia text(was:a:neighboring:state:to) ukraine +russia text(borders:with) belarus +russia text(neighbors:withborders) china +russia text(neighbors) poland +russia text(is:butted:against) azerbaijan +russia text(was:butted:against) lithuania +russia text(is:a:neighboring:country:of) estonia +russia text(was:a:neighboring:country:of) north_korea +russia text(was:a:neighbor:of) finland +russia text(is:a:neighbor:of) latvia +russia text(is:a:neighboring:state:to) georgia +new_zealand text(is:present:in) australia_and_new_zealand +new_zealand text(is:still:in) oceania +papua_new_guinea text(was:still:in) melanesia +north_korea text(was:a:neighboring:state:to) china +north_korea text(borders:with) south_korea +north_korea text(neighbors:withborders) russia +latvia text(was:currently:in) northern_europe +latvia text(neighbors) lithuania +latvia text(is:butted:against) belarus +latvia text(was:butted:against) russia +latvia text(is:a:neighboring:country:of) estonia +oman text(is:currently:in) western_asia +oman text(was:a:neighboring:country:of) yemen +oman text(was:a:neighbor:of) united_arab_emirates +saint_pierre_and_miquelon text(was:situated:in) northern_america +saint_pierre_and_miquelon text(is:situated:in) americas +martinique text(is:located:in) caribbean +martinique text(was:located:in) americas +united_kingdom text(could:be:found:in) northern_europe +united_kingdom text(can:be:found:in) europe +united_kingdom text(is:a:neighbor:of) ireland +israel text(was:positioned:in) western_asia +israel text(is:a:neighboring:state:to) lebanon +jersey text(is:positioned:in) northern_europe +jersey text(was:localized:in) europe +pitcairn_islands text(is:localized:in) polynesia +pitcairn_islands text(was:present:in) oceania +togo text(is:present:in) western_africa +togo text(was:a:neighboring:state:to) benin +kiribati text(is:still:in) micronesia +kiribati text(was:still:in) oceania +iran text(was:currently:in) southern_asia +iran text(borders:with) afghanistan +iran text(neighbors:withborders) turkmenistan +iran text(neighbors) turkey +iran text(is:butted:against) armenia +iran text(was:butted:against) azerbaijan +iran text(is:a:neighboring:country:of) pakistan +dominican_republic text(is:currently:in) caribbean +dominican_republic text(was:situated:in) americas +dominican_republic text(was:a:neighboring:country:of) haiti +bermuda text(is:situated:in) northern_america +bermuda text(is:located:in) americas +chile text(was:a:neighbor:of) argentina +chile text(is:a:neighbor:of) bolivia +chile text(is:a:neighboring:state:to) peru +saint_kitts_and_nevis text(was:located:in) caribbean +saint_kitts_and_nevis text(could:be:found:in) americas +equatorial_guinea text(can:be:found:in) middle_africa +equatorial_guinea text(was:positioned:in) africa +equatorial_guinea text(was:a:neighboring:state:to) gabon +equatorial_guinea text(borders:with) cameroon +niger text(is:positioned:in) western_africa +niger text(neighbors:withborders) chad +niger text(neighbors) libya +niger text(is:butted:against) benin +niger text(was:butted:against) mali +niger text(is:a:neighboring:country:of) algeria +niger text(was:a:neighboring:country:of) nigeria +anguilla text(was:localized:in) caribbean +anguilla text(is:localized:in) americas +rwanda text(was:present:in) eastern_africa +rwanda text(was:a:neighbor:of) burundi +rwanda text(is:a:neighbor:of) uganda +rwanda text(is:a:neighboring:state:to) dr_congo +united_arab_emirates text(is:present:in) western_asia +united_arab_emirates text(was:a:neighboring:state:to) oman +estonia text(is:still:in) northern_europe +estonia text(was:still:in) europe +estonia text(borders:with) latvia +estonia text(neighbors:withborders) russia +greece text(was:currently:in) southern_europe +greece text(neighbors) albania +greece text(is:butted:against) macedonia +greece text(was:butted:against) turkey +senegal text(is:currently:in) western_africa +senegal text(was:situated:in) africa +senegal text(is:a:neighboring:country:of) mauritania +senegal text(was:a:neighboring:country:of) mali +senegal text(was:a:neighbor:of) gambia +senegal text(is:a:neighbor:of) guinea +guadeloupe text(is:situated:in) caribbean +guadeloupe text(is:located:in) americas +british_virgin_islands text(was:located:in) caribbean +british_virgin_islands text(could:be:found:in) americas +cook_islands text(can:be:found:in) polynesia +cook_islands text(was:positioned:in) oceania +uganda text(is:positioned:in) eastern_africa +uganda text(is:a:neighboring:state:to) dr_congo +uganda text(was:a:neighboring:state:to) kenya +uganda text(borders:with) south_sudan +uganda text(neighbors:withborders) rwanda +macedonia text(was:localized:in) southern_europe +macedonia text(neighbors) greece +macedonia text(is:butted:against) albania +macedonia text(was:butted:against) serbia +tunisia text(is:localized:in) northern_africa +tunisia text(was:present:in) africa +tunisia text(is:a:neighboring:country:of) libya +tunisia text(was:a:neighboring:country:of) algeria +brazil text(is:present:in) south_america +brazil text(was:a:neighbor:of) bolivia +brazil text(is:a:neighbor:of) colombia +brazil text(is:a:neighboring:state:to) paraguay +brazil text(was:a:neighboring:state:to) uruguay +brazil text(borders:with) argentina +brazil text(neighbors:withborders) peru +paraguay text(is:still:in) south_america +paraguay text(was:still:in) americas +paraguay text(neighbors) argentina +paraguay text(is:butted:against) brazil +paraguay text(was:butted:against) bolivia +finland text(was:currently:in) northern_europe +finland text(is:a:neighboring:country:of) sweden +finland text(was:a:neighboring:country:of) russia +montenegro text(is:currently:in) southern_europe +montenegro text(was:a:neighbor:of) bosnia_and_herzegovina +montenegro text(is:a:neighbor:of) croatia +montenegro text(is:a:neighboring:state:to) serbia +montenegro text(was:a:neighboring:state:to) albania +peru text(was:situated:in) south_america +peru text(borders:with) bolivia +peru text(neighbors:withborders) chile +peru text(neighbors) brazil +peru text(is:butted:against) colombia +montserrat text(is:situated:in) caribbean +montserrat text(is:located:in) americas +ukraine text(was:located:in) eastern_europe +ukraine text(was:butted:against) slovakia +ukraine text(is:a:neighboring:country:of) belarus +ukraine text(was:a:neighboring:country:of) poland +ukraine text(was:a:neighbor:of) russia +ukraine text(is:a:neighbor:of) moldova +ukraine text(is:a:neighboring:state:to) romania +dominica text(could:be:found:in) caribbean +dominica text(can:be:found:in) americas +turkmenistan text(was:a:neighboring:state:to) afghanistan +turkmenistan text(borders:with) uzbekistan +turkmenistan text(neighbors:withborders) iran +guernsey text(was:positioned:in) northern_europe +guernsey text(is:positioned:in) europe +gibraltar text(was:localized:in) southern_europe +switzerland text(is:localized:in) western_europe +switzerland text(neighbors) italy +switzerland text(is:butted:against) austria +switzerland text(was:butted:against) france +switzerland text(is:a:neighboring:country:of) liechtenstein +austria text(was:present:in) western_europe +austria text(was:a:neighboring:country:of) slovakia +austria text(was:a:neighbor:of) slovenia +austria text(is:a:neighbor:of) italy +austria text(is:a:neighboring:state:to) switzerland +austria text(was:a:neighboring:state:to) liechtenstein +malawi text(is:present:in) eastern_africa +malawi text(borders:with) mozambique +hong_kong text(neighbors:withborders) china +liechtenstein text(is:still:in) western_europe +liechtenstein text(was:still:in) europe +liechtenstein text(neighbors) switzerland +liechtenstein text(is:butted:against) austria +barbados text(was:currently:in) caribbean +barbados text(is:currently:in) americas +georgia text(was:situated:in) western_asia +georgia text(was:butted:against) armenia +georgia text(is:a:neighboring:country:of) azerbaijan +georgia text(was:a:neighboring:country:of) russia +georgia text(was:a:neighbor:of) turkey +albania text(is:situated:in) southern_europe +albania text(is:located:in) europe +albania text(is:a:neighbor:of) montenegro +albania text(is:a:neighboring:state:to) macedonia +albania text(was:a:neighboring:state:to) greece +kuwait text(was:located:in) western_asia +south_africa text(could:be:found:in) southern_africa +south_africa text(borders:with) mozambique +south_africa text(neighbors:withborders) swaziland +south_africa text(neighbors) namibia +south_africa text(is:butted:against) lesotho +haiti text(can:be:found:in) caribbean +haiti text(was:positioned:in) americas +haiti text(was:butted:against) dominican_republic +afghanistan text(is:positioned:in) southern_asia +afghanistan text(is:a:neighboring:country:of) turkmenistan +afghanistan text(was:a:neighboring:country:of) china +afghanistan text(was:a:neighbor:of) tajikistan +afghanistan text(is:a:neighbor:of) uzbekistan +afghanistan text(is:a:neighboring:state:to) iran +afghanistan text(was:a:neighboring:state:to) pakistan +singapore text(was:localized:in) south-eastern_asia +singapore text(is:localized:in) asia +benin text(was:present:in) western_africa +benin text(borders:with) niger +benin text(neighbors:withborders) togo +benin text(neighbors) nigeria +åland_islands text(is:present:in) northern_europe +åland_islands text(is:still:in) europe +croatia text(was:still:in) southern_europe +croatia text(is:butted:against) slovenia +croatia text(was:butted:against) bosnia_and_herzegovina +croatia text(is:a:neighboring:country:of) serbia +croatia text(was:a:neighboring:country:of) montenegro +sweden text(was:currently:in) northern_europe +sweden text(was:a:neighbor:of) finland +mexico text(is:a:neighbor:of) belize +mexico text(is:a:neighboring:state:to) guatemala +greenland text(is:currently:in) northern_america +greenland text(was:situated:in) americas +norfolk_island text(is:situated:in) australia_and_new_zealand +norfolk_island text(is:located:in) oceania +nepal text(was:located:in) southern_asia +nepal text(could:be:found:in) asia +nepal text(was:a:neighboring:state:to) china +nepal text(borders:with) india +guatemala text(neighbors:withborders) belize +guatemala text(neighbors) el_salvador +guatemala text(is:butted:against) mexico +guatemala text(was:butted:against) honduras +south_korea text(can:be:found:in) eastern_asia +south_korea text(is:a:neighboring:country:of) north_korea +moldova text(was:positioned:in) eastern_europe +moldova text(is:positioned:in) europe +moldova text(was:a:neighboring:country:of) ukraine +moldova text(was:a:neighbor:of) romania +mauritius text(was:localized:in) eastern_africa +mauritius text(is:localized:in) africa +belarus text(is:a:neighbor:of) ukraine +belarus text(is:a:neighboring:state:to) poland +belarus text(was:a:neighboring:state:to) lithuania +belarus text(borders:with) russia +belarus text(neighbors:withborders) latvia +bangladesh text(neighbors) india +malaysia text(was:present:in) south-eastern_asia +malaysia text(is:butted:against) brunei +bosnia_and_herzegovina text(is:present:in) southern_europe +bosnia_and_herzegovina text(was:butted:against) serbia +bosnia_and_herzegovina text(is:a:neighboring:country:of) croatia +bosnia_and_herzegovina text(was:a:neighboring:country:of) montenegro +luxembourg text(is:still:in) western_europe +luxembourg text(was:a:neighbor:of) belgium +luxembourg text(is:a:neighbor:of) france +italy text(was:still:in) southern_europe +italy text(was:currently:in) europe +italy text(is:a:neighboring:state:to) slovenia +italy text(was:a:neighboring:state:to) switzerland +italy text(borders:with) austria +italy text(neighbors:withborders) france +italy text(neighbors) vatican_city +italy text(is:butted:against) san_marino +azerbaijan text(is:currently:in) western_asia +azerbaijan text(was:butted:against) turkey +azerbaijan text(is:a:neighboring:country:of) armenia +azerbaijan text(was:a:neighboring:country:of) russia +azerbaijan text(was:a:neighbor:of) iran +azerbaijan text(is:a:neighbor:of) georgia +honduras text(was:situated:in) central_america +honduras text(is:a:neighboring:state:to) guatemala +honduras text(was:a:neighboring:state:to) el_salvador +mali text(is:situated:in) western_africa +mali text(borders:with) guinea +mali text(neighbors:withborders) mauritania +mali text(neighbors) niger +mali text(is:butted:against) senegal +mali text(was:butted:against) algeria +mali text(is:a:neighboring:country:of) ivory_coast +taiwan text(is:located:in) eastern_asia +taiwan text(was:located:in) asia +algeria text(could:be:found:in) northern_africa +algeria text(was:a:neighboring:country:of) libya +algeria text(was:a:neighbor:of) tunisia +algeria text(is:a:neighbor:of) mauritania +algeria text(is:a:neighboring:state:to) morocco +algeria text(was:a:neighboring:state:to) niger +algeria text(borders:with) mali +algeria text(neighbors:withborders) western_sahara +yemen text(can:be:found:in) western_asia +yemen text(neighbors) oman +puerto_rico text(was:positioned:in) caribbean +puerto_rico text(is:positioned:in) americas +saint_vincent_and_the_grenadines text(was:localized:in) caribbean +saint_vincent_and_the_grenadines text(is:localized:in) americas +grenada text(was:present:in) caribbean +grenada text(is:present:in) americas +tokelau text(is:still:in) polynesia +tokelau text(was:still:in) oceania +slovenia text(was:currently:in) southern_europe +slovenia text(is:butted:against) austria +slovenia text(was:butted:against) croatia +slovenia text(is:a:neighboring:country:of) italy +philippines text(is:currently:in) south-eastern_asia +philippines text(was:situated:in) asia +micronesia text(is:situated:in) micronesia +micronesia text(is:located:in) oceania +china text(was:located:in) eastern_asia +china text(was:a:neighboring:country:of) afghanistan +china text(was:a:neighbor:of) india +china text(is:a:neighbor:of) kyrgyzstan +china text(is:a:neighboring:state:to) tajikistan +china text(was:a:neighboring:state:to) laos +china text(borders:with) russia +china text(neighbors:withborders) north_korea +china text(neighbors) pakistan +china text(is:butted:against) hong_kong +china text(was:butted:against) vietnam +gabon text(could:be:found:in) middle_africa +gabon text(is:a:neighboring:country:of) equatorial_guinea +gabon text(was:a:neighboring:country:of) republic_of_the_congo +gabon text(was:a:neighbor:of) cameroon +united_states_minor_outlying_islands text(can:be:found:in) northern_america +united_states_minor_outlying_islands text(was:positioned:in) americas +andorra text(is:positioned:in) southern_europe +andorra text(is:a:neighbor:of) france +samoa text(was:localized:in) polynesia +samoa text(is:localized:in) oceania +gambia text(was:present:in) western_africa +gambia text(is:present:in) africa +gambia text(is:a:neighboring:state:to) senegal +palestine text(is:still:in) western_asia +palestine text(was:still:in) asia +palestine text(was:a:neighboring:state:to) israel +réunion text(was:currently:in) eastern_africa +réunion text(is:currently:in) africa +france text(was:situated:in) western_europe +france text(borders:with) luxembourg +france text(neighbors:withborders) italy +france text(neighbors) andorra +france text(is:butted:against) switzerland +france text(was:butted:against) belgium +lithuania text(is:situated:in) northern_europe +lithuania text(is:a:neighboring:country:of) poland +lithuania text(was:a:neighboring:country:of) latvia +lithuania text(was:a:neighbor:of) belarus +lithuania text(is:a:neighbor:of) russia +cayman_islands text(is:located:in) caribbean +cayman_islands text(was:located:in) americas +saint_lucia text(could:be:found:in) caribbean +saint_lucia text(can:be:found:in) americas +curaçao text(was:positioned:in) caribbean +curaçao text(is:positioned:in) americas +caribbean text(was:localized:in) americas +southern_asia text(is:localized:in) asia +middle_africa text(was:present:in) africa +northern_europe text(is:present:in) europe +southern_europe text(is:still:in) europe +western_asia text(was:still:in) asia +south_america text(was:currently:in) americas +polynesia text(is:currently:in) oceania +australia_and_new_zealand text(was:situated:in) oceania +western_europe text(is:situated:in) europe +eastern_africa text(is:located:in) africa +western_africa text(was:located:in) africa +eastern_europe text(could:be:found:in) europe +central_america text(can:be:found:in) americas +northern_america text(was:positioned:in) americas +south-eastern_asia text(is:positioned:in) asia +southern_africa text(was:localized:in) africa +eastern_asia text(is:localized:in) asia +northern_africa text(was:present:in) africa +melanesia text(is:present:in) oceania +micronesia text(is:still:in) oceania +central_asia text(was:still:in) asia +central_europe text(was:currently:in) europe +netherlands text(was:a:neighboring:country:of) germany +turkey text(was:a:neighbor:of) bulgaria +turkey text(is:a:neighbor:of) iraq +turkey text(is:a:neighboring:state:to) syria +angola text(was:a:neighboring:state:to) zambia +zambia text(is:positioned:in) eastern_africa +zambia text(borders:with) tanzania +zambia text(neighbors:withborders) mozambique +zambia text(neighbors) dr_congo +zambia text(is:butted:against) angola +zambia text(was:butted:against) botswana +zambia text(is:a:neighboring:country:of) zimbabwe +zambia text(was:a:neighboring:country:of) namibia +zambia text(was:a:neighbor:of) malawi +burundi text(is:a:neighbor:of) tanzania +central_african_republic text(is:a:neighboring:state:to) sudan +ivory_coast text(was:a:neighboring:state:to) burkina_faso +ivory_coast text(borders:with) ghana +poland text(neighbors:withborders) germany +poland text(neighbors) czechia +kazakhstan text(was:localized:in) central_asia +kazakhstan text(is:butted:against) turkmenistan +kazakhstan text(was:butted:against) china +kazakhstan text(is:a:neighboring:country:of) kyrgyzstan +kazakhstan text(was:a:neighboring:country:of) uzbekistan +kazakhstan text(was:a:neighbor:of) russia +uzbekistan text(is:a:neighbor:of) kazakhstan +serbia text(is:a:neighboring:state:to) kosovo +serbia text(was:a:neighboring:state:to) hungary +serbia text(borders:with) bulgaria +czechia text(is:localized:in) eastern_europe +czechia text(neighbors:withborders) germany +czechia text(neighbors) austria +czechia text(is:butted:against) poland +czechia text(was:butted:against) slovakia +nicaragua text(is:a:neighboring:country:of) honduras +nicaragua text(was:a:neighboring:country:of) costa_rica +canada text(was:a:neighbor:of) united_states +slovakia text(is:a:neighbor:of) hungary +slovakia text(is:a:neighboring:state:to) czechia +mozambique text(was:a:neighboring:state:to) tanzania +mozambique text(borders:with) zimbabwe +mozambique text(neighbors:withborders) zambia +colombia text(neighbors) ecuador +colombia text(is:butted:against) panama +colombia text(was:butted:against) venezuela +saudi_arabia text(is:a:neighboring:country:of) qatar +saudi_arabia text(was:a:neighboring:country:of) united_arab_emirates +saudi_arabia text(was:a:neighbor:of) jordan +saudi_arabia text(is:a:neighbor:of) yemen +saudi_arabia text(is:a:neighboring:state:to) oman +saudi_arabia text(was:a:neighboring:state:to) kuwait +saudi_arabia text(borders:with) iraq +namibia text(neighbors:withborders) zambia +namibia text(neighbors) botswana +guyana text(is:butted:against) brazil +guyana text(was:butted:against) suriname +guyana text(is:a:neighboring:country:of) venezuela +germany text(was:a:neighboring:country:of) denmark +germany text(was:a:neighbor:of) netherlands +germany text(is:a:neighbor:of) poland +germany text(is:a:neighboring:state:to) luxembourg +germany text(was:a:neighboring:state:to) belgium +germany text(borders:with) switzerland +germany text(neighbors:withborders) austria +germany text(neighbors) france +germany text(is:butted:against) czechia +burkina_faso text(was:butted:against) togo +burkina_faso text(is:a:neighboring:country:of) benin +burkina_faso text(was:a:neighboring:country:of) niger +burkina_faso text(was:a:neighbor:of) ghana +burkina_faso text(is:a:neighbor:of) mali +burkina_faso text(is:a:neighboring:state:to) ivory_coast +tanzania text(was:a:neighboring:state:to) uganda +tanzania text(borders:with) mozambique +tanzania text(neighbors:withborders) dr_congo +tanzania text(neighbors) kenya +tanzania text(is:butted:against) rwanda +tanzania text(was:butted:against) zambia +tanzania text(is:a:neighboring:country:of) malawi +tanzania text(was:a:neighboring:country:of) burundi +norway text(was:a:neighbor:of) sweden +norway text(is:a:neighbor:of) finland +norway text(is:a:neighboring:state:to) russia +laos text(was:a:neighboring:state:to) myanmar +laos text(borders:with) thailand +suriname text(was:present:in) south_america +suriname text(neighbors:withborders) brazil +suriname text(neighbors) french_guiana +suriname text(is:butted:against) guyana +egypt text(was:butted:against) libya +egypt text(is:a:neighboring:country:of) israel +egypt text(was:a:neighboring:country:of) sudan +bulgaria text(was:a:neighbor:of) macedonia +bulgaria text(is:a:neighbor:of) turkey +bulgaria text(is:a:neighboring:state:to) greece +bulgaria text(was:a:neighboring:state:to) serbia +bulgaria text(borders:with) romania +guinea text(neighbors:withborders) guinea-bissau +spain text(neighbors) morocco +spain text(is:butted:against) gibraltar +spain text(was:butted:against) andorra +spain text(is:a:neighboring:country:of) france +spain text(was:a:neighboring:country:of) portugal +costa_rica text(was:a:neighbor:of) panama +costa_rica text(is:a:neighbor:of) nicaragua +portugal text(is:a:neighboring:state:to) spain +romania text(was:a:neighboring:state:to) hungary +romania text(borders:with) bulgaria +myanmar text(neighbors:withborders) india +myanmar text(neighbors) bangladesh +myanmar text(is:butted:against) china +myanmar text(was:butted:against) laos +myanmar text(is:a:neighboring:country:of) thailand +iraq text(was:a:neighboring:country:of) turkey +iraq text(was:a:neighbor:of) saudi_arabia +iraq text(is:a:neighbor:of) iran +iraq text(is:a:neighboring:state:to) jordan +iraq text(was:a:neighboring:state:to) kuwait +iraq text(borders:with) syria +dr_congo text(neighbors:withborders) tanzania +dr_congo text(neighbors) zambia +kyrgyzstan text(is:butted:against) kazakhstan +botswana text(is:present:in) southern_africa +botswana text(was:butted:against) zimbabwe +botswana text(is:a:neighboring:country:of) namibia +botswana text(was:a:neighboring:country:of) zambia +botswana text(was:a:neighbor:of) south_africa +belgium text(is:a:neighbor:of) germany +qatar text(is:a:neighboring:state:to) saudi_arabia +syria text(is:still:in) western_asia +syria text(was:a:neighboring:state:to) israel +syria text(borders:with) turkey +syria text(neighbors:withborders) jordan +syria text(neighbors) lebanon +syria text(is:butted:against) iraq +india text(was:butted:against) bhutan +india text(is:a:neighboring:country:of) myanmar +morocco text(was:a:neighboring:country:of) spain +kenya text(was:a:neighbor:of) tanzania +south_sudan text(is:a:neighbor:of) sudan +ghana text(is:a:neighboring:state:to) burkina_faso +ghana text(was:a:neighboring:state:to) ivory_coast +ghana text(borders:with) togo +thailand text(neighbors:withborders) cambodia +thailand text(neighbors) myanmar +thailand text(is:butted:against) laos +thailand text(was:butted:against) malaysia +sudan text(is:a:neighboring:country:of) chad +sudan text(was:a:neighboring:country:of) libya +sudan text(was:a:neighbor:of) south_sudan +sudan text(is:a:neighbor:of) eritrea +sudan text(is:a:neighboring:state:to) central_african_republic +sudan text(was:a:neighboring:state:to) egypt +sudan text(borders:with) ethiopia +cambodia text(neighbors:withborders) thailand +zimbabwe text(neighbors) zambia +zimbabwe text(is:butted:against) south_africa +zimbabwe text(was:butted:against) botswana +zimbabwe text(is:a:neighboring:country:of) mozambique +lebanon text(was:a:neighboring:country:of) syria +sint_maarten text(was:a:neighbor:of) saint_martin +ethiopia text(is:a:neighbor:of) eritrea +ethiopia text(is:a:neighboring:state:to) djibouti +ethiopia text(was:a:neighboring:state:to) sudan +guinea-bissau text(was:still:in) western_africa +guinea-bissau text(was:currently:in) africa +guinea-bissau text(borders:with) guinea +guinea-bissau text(neighbors:withborders) senegal +libya text(neighbors) egypt +libya text(is:butted:against) sudan +bhutan text(is:currently:in) southern_asia +bhutan text(was:situated:in) asia +bhutan text(was:butted:against) china +bhutan text(is:a:neighboring:country:of) india +macau text(is:situated:in) eastern_asia +macau text(is:located:in) asia +macau text(was:a:neighboring:country:of) china +somalia text(was:a:neighbor:of) djibouti +russia text(is:a:neighbor:of) kazakhstan +russia text(is:a:neighboring:state:to) norway +russia text(was:a:neighboring:state:to) mongolia +panama text(was:located:in) central_america +panama text(could:be:found:in) americas +panama text(borders:with) costa_rica +panama text(neighbors:withborders) colombia +papua_new_guinea text(neighbors) indonesia +oman text(is:butted:against) saudi_arabia +israel text(was:butted:against) egypt +israel text(is:a:neighboring:country:of) jordan +israel text(was:a:neighboring:country:of) syria +togo text(was:a:neighbor:of) burkina_faso +togo text(is:a:neighbor:of) ghana +iran text(is:a:neighboring:state:to) iraq +saint_martin text(can:be:found:in) caribbean +saint_martin text(was:positioned:in) americas +saint_martin text(was:a:neighboring:state:to) sint_maarten +denmark text(borders:with) germany +kosovo text(is:positioned:in) eastern_europe +kosovo text(neighbors:withborders) serbia +kosovo text(neighbors) albania +kosovo text(is:butted:against) macedonia +kosovo text(was:butted:against) montenegro +eritrea text(is:a:neighboring:country:of) djibouti +eritrea text(was:a:neighboring:country:of) sudan +eritrea text(was:a:neighbor:of) ethiopia +niger text(is:a:neighbor:of) burkina_faso +rwanda text(is:a:neighboring:state:to) tanzania +united_arab_emirates text(was:a:neighboring:state:to) saudi_arabia +greece text(borders:with) bulgaria +senegal text(neighbors:withborders) guinea-bissau +monaco text(neighbors) france +djibouti text(is:butted:against) eritrea +djibouti text(was:butted:against) somalia +djibouti text(is:a:neighboring:country:of) ethiopia +indonesia text(was:a:neighboring:country:of) papua_new_guinea +indonesia text(was:a:neighbor:of) timor-leste +indonesia text(is:a:neighbor:of) malaysia +uganda text(is:a:neighboring:state:to) tanzania +macedonia text(was:a:neighboring:state:to) kosovo +macedonia text(borders:with) bulgaria +ecuador text(neighbors:withborders) peru +ecuador text(neighbors) colombia +brazil text(is:butted:against) french_guiana +brazil text(was:butted:against) suriname +brazil text(is:a:neighboring:country:of) venezuela +brazil text(was:a:neighboring:country:of) guyana +finland text(was:a:neighbor:of) norway +jordan text(is:a:neighbor:of) saudi_arabia +jordan text(is:a:neighboring:state:to) israel +jordan text(was:a:neighboring:state:to) iraq +jordan text(borders:with) syria +timor-leste text(neighbors:withborders) indonesia +montenegro text(neighbors) kosovo +peru text(is:butted:against) ecuador +ukraine text(was:butted:against) hungary +turkmenistan text(is:a:neighboring:country:of) kazakhstan +gibraltar text(was:a:neighboring:country:of) spain +switzerland text(was:a:neighbor:of) germany +austria text(is:a:neighbor:of) germany +austria text(is:a:neighboring:state:to) hungary +austria text(was:a:neighboring:state:to) czechia +hungary text(borders:with) ukraine +hungary text(neighbors:withborders) slovakia +hungary text(neighbors) slovenia +hungary text(is:butted:against) croatia +hungary text(was:butted:against) austria +hungary text(is:a:neighboring:country:of) serbia +hungary text(was:a:neighboring:country:of) romania +malawi text(was:a:neighbor:of) zambia +malawi text(is:a:neighbor:of) tanzania +albania text(is:a:neighboring:state:to) kosovo +kuwait text(was:a:neighboring:state:to) saudi_arabia +kuwait text(borders:with) iraq +south_africa text(neighbors:withborders) botswana +south_africa text(neighbors) zimbabwe +benin text(is:butted:against) burkina_faso +croatia text(was:butted:against) hungary +sweden text(is:a:neighboring:country:of) norway +mexico text(was:a:neighboring:country:of) united_states +bangladesh text(was:a:neighbor:of) myanmar +malaysia text(is:a:neighbor:of) thailand +malaysia text(is:a:neighboring:state:to) indonesia +luxembourg text(was:a:neighboring:state:to) germany +honduras text(borders:with) nicaragua +mali text(neighbors:withborders) burkina_faso +french_guiana text(neighbors) brazil +french_guiana text(is:butted:against) suriname +yemen text(was:butted:against) saudi_arabia +venezuela text(is:a:neighboring:country:of) brazil +venezuela text(was:a:neighboring:country:of) guyana +venezuela text(was:a:neighbor:of) colombia +united_states text(is:a:neighbor:of) canada +united_states text(is:a:neighboring:state:to) mexico +slovenia text(was:a:neighboring:state:to) hungary +china text(borders:with) bhutan +china text(neighbors:withborders) macau +china text(neighbors) kazakhstan +china text(is:butted:against) myanmar +china text(was:butted:against) mongolia +andorra text(is:a:neighboring:country:of) spain +palestine text(was:a:neighboring:country:of) jordan +palestine text(was:a:neighbor:of) egypt +france text(is:a:neighbor:of) germany +france text(is:a:neighboring:state:to) monaco +france text(was:a:neighboring:state:to) spain +mongolia text(was:localized:in) eastern_asia +mongolia text(is:localized:in) asia +mongolia text(borders:with) china +mongolia text(neighbors:withborders) russia \ No newline at end of file diff --git a/deepsoftlog/experiments/mentions_countries/dataset.py b/deepsoftlog/experiments/mentions_countries/dataset.py index 7d62d63..9eb2937 100644 --- a/deepsoftlog/experiments/mentions_countries/dataset.py +++ b/deepsoftlog/experiments/mentions_countries/dataset.py @@ -11,54 +11,80 @@ _DATA_ROOT = str(Path(__file__).parent / "tmp") -def generate_tsvs(country_to_text: bool, relation_to_text: bool): +def get_entity_splits(): + base_path = Path(__file__).parent / 'data' / 'raw' + train_queries = load_tsv_file(base_path / 'train.tsv') + val_queries = load_tsv_file(base_path / 'val.tsv') + test_queries = load_tsv_file(base_path / 'test.tsv') + + return set([q[0] for q in train_queries]), set([q[0] for q in val_queries]).union(set([q[0] for q in test_queries])) + +def do_country_to_text(symbolic_facts, country_text_map): + for i, fact in enumerate(symbolic_facts): + text_1 = "text({})".format(country_text_map[fact[0]][0].replace(" ", ":")) + country_text_map[fact[0]] = np.roll(country_text_map[fact[0]], 1) + text_2 = "text({})".format(country_text_map[fact[2]][0].replace(" ", ":")) + country_text_map[fact[2]] = np.roll(country_text_map[fact[2]], 1) + + symbolic_facts[i] = (text_1, fact[1], text_2) + return symbolic_facts + +def do_relation_to_text(symbolic_facts, relation_text_map): + for i, fact in enumerate(symbolic_facts): + text_r = "text({})".format(relation_text_map[fact[1]][0].replace(" ", ":")) + relation_text_map[fact[1]] = np.roll(relation_text_map[fact[1]], 1) + + symbolic_facts[i] = (fact[0], text_r, fact[2]) + return symbolic_facts + +def generate_tsvs(country_to_text: bool, relation_to_text: bool, test_split: bool): base_path = Path(__file__).parent / 'data' / 'raw' country_entity_text = pd.read_csv(base_path / 'country2text.csv', dtype=str).set_index('Country') - country2text = {e[0]: np.random.permutation(e[2:]) for e in country_entity_text.itertuples()} - relation2text = { - 'locatedIn': ['is positioned in', 'was positioned in', 'can be found in', 'was located in', 'is located in', - 'is situated in', 'was situated in', 'can be found in', 'was placed in', 'is placed in', - 'is currently in', 'was currently in', 'was still in', 'is still in', 'is present in', - 'was present in', 'is localized in', 'was localized in', 'is sited in', 'was sited in'], - 'neighborOf': ['was a neighboring country of', 'is a neighboring country of', 'neighbors', 'is adjacent to', - 'was adjacent to', 'was butted against', 'is butted against', 'borders', 'borders with', - 'was a neighboring state to', 'is a neighboring state to', 'is a neighbor of', - 'was a neighbor of', 'neighbors with']} + country_text_map = {e[0]: np.random.permutation(e[2:]) for e in country_entity_text.itertuples()} + relation_text_map = { + 'locatedIn': (['is positioned in', 'was positioned in', + 'can be found in', 'could be found in', + 'was located in', 'is located in', + 'is situated in', 'was situated in', + 'is currently in', 'was currently in', + 'was still in', 'is still in', + 'is present in', 'was present in', + 'is localized in', 'was localized in',], + ['was placed in', 'is placed in', + 'is sited in', 'was sited in'], + ), + 'neighborOf': (['was a neighboring country of', 'is a neighboring country of', + 'was butted against', 'is butted against', + 'neighbors', 'neighbors with' + 'borders', 'borders with', + 'was a neighboring state to', 'is a neighboring state to', + 'is a neighbor of', 'was a neighbor of'], + ['is adjacent to', 'was adjacent to']) + } for task in ["S1", "S2", "S3"]: # load symbolic facts symbolic_facts = load_tsv_file(base_path / f"countries_{task}.tsv") - - for i, fact in enumerate(symbolic_facts): - if country2text: - text_1 = "text({})".format(country2text[fact[0]][0].replace(" ", ":")) - country2text[fact[0]] = np.roll(country2text[fact[0]], 1) - text_2 = "text({})".format(country2text[fact[2]][0].replace(" ", ":")) - country2text[fact[2]] = np.roll(country2text[fact[2]], 1) - else: - text_1 = fact[0] - text_2 = fact[2] - - if relation2text: - text_r = "text({})".format(relation2text[fact[1]][0].replace(" ", ":")) - relation2text[fact[1]] = np.roll(relation2text[fact[1]], 1) + if country_to_text: + symbolic_facts = do_country_to_text(symbolic_facts, country_text_map) + elif relation_to_text: + if test_split: + train_entities, test_entities = get_entity_splits() + test_facts = [s for s in symbolic_facts if s[0] in test_entities or s[2] in test_entities] + train_facts = [s for s in symbolic_facts if s not in test_facts] + symbolic_facts = (do_relation_to_text(train_facts, {k: v[0] for k,v in relation_text_map.items()}) + + do_relation_to_text(test_facts, {k: v[0] for k,v in relation_text_map.items()})) else: - text_r = fact[1] - - symbolic_facts[i] = (text_1, text_r, text_2) - + symbolic_facts = do_relation_to_text(symbolic_facts, {k: v[0] + v[1] for k,v in relation_text_map.items()}) with open(base_path / Path(f"countries_{task}" + ('_country2text' if country_to_text else '') + ( - '_relation2text' if relation_to_text else '') + ".tsv"), "w") as f: + '_relation2text' if relation_to_text else '') + ('_traintest' if test_split else '') + ".tsv"), "w") as f: f.write("\n".join(["\t".join(fact) for fact in symbolic_facts])) - def get_train_dataloader(cfg: dict): - train_dataset = MentionsCountriesDataset("train").subset(cfg['data_subset']) - train_dataset = train_dataset.mutate_all_output() + train_dataset = MentionsCountriesDataset("train").mutate_all_output() return DataLoader(train_dataset, batch_size=cfg['batch_size'], shuffle=True, seed=cfg['seed']) - def get_test_dataloader(): regions = ["africa", "americas", "asia", "europe", "oceania"] domain = {-1: [SoftTerm(Constant(r)) for r in regions]} @@ -94,6 +120,8 @@ def generate_prolog_files(): f.write(templates) if __name__ == "__main__": - d = MentionsCountriesDataset() - print(d) - generate_prolog_files() \ No newline at end of file + generate_tsvs(country_to_text=False, relation_to_text=True, test_split=False) + generate_tsvs(country_to_text=False, relation_to_text=True, test_split=True) + # d = MentionsCountriesDataset() + # print(d) + # generate_prolog_files() \ No newline at end of file diff --git a/deepsoftlog/experiments/mentions_countries/mentions_countries.py b/deepsoftlog/experiments/mentions_countries/mentions_countries.py index c557257..c413b3c 100644 --- a/deepsoftlog/experiments/mentions_countries/mentions_countries.py +++ b/deepsoftlog/experiments/mentions_countries/mentions_countries.py @@ -64,4 +64,4 @@ def eval(folder: str): if __name__ == "__main__": - train("deepsoftlog/experiments/mentions_countries/config.yaml", 'test', 0, 'deepsoftlog/experiments/mentions_countries/data/tmp/countries_S1_relation2text.pl', 'LM') \ No newline at end of file + train("deepsoftlog/experiments/mentions_countries/config.yaml", 'test', 0, 'deepsoftlog/experiments/mentions_countries/data/tmp/countries_S1_relation2text.pl', 'boe') \ No newline at end of file From 7dbd0ff80214e1974e208253c16f306ad1966ad6 Mon Sep 17 00:00:00 2001 From: Rik Adriaensen Date: Mon, 22 Sep 2025 14:48:14 +0200 Subject: [PATCH 10/15] change mentions_countries: different mentions set for test entities (2) --- deepsoftlog/experiments/mentions_countries/dataset.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/deepsoftlog/experiments/mentions_countries/dataset.py b/deepsoftlog/experiments/mentions_countries/dataset.py index 9eb2937..6a4bd66 100644 --- a/deepsoftlog/experiments/mentions_countries/dataset.py +++ b/deepsoftlog/experiments/mentions_countries/dataset.py @@ -107,7 +107,7 @@ def __init__(self, split_name: str = "val"): def generate_prolog_files(): base_path = Path(__file__).parent / 'data' (base_path / 'tmp').mkdir(exist_ok=True) - for setting in ['', '_country2text', '_relation2text', '_country2text_relation2text']: + for setting in ['', '_relation2text', '_relation2text_traintest']: for problem in (f'S{i}' for i in range(1,4)): data = load_tsv_file(base_path / f"raw/countries_{problem}{setting}.tsv") data = data_to_prolog(data, name="countries") @@ -122,6 +122,6 @@ def generate_prolog_files(): if __name__ == "__main__": generate_tsvs(country_to_text=False, relation_to_text=True, test_split=False) generate_tsvs(country_to_text=False, relation_to_text=True, test_split=True) - # d = MentionsCountriesDataset() - # print(d) - # generate_prolog_files() \ No newline at end of file + d = MentionsCountriesDataset() + print(d) + generate_prolog_files() \ No newline at end of file From c77079d42e5673747acb9c84f93108bf673af442 Mon Sep 17 00:00:00 2001 From: Rik Adriaensen Date: Mon, 22 Sep 2025 14:29:01 +0200 Subject: [PATCH 11/15] change mentions_countries: different mentions set for test entities change mentions_countries: different mentions set for test entities (2) --- .../data/raw/countries_S1_country2text.tsv | 1111 --------- ...ountries_S1_country2text_relation2text.tsv | 1111 --------- .../data/raw/countries_S1_relation2text.tsv | 1894 +++++++-------- .../countries_S1_relation2text_traintest.tsv | 1111 +++++++++ .../data/raw/countries_S2_country2text.tsv | 1063 --------- ...ountries_S2_country2text_relation2text.tsv | 1063 --------- .../data/raw/countries_S2_relation2text.tsv | 2034 ++++++++--------- .../countries_S2_relation2text_traintest.tsv | 1063 +++++++++ .../data/raw/countries_S3_country2text.tsv | 979 -------- ...ountries_S3_country2text_relation2text.tsv | 979 -------- .../data/raw/countries_S3_relation2text.tsv | 1616 ++++++------- .../countries_S3_relation2text_traintest.tsv | 979 ++++++++ .../experiments/mentions_countries/dataset.py | 98 +- .../mentions_countries/mentions_countries.py | 2 +- 14 files changed, 5989 insertions(+), 9114 deletions(-) delete mode 100644 deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_country2text.tsv delete mode 100644 deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_country2text_relation2text.tsv create mode 100644 deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_relation2text_traintest.tsv delete mode 100644 deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_country2text.tsv delete mode 100644 deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_country2text_relation2text.tsv create mode 100644 deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_relation2text_traintest.tsv delete mode 100644 deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_country2text.tsv delete mode 100644 deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_country2text_relation2text.tsv create mode 100644 deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_relation2text_traintest.tsv diff --git a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_country2text.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_country2text.tsv deleted file mode 100644 index 61ad124..0000000 --- a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_country2text.tsv +++ /dev/null @@ -1,1111 +0,0 @@ -text(पलाउ) locatedIn text(Micronesië) -text(Palaos) locatedIn text(Oceania) -text(Maldives) locatedIn text(Asia:del:Sur) -text(Malediven) locatedIn text(Asia) -text(Brunei) locatedIn text(Sudeste:Asiático) -text(汶莱) locatedIn text(亞洲) -text(ब्रुनेई) neighborOf text(Malasia) -text(जापान) locatedIn text(Oost-Azië) -text(اليابان) locatedIn text(آسيا) -text(荷蘭) locatedIn text(西欧) -text(Netherlands) neighborOf text(Germany) -text(هولندا) neighborOf text(Belgium) -text(Turquía) locatedIn text(पश्चिमी:एशिया) -text(Turkey) neighborOf text(亞美尼亞) -text(तुर्की) neighborOf text(أذربيجان) -text(Turkije) neighborOf text(ईरान) -text(土耳其) neighborOf text(希腊) -text(تركيا) neighborOf text(格鲁吉亚) -text(Turquía) neighborOf text(Bulgarije) -text(Turkey) neighborOf text(Iraq) -text(तुर्की) neighborOf text(Syrië) -text(أنغولا) locatedIn text(Central:Africa) -text(Angola) locatedIn text(अफ्रीका) -text(अंगोला) neighborOf text(कांगो:लोकतान्त्रिक:गणराज्य) -text(Angola) neighborOf text(纳米比亚) -text(Angola) neighborOf text(贊比亞) -text(安哥拉) neighborOf text(剛果共和國) -text(Armenia) locatedIn text(Zuidwest-Azië) -text(أرمينيا) locatedIn text(एशिया) -text(Armenië) neighborOf text(Georgia) -text(Armenia) neighborOf text(Azerbeidzjan) -text(आर्मीनिया) neighborOf text(Irán) -text(亞美尼亞) neighborOf text(Turkije) -text(अण्टीगुआ:और:बारबूडा) locatedIn text(Caribe) -text(Antigua:y:Barbuda) locatedIn text(美洲) -text(Esuatini) locatedIn text(إفريقيا:الجنوبية) -text(Swaziland) locatedIn text(非洲) -text(एस्वातीनी) neighborOf text(Zuid-Afrika) -text(Eswatini) neighborOf text(Mozambique) -text(Wallis:and:Futuna) locatedIn text(पोलीनेशिया) -text(वालिस:और:फ़्यूचूना) locatedIn text(Oceanië) -text(उरुग्वे) locatedIn text(América:del:Sur) -text(Uruguay) locatedIn text(महाअमेरिका) -text(Uruguay) neighborOf text(阿根廷) -text(Uruguay) neighborOf text(ब्राज़ील) -text(Zambia) locatedIn text(东部非洲) -text(Zambia) locatedIn text(إفريقيا) -text(زامبيا) neighborOf text(تنزانيا) -text(ज़ाम्बिया) neighborOf text(موزمبيق) -text(Zambia) neighborOf text(República:Democrática:del:Congo) -text(贊比亞) neighborOf text(أنغولا) -text(Zambia) neighborOf text(بوتسوانا) -text(Zambia) neighborOf text(زيمبابوي) -text(زامبيا) neighborOf text(Namibia) -text(ज़ाम्बिया) neighborOf text(馬拉威) -text(塞浦路斯) locatedIn text(पूर्वी:यूरोप) -text(Chipre) locatedIn text(أوروبا) -text(Cyprus) neighborOf text(英国) -text(Reino:Unido) locatedIn text(Northern:Europe) -text(英国) locatedIn text(欧洲) -text(Verenigd:Koninkrijk) neighborOf text(Verenigd:Koninkrijk) -text(蒲隆地) locatedIn text(África:Oriental) -text(Burundi) locatedIn text(Africa) -text(बुरुण्डी) neighborOf text(Congo-Kinshasa) -text(Burundi) neighborOf text(卢旺达) -text(Burundi) neighborOf text(Tanzania) -text(República:Centroafricana) locatedIn text(मध्य:अफ्रीका) -text(मध्य:अफ़्रीकी:गणराज्य) locatedIn text(África) -text(中非共和國) neighborOf text(Tsjaad) -text(جمهورية:إفريقيا:الوسطى) neighborOf text(Congo-Brazzaville) -text(Central:African:Republic) neighborOf text(Democratic:Republic:of:the:Congo) -text(Centraal-Afrikaanse:Republiek) neighborOf text(दक्षिण:सूडान) -text(República:Centroafricana) neighborOf text(Kameroen) -text(मध्य:अफ़्रीकी:गणराज्य) neighborOf text(सूडान) -text(Tonga) locatedIn text(玻里尼西亞) -text(टोंगा) locatedIn text(大洋洲) -text(कोत:दिव्वार) locatedIn text(غرب:إفريقيا) -text(科特迪瓦) locatedIn text(Afrika) -text(Ivoorkust) neighborOf text(布吉納法索) -text(Costa:de:Marfil) neighborOf text(Ghana) -text(Ivory:Coast) neighborOf text(Liberia) -text(ساحل:العاج) neighborOf text(Mali) -text(कोत:दिव्वार) neighborOf text(गिनी) -text(سيراليون) locatedIn text(पश्चिमी:अफ्रीका) -text(Sierra:Leone) neighborOf text(Liberia) -text(Sierra:Leone) neighborOf text(Guinee) -text(مايوت) locatedIn text(पूर्वी:अफ्रीका) -text(Mayotte) locatedIn text(अफ्रीका) -text(波蘭) locatedIn text(Oost-Europa) -text(Poland) neighborOf text(ألمانيا) -text(पोलैंड) neighborOf text(Ucrania) -text(بولندا) neighborOf text(स्लोवाकिया) -text(Polonia) neighborOf text(Belarus) -text(Polen) neighborOf text(Russia) -text(波蘭) neighborOf text(立陶宛) -text(Poland) neighborOf text(चेक:गणराज्य) -text(कज़ाख़िस्तान) locatedIn text(Centraal-Azië) -text(Kazachstan) locatedIn text(Azië) -text(Kazajistán) neighborOf text(तुर्कमेनिस्तान) -text(哈萨克斯坦) neighborOf text(República:Popular:China) -text(Kazakhstan) neighborOf text(Kyrgyzstan) -text(كازاخستان) neighborOf text(उज़्बेकिस्तान) -text(कज़ाख़िस्तान) neighborOf text(रूस) -text(Uzbekistan) locatedIn text(中亚) -text(أوزبكستان) locatedIn text(Asia) -text(乌兹别克斯坦) neighborOf text(أفغانستان) -text(Uzbekistán) neighborOf text(Turkmenistán) -text(Oezbekistan) neighborOf text(Kazachstan) -text(उज़्बेकिस्तान) neighborOf text(किर्गिज़स्तान) -text(Uzbekistan) neighborOf text(塔吉克斯坦) -text(तुर्क:और:केकोस:द्वीपसमूह) locatedIn text(الكاريبي) -text(Turks-:en:Caicoseilanden) locatedIn text(Amerika) -text(Nueva:Caledonia) locatedIn text(Melanesia) -text(كاليدونيا:الجديدة) locatedIn text(أوقيانوسيا) -text(पाकिस्तान) locatedIn text(Zuid-Azië) -text(Pakistan) neighborOf text(चीनी:जनवादी:गणराज्य) -text(باكستان) neighborOf text(阿富汗) -text(巴基斯坦) neighborOf text(伊朗) -text(Pakistan) neighborOf text(भारत) -text(अर्जेण्टीना) locatedIn text(दक्षिण:अमेरिका) -text(Argentinië) locatedIn text(América) -text(الأرجنتين) neighborOf text(Bolivia) -text(Argentina) neighborOf text(Chile) -text(Argentina) neighborOf text(البرازيل) -text(阿根廷) neighborOf text(巴拉圭) -text(अर्जेण्टीना) neighborOf text(烏拉圭) -text(Cuba) locatedIn text(加勒比地区) -text(Cuba) locatedIn text(Americas) -text(Servië) locatedIn text(Europa:del:Sur) -text(सर्बिया) neighborOf text(Macedonia:del:Norte) -text(Serbia) neighborOf text(मॉन्टेनीग्रो) -text(صربيا) neighborOf text(Kosovo) -text(Serbia) neighborOf text(Bosnië:en:Herzegovina) -text(塞爾維亞) neighborOf text(क्रोएशिया) -text(Servië) neighborOf text(المجر) -text(सर्बिया) neighborOf text(बुल्गारिया) -text(Serbia) neighborOf text(Romania) -text(捷克) locatedIn text(Eastern:Europe) -text(Czech:Republic) locatedIn text(Europa) -text(Tsjechië) neighborOf text(德國) -text(جمهورية:التشيك) neighborOf text(ऑस्ट्रिया) -text(República:Checa) neighborOf text(पोलैंड) -text(चेक:गणराज्य) neighborOf text(سلوفاكيا) -text(निकारागुआ) locatedIn text(中美洲) -text(Nicaragua) neighborOf text(Honduras) -text(尼加拉瓜) neighborOf text(Costa:Rica) -text(فيتنام) locatedIn text(दक्षिण:पूर्व:एशिया) -text(वियतनाम) locatedIn text(Asia) -text(Vietnam) neighborOf text(Cambodja) -text(Vietnam) neighborOf text(Laos) -text(Vietnam) neighborOf text(Volksrepubliek:China) -text(紐埃) locatedIn text(Polynesië) -text(Niue) locatedIn text(Oceanía) -text(Canada) locatedIn text(North:America) -text(Canada) locatedIn text(أمريكتان) -text(कनाडा) neighborOf text(संयुक्त:राज्य:अमेरिका) -text(Slowakije) locatedIn text(मध्य:यूरोप) -text(Slovakia) neighborOf text(烏克蘭) -text(Eslovaquia) neighborOf text(بولندا) -text(斯洛伐克) neighborOf text(奧地利) -text(स्लोवाकिया) neighborOf text(Hungary) -text(سلوفاكيا) neighborOf text(捷克) -text(Mozambique) locatedIn text(East:Africa) -text(Mozambique) neighborOf text(Tanzania) -text(मोज़ाम्बीक) neighborOf text(斯威士兰) -text(莫桑比克) neighborOf text(津巴布韦) -text(Mozambique) neighborOf text(Zambia) -text(موزمبيق) neighborOf text(مالاوي) -text(Mozambique) neighborOf text(South:Africa) -text(Aruba) locatedIn text(कैरिबिया) -text(阿魯巴) locatedIn text(美洲) -text(Bolivia) locatedIn text(Zuid-Amerika) -text(Bolivia) locatedIn text(महाअमेरिका) -text(बोलिविया) neighborOf text(Chili) -text(بوليفيا) neighborOf text(Brasil) -text(玻利維亞) neighborOf text(पैराग्वे) -text(Bolivia) neighborOf text(Argentinië) -text(Bolivia) neighborOf text(Perú) -text(Colombia) locatedIn text(South:America) -text(哥伦比亚) locatedIn text(Amerika) -text(Colombia) neighborOf text(الإكوادور) -text(कोलम्बिया) neighborOf text(Brazil) -text(كولومبيا) neighborOf text(Panama) -text(Colombia) neighborOf text(Venezuela) -text(Colombia) neighborOf text(بيرو) -text(فيجي) locatedIn text(Melanesia) -text(Fiyi) locatedIn text(ओशिआनिया) -text(Republic:of:the:Congo) locatedIn text(中部非洲) -text(कांगो:गणराज्य) neighborOf text(Gabon) -text(República:del:Congo) neighborOf text(刚果民主共和国) -text(جمهورية:الكونغو) neighborOf text(Angola) -text(剛果共和國) neighborOf text(Cameroon) -text(Congo-Brazzaville) neighborOf text(中非共和國) -text(सउदी:अरब) locatedIn text(Asia:Occidental) -text(Saudi:Arabia) neighborOf text(卡塔尔) -text(Saoedi-Arabië) neighborOf text(संयुक्त:अरब:अमीरात) -text(Arabia:Saudí) neighborOf text(जॉर्डन) -text(沙特阿拉伯) neighborOf text(اليمن) -text(السعودية) neighborOf text(ओमान) -text(सउदी:अरब) neighborOf text(科威特) -text(Saudi:Arabia) neighborOf text(Irak) -text(El:Salvador) locatedIn text(केंद्रीय:अमेरिका) -text(अल:साल्वाडोर) locatedIn text(América) -text(السلفادور) neighborOf text(Guatemala) -text(薩爾瓦多) neighborOf text(हॉण्डुरस) -text(مدغشقر) locatedIn text(شرق:إفريقيا) -text(馬達加斯加) locatedIn text(非洲) -text(أستراليا) locatedIn text(nan) -text(ऑस्ट्रेलिया) locatedIn text(Oceania) -text(Namibia) locatedIn text(Zuidelijk:Afrika) -text(ناميبيا) locatedIn text(إفريقيا) -text(नामीबिया) neighborOf text(贊比亞) -text(Namibië) neighborOf text(अंगोला) -text(纳米比亚) neighborOf text(Sudáfrica) -text(Namibia) neighborOf text(Botswana) -text(توفالو) locatedIn text(Polinesia) -text(Tuvalu) locatedIn text(Oceanië) -text(nan) locatedIn text(उत्तरी:यूरोप) -text(Svalbard:y:Jan:Mayen) locatedIn text(यूरोप) -text(Isle:of:Man) locatedIn text(Noord-Europa) -text(Isla:de:Man) locatedIn text(Europe) -text(गयाना) locatedIn text(أمريكا:الجنوبية) -text(圭亚那) neighborOf text(巴西) -text(Guyana) neighborOf text(सूरीनाम) -text(غيانا) neighborOf text(فنزويلا) -text(Vaticaanstad) locatedIn text(南欧) -text(Ciudad:del:Vaticano) locatedIn text(Europa) -text(الفاتيكان) neighborOf text(Italy) -text(英屬印度洋領地) locatedIn text(Oost-Afrika) -text(Brits:Indische:Oceaanterritorium) locatedIn text(Africa) -text(نيجيريا) locatedIn text(West:Africa) -text(Nigeria) locatedIn text(África) -text(Nigeria) neighborOf text(Chad) -text(Nigeria) neighborOf text(Niger) -text(नाइजीरिया) neighborOf text(Camerún) -text(奈及利亞) neighborOf text(Benin) -text(जर्मनी) locatedIn text(पश्चिमी:यूरोप) -text(Duitsland) neighborOf text(डेनमार्क) -text(Alemania) neighborOf text(Nederland) -text(Germany) neighborOf text(Polonia) -text(ألمانيا) neighborOf text(लक्ज़मबर्ग) -text(德國) neighborOf text(比利時) -text(जर्मनी) neighborOf text(Suiza) -text(Duitsland) neighborOf text(Austria) -text(Alemania) neighborOf text(France) -text(Germany) neighborOf text(Czech:Republic) -text(Burkina:Faso) locatedIn text(西非) -text(Burkina:Faso) neighborOf text(टोगो) -text(بوركينا:فاسو) neighborOf text(Benín) -text(Burkina:Faso) neighborOf text(Niger) -text(बुर्किना:फासो) neighborOf text(घाना) -text(布吉納法索) neighborOf text(Mali) -text(Burkina:Faso) neighborOf text(科特迪瓦) -text(तंज़ानिया) locatedIn text(东部非洲) -text(坦桑尼亞) neighborOf text(Uganda) -text(Tanzania) neighborOf text(Mozambique) -text(تنزانيا) neighborOf text(جمهورية:الكونغو:الديمقراطية) -text(Tanzania) neighborOf text(Kenia) -text(Tanzania) neighborOf text(Rwanda) -text(तंज़ानिया) neighborOf text(Zambia) -text(坦桑尼亞) neighborOf text(Malawi) -text(Tanzania) neighborOf text(بوروندي) -text(Islas:Marianas:del:Norte) locatedIn text(密克羅尼西亞群島) -text(جزر:ماريانا:الشمالية) locatedIn text(大洋洲) -text(Belize) locatedIn text(Central:America) -text(बेलीज़) locatedIn text(Americas) -text(Belice) neighborOf text(危地马拉) -text(بليز) neighborOf text(المكسيك) -text(Noruega) locatedIn text(Europa:del:Norte) -text(नॉर्वे) neighborOf text(Zweden) -text(النرويج) neighborOf text(芬蘭) -text(Noorwegen) neighborOf text(俄罗斯) -text(Cocoseilanden) locatedIn text(nan) -text(Cocos:(Keeling):Islands) locatedIn text(أوقيانوسيا) -text(Laos) locatedIn text(Zuidoost-Azië) -text(लाओस) locatedIn text(亞洲) -text(Laos) neighborOf text(People's:Republic:of:China) -text(لاوس) neighborOf text(كمبوديا) -text(老撾) neighborOf text(Myanmar) -text(Laos) neighborOf text(越南) -text(Laos) neighborOf text(تايلاند) -text(सहरावी:अरब:जनतांत्रिक:गणराज्य) locatedIn text(North:Africa) -text(撒拉威阿拉伯民主共和國) locatedIn text(Afrika) -text(Sahrawi:Arabische:Democratische:Republiek) neighborOf text(Algeria) -text(الجمهورية:العربية:الصحراوية:الديمقراطية) neighborOf text(Mauritania) -text(Sahrawi:Arab:Democratic:Republic) neighborOf text(Marokko) -text(Suriname) locatedIn text(南美洲) -text(Surinam) locatedIn text(أمريكتان) -text(蘇利南) neighborOf text(Brazilië) -text(سورينام) neighborOf text(Frans-Guyana) -text(Suriname) neighborOf text(Guyana) -text(聖誕島) locatedIn text(Australië:en:Nieuw-Zeeland) -text(Christmaseiland) locatedIn text(Oceanía) -text(साओ:तोमे:और:प्रिन्सिपी) locatedIn text(Centraal-Afrika) -text(Santo:Tomé:y:Príncipe) locatedIn text(अफ्रीका) -text(مصر) locatedIn text(उत्तर:अफ़्रीका) -text(Egypt) neighborOf text(利比亞) -text(मिस्र) neighborOf text(以色列) -text(Egipto) neighborOf text(苏丹) -text(بلغاريا) locatedIn text(东欧) -text(保加利亚) neighborOf text(北马其顿) -text(Bulgaria) neighborOf text(土耳其) -text(Bulgaria) neighborOf text(اليونان) -text(Bulgarije) neighborOf text(صربيا) -text(बुल्गारिया) neighborOf text(羅馬尼亞) -text(几内亚) locatedIn text(África:Occidental) -text(Guinea) locatedIn text(非洲) -text(غينيا) neighborOf text(غينيا:بيساو) -text(Guinea) neighborOf text(Sierra:Leona) -text(गिनी) neighborOf text(مالي) -text(Guinee) neighborOf text(लाइबेरिया) -text(几内亚) neighborOf text(Senegal) -text(Guinea) neighborOf text(Ivoorkust) -text(स्पेन) locatedIn text(أوروبا:الجنوبية) -text(西班牙) neighborOf text(Marruecos) -text(Spain) neighborOf text(जिब्राल्टर) -text(Spanje) neighborOf text(Andorra) -text(إسبانيا) neighborOf text(Francia) -text(España) neighborOf text(البرتغال) -text(كوستاريكا) locatedIn text(أمريكا:الوسطى) -text(Costa:Rica) locatedIn text(美洲) -text(哥斯达黎加) neighborOf text(بنما) -text(Costa:Rica) neighborOf text(نيكاراغوا) -text(माल्टा) locatedIn text(दक्षिणी:यूरोप) -text(Malta) locatedIn text(أوروبا) -text(Portugal) locatedIn text(Southern:Europe) -text(Portugal) locatedIn text(欧洲) -text(Portugal) neighborOf text(स्पेन) -text(Roemenië) locatedIn text(أوروبا:الشرقية) -text(رومانيا) locatedIn text(Europa) -text(रोमानिया) neighborOf text(युक्रेन) -text(Rumania) neighborOf text(匈牙利) -text(Romania) neighborOf text(मोल्डोवा) -text(羅馬尼亞) neighborOf text(بلغاريا) -text(Roemenië) neighborOf text(Serbia) -text(سان:مارينو) locatedIn text(Zuid-Europa) -text(圣马力诺) locatedIn text(यूरोप) -text(San:Marino) neighborOf text(إيطاليا) -text(موريتانيا) locatedIn text(West-Afrika) -text(मॉरीतानिया) locatedIn text(إفريقيا) -text(Mauritanië) neighborOf text(阿爾及利亞) -text(毛里塔尼亞) neighborOf text(Mali) -text(Mauritania) neighborOf text(República:Árabe:Saharaui:Democrática) -text(Mauritania) neighborOf text(Senegal) -text(Trinidad:y:Tobago) locatedIn text(Caribbean) -text(Trinidad:en:Tobago) locatedIn text(महाअमेरिका) -text(Baréin) locatedIn text(西亚) -text(Bahrain) locatedIn text(آسيا) -text(म्यान्मार) locatedIn text(东南亚) -text(Myanmar) neighborOf text(印度) -text(ميانمار) neighborOf text(Bangladesh) -text(緬甸) neighborOf text(中华人民共和国) -text(Birmania) neighborOf text(लाओस) -text(Myanmar) neighborOf text(Thailand) -text(العراق) locatedIn text(West:Asia) -text(इराक) neighborOf text(تركيا) -text(Irak) neighborOf text(Saoedi-Arabië) -text(伊拉克) neighborOf text(Iran) -text(Iraq) neighborOf text(Jordan) -text(Irak) neighborOf text(Kuwait) -text(العراق) neighborOf text(Syria) -text(南乔治亚和南桑威奇群岛) locatedIn text(América:del:Sur) -text(Zuid-Georgia:en:de:Zuidelijke:Sandwicheilanden) locatedIn text(Amerika) -text(آيسلندا) locatedIn text(北歐) -text(Islandia) locatedIn text(Europe) -text(कांगो:लोकतान्त्रिक:गणराज्य) locatedIn text(África:Central) -text(República:Democrática:del:Congo) locatedIn text(Africa) -text(Congo-Kinshasa) neighborOf text(Uganda) -text(Democratic:Republic:of:the:Congo) neighborOf text(تنزانيا) -text(刚果民主共和国) neighborOf text(Republic:of:the:Congo) -text(جمهورية:الكونغو:الديمقراطية) neighborOf text(جمهورية:إفريقيا:الوسطى) -text(कांगो:लोकतान्त्रिक:गणराज्य) neighborOf text(Angola) -text(República:Democrática:del:Congo) neighborOf text(रवाण्डा) -text(Congo-Kinshasa) neighborOf text(Sudán:del:Sur) -text(Democratic:Republic:of:the:Congo) neighborOf text(Zambia) -text(刚果民主共和国) neighborOf text(蒲隆地) -text(Seychellen) locatedIn text(África:Oriental) -text(Seychelles) locatedIn text(África) -text(Kirgizië) locatedIn text(मध्य:एशिया) -text(Kirguistán) neighborOf text(الصين) -text(吉尔吉斯斯坦) neighborOf text(Kazajistán) -text(قرغيزستان) neighborOf text(Tajikistan) -text(Kyrgyzstan) neighborOf text(أوزبكستان) -text(波札那) locatedIn text(Southern:Africa) -text(Botsuana) locatedIn text(Afrika) -text(Botswana) neighborOf text(ज़िम्बाब्वे) -text(बोत्सवाना) neighborOf text(Namibia) -text(بوتسوانا) neighborOf text(زامبيا) -text(Botswana) neighborOf text(جنوب:إفريقيا) -text(جزر:فارو) locatedIn text(أوروبا:الشمالية) -text(Faeröer) locatedIn text(Europa) -text(Jamaica) locatedIn text(Caraïben) -text(Jamaica) locatedIn text(América) -text(ساموا:الأمريكية) locatedIn text(Polynesia) -text(Amerikaans-Samoa) locatedIn text(ओशिआनिया) -text(लेसोथो) locatedIn text(दक्षिणी:अफ्रीका) -text(Lesotho) locatedIn text(अफ्रीका) -text(ليسوتو) neighborOf text(南非) -text(سريلانكا) locatedIn text(جنوب:آسيا) -text(श्रीलंका) neighborOf text(India) -text(बेल्जियम) locatedIn text(West-Europa) -text(Bélgica) locatedIn text(أوروبا) -text(بلجيكا) neighborOf text(ألمانيا) -text(België) neighborOf text(卢森堡) -text(Belgium) neighborOf text(فرنسا) -text(比利時) neighborOf text(नीदरलैण्ड) -text(Qatar) locatedIn text(غرب:آسيا) -text(Catar) locatedIn text(एशिया) -text(क़तर) neighborOf text(Arabia:Saudí) -text(جزر:سليمان) locatedIn text(ميلانيزيا) -text(Solomon:Islands) locatedIn text(Oceania) -text(敘利亞) locatedIn text(पश्चिमी:एशिया) -text(سوريا) locatedIn text(Azië) -text(सीरिया) neighborOf text(Israel) -text(Siria) neighborOf text(Turquía) -text(Syrië) neighborOf text(Jordania) -text(Syria) neighborOf text(黎巴嫩) -text(敘利亞) neighborOf text(इराक) -text(India) locatedIn text(दक्षिण:एशिया) -text(الهند) locatedIn text(Asia) -text(India) neighborOf text(अफ़्ग़ानिस्तान) -text(भारत) neighborOf text(Bhutan) -text(印度) neighborOf text(बांग्लादेश) -text(India) neighborOf text(República:Popular:China) -text(India) neighborOf text(尼泊爾) -text(الهند) neighborOf text(म्यान्मार) -text(India) neighborOf text(Pakistán) -text(भारत) neighborOf text(Sri:Lanka) -text(Morocco) locatedIn text(Norte:de:África) -text(المغرب) neighborOf text(Argelia) -text(मोरक्को) neighborOf text(西班牙) -text(摩洛哥) neighborOf text(सहरावी:अरब:जनतांत्रिक:गणराज्य) -text(Kenia) locatedIn text(पूर्वी:अफ्रीका) -text(Kenya) locatedIn text(非洲) -text(कीनिया) neighborOf text(أوغندا) -text(肯尼亚) neighborOf text(Tanzania) -text(كينيا) neighborOf text(الصومال) -text(Kenia) neighborOf text(南蘇丹) -text(Kenia) neighborOf text(埃塞俄比亚) -text(Zuid-Soedan) locatedIn text(وسط:إفريقيا) -text(جنوب:السودان) locatedIn text(إفريقيا) -text(South:Sudan) neighborOf text(Oeganda) -text(दक्षिण:सूडान) neighborOf text(جمهورية:الكونغو:الديمقراطية) -text(Sudán:del:Sur) neighborOf text(Kenya) -text(南蘇丹) neighborOf text(Central:African:Republic) -text(Zuid-Soedan) neighborOf text(Soedan) -text(جنوب:السودان) neighborOf text(इथियोपिया) -text(Ghana) locatedIn text(غرب:إفريقيا) -text(Ghana) neighborOf text(Burkina:Faso) -text(迦納) neighborOf text(Costa:de:Marfil) -text(غانا) neighborOf text(توغو) -text(Tadzjikistan) locatedIn text(Asia:Central) -text(طاجيكستان) locatedIn text(Asia) -text(ताजीकिस्तान) neighborOf text(चीनी:जनवादी:गणराज्य) -text(Tayikistán) neighborOf text(किर्गिज़स्तान) -text(塔吉克斯坦) neighborOf text(Afghanistan) -text(Tajikistan) neighborOf text(乌兹别克斯坦) -text(جزر:مارشال) locatedIn text(Micronesia) -text(Marshalleilanden) locatedIn text(Oceanië) -text(कैमरुन) locatedIn text(Central:Africa) -text(喀麦隆) locatedIn text(Africa) -text(الكاميرون) neighborOf text(تشاد) -text(Kameroen) neighborOf text(कांगो:गणराज्य) -text(Cameroon) neighborOf text(Gabón) -text(Camerún) neighborOf text(赤道几内亚) -text(कैमरुन) neighborOf text(Centraal-Afrikaanse:Republiek) -text(喀麦隆) neighborOf text(نيجيريا) -text(ناورو) locatedIn text(Micronesia) -text(Nauru) locatedIn text(大洋洲) -text(थाईलैंड) locatedIn text(Southeast:Asia) -text(泰國) neighborOf text(柬埔寨) -text(Tailandia) neighborOf text(Myanmar) -text(Thailand) neighborOf text(Laos) -text(تايلاند) neighborOf text(मलेशिया) -text(السودان) locatedIn text(شمال:إفريقيا) -text(Sudan) neighborOf text(乍得) -text(Sudán) neighborOf text(Libya) -text(सूडान) neighborOf text(South:Sudan) -text(苏丹) neighborOf text(إرتريا) -text(Soedan) neighborOf text(República:Centroafricana) -text(السودان) neighborOf text(Egypte) -text(Sudan) neighborOf text(Ethiopië) -text(चाड) locatedIn text(मध्य:अफ्रीका) -text(Chad) locatedIn text(África) -text(Tsjaad) neighborOf text(Libia) -text(Chad) neighborOf text(尼日尔) -text(تشاد) neighborOf text(दक्षिण:सूडान) -text(乍得) neighborOf text(الكاميرون) -text(चाड) neighborOf text(मध्य:अफ़्रीकी:गणराज्य) -text(Chad) neighborOf text(Nigeria) -text(فانواتو) locatedIn text(मॅलानिशिया) -text(वानूआटू) locatedIn text(أوقيانوسيا) -text(Cape:Verde) locatedIn text(पश्चिमी:अफ्रीका) -text(Kaapverdië) locatedIn text(Afrika) -text(फ़ॉकलैंड:द्वीपसमूह) locatedIn text(दक्षिण:अमेरिका) -text(جزر:فوكلاند) locatedIn text(Americas) -text(利比里亞) locatedIn text(West:Africa) -text(ليبيريا) locatedIn text(अफ्रीका) -text(Liberia) neighborOf text(Ivory:Coast) -text(Liberia) neighborOf text(塞拉利昂) -text(Liberia) neighborOf text(غينيا) -text(Cambodia) locatedIn text(جنوب:شرق:آسيا) -text(Camboya) locatedIn text(亞洲) -text(कम्बोडिया) neighborOf text(فيتنام) -text(Cambodja) neighborOf text(Thailand) -text(كمبوديا) neighborOf text(لاوس) -text(Zimbabwe) locatedIn text(East:Africa) -text(Zimbabwe) neighborOf text(ज़ाम्बिया) -text(Zimbabue) neighborOf text(दक्षिण:अफ़्रीका) -text(زيمبابوي) neighborOf text(波札那) -text(津巴布韦) neighborOf text(मोज़ाम्बीक) -text(Comoras) locatedIn text(شرق:إفريقيا) -text(Comoros) locatedIn text(非洲) -text(غوام) locatedIn text(ميكرونيسيا) -text(गुआम) locatedIn text(Oceanía) -text(巴哈馬) locatedIn text(Caribe) -text(बहामास) locatedIn text(أمريكتان) -text(लेबनॉन) locatedIn text(Zuidwest-Azië) -text(Libanon) locatedIn text(آسيا) -text(Líbano) neighborOf text(Israel) -text(Lebanon) neighborOf text(سوريا) -text(Saint:Martin) locatedIn text(الكاريبي) -text(圣马丁岛) locatedIn text(美洲) -text(سانت:مارتن) neighborOf text(法屬聖馬丁) -text(Ethiopia) locatedIn text(Oost-Afrika) -text(Etiopía) locatedIn text(إفريقيا) -text(إثيوبيا) neighborOf text(सोमालिया) -text(埃塞俄比亚) neighborOf text(कीनिया) -text(इथियोपिया) neighborOf text(Eritrea) -text(Ethiopië) neighborOf text(Sudán:del:Sur) -text(Ethiopia) neighborOf text(جيبوتي) -text(Etiopía) neighborOf text(Sudán) -text(جزر:العذراء:التابعة:الولايات:المتحدة) locatedIn text(加勒比地区) -text(Islas:Vírgenes:de:los:Estados:Unidos) locatedIn text(महाअमेरिका) -text(Guinea-Bisáu) locatedIn text(西非) -text(Guinea-Bissau) locatedIn text(Africa) -text(畿內亞比紹) neighborOf text(Guinea) -text(Guinee-Bissau) neighborOf text(塞内加尔) -text(लीबिया) locatedIn text(北部非洲) -text(Libië) locatedIn text(África) -text(ليبيا) neighborOf text(Tsjaad) -text(利比亞) neighborOf text(تونس) -text(Libya) neighborOf text(नाइजर) -text(Libia) neighborOf text(الجزائر) -text(लीबिया) neighborOf text(埃及) -text(Libië) neighborOf text(सूडान) -text(Bhutan) locatedIn text(South:Asia) -text(भूटान) locatedIn text(एशिया) -text(不丹) neighborOf text(Volksrepubliek:China) -text(بوتان) neighborOf text(印度) -text(मकाउ) locatedIn text(पूर्वी:एशिया) -text(ماكاو) locatedIn text(Azië) -text(Macau) neighborOf text(People's:Republic:of:China) -text(法屬玻里尼西亞) locatedIn text(بولنيزيا) -text(फ़्रान्सीसी:पॉलिनेशिया) locatedIn text(ओशिआनिया) -text(Somalia) locatedIn text(东部非洲) -text(索馬里) locatedIn text(Afrika) -text(Somalië) neighborOf text(जिबूती) -text(Somalia) neighborOf text(肯尼亚) -text(الصومال) neighborOf text(إثيوبيا) -text(سان:بارتيلمي) locatedIn text(कैरिबिया) -text(Saint:Barthélemy) locatedIn text(Amerika) -text(روسيا) locatedIn text(Europa:Oriental) -text(Rusia) locatedIn text(欧洲) -text(Rusland) neighborOf text(أوكرانيا) -text(Russia) neighborOf text(Wit-Rusland) -text(रूस) neighborOf text(中华人民共和国) -text(俄罗斯) neighborOf text(哈萨克斯坦) -text(روسيا) neighborOf text(挪威) -text(Rusia) neighborOf text(Polen) -text(Rusland) neighborOf text(Azerbaiyán) -text(Russia) neighborOf text(Lithuania) -text(रूस) neighborOf text(إستونيا) -text(俄罗斯) neighborOf text(Noord-Korea) -text(روسيا) neighborOf text(فنلندا) -text(Rusia) neighborOf text(Mongolia) -text(Rusland) neighborOf text(لاتفيا) -text(Russia) neighborOf text(جورجيا) -text(Nieuw-Zeeland) locatedIn text(nan) -text(新西兰) locatedIn text(Oceania) -text(Panamá) locatedIn text(Centraal-Amerika) -text(Panama) locatedIn text(América) -text(巴拿馬) neighborOf text(कोस्टा:रीका) -text(पनामा) neighborOf text(哥伦比亚) -text(巴布亚新几内亚) locatedIn text(美拉尼西亞) -text(पापुआ:न्यू:गिनी) locatedIn text(Oceanië) -text(بابوا:غينيا:الجديدة) neighborOf text(Indonesia) -text(Corea:del:Norte) locatedIn text(Asia:Oriental) -text(उत्तर:कोरिया) neighborOf text(الصين) -text(كوريا:الشمالية) neighborOf text(Corea:del:Sur) -text(朝鮮民主主義人民共和國) neighborOf text(रूस) -text(Latvia) locatedIn text(Northern:Europe) -text(拉脫維亞) locatedIn text(Europa) -text(Letonia) neighborOf text(Lituania) -text(लातविया) neighborOf text(بيلاروس) -text(Letland) neighborOf text(俄罗斯) -text(لاتفيا) neighborOf text(Estonia) -text(阿曼) locatedIn text(Asia:Occidental) -text(Oman) locatedIn text(Asia) -text(Omán) neighborOf text(沙特阿拉伯) -text(Oman) neighborOf text(Yemen) -text(سلطنة:عمان) neighborOf text(阿拉伯联合酋长国) -text(سان:بيير:وميكلون) locatedIn text(Noord-Amerika) -text(圣皮埃尔和密克隆) locatedIn text(Americas) -text(Martinique) locatedIn text(Caribbean) -text(مارتينيك) locatedIn text(أمريكتان) -text(यूनाइटेड:किंगडम) locatedIn text(उत्तरी:यूरोप) -text(Reino:Unido) locatedIn text(यूरोप) -text(المملكة:المتحدة) neighborOf text(यूनाइटेड:किंगडम) -text(इज़राइल) locatedIn text(西亚) -text(Israël) locatedIn text(Asia) -text(إسرائيل) neighborOf text(لبنان) -text(以色列) neighborOf text(مصر) -text(Israel) neighborOf text(الأردن) -text(Israel) neighborOf text(सीरिया) -text(Jersey) locatedIn text(Noord-Europa) -text(澤西) locatedIn text(Europe) -text(Pitcairneilanden) locatedIn text(पोलीनेशिया) -text(पिटकेर्न:द्वीपसमूह) locatedIn text(大洋洲) -text(Togo) locatedIn text(África:Occidental) -text(Togo) locatedIn text(अफ्रीका) -text(Togo) neighborOf text(بوركينا:فاسو) -text(多哥) neighborOf text(Ghana) -text(टोगो) neighborOf text(बेनिन) -text(Kiribati) locatedIn text(माइक्रोनीशिया) -text(Kiribati) locatedIn text(أوقيانوسيا) -text(إيران) locatedIn text(南亚) -text(Iran) locatedIn text(亞洲) -text(ईरान) neighborOf text(Afghanistan) -text(Irán) neighborOf text(Turkmenistan) -text(伊朗) neighborOf text(Turkey) -text(Iran) neighborOf text(Armenia) -text(إيران) neighborOf text(Azerbaijan) -text(Iran) neighborOf text(पाकिस्तान) -text(ईरान) neighborOf text(Irak) -text(Saint-Martin) locatedIn text(Caraïben) -text(San:Martín) locatedIn text(美洲) -text(Sint-Maarten) neighborOf text(San:Martín) -text(多明尼加) locatedIn text(Caribe) -text(جمهورية:الدومينيكان) locatedIn text(महाअमेरिका) -text(Dominicaanse:Republiek) neighborOf text(Haití) -text(الدنمارك) locatedIn text(Europa:del:Norte) -text(Denemarken) neighborOf text(德國) -text(百慕大) locatedIn text(北美洲) -text(برمودا) locatedIn text(Amerika) -text(智利) locatedIn text(Zuid-Amerika) -text(تشيلي) neighborOf text(الأرجنتين) -text(चिली) neighborOf text(Bolivia) -text(Chile) neighborOf text(Peru) -text(كوسوفو) locatedIn text(पूर्वी:यूरोप) -text(科索沃) locatedIn text(Europa) -text(Kosovo) neighborOf text(塞爾維亞) -text(कोसोवो:गणराज्य) neighborOf text(阿爾巴尼亞) -text(Kosovo) neighborOf text(Noord-Macedonië) -text(Kosovo) neighborOf text(Montenegro) -text(聖克里斯多福及尼維斯) locatedIn text(الكاريبي) -text(San:Cristóbal:y:Nieves) locatedIn text(América) -text(Eritrea) locatedIn text(África:Oriental) -text(इरित्रिया) neighborOf text(吉布提) -text(厄立特里亞) neighborOf text(苏丹) -text(Eritrea) neighborOf text(埃塞俄比亚) -text(भूमध्यरेखीय:गिनी) locatedIn text(中部非洲) -text(Guinea:Ecuatorial) locatedIn text(非洲) -text(Equatorial:Guinea) neighborOf text(加蓬) -text(غينيا:الاستوائية) neighborOf text(Kameroen) -text(Níger) locatedIn text(West-Afrika) -text(النيجر) locatedIn text(إفريقيا) -text(Niger) neighborOf text(Chad) -text(Niger) neighborOf text(ليبيا) -text(尼日尔) neighborOf text(Burkina:Faso) -text(नाइजर) neighborOf text(Benin) -text(Níger) neighborOf text(马里) -text(النيجر) neighborOf text(अल्जीरिया) -text(Niger) neighborOf text(Nigeria) -text(अंगुइला) locatedIn text(加勒比地区) -text(أنغويلا) locatedIn text(Americas) -text(Ruanda) locatedIn text(पूर्वी:अफ्रीका) -text(Rwanda) locatedIn text(Africa) -text(رواندا) neighborOf text(Burundi) -text(卢旺达) neighborOf text(Tanzania) -text(Rwanda) neighborOf text(烏干達) -text(रवाण्डा) neighborOf text(कांगो:लोकतान्त्रिक:गणराज्य) -text(الإمارات:العربية:المتحدة) locatedIn text(West:Asia) -text(Verenigde:Arabische:Emiraten) locatedIn text(آسيا) -text(United:Arab:Emirates) neighborOf text(ओमान) -text(Emiratos:Árabes:Unidos) neighborOf text(السعودية) -text(Estland) locatedIn text(北歐) -text(एस्टोनिया) locatedIn text(أوروبا) -text(Estonia) neighborOf text(Latvia) -text(愛沙尼亞) neighborOf text(روسيا) -text(Greece) locatedIn text(Europa:del:Sur) -text(यूनान) locatedIn text(欧洲) -text(Griekenland) neighborOf text(保加利亚) -text(Grecia) neighborOf text(अल्बानिया) -text(希腊) neighborOf text(North:Macedonia) -text(اليونان) neighborOf text(तुर्की) -text(Senegal) locatedIn text(غرب:إفريقيا) -text(सेनेगल) locatedIn text(África) -text(السنغال) neighborOf text(गिनी-बिसाऊ) -text(Senegal) neighborOf text(موريتانيا) -text(Senegal) neighborOf text(माली) -text(塞内加尔) neighborOf text(गाम्बिया) -text(Senegal) neighborOf text(गिनी) -text(गुआदेलूप) locatedIn text(कैरिबिया) -text(Guadeloupe) locatedIn text(أمريكتان) -text(Mónaco) locatedIn text(Europa:Occidental) -text(Monaco) neighborOf text(फ़्रान्स) -text(Djibouti) locatedIn text(East:Africa) -text(Djibouti) neighborOf text(إرتريا) -text(Yibuti) neighborOf text(सोमालिया) -text(جيبوتي) neighborOf text(इथियोपिया) -text(Indonesië) locatedIn text(Sudeste:Asiático) -text(इंडोनेशिया) neighborOf text(Papoea-Nieuw-Guinea) -text(Indonesia) neighborOf text(تيمور:الشرقية) -text(印度尼西亚) neighborOf text(ماليزيا) -text(Britse:Maagdeneilanden) locatedIn text(Caribbean) -text(British:Virgin:Islands) locatedIn text(美洲) -text(Cook:Islands) locatedIn text(玻里尼西亞) -text(कुक:द्वीपसमूह) locatedIn text(Oceanía) -text(युगाण्डा) locatedIn text(شرق:إفريقيا) -text(Uganda) locatedIn text(Afrika) -text(Uganda) neighborOf text(तंज़ानिया) -text(أوغندا) neighborOf text(República:Democrática:del:Congo) -text(Oeganda) neighborOf text(كينيا) -text(烏干達) neighborOf text(南蘇丹) -text(युगाण्डा) neighborOf text(Ruanda) -text(مقدونيا:الشمالية) locatedIn text(南欧) -text(उत्तर:मैसिडोनिया) locatedIn text(Europa) -text(Macedonia:del:Norte) neighborOf text(كوسوفو) -text(北马其顿) neighborOf text(Greece) -text(Noord-Macedonië) neighborOf text(Albanië) -text(North:Macedonia) neighborOf text(Servië) -text(مقدونيا:الشمالية) neighborOf text(Bulgaria) -text(Túnez) locatedIn text(Noord-Afrika) -text(突尼西亞) locatedIn text(अफ्रीका) -text(Tunisia) neighborOf text(利比亞) -text(ट्यूनिशिया) neighborOf text(Algerije) -text(Ecuador) locatedIn text(South:America) -text(Ecuador) neighborOf text(पेरू) -text(厄瓜多尔) neighborOf text(Colombia) -text(ब्राज़ील) locatedIn text(أمريكا:الجنوبية) -text(البرازيل) locatedIn text(महाअमेरिका) -text(Brasil) neighborOf text(बोलिविया) -text(Brazil) neighborOf text(कोलम्बिया) -text(巴西) neighborOf text(Paraguay) -text(Brazilië) neighborOf text(الأوروغواي) -text(ब्राज़ील) neighborOf text(फ़्रान्सीसी:गुयाना) -text(البرازيل) neighborOf text(सूरीनाम) -text(Brasil) neighborOf text(委內瑞拉) -text(Brazil) neighborOf text(Argentina) -text(巴西) neighborOf text(Guyana) -text(Brazilië) neighborOf text(秘鲁) -text(باراغواي) locatedIn text(南美洲) -text(Paraguay) locatedIn text(Amerika) -text(Paraguay) neighborOf text(Argentina) -text(巴拉圭) neighborOf text(ब्राज़ील) -text(पैराग्वे) neighborOf text(بوليفيا) -text(Finland) locatedIn text(أوروبا:الشمالية) -text(फ़िनलैण्ड) locatedIn text(यूरोप) -text(Finlandia) neighborOf text(Norway) -text(Finland) neighborOf text(स्वीडन) -text(芬蘭) neighborOf text(Rusia) -text(約旦) locatedIn text(غرب:آسيا) -text(Jordanië) neighborOf text(सउदी:अरब) -text(जॉर्डन) neighborOf text(इज़राइल) -text(Jordan) neighborOf text(伊拉克) -text(Jordania) neighborOf text(Siria) -text(Timor:Oriental) locatedIn text(दक्षिण:पूर्व:एशिया) -text(東帝汶) neighborOf text(إندونيسيا) -text(الجبل:الأسود) locatedIn text(أوروبا:الجنوبية) -text(蒙特內哥羅) locatedIn text(Europe) -text(Montenegro) neighborOf text(科索沃) -text(Montenegro) neighborOf text(Bosnia:y:Herzegovina) -text(मॉन्टेनीग्रो) neighborOf text(Kroatië) -text(Montenegro) neighborOf text(सर्बिया) -text(الجبل:الأسود) neighborOf text(Albania) -text(Peru) locatedIn text(América:del:Sur) -text(Perú) locatedIn text(América) -text(بيرو) neighborOf text(Ecuador) -text(Peru) neighborOf text(玻利維亞) -text(पेरू) neighborOf text(Chile) -text(秘鲁) neighborOf text(البرازيل) -text(Peru) neighborOf text(كولومبيا) -text(मॉण्टसेराट) locatedIn text(Caraïben) -text(مونتسيرات) locatedIn text(Americas) -text(Oekraïne) locatedIn text(Oost-Europa) -text(Ukraine) locatedIn text(Europa) -text(Ucrania) neighborOf text(Slowakije) -text(烏克蘭) neighborOf text(白俄羅斯) -text(युक्रेन) neighborOf text(波蘭) -text(أوكرانيا) neighborOf text(Rusland) -text(Oekraïne) neighborOf text(Hongarije) -text(Ukraine) neighborOf text(Moldova) -text(Ucrania) neighborOf text(رومانيا) -text(دومينيكا) locatedIn text(Caribe) -text(Dominica) locatedIn text(أمريكتان) -text(تركمانستان) locatedIn text(آسيا:الوسطى) -text(土庫曼斯坦) neighborOf text(Kazakhstan) -text(Turkmenistan) neighborOf text(Afganistán) -text(तुर्कमेनिस्तान) neighborOf text(Uzbekistán) -text(Turkmenistán) neighborOf text(Irán) -text(根西) locatedIn text(Northern:Europe) -text(Guernsey) locatedIn text(أوروبا) -text(Gibraltar) locatedIn text(दक्षिणी:यूरोप) -text(Gibraltar) locatedIn text(欧洲) -text(直布羅陀) neighborOf text(Spain) -text(स्विट्ज़रलैण्ड) locatedIn text(أوروبا:الغربية) -text(瑞士) locatedIn text(Europa) -text(سويسرا) neighborOf text(जर्मनी) -text(Zwitserland) neighborOf text(意大利) -text(Switzerland) neighborOf text(Austria) -text(Suiza) neighborOf text(法國) -text(स्विट्ज़रलैण्ड) neighborOf text(लिक्टेन्स्टाइन) -text(Oostenrijk) locatedIn text(Western:Europe) -text(النمسا) locatedIn text(यूरोप) -text(ऑस्ट्रिया) neighborOf text(Duitsland) -text(奧地利) neighborOf text(Slovakia) -text(Austria) neighborOf text(Slovenia) -text(Austria) neighborOf text(Italië) -text(Oostenrijk) neighborOf text(瑞士) -text(النمسا) neighborOf text(हंगरी) -text(ऑस्ट्रिया) neighborOf text(Liechtenstein) -text(奧地利) neighborOf text(Tsjechië) -text(Hungría) locatedIn text(Eastern:Europe) -text(المجر) neighborOf text(烏克蘭) -text(Hungary) neighborOf text(Eslovaquia) -text(匈牙利) neighborOf text(स्लोवेनिया) -text(Hongarije) neighborOf text(Croatia) -text(हंगरी) neighborOf text(Austria) -text(Hungría) neighborOf text(Serbia) -text(المجر) neighborOf text(रोमानिया) -text(Malawi) locatedIn text(Oost-Afrika) -text(मलावी) locatedIn text(非洲) -text(Malaui) neighborOf text(Zambia) -text(馬拉威) neighborOf text(坦桑尼亞) -text(مالاوي) neighborOf text(莫桑比克) -text(香港) locatedIn text(東亞) -text(Hongkong) neighborOf text(República:Popular:China) -text(ليختنشتاين) locatedIn text(西欧) -text(Liechtenstein) locatedIn text(Europe) -text(列支敦斯登) neighborOf text(سويسرا) -text(Liechtenstein) neighborOf text(Austria) -text(Barbados) locatedIn text(الكاريبي) -text(बारबाडोस) locatedIn text(美洲) -text(Georgië) locatedIn text(पश्चिमी:एशिया) -text(Georgia) locatedIn text(एशिया) -text(जॉर्जिया) neighborOf text(أرمينيا) -text(格鲁吉亚) neighborOf text(阿塞拜疆) -text(Georgia) neighborOf text(Russia) -text(جورجيا) neighborOf text(Turkije) -text(Albania) locatedIn text(Southern:Europe) -text(ألبانيا) locatedIn text(Europa) -text(阿爾巴尼亞) neighborOf text(蒙特內哥羅) -text(अल्बानिया) neighborOf text(उत्तर:मैसिडोनिया) -text(Albanië) neighborOf text(Kosovo) -text(Albania) neighborOf text(यूनान) -text(Kuwait) locatedIn text(Zuidwest-Azië) -text(कुवैत) locatedIn text(Azië) -text(Koeweit) neighborOf text(Saudi:Arabia) -text(الكويت) neighborOf text(Iraq) -text(Zuid-Afrika) locatedIn text(南部非洲) -text(South:Africa) locatedIn text(إفريقيا) -text(Sudáfrica) neighborOf text(Mozambique) -text(جنوب:إفريقيا) neighborOf text(Botsuana) -text(南非) neighborOf text(إسواتيني) -text(दक्षिण:अफ़्रीका) neighborOf text(ज़िम्बाब्वे) -text(Zuid-Afrika) neighborOf text(ناميبيا) -text(South:Africa) neighborOf text(Lesotho) -text(Haïti) locatedIn text(加勒比地区) -text(Haiti) locatedIn text(महाअमेरिका) -text(हैती) neighborOf text(डोमिनिकन:गणराज्य) -text(أفغانستان) locatedIn text(Asia:del:Sur) -text(阿富汗) locatedIn text(Asia) -text(अफ़्ग़ानिस्तान) neighborOf text(Turkmenistan) -text(Afghanistan) neighborOf text(चीनी:जनवादी:गणराज्य) -text(Afghanistan) neighborOf text(Tadzjikistan) -text(Afganistán) neighborOf text(Oezbekistan) -text(أفغانستان) neighborOf text(伊朗) -text(阿富汗) neighborOf text(Pakistan) -text(سنغافورة) locatedIn text(Zuidoost-Azië) -text(Singapore) locatedIn text(Asia) -text(貝南) locatedIn text(पश्चिमी:अफ्रीका) -text(بنين) locatedIn text(Africa) -text(Benin) neighborOf text(Niger) -text(Benín) neighborOf text(बुर्किना:फासो) -text(बेनिन) neighborOf text(توغو) -text(Benin) neighborOf text(Nigeria) -text(Åland) locatedIn text(उत्तरी:यूरोप) -text(奥兰) locatedIn text(أوروبا) -text(Croacia) locatedIn text(Zuid-Europa) -text(克羅地亞) locatedIn text(欧洲) -text(كرواتيا) neighborOf text(斯洛文尼亞) -text(क्रोएशिया) neighborOf text(बोस्निया:और:हर्ज़ेगोविना) -text(Kroatië) neighborOf text(Hungary) -text(Croatia) neighborOf text(صربيا) -text(Croacia) neighborOf text(Montenegro) -text(Sweden) locatedIn text(Noord-Europa) -text(السويد) locatedIn text(Europa) -text(瑞典) neighborOf text(Noruega) -text(Suecia) neighborOf text(فنلندا) -text(墨西哥) locatedIn text(أمريكا:الشمالية) -text(México) neighborOf text(伯利兹) -text(Mexico) neighborOf text(Estados:Unidos) -text(Mexico) neighborOf text(ग्वाटेमाला) -text(格陵兰) locatedIn text(América:del:Norte) -text(Groenland) locatedIn text(Amerika) -text(Pitcairneilanden) locatedIn text(Australia:and:New:Zealand) -text(جزر:بيتكيرن) locatedIn text(ओशिआनिया) -text(Nepal) locatedIn text(Zuid-Azië) -text(Nepal) locatedIn text(亞洲) -text(Nepal) neighborOf text(Volksrepubliek:China) -text(نيبال) neighborOf text(India) -text(غواتيمالا) locatedIn text(América:Central) -text(Guatemala) neighborOf text(Belize) -text(Guatemala) neighborOf text(El:Salvador) -text(Guatemala) neighborOf text(मेक्सिको) -text(危地马拉) neighborOf text(هندوراس) -text(大韩民国) locatedIn text(شرق:آسيا) -text(South:Korea) locatedIn text(آسيا) -text(كوريا:الجنوبية) neighborOf text(North:Korea) -text(Moldavië) locatedIn text(东欧) -text(摩爾多瓦) locatedIn text(यूरोप) -text(مولدوفا) neighborOf text(युक्रेन) -text(Moldavia) neighborOf text(Rumania) -text(Mauritius) locatedIn text(东部非洲) -text(موريشيوس) locatedIn text(África) -text(बेलारूस) locatedIn text(أوروبا:الشرقية) -text(Bielorrusia) neighborOf text(أوكرانيا) -text(Belarus) neighborOf text(Poland) -text(Wit-Rusland) neighborOf text(Litouwen) -text(بيلاروس) neighborOf text(रूस) -text(白俄羅斯) neighborOf text(拉脫維亞) -text(بنغلاديش) locatedIn text(جنوب:آسيا) -text(Bangladés) neighborOf text(ميانمار) -text(孟加拉國) neighborOf text(India) -text(馬來西亞) locatedIn text(东南亚) -text(Maleisië) locatedIn text(एशिया) -text(Malaysia) neighborOf text(थाईलैंड) -text(Malasia) neighborOf text(Indonesia) -text(मलेशिया) neighborOf text(Brunéi) -text(البوسنة:والهرسك) locatedIn text(Europa:del:Sur) -text(波斯尼亚和黑塞哥维那) locatedIn text(Europe) -text(Bosnia:and:Herzegovina) neighborOf text(Serbia) -text(Bosnië:en:Herzegovina) neighborOf text(克羅地亞) -text(Bosnia:y:Herzegovina) neighborOf text(Montenegro) -text(لوكسمبورغ) locatedIn text(पश्चिमी:यूरोप) -text(Luxembourg) locatedIn text(Europa) -text(Luxemburgo) neighborOf text(Alemania) -text(Luxemburg) neighborOf text(बेल्जियम) -text(लक्ज़मबर्ग) neighborOf text(Frankrijk) -text(Italia) locatedIn text(南欧) -text(इटली) locatedIn text(أوروبا) -text(Italy) neighborOf text(Eslovenia) -text(إيطاليا) neighborOf text(Zwitserland) -text(意大利) neighborOf text(Oostenrijk) -text(Italië) neighborOf text(France) -text(Italia) neighborOf text(Vatican:City) -text(इटली) neighborOf text(San:Marino) -text(अज़रबैजान) locatedIn text(Asia:Occidental) -text(أذربيجان) locatedIn text(Azië) -text(Azerbeidzjan) neighborOf text(土耳其) -text(Azerbaiyán) neighborOf text(Armenië) -text(Azerbaijan) neighborOf text(俄罗斯) -text(阿塞拜疆) neighborOf text(Iran) -text(अज़रबैजान) neighborOf text(Georgië) -text(洪都拉斯) locatedIn text(中美洲) -text(Honduras) locatedIn text(América) -text(Honduras) neighborOf text(ग्वाटेमाला) -text(Honduras) neighborOf text(Nicaragua) -text(हॉण्डुरस) neighborOf text(El:Salvador) -text(Mali) locatedIn text(West:Africa) -text(Mali) locatedIn text(Afrika) -text(مالي) neighborOf text(布吉納法索) -text(Mali) neighborOf text(Guinee) -text(马里) neighborOf text(मॉरीतानिया) -text(माली) neighborOf text(尼日尔) -text(Mali) neighborOf text(सेनेगल) -text(Mali) neighborOf text(Algeria) -text(مالي) neighborOf text(ساحل:العاج) -text(中華民國) locatedIn text(East:Asia) -text(تايوان) locatedIn text(Asia) -text(阿爾及利亞) locatedIn text(North:Africa) -text(Argelia) locatedIn text(अफ्रीका) -text(الجزائر) neighborOf text(Libya) -text(अल्जीरिया) neighborOf text(Tunesië) -text(Algerije) neighborOf text(Mauritanië) -text(Algeria) neighborOf text(Marokko) -text(阿爾及利亞) neighborOf text(नाइजर) -text(Argelia) neighborOf text(Mali) -text(الجزائر) neighborOf text(撒拉威阿拉伯民主共和國) -text(French:Guiana) locatedIn text(दक्षिण:अमेरिका) -text(غويانا:الفرنسية) neighborOf text(Brasil) -text(法屬圭亞那) neighborOf text(Suriname) -text(Jemen) locatedIn text(西亚) -text(也门) locatedIn text(Asia) -text(Yemen) neighborOf text(阿曼) -text(यमन) neighborOf text(Saoedi-Arabië) -text(पोर्टो:रीको) locatedIn text(कैरिबिया) -text(بورتوريكو) locatedIn text(Americas) -text(San:Vicente:y:las:Granadinas) locatedIn text(Caribbean) -text(सन्त:विन्सेण्ट:और:ग्रेनाडाइन्स) locatedIn text(أمريكتان) -text(Venezuela) locatedIn text(Zuid-Amerika) -text(वेनेज़ुएला) neighborOf text(Brazil) -text(Venezuela) neighborOf text(गयाना) -text(Venezuela) neighborOf text(Colombia) -text(Granada) locatedIn text(Caraïben) -text(ग्रेनाडा) locatedIn text(美洲) -text(الولايات:المتحدة) locatedIn text(उत्तर:अमेरिका) -text(Verenigde:Staten) neighborOf text(كندا) -text(美國) neighborOf text(المكسيك) -text(托克劳) locatedIn text(Polynesië) -text(Tokelau) locatedIn text(Oceania) -text(Slovenië) locatedIn text(أوروبا:الجنوبية) -text(سلوفينيا) locatedIn text(欧洲) -text(Slovenia) neighborOf text(النمسا) -text(स्लोवेनिया) neighborOf text(كرواتيا) -text(斯洛文尼亞) neighborOf text(Italy) -text(Eslovenia) neighborOf text(匈牙利) -text(Filipijnen) locatedIn text(Southeast:Asia) -text(Philippines) locatedIn text(亞洲) -text(Micronesië) locatedIn text(密克羅尼西亞群島) -text(Micronesia) locatedIn text(Oceanië) -text(People's:Republic:of:China) locatedIn text(Oost-Azië) -text(中华人民共和国) locatedIn text(آسيا) -text(الصين) neighborOf text(अफ़्ग़ानिस्तान) -text(República:Popular:China) neighborOf text(Bután) -text(चीनी:जनवादी:गणराज्य) neighborOf text(Macao) -text(Volksrepubliek:China) neighborOf text(الهند) -text(People's:Republic:of:China) neighborOf text(كازاخستان) -text(中华人民共和国) neighborOf text(Kirgizië) -text(الصين) neighborOf text(طاجيكستان) -text(República:Popular:China) neighborOf text(老撾) -text(चीनी:जनवादी:गणराज्य) neighborOf text(روسيا) -text(Volksrepubliek:China) neighborOf text(Noord-Korea) -text(People's:Republic:of:China) neighborOf text(緬甸) -text(中华人民共和国) neighborOf text(باكستان) -text(الصين) neighborOf text(Mongolia) -text(República:Popular:China) neighborOf text(Hong:Kong) -text(चीनी:जनवादी:गणराज्य) neighborOf text(वियतनाम) -text(Gabon) locatedIn text(Centraal-Afrika) -text(الغابون) locatedIn text(非洲) -text(गबॉन) neighborOf text(Equatoriaal-Guinea) -text(Gabon) neighborOf text(República:del:Congo) -text(Gabón) neighborOf text(Cameroon) -text(جزر:الولايات:المتحدة:الصغيرة:النائية) locatedIn text(North:America) -text(संयुक्त:राज्य:अमेरिका:के:छोटे:दूरस्थ:द्वीपसमूह) locatedIn text(महाअमेरिका) -text(Andorra) locatedIn text(दक्षिणी:यूरोप) -text(安道尔) locatedIn text(Europa) -text(Andorra) neighborOf text(Spanje) -text(अण्डोरा) neighborOf text(Francia) -text(萨摩亚) locatedIn text(Polinesia) -text(Samoa) locatedIn text(大洋洲) -text(غامبيا) locatedIn text(西非) -text(Gambia) locatedIn text(إفريقيا) -text(Gambia) neighborOf text(السنغال) -text(Pedro:Miguel) locatedIn text(West:Asia) -text(Pedro:Miguel) locatedIn text(एशिया) -text(nan) neighborOf text(الأردن) -text(nan) neighborOf text(Egypt) -text(Pedro:Miguel) neighborOf text(Israël) -text(Réunion) locatedIn text(África:Oriental) -text(Reunión) locatedIn text(Africa) -text(فرنسا) locatedIn text(West-Europa) -text(फ़्रान्स) locatedIn text(यूरोप) -text(法國) neighborOf text(Germany) -text(Frankrijk) neighborOf text(卢森堡) -text(France) neighborOf text(إيطاليا) -text(Francia) neighborOf text(أندورا) -text(فرنسا) neighborOf text(Switzerland) -text(फ़्रान्स) neighborOf text(موناكو) -text(法國) neighborOf text(Bélgica) -text(Frankrijk) neighborOf text(إسبانيا) -text(منغوليا) locatedIn text(पूर्वी:एशिया) -text(蒙古國) locatedIn text(Azië) -text(Mongolië) neighborOf text(Volksrepubliek:China) -text(मंगोलिया) neighborOf text(Rusia) -text(लिथुआनिया) locatedIn text(Europa:del:Norte) -text(ليتوانيا) locatedIn text(Europe) -text(立陶宛) neighborOf text(पोलैंड) -text(Lithuania) neighborOf text(Letonia) -text(Lituania) neighborOf text(बेलारूस) -text(Litouwen) neighborOf text(Rusland) -text(جزر:كايمان) locatedIn text(Caribe) -text(Islas:Caimán) locatedIn text(Amerika) -text(Santa:Lucía) locatedIn text(الكاريبي) -text(सेंट:लूसिया) locatedIn text(América) -text(कुराकाओ) locatedIn text(加勒比地区) -text(库拉索) locatedIn text(Americas) -text(कैरिबिया) locatedIn text(أمريكتان) -text(दक्षिण:एशिया) locatedIn text(Asia) -text(África:Central) locatedIn text(África) -text(北歐) locatedIn text(Europa) -text(Southern:Europe) locatedIn text(أوروبا) -text(غرب:آسيا) locatedIn text(Asia) -text(South:America) locatedIn text(美洲) -text(Polynesia) locatedIn text(أوقيانوسيا) -text(nan) locatedIn text(Oceanía) -text(Europa:Occidental) locatedIn text(欧洲) -text(पूर्वी:अफ्रीका) locatedIn text(Afrika) -text(África:Occidental) locatedIn text(अफ्रीका) -text(Europa:Oriental) locatedIn text(Europa) -text(केंद्रीय:अमेरिका) locatedIn text(महाअमेरिका) -text(Noord-Amerika) locatedIn text(Amerika) -text(جنوب:شرق:آسيا) locatedIn text(亞洲) -text(África:austral) locatedIn text(非洲) -text(Asia:Oriental) locatedIn text(آسيا) -text(उत्तर:अफ़्रीका) locatedIn text(إفريقيا) -text(Melanesië) locatedIn text(ओशिआनिया) -text(Micronesia) locatedIn text(Oceania) -text(Central:Asia) locatedIn text(एशिया) -text(Europa:Central) locatedIn text(यूरोप) \ No newline at end of file diff --git a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_country2text_relation2text.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_country2text_relation2text.tsv deleted file mode 100644 index 1cf89a8..0000000 --- a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_country2text_relation2text.tsv +++ /dev/null @@ -1,1111 +0,0 @@ -text(Palau) text(is:positioned:in) text(密克羅尼西亞群島) -text(Palau) text(was:sited:in) text(ओशिआनिया) -text(मालदीव) text(is:sited:in) text(جنوب:آسيا) -text(Malediven) text(was:localized:in) text(Asia) -text(汶莱) text(is:localized:in) text(Sudeste:Asiático) -text(Brunei) text(was:present:in) text(亞洲) -text(بروناي) text(was:a:neighboring:country:of) text(ماليزيا) -text(日本) text(is:present:in) text(पूर्वी:एशिया) -text(اليابان) text(is:still:in) text(آسيا) -text(荷蘭) text(was:still:in) text(Europa:Occidental) -text(नीदरलैण्ड) text(neighbors:with) text(ألمانيا) -text(Países:Bajos) text(was:a:neighbor:of) text(بلجيكا) -text(تركيا) text(was:currently:in) text(पश्चिमी:एशिया) -text(तुर्की) text(is:a:neighbor:of) text(أرمينيا) -text(Turquía) text(is:a:neighboring:state:to) text(अज़रबैजान) -text(土耳其) text(was:a:neighboring:state:to) text(ईरान) -text(Turkije) text(borders:with) text(Greece) -text(Turkey) text(borders) text(جورجيا) -text(تركيا) text(is:butted:against) text(保加利亚) -text(तुर्की) text(was:butted:against) text(Irak) -text(Turquía) text(was:adjacent:to) text(Syria) -text(Angola) text(is:currently:in) text(中部非洲) -text(Angola) text(is:placed:in) text(África) -text(安哥拉) text(is:adjacent:to) text(刚果民主共和国) -text(أنغولا) text(neighbors) text(纳米比亚) -text(अंगोला) text(is:a:neighboring:country:of) text(Zambia) -text(Angola) text(was:a:neighboring:country:of) text(República:del:Congo) -text(Armenia) text(was:placed:in) text(西亚) -text(Armenië) text(can:be:found:in) text(एशिया) -text(आर्मीनिया) text(neighbors:with) text(जॉर्जिया) -text(Armenia) text(was:a:neighbor:of) text(阿塞拜疆) -text(亞美尼亞) text(is:a:neighbor:of) text(Iran) -text(أرمينيا) text(is:a:neighboring:state:to) text(土耳其) -text(Antigua:and:Barbuda) text(was:situated:in) text(加勒比地区) -text(Antigua:en:Barbuda) text(is:situated:in) text(महाअमेरिका) -text(एस्वातीनी) text(is:located:in) text(南部非洲) -text(斯威士兰) text(was:located:in) text(अफ्रीका) -text(Eswatini) text(was:a:neighboring:state:to) text(جنوب:إفريقيا) -text(Swaziland) text(borders:with) text(Mozambique) -text(Wallis:y:Futuna) text(can:be:found:in) text(Polynesia) -text(Wallis:en:Futuna) text(was:positioned:in) text(أوقيانوسيا) -text(उरुग्वे) text(is:positioned:in) text(América:del:Sur) -text(الأوروغواي) text(was:sited:in) text(Amerika) -text(烏拉圭) text(borders) text(Argentina) -text(Uruguay) text(is:butted:against) text(Brazil) -text(Zambia) text(is:sited:in) text(شرق:إفريقيا) -text(زامبيا) text(was:localized:in) text(إفريقيا) -text(Zambia) text(was:butted:against) text(Tanzania) -text(ज़ाम्बिया) text(was:adjacent:to) text(Mozambique) -text(贊比亞) text(is:adjacent:to) text(جمهورية:الكونغو:الديمقراطية) -text(Zambia) text(neighbors) text(Angola) -text(Zambia) text(is:a:neighboring:country:of) text(Botswana) -text(زامبيا) text(was:a:neighboring:country:of) text(Zimbabwe) -text(Zambia) text(neighbors:with) text(Namibië) -text(ज़ाम्बिया) text(was:a:neighbor:of) text(Malaui) -text(قبرص) text(is:localized:in) text(东欧) -text(Chipre) text(was:present:in) text(欧洲) -text(Cyprus) text(is:a:neighbor:of) text(Verenigd:Koninkrijk) -text(Reino:Unido) text(is:present:in) text(Europa:del:Norte) -text(United:Kingdom) text(is:still:in) text(Europa) -text(यूनाइटेड:किंगडम) text(is:a:neighboring:state:to) text(المملكة:المتحدة) -text(Burundi) text(was:still:in) text(Oost-Afrika) -text(蒲隆地) text(was:currently:in) text(非洲) -text(Burundi) text(was:a:neighboring:state:to) text(कांगो:लोकतान्त्रिक:गणराज्य) -text(बुरुण्डी) text(borders:with) text(卢旺达) -text(بوروندي) text(borders) text(Tanzania) -text(جمهورية:إفريقيا:الوسطى) text(is:currently:in) text(Central:Africa) -text(República:Centroafricana) text(is:placed:in) text(Africa) -text(Centraal-Afrikaanse:Republiek) text(is:butted:against) text(乍得) -text(मध्य:अफ़्रीकी:गणराज्य) text(was:butted:against) text(Congo-Brazzaville) -text(中非共和國) text(was:adjacent:to) text(Congo-Kinshasa) -text(Central:African:Republic) text(is:adjacent:to) text(South:Sudan) -text(جمهورية:إفريقيا:الوسطى) text(neighbors) text(الكاميرون) -text(República:Centroafricana) text(is:a:neighboring:country:of) text(Soedan) -text(Tonga) text(was:placed:in) text(Polynesië) -text(Tonga) text(can:be:found:in) text(Oceanía) -text(Ivoorkust) text(was:situated:in) text(África:Occidental) -text(ساحل:العاج) text(is:situated:in) text(Afrika) -text(Ivory:Coast) text(was:a:neighboring:country:of) text(Burkina:Faso) -text(Costa:de:Marfil) text(neighbors:with) text(غانا) -text(कोत:दिव्वार) text(was:a:neighbor:of) text(Liberia) -text(科特迪瓦) text(is:a:neighbor:of) text(Mali) -text(Ivoorkust) text(is:a:neighboring:state:to) text(Guinea) -text(Sierra:Leone) text(is:located:in) text(غرب:إفريقيا) -text(Sierra:Leone) text(was:a:neighboring:state:to) text(लाइबेरिया) -text(塞拉利昂) text(borders:with) text(غينيا) -text(Mayotte) text(was:located:in) text(पूर्वी:अफ्रीका) -text(मेयोट) text(can:be:found:in) text(África) -text(Polonia) text(was:positioned:in) text(Eastern:Europe) -text(पोलैंड) text(borders) text(जर्मनी) -text(Polen) text(is:butted:against) text(Ukraine) -text(波蘭) text(was:butted:against) text(स्लोवाकिया) -text(Poland) text(was:adjacent:to) text(Wit-Rusland) -text(بولندا) text(is:adjacent:to) text(रूस) -text(Polonia) text(neighbors) text(Lituania) -text(पोलैंड) text(is:a:neighboring:country:of) text(Tsjechië) -text(कज़ाख़िस्तान) text(is:positioned:in) text(آسيا:الوسطى) -text(Kazajistán) text(was:sited:in) text(Asia) -text(Kazachstan) text(was:a:neighboring:country:of) text(تركمانستان) -text(哈萨克斯坦) text(neighbors:with) text(الصين) -text(كازاخستان) text(was:a:neighbor:of) text(Kyrgyzstan) -text(Kazakhstan) text(is:a:neighbor:of) text(Uzbekistán) -text(कज़ाख़िस्तान) text(is:a:neighboring:state:to) text(روسيا) -text(उज़्बेकिस्तान) text(is:sited:in) text(Central:Asia) -text(乌兹别克斯坦) text(was:localized:in) text(Azië) -text(Uzbekistan) text(was:a:neighboring:state:to) text(أفغانستان) -text(أوزبكستان) text(borders:with) text(तुर्कमेनिस्तान) -text(Oezbekistan) text(borders) text(Kazajistán) -text(Uzbekistán) text(is:butted:against) text(قرغيزستان) -text(उज़्बेकिस्तान) text(was:butted:against) text(طاجيكستان) -text(Turks:and:Caicos:Islands) text(is:localized:in) text(Caraïben) -text(特克斯和凯科斯群岛) text(was:present:in) text(América) -text(नया:कैलेडोनिया) text(is:present:in) text(ميلانيزيا) -text(新喀里多尼亞) text(is:still:in) text(大洋洲) -text(巴基斯坦) text(was:still:in) text(南亚) -text(باكستان) text(was:adjacent:to) text(People's:Republic:of:China) -text(पाकिस्तान) text(is:adjacent:to) text(Afghanistan) -text(Pakistan) text(neighbors) text(伊朗) -text(Pakistan) text(is:a:neighboring:country:of) text(الهند) -text(Argentina) text(was:currently:in) text(South:America) -text(阿根廷) text(is:currently:in) text(أمريكتان) -text(Argentinië) text(was:a:neighboring:country:of) text(Bolivia) -text(अर्जेण्टीना) text(neighbors:with) text(चिली) -text(الأرجنتين) text(was:a:neighbor:of) text(ब्राज़ील) -text(Argentina) text(is:a:neighbor:of) text(पैराग्वे) -text(Argentina) text(is:a:neighboring:state:to) text(Uruguay) -text(Cuba) text(is:placed:in) text(कैरिबिया) -text(كوبا) text(was:placed:in) text(Americas) -text(सर्बिया) text(can:be:found:in) text(أوروبا:الجنوبية) -text(صربيا) text(was:a:neighboring:state:to) text(Macedonia:del:Norte) -text(Serbia) text(borders:with) text(蒙特內哥羅) -text(塞爾維亞) text(borders) text(Kosovo) -text(Servië) text(is:butted:against) text(Bosnië:en:Herzegovina) -text(Serbia) text(was:butted:against) text(كرواتيا) -text(सर्बिया) text(was:adjacent:to) text(المجر) -text(صربيا) text(is:adjacent:to) text(बुल्गारिया) -text(Serbia) text(neighbors) text(羅馬尼亞) -text(República:Checa) text(was:situated:in) text(पूर्वी:यूरोप) -text(捷克) text(is:situated:in) text(यूरोप) -text(Czech:Republic) text(is:a:neighboring:country:of) text(Germany) -text(चेक:गणराज्य) text(was:a:neighboring:country:of) text(Austria) -text(جمهورية:التشيك) text(neighbors:with) text(Polen) -text(Tsjechië) text(was:a:neighbor:of) text(Eslovaquia) -text(Nicaragua) text(is:located:in) text(Central:America) -text(Nicaragua) text(is:a:neighbor:of) text(Honduras) -text(尼加拉瓜) text(is:a:neighboring:state:to) text(Costa:Rica) -text(वियतनाम) text(was:located:in) text(جنوب:شرق:آسيا) -text(فيتنام) text(can:be:found:in) text(Asia) -text(Vietnam) text(was:a:neighboring:state:to) text(Camboya) -text(越南) text(borders:with) text(لاوس) -text(Vietnam) text(borders) text(Volksrepubliek:China) -text(Niue) text(was:positioned:in) text(Polinesia) -text(紐埃) text(is:positioned:in) text(Oceanië) -text(Canadá) text(was:sited:in) text(أمريكا:الشمالية) -text(加拿大) text(is:sited:in) text(美洲) -text(कनाडा) text(is:butted:against) text(Estados:Unidos) -text(Slovakia) text(was:localized:in) text(Europa:Central) -text(斯洛伐克) text(was:butted:against) text(युक्रेन) -text(سلوفاكيا) text(was:adjacent:to) text(波蘭) -text(Slowakije) text(is:adjacent:to) text(奧地利) -text(स्लोवाकिया) text(neighbors) text(Hungary) -text(Eslovaquia) text(is:a:neighboring:country:of) text(República:Checa) -text(موزمبيق) text(is:localized:in) text(东部非洲) -text(मोज़ाम्बीक) text(was:a:neighboring:country:of) text(坦桑尼亞) -text(莫桑比克) text(neighbors:with) text(Esuatini) -text(Mozambique) text(was:a:neighbor:of) text(ज़िम्बाब्वे) -text(Mozambique) text(is:a:neighbor:of) text(贊比亞) -text(Mozambique) text(is:a:neighboring:state:to) text(Malawi) -text(موزمبيق) text(was:a:neighboring:state:to) text(दक्षिण:अफ़्रीका) -text(阿魯巴) text(was:present:in) text(Caribe) -text(Aruba) text(is:present:in) text(महाअमेरिका) -text(Bolivia) text(is:still:in) text(أمريكا:الجنوبية) -text(Bolivia) text(was:still:in) text(Amerika) -text(玻利維亞) text(borders:with) text(智利) -text(बोलिविया) text(borders) text(البرازيل) -text(بوليفيا) text(is:butted:against) text(Paraguay) -text(Bolivia) text(was:butted:against) text(阿根廷) -text(Bolivia) text(was:adjacent:to) text(بيرو) -text(Colombia) text(was:currently:in) text(दक्षिण:अमेरिका) -text(كولومبيا) text(is:currently:in) text(América) -text(Colombia) text(is:adjacent:to) text(الإكوادور) -text(कोलम्बिया) text(neighbors) text(巴西) -text(哥伦比亚) text(is:a:neighboring:country:of) text(Panama) -text(Colombia) text(was:a:neighboring:country:of) text(فنزويلا) -text(Colombia) text(neighbors:with) text(Peru) -text(Fiji) text(is:placed:in) text(美拉尼西亞) -text(Fiji) text(was:placed:in) text(Oceania) -text(Republic:of:the:Congo) text(can:be:found:in) text(मध्य:अफ्रीका) -text(جمهورية:الكونغو) text(was:a:neighbor:of) text(गबॉन) -text(剛果共和國) text(is:a:neighbor:of) text(Democratic:Republic:of:the:Congo) -text(कांगो:गणराज्य) text(is:a:neighboring:state:to) text(Angola) -text(República:del:Congo) text(was:a:neighboring:state:to) text(喀麦隆) -text(Congo-Brazzaville) text(borders:with) text(Centraal-Afrikaanse:Republiek) -text(السعودية) text(was:situated:in) text(Zuidwest-Azië) -text(沙特阿拉伯) text(borders) text(क़तर) -text(Saudi:Arabia) text(is:butted:against) text(United:Arab:Emirates) -text(सउदी:अरब) text(was:butted:against) text(الأردن) -text(Arabia:Saudí) text(was:adjacent:to) text(也门) -text(Saoedi-Arabië) text(is:adjacent:to) text(阿曼) -text(السعودية) text(neighbors) text(कुवैत) -text(沙特阿拉伯) text(is:a:neighboring:country:of) text(Irak) -text(السلفادور) text(is:situated:in) text(केंद्रीय:अमेरिका) -text(अल:साल्वाडोर) text(is:located:in) text(أمريكتان) -text(El:Salvador) text(was:a:neighboring:country:of) text(Guatemala) -text(El:Salvador) text(neighbors:with) text(هندوراس) -text(मेडागास्कर) text(was:located:in) text(East:Africa) -text(馬達加斯加) text(can:be:found:in) text(अफ्रीका) -text(Australia) text(was:positioned:in) text(Australia:and:New:Zealand) -text(Australia) text(is:positioned:in) text(ओशिआनिया) -text(नामीबिया) text(was:sited:in) text(दक्षिणी:अफ्रीका) -text(Namibia) text(is:sited:in) text(إفريقيا) -text(ناميبيا) text(was:a:neighbor:of) text(Zambia) -text(Namibia) text(is:a:neighbor:of) text(安哥拉) -text(纳米比亚) text(is:a:neighboring:state:to) text(南非) -text(Namibië) text(was:a:neighboring:state:to) text(Botswana) -text(तुवालू) text(was:localized:in) text(玻里尼西亞) -text(Tuvalu) text(is:localized:in) text(أوقيانوسيا) -text(斯瓦巴和扬马延) text(was:present:in) text(Noord-Europa) -text(Spitsbergen:en:Jan:Mayen) text(is:present:in) text(أوروبا) -text(马恩岛) text(is:still:in) text(उत्तरी:यूरोप) -text(आइल:ऑफ़:मैन) text(was:still:in) text(Europe) -text(Guyana) text(was:currently:in) text(Zuid-Amerika) -text(Guyana) text(borders:with) text(Brasil) -text(Guyana) text(borders) text(Surinam) -text(圭亚那) text(is:butted:against) text(Venezuela) -text(Ciudad:del:Vaticano) text(is:currently:in) text(Zuid-Europa) -text(वैटिकन:नगर) text(is:placed:in) text(Europa) -text(Vaticaanstad) text(was:butted:against) text(意大利) -text(Territorio:Británico:del:Océano:Índico) text(was:placed:in) text(África:Oriental) -text(إقليم:المحيط:الهندي:البريطاني) text(can:be:found:in) text(非洲) -text(नाइजीरिया) text(was:situated:in) text(West-Afrika) -text(Nigeria) text(is:situated:in) text(Africa) -text(نيجيريا) text(was:adjacent:to) text(Chad) -text(Nigeria) text(is:adjacent:to) text(नाइजर) -text(Nigeria) text(neighbors) text(Kameroen) -text(奈及利亞) text(is:a:neighboring:country:of) text(Benin) -text(Duitsland) text(is:located:in) text(पश्चिमी:यूरोप) -text(Alemania) text(was:a:neighboring:country:of) text(Denmark) -text(德國) text(neighbors:with) text(هولندا) -text(ألمانيا) text(was:a:neighbor:of) text(Poland) -text(जर्मनी) text(is:a:neighbor:of) text(لوكسمبورغ) -text(Germany) text(is:a:neighboring:state:to) text(Belgium) -text(Duitsland) text(was:a:neighboring:state:to) text(Switzerland) -text(Alemania) text(borders:with) text(Austria) -text(德國) text(borders) text(Frankrijk) -text(ألمانيا) text(is:butted:against) text(捷克) -text(Burkina:Faso) text(was:located:in) text(पश्चिमी:अफ्रीका) -text(Burkina:Faso) text(was:butted:against) text(Togo) -text(布吉納法索) text(was:adjacent:to) text(बेनिन) -text(बुर्किना:फासो) text(is:adjacent:to) text(النيجر) -text(بوركينا:فاسو) text(neighbors) text(Ghana) -text(Burkina:Faso) text(is:a:neighboring:country:of) text(مالي) -text(Burkina:Faso) text(was:a:neighboring:country:of) text(ساحل:العاج) -text(तंज़ानिया) text(can:be:found:in) text(شرق:إفريقيا) -text(Tanzania) text(neighbors:with) text(Uganda) -text(تنزانيا) text(was:a:neighbor:of) text(मोज़ाम्बीक) -text(Tanzania) text(is:a:neighbor:of) text(República:Democrática:del:Congo) -text(Tanzania) text(is:a:neighboring:state:to) text(Kenia) -text(坦桑尼亞) text(was:a:neighboring:state:to) text(Rwanda) -text(तंज़ानिया) text(borders:with) text(Zambia) -text(Tanzania) text(borders) text(مالاوي) -text(تنزانيا) text(is:butted:against) text(Burundi) -text(Noordelijke:Marianen) text(was:positioned:in) text(माइक्रोनीशिया) -text(北马里亚纳群岛) text(is:positioned:in) text(Oceanía) -text(Belize) text(was:sited:in) text(أمريكا:الوسطى) -text(伯利兹) text(is:sited:in) text(Americas) -text(بليز) text(was:butted:against) text(危地马拉) -text(Belice) text(was:adjacent:to) text(Mexico) -text(नॉर्वे) text(was:localized:in) text(أوروبا:الشمالية) -text(Norway) text(is:adjacent:to) text(Suecia) -text(挪威) text(neighbors) text(Finland) -text(النرويج) text(is:a:neighboring:country:of) text(俄罗斯) -text(科科斯(基林)群島) text(is:localized:in) text(nan) -text(Cocoseilanden) text(was:present:in) text(大洋洲) -text(Laos) text(is:present:in) text(东南亚) -text(लाओस) text(is:still:in) text(亞洲) -text(老撾) text(was:a:neighboring:country:of) text(中华人民共和国) -text(Laos) text(neighbors:with) text(Cambodja) -text(Laos) text(was:a:neighbor:of) text(緬甸) -text(لاوس) text(is:a:neighbor:of) text(Vietnam) -text(Laos) text(is:a:neighboring:state:to) text(थाईलैंड) -text(撒拉威阿拉伯民主共和國) text(was:still:in) text(北部非洲) -text(सहरावी:अरब:जनतांत्रिक:गणराज्य) text(was:currently:in) text(Afrika) -text(República:Árabe:Saharaui:Democrática) text(was:a:neighboring:state:to) text(अल्जीरिया) -text(Sahrawi:Arab:Democratic:Republic) text(borders:with) text(मॉरीतानिया) -text(الجمهورية:العربية:الصحراوية:الديمقراطية) text(borders) text(Marokko) -text(蘇利南) text(is:currently:in) text(南美洲) -text(Suriname) text(is:placed:in) text(美洲) -text(سورينام) text(is:butted:against) text(Brazilië) -text(सूरीनाम) text(was:butted:against) text(غويانا:الفرنسية) -text(Suriname) text(was:adjacent:to) text(गयाना) -text(Isla:de:Navidad) text(was:placed:in) text(Australië:en:Nieuw-Zeeland) -text(Christmaseiland) text(can:be:found:in) text(Oceanië) -text(Santo:Tomé:y:Príncipe) text(was:situated:in) text(وسط:إفريقيا) -text(圣多美和普林西比) text(is:situated:in) text(África) -text(Egypt) text(is:located:in) text(شمال:إفريقيا) -text(मिस्र) text(is:adjacent:to) text(利比亞) -text(Egipto) text(neighbors) text(以色列) -text(埃及) text(is:a:neighboring:country:of) text(السودان) -text(Bulgaria) text(was:located:in) text(Europa:Oriental) -text(Bulgarije) text(was:a:neighboring:country:of) text(North:Macedonia) -text(بلغاريا) text(neighbors:with) text(Turkije) -text(Bulgaria) text(was:a:neighbor:of) text(希腊) -text(保加利亚) text(is:a:neighbor:of) text(塞爾維亞) -text(बुल्गारिया) text(is:a:neighboring:state:to) text(Rumania) -text(Guinea) text(can:be:found:in) text(西非) -text(गिनी) text(was:positioned:in) text(अफ्रीका) -text(Guinee) text(was:a:neighboring:state:to) text(Guinea-Bissau) -text(几内亚) text(borders:with) text(سيراليون) -text(Guinea) text(borders) text(माली) -text(غينيا) text(is:butted:against) text(ليبيريا) -text(Guinea) text(was:butted:against) text(Senegal) -text(गिनी) text(was:adjacent:to) text(Ivory:Coast) -text(Spanje) text(is:positioned:in) text(Europa:del:Sur) -text(西班牙) text(is:adjacent:to) text(Morocco) -text(Spain) text(neighbors) text(Gibraltar) -text(स्पेन) text(is:a:neighboring:country:of) text(أندورا) -text(España) text(was:a:neighboring:country:of) text(فرنسا) -text(إسبانيا) text(neighbors:with) text(पुर्तगाल) -text(कोस्टा:रीका) text(was:sited:in) text(América:Central) -text(哥斯达黎加) text(is:sited:in) text(महाअमेरिका) -text(Costa:Rica) text(was:a:neighbor:of) text(Panama) -text(Costa:Rica) text(is:a:neighbor:of) text(Nicaragua) -text(馬耳他) text(was:localized:in) text(दक्षिणी:यूरोप) -text(Malta) text(is:localized:in) text(欧洲) -text(Portugal) text(was:present:in) text(南欧) -text(Portugal) text(is:present:in) text(Europa) -text(البرتغال) text(is:a:neighboring:state:to) text(Spanje) -text(Romania) text(is:still:in) text(Oost-Europa) -text(रोमानिया) text(was:still:in) text(यूरोप) -text(Roemenië) text(was:a:neighboring:state:to) text(Oekraïne) -text(رومانيا) text(borders:with) text(匈牙利) -text(羅馬尼亞) text(borders) text(Moldova) -text(Rumania) text(is:butted:against) text(Bulgaria) -text(Romania) text(was:butted:against) text(Servië) -text(圣马力诺) text(was:currently:in) text(Southern:Europe) -text(San:Marino) text(is:currently:in) text(أوروبا) -text(سان:مارينو) text(was:adjacent:to) text(इटली) -text(毛里塔尼亞) text(is:placed:in) text(West:Africa) -text(Mauritania) text(was:placed:in) text(إفريقيا) -text(موريتانيا) text(is:adjacent:to) text(الجزائر) -text(Mauritanië) text(neighbors) text(Mali) -text(Mauritania) text(is:a:neighboring:country:of) text(Sahrawi:Arabische:Democratische:Republiek) -text(मॉरीतानिया) text(was:a:neighboring:country:of) text(塞内加尔) -text(ترينيداد:وتوباغو) text(can:be:found:in) text(Caribbean) -text(Trinidad:en:Tobago) text(was:situated:in) text(Amerika) -text(Bahrein) text(is:situated:in) text(Asia:Occidental) -text(Baréin) text(is:located:in) text(آسيا) -text(Birmania) text(was:located:in) text(दक्षिण:पूर्व:एशिया) -text(Myanmar) text(neighbors:with) text(India) -text(म्यान्मार) text(was:a:neighbor:of) text(Bangladesh) -text(Myanmar) text(is:a:neighbor:of) text(चीनी:जनवादी:गणराज्य) -text(ميانمار) text(is:a:neighboring:state:to) text(लाओस) -text(緬甸) text(was:a:neighboring:state:to) text(Thailand) -text(伊拉克) text(can:be:found:in) text(West:Asia) -text(العراق) text(borders:with) text(Turkey) -text(इराक) text(borders) text(Saudi:Arabia) -text(Iraq) text(is:butted:against) text(إيران) -text(Irak) text(was:butted:against) text(Jordan) -text(Irak) text(was:adjacent:to) text(Kuwait) -text(伊拉克) text(is:adjacent:to) text(Siria) -text(South:Georgia:and:the:South:Sandwich:Islands) text(was:positioned:in) text(América:del:Sur) -text(Islas:Georgias:del:Sur:y:Sandwich:del:Sur) text(is:positioned:in) text(América) -text(آيسلندا) text(was:sited:in) text(北歐) -text(IJsland) text(is:sited:in) text(Europe) -text(刚果民主共和国) text(was:localized:in) text(África:Central) -text(جمهورية:الكونغو:الديمقراطية) text(is:localized:in) text(非洲) -text(कांगो:लोकतान्त्रिक:गणराज्य) text(neighbors) text(Oeganda) -text(Congo-Kinshasa) text(is:a:neighboring:country:of) text(Tanzania) -text(Democratic:Republic:of:the:Congo) text(was:a:neighboring:country:of) text(Republic:of:the:Congo) -text(República:Democrática:del:Congo) text(neighbors:with) text(मध्य:अफ़्रीकी:गणराज्य) -text(刚果民主共和国) text(was:a:neighbor:of) text(أنغولا) -text(جمهورية:الكونغو:الديمقراطية) text(is:a:neighbor:of) text(Rwanda) -text(कांगो:लोकतान्त्रिक:गणराज्य) text(is:a:neighboring:state:to) text(Sudán:del:Sur) -text(Congo-Kinshasa) text(was:a:neighboring:state:to) text(زامبيا) -text(Democratic:Republic:of:the:Congo) text(borders:with) text(Burundi) -text(Seychelles) text(was:present:in) text(Oost-Afrika) -text(सेशेल्स) text(is:present:in) text(Africa) -text(किर्गिज़स्तान) text(is:still:in) text(Asia:Central) -text(Kirgizië) text(borders) text(República:Popular:China) -text(Kirguistán) text(is:butted:against) text(Kazachstan) -text(吉尔吉斯斯坦) text(was:butted:against) text(ताजीकिस्तान) -text(Kyrgyzstan) text(was:adjacent:to) text(乌兹别克斯坦) -text(波札那) text(was:still:in) text(Zuidelijk:Afrika) -text(बोत्सवाना) text(was:currently:in) text(Afrika) -text(Botsuana) text(is:adjacent:to) text(Zimbabue) -text(بوتسوانا) text(neighbors) text(नामीबिया) -text(Botswana) text(is:a:neighboring:country:of) text(Zambia) -text(Botswana) text(was:a:neighboring:country:of) text(South:Africa) -text(फ़रो:द्वीपसमूह) text(is:currently:in) text(Northern:Europe) -text(Faroe:Islands) text(is:placed:in) text(Europa) -text(Jamaica) text(was:placed:in) text(الكاريبي) -text(جامايكا) text(can:be:found:in) text(أمريكتان) -text(美屬薩摩亞) text(was:situated:in) text(بولنيزيا) -text(American:Samoa) text(is:situated:in) text(Oceania) -text(ليسوتو) text(is:located:in) text(África:austral) -text(Lesotho) text(was:located:in) text(África) -text(लेसोथो) text(neighbors:with) text(Sudáfrica) -text(سريلانكا) text(can:be:found:in) text(दक्षिण:एशिया) -text(Sri:Lanka) text(was:a:neighbor:of) text(भारत) -text(België) text(was:positioned:in) text(Western:Europe) -text(比利時) text(is:positioned:in) text(欧洲) -text(बेल्जियम) text(is:a:neighbor:of) text(जर्मनी) -text(Bélgica) text(is:a:neighboring:state:to) text(लक्ज़मबर्ग) -text(بلجيكا) text(was:a:neighboring:state:to) text(Francia) -text(Belgium) text(borders:with) text(Netherlands) -text(Catar) text(was:sited:in) text(غرب:آسيا) -text(卡塔尔) text(is:sited:in) text(एशिया) -text(Qatar) text(borders) text(सउदी:अरब) -text(Solomon:Islands) text(was:localized:in) text(Melanesië) -text(सोलोमन:द्वीपसमूह) text(is:localized:in) text(ओशिआनिया) -text(सीरिया) text(was:present:in) text(पश्चिमी:एशिया) -text(敘利亞) text(is:present:in) text(Asia) -text(Syrië) text(is:butted:against) text(Israël) -text(سوريا) text(was:butted:against) text(تركيا) -text(Syria) text(was:adjacent:to) text(Jordanië) -text(Siria) text(is:adjacent:to) text(लेबनॉन) -text(सीरिया) text(neighbors) text(العراق) -text(印度) text(is:still:in) text(Asia:del:Sur) -text(India) text(was:still:in) text(Azië) -text(India) text(is:a:neighboring:country:of) text(阿富汗) -text(الهند) text(was:a:neighboring:country:of) text(Bután) -text(India) text(neighbors:with) text(Bangladesh) -text(भारत) text(was:a:neighbor:of) text(الصين) -text(印度) text(is:a:neighbor:of) text(Nepal) -text(India) text(is:a:neighboring:state:to) text(Birmania) -text(India) text(was:a:neighboring:state:to) text(Pakistán) -text(الهند) text(borders:with) text(斯里蘭卡) -text(मोरक्को) text(was:currently:in) text(उत्तर:अफ़्रीका) -text(Marruecos) text(borders) text(阿爾及利亞) -text(المغرب) text(is:butted:against) text(西班牙) -text(摩洛哥) text(was:butted:against) text(撒拉威阿拉伯民主共和國) -text(Kenya) text(is:currently:in) text(पूर्वी:अफ्रीका) -text(肯尼亚) text(is:placed:in) text(अफ्रीका) -text(كينيا) text(was:adjacent:to) text(युगाण्डा) -text(Kenia) text(is:adjacent:to) text(Tanzania) -text(कीनिया) text(neighbors) text(Somalia) -text(Kenia) text(is:a:neighboring:country:of) text(جنوب:السودان) -text(Kenya) text(was:a:neighboring:country:of) text(إثيوبيا) -text(दक्षिण:सूडान) text(was:placed:in) text(Centraal-Afrika) -text(Zuid-Soedan) text(can:be:found:in) text(إفريقيا) -text(南蘇丹) text(neighbors:with) text(Uganda) -text(South:Sudan) text(was:a:neighbor:of) text(República:Democrática:del:Congo) -text(Sudán:del:Sur) text(is:a:neighbor:of) text(肯尼亚) -text(جنوب:السودان) text(is:a:neighboring:state:to) text(中非共和國) -text(दक्षिण:सूडान) text(was:a:neighboring:state:to) text(सूडान) -text(Zuid-Soedan) text(borders:with) text(Ethiopië) -text(Ghana) text(was:situated:in) text(África:Occidental) -text(घाना) text(borders) text(Burkina:Faso) -text(Ghana) text(is:butted:against) text(Costa:de:Marfil) -text(迦納) text(was:butted:against) text(टोगो) -text(塔吉克斯坦) text(is:situated:in) text(中亚) -text(Tadzjikistan) text(is:located:in) text(Asia) -text(Tajikistan) text(was:adjacent:to) text(People's:Republic:of:China) -text(Tayikistán) text(is:adjacent:to) text(قرغيزستان) -text(طاجيكستان) text(neighbors) text(Afganistán) -text(ताजीकिस्तान) text(is:a:neighboring:country:of) text(Uzbekistan) -text(馬紹爾群島) text(was:located:in) text(ميكرونيسيا) -text(Islas:Marshall) text(can:be:found:in) text(أوقيانوسيا) -text(कैमरुन) text(was:positioned:in) text(中部非洲) -text(Camerún) text(is:positioned:in) text(非洲) -text(Cameroon) text(was:a:neighboring:country:of) text(Chad) -text(الكاميرون) text(neighbors:with) text(جمهورية:الكونغو) -text(喀麦隆) text(was:a:neighbor:of) text(Gabón) -text(Kameroen) text(is:a:neighbor:of) text(भूमध्यरेखीय:गिनी) -text(कैमरुन) text(is:a:neighboring:state:to) text(Central:African:Republic) -text(Camerún) text(was:a:neighboring:state:to) text(नाइजीरिया) -text(ناورو) text(was:sited:in) text(Micronesia) -text(Nauru) text(is:sited:in) text(Oceanía) -text(تايلاند) text(was:localized:in) text(Southeast:Asia) -text(Thailand) text(borders:with) text(Cambodia) -text(Tailandia) text(borders) text(Myanmar) -text(泰國) text(is:butted:against) text(老撾) -text(थाईलैंड) text(was:butted:against) text(馬來西亞) -text(苏丹) text(is:localized:in) text(North:Africa) -text(Sudán) text(was:adjacent:to) text(Tsjaad) -text(Sudan) text(is:adjacent:to) text(Libia) -text(Soedan) text(neighbors) text(南蘇丹) -text(السودان) text(is:a:neighboring:country:of) text(厄立特里亞) -text(सूडान) text(was:a:neighboring:country:of) text(جمهورية:إفريقيا:الوسطى) -text(苏丹) text(neighbors:with) text(Egypte) -text(Sudán) text(was:a:neighbor:of) text(इथियोपिया) -text(تشاد) text(was:present:in) text(Central:Africa) -text(चाड) text(is:present:in) text(Africa) -text(乍得) text(is:a:neighbor:of) text(ليبيا) -text(Chad) text(is:a:neighboring:state:to) text(Níger) -text(Chad) text(was:a:neighboring:state:to) text(South:Sudan) -text(Tsjaad) text(borders:with) text(Cameroon) -text(تشاد) text(borders) text(República:Centroafricana) -text(चाड) text(is:butted:against) text(Nigeria) -text(Vanuatu) text(is:still:in) text(Melanesia) -text(فانواتو) text(was:still:in) text(大洋洲) -text(Cabo:Verde) text(was:currently:in) text(غرب:إفريقيا) -text(佛得角) text(is:currently:in) text(Afrika) -text(Falklandeilanden) text(is:placed:in) text(South:America) -text(फ़ॉकलैंड:द्वीपसमूह) text(was:placed:in) text(Americas) -text(Liberia) text(can:be:found:in) text(West-Afrika) -text(Liberia) text(was:situated:in) text(África) -text(利比里亞) text(was:butted:against) text(कोत:दिव्वार) -text(Liberia) text(was:adjacent:to) text(Sierra:Leona) -text(लाइबेरिया) text(is:adjacent:to) text(Guinee) -text(柬埔寨) text(is:situated:in) text(Zuidoost-Azië) -text(كمبوديا) text(is:located:in) text(亞洲) -text(कम्बोडिया) text(neighbors) text(वियतनाम) -text(Camboya) text(is:a:neighboring:country:of) text(Thailand) -text(Cambodja) text(was:a:neighboring:country:of) text(Laos) -text(Zimbabwe) text(was:located:in) text(东部非洲) -text(زيمبابوي) text(neighbors:with) text(ज़ाम्बिया) -text(津巴布韦) text(was:a:neighbor:of) text(Zuid-Afrika) -text(Zimbabwe) text(is:a:neighbor:of) text(波札那) -text(ज़िम्बाब्वे) text(is:a:neighboring:state:to) text(莫桑比克) -text(Comoren) text(can:be:found:in) text(East:Africa) -text(Comoros) text(was:positioned:in) text(अफ्रीका) -text(غوام) text(is:positioned:in) text(Micronesia) -text(गुआम) text(was:sited:in) text(Oceanië) -text(جزر:البهاما) text(is:sited:in) text(加勒比地区) -text(Bahama's) text(was:localized:in) text(美洲) -text(Lebanon) text(is:localized:in) text(西亚) -text(Líbano) text(was:present:in) text(آسيا) -text(لبنان) text(was:a:neighboring:state:to) text(इज़राइल) -text(Libanon) text(borders:with) text(敘利亞) -text(圣马丁岛) text(is:present:in) text(Caraïben) -text(San:Martín) text(is:still:in) text(महाअमेरिका) -text(سانت:مارتن) text(borders) text(Sint-Maarten) -text(埃塞俄比亚) text(was:still:in) text(África:Oriental) -text(Etiopía) text(was:currently:in) text(إفريقيا) -text(Ethiopia) text(is:butted:against) text(सोमालिया) -text(إثيوبيا) text(was:butted:against) text(كينيا) -text(Ethiopië) text(was:adjacent:to) text(Eritrea) -text(इथियोपिया) text(is:adjacent:to) text(Sudán:del:Sur) -text(埃塞俄比亚) text(neighbors) text(吉布提) -text(Etiopía) text(is:a:neighboring:country:of) text(Sudan) -text(संयुक्त:राज्य:वर्जिन:द्वीपसमूह) text(is:currently:in) text(कैरिबिया) -text(United:States:Virgin:Islands) text(is:placed:in) text(Amerika) -text(गिनी-बिसाऊ) text(was:placed:in) text(पश्चिमी:अफ्रीका) -text(Guinee-Bissau) text(can:be:found:in) text(非洲) -text(畿內亞比紹) text(was:a:neighboring:country:of) text(几内亚) -text(غينيا:بيساو) text(neighbors:with) text(السنغال) -text(लीबिया) text(was:situated:in) text(Noord-Afrika) -text(Libië) text(is:situated:in) text(Africa) -text(Libya) text(was:a:neighbor:of) text(乍得) -text(利比亞) text(is:a:neighbor:of) text(Túnez) -text(Libia) text(is:a:neighboring:state:to) text(Niger) -text(ليبيا) text(was:a:neighboring:state:to) text(Algerije) -text(लीबिया) text(borders:with) text(مصر) -text(Libië) text(borders) text(Soedan) -text(भूटान) text(is:located:in) text(Zuid-Azië) -text(بوتان) text(was:located:in) text(एशिया) -text(Bhutan) text(is:butted:against) text(Volksrepubliek:China) -text(不丹) text(was:butted:against) text(India) -text(澳門) text(can:be:found:in) text(Asia:Oriental) -text(Macau) text(was:positioned:in) text(Asia) -text(Macau) text(was:adjacent:to) text(中华人民共和国) -text(بولنيزيا:الفرنسية) text(is:positioned:in) text(पोलीनेशिया) -text(Polinesia:Francesa) text(was:sited:in) text(Oceania) -text(الصومال) text(is:sited:in) text(شرق:إفريقيا) -text(Somalia) text(was:localized:in) text(Afrika) -text(Somalië) text(is:adjacent:to) text(Djibouti) -text(索馬里) text(neighbors) text(Kenia) -text(Somalia) text(is:a:neighboring:country:of) text(Ethiopia) -text(Saint-Barthélemy) text(is:localized:in) text(Caribe) -text(سان:بارتيلمي) text(was:present:in) text(América) -text(Rusia) text(is:present:in) text(أوروبا:الشرقية) -text(Russia) text(is:still:in) text(Europa) -text(Rusland) text(was:a:neighboring:country:of) text(أوكرانيا) -text(रूस) text(neighbors:with) text(بيلاروس) -text(روسيا) text(was:a:neighbor:of) text(चीनी:जनवादी:गणराज्य) -text(俄罗斯) text(is:a:neighbor:of) text(哈萨克斯坦) -text(Rusia) text(is:a:neighboring:state:to) text(Noruega) -text(Russia) text(was:a:neighboring:state:to) text(بولندا) -text(Rusland) text(borders:with) text(Azerbaiyán) -text(रूस) text(borders) text(Litouwen) -text(روسيا) text(is:butted:against) text(إستونيا) -text(俄罗斯) text(was:butted:against) text(Corea:del:Norte) -text(Rusia) text(was:adjacent:to) text(芬蘭) -text(Russia) text(is:adjacent:to) text(Mongolië) -text(Rusland) text(neighbors) text(لاتفيا) -text(रूस) text(is:a:neighboring:country:of) text(Georgia) -text(新西兰) text(was:still:in) text(nan) -text(न्यूज़ीलैंड) text(was:currently:in) text(ओशिआनिया) -text(पनामा) text(is:currently:in) text(中美洲) -text(بنما) text(is:placed:in) text(أمريكتان) -text(Panamá) text(was:a:neighboring:country:of) text(كوستاريكا) -text(巴拿馬) text(neighbors:with) text(كولومبيا) -text(بابوا:غينيا:الجديدة) text(was:placed:in) text(Melanesia) -text(Papoea-Nieuw-Guinea) text(can:be:found:in) text(أوقيانوسيا) -text(巴布亚新几内亚) text(was:a:neighbor:of) text(Indonesia) -text(North:Korea) text(was:situated:in) text(東亞) -text(朝鮮民主主義人民共和國) text(is:a:neighbor:of) text(República:Popular:China) -text(उत्तर:कोरिया) text(is:a:neighboring:state:to) text(كوريا:الجنوبية) -text(Noord-Korea) text(was:a:neighboring:state:to) text(روسيا) -text(Letland) text(is:situated:in) text(Europa:del:Norte) -text(लातविया) text(is:located:in) text(यूरोप) -text(Latvia) text(borders:with) text(लिथुआनिया) -text(Letonia) text(borders) text(बेलारूस) -text(拉脫維亞) text(is:butted:against) text(俄罗斯) -text(لاتفيا) text(was:butted:against) text(愛沙尼亞) -text(Oman) text(was:located:in) text(Zuidwest-Azië) -text(Omán) text(can:be:found:in) text(Azië) -text(Oman) text(was:adjacent:to) text(Arabia:Saudí) -text(ओमान) text(is:adjacent:to) text(اليمن) -text(سلطنة:عمان) text(neighbors) text(Emiratos:Árabes:Unidos) -text(Saint-Pierre:en:Miquelon) text(was:positioned:in) text(América:del:Norte) -text(سان:بيير:وميكلون) text(is:positioned:in) text(Americas) -text(Martinique) text(was:sited:in) text(Caribbean) -text(مارتينيك) text(is:sited:in) text(美洲) -text(United:Kingdom) text(was:localized:in) text(Noord-Europa) -text(英国) text(is:localized:in) text(أوروبا) -text(यूनाइटेड:किंगडम) text(is:a:neighboring:country:of) text(英国) -text(إسرائيل) text(was:present:in) text(Asia:Occidental) -text(Israel) text(is:present:in) text(Asia) -text(Israel) text(was:a:neighboring:country:of) text(黎巴嫩) -text(以色列) text(neighbors:with) text(Egypt) -text(Israël) text(was:a:neighbor:of) text(जॉर्डन) -text(इज़राइल) text(is:a:neighbor:of) text(Syrië) -text(Jersey) text(is:still:in) text(उत्तरी:यूरोप) -text(جيرزي) text(was:still:in) text(Europe) -text(皮特凯恩群岛) text(was:currently:in) text(Polynesia) -text(Islas:Pitcairn) text(is:currently:in) text(Oceanía) -text(多哥) text(is:placed:in) text(西非) -text(Togo) text(was:placed:in) text(África) -text(Togo) text(is:a:neighboring:state:to) text(布吉納法索) -text(توغو) text(was:a:neighboring:state:to) text(غانا) -text(Togo) text(borders:with) text(貝南) -text(吉里巴斯) text(can:be:found:in) text(Micronesië) -text(Kiribati) text(was:situated:in) text(大洋洲) -text(Irán) text(is:situated:in) text(South:Asia) -text(Iran) text(is:located:in) text(亞洲) -text(ईरान) text(borders) text(Afghanistan) -text(Iran) text(is:butted:against) text(土庫曼斯坦) -text(伊朗) text(was:butted:against) text(तुर्की) -text(إيران) text(was:adjacent:to) text(Armenia) -text(Irán) text(is:adjacent:to) text(Azerbaijan) -text(Iran) text(neighbors) text(巴基斯坦) -text(ईरान) text(is:a:neighboring:country:of) text(इराक) -text(法屬聖馬丁) text(was:located:in) text(الكاريبي) -text(Saint-Martin) text(can:be:found:in) text(महाअमेरिका) -text(تجمع:سان:مارتين) text(was:a:neighboring:country:of) text(Sint:Maarten) -text(Dominican:Republic) text(was:positioned:in) text(加勒比地区) -text(جمهورية:الدومينيكان) text(is:positioned:in) text(Amerika) -text(República:Dominicana) text(neighbors:with) text(हैती) -text(Dinamarca) text(was:sited:in) text(أوروبا:الشمالية) -text(Denemarken) text(was:a:neighbor:of) text(Germany) -text(Bermuda) text(is:sited:in) text(उत्तर:अमेरिका) -text(बरमूडा) text(was:localized:in) text(América) -text(Chili) text(is:localized:in) text(أمريكا:الجنوبية) -text(Chile) text(is:a:neighbor:of) text(Argentinië) -text(تشيلي) text(is:a:neighboring:state:to) text(Bolivia) -text(Chile) text(was:a:neighboring:state:to) text(Perú) -text(科索沃) text(was:present:in) text(东欧) -text(Kosovo) text(is:present:in) text(Europa) -text(कोसोवो:गणराज्य) text(borders:with) text(Serbia) -text(Kosovo) text(borders) text(अल्बानिया) -text(كوسوفو) text(is:butted:against) text(مقدونيا:الشمالية) -text(Kosovo) text(was:butted:against) text(मॉन्टेनीग्रो) -text(सन्त:किट्स:और:नेविस) text(is:still:in) text(Caraïben) -text(Saint:Kitts:and:Nevis) text(was:still:in) text(أمريكتان) -text(Eritrea) text(was:currently:in) text(Oost-Afrika) -text(Eritrea) text(was:adjacent:to) text(Yibuti) -text(इरित्रिया) text(is:adjacent:to) text(السودان) -text(إرتريا) text(neighbors) text(إثيوبيا) -text(赤道几内亚) text(is:currently:in) text(मध्य:अफ्रीका) -text(غينيا:الاستوائية) text(is:placed:in) text(अफ्रीका) -text(Equatorial:Guinea) text(is:a:neighboring:country:of) text(Gabon) -text(Equatoriaal-Guinea) text(was:a:neighboring:country:of) text(الكاميرون) -text(Niger) text(was:placed:in) text(West:Africa) -text(尼日尔) text(can:be:found:in) text(إفريقيا) -text(नाइजर) text(neighbors:with) text(Chad) -text(النيجر) text(was:a:neighbor:of) text(Libya) -text(Níger) text(is:a:neighbor:of) text(बुर्किना:फासो) -text(Niger) text(is:a:neighboring:state:to) text(Benin) -text(Niger) text(was:a:neighboring:state:to) text(Mali) -text(尼日尔) text(borders:with) text(Algeria) -text(नाइजर) text(borders) text(نيجيريا) -text(Anguilla) text(was:situated:in) text(कैरिबिया) -text(安圭拉) text(is:situated:in) text(Americas) -text(रवाण्डा) text(is:located:in) text(पूर्वी:अफ्रीका) -text(رواندا) text(was:located:in) text(非洲) -text(Ruanda) text(is:butted:against) text(蒲隆地) -text(卢旺达) text(was:butted:against) text(坦桑尼亞) -text(Rwanda) text(was:adjacent:to) text(烏干達) -text(Rwanda) text(is:adjacent:to) text(刚果民主共和国) -text(الإمارات:العربية:المتحدة) text(can:be:found:in) text(West:Asia) -text(阿拉伯联合酋长国) text(was:positioned:in) text(آسيا) -text(संयुक्त:अरब:अमीरात) text(neighbors) text(阿曼) -text(Verenigde:Arabische:Emiraten) text(is:a:neighboring:country:of) text(Saoedi-Arabië) -text(Estonia) text(is:positioned:in) text(北歐) -text(एस्टोनिया) text(was:sited:in) text(欧洲) -text(Estonia) text(was:a:neighboring:country:of) text(Letland) -text(Estland) text(neighbors:with) text(Rusia) -text(Griekenland) text(is:sited:in) text(أوروبا:الجنوبية) -text(Grecia) text(was:localized:in) text(Europa) -text(اليونان) text(was:a:neighbor:of) text(Bulgarije) -text(यूनान) text(is:a:neighbor:of) text(ألبانيا) -text(Greece) text(is:a:neighboring:state:to) text(उत्तर:मैसिडोनिया) -text(希腊) text(was:a:neighboring:state:to) text(Turquía) -text(Senegal) text(is:localized:in) text(África:Occidental) -text(Senegal) text(was:present:in) text(Africa) -text(सेनेगल) text(borders:with) text(Guinea-Bisáu) -text(Senegal) text(borders) text(毛里塔尼亞) -text(塞内加尔) text(is:butted:against) text(马里) -text(السنغال) text(was:butted:against) text(غامبيا) -text(Senegal) text(was:adjacent:to) text(Guinea) -text(瓜德羅普) text(is:present:in) text(Caribe) -text(Guadalupe) text(is:still:in) text(美洲) -text(Mónaco) text(was:still:in) text(أوروبا:الغربية) -text(摩納哥) text(is:adjacent:to) text(法國) -text(جيبوتي) text(was:currently:in) text(东部非洲) -text(Djibouti) text(neighbors) text(厄立特里亞) -text(जिबूती) text(is:a:neighboring:country:of) text(सोमालिया) -text(吉布提) text(was:a:neighboring:country:of) text(Ethiopië) -text(Indonesia) text(is:currently:in) text(Sudeste:Asiático) -text(इंडोनेशिया) text(neighbors:with) text(Papua:New:Guinea) -text(إندونيسيا) text(was:a:neighbor:of) text(Timor:Oriental) -text(Indonesië) text(is:a:neighbor:of) text(मलेशिया) -text(British:Virgin:Islands) text(is:placed:in) text(Caribbean) -text(جزر:عذراء:بريطانية) text(was:placed:in) text(महाअमेरिका) -text(कुक:द्वीपसमूह) text(can:be:found:in) text(Polynesië) -text(Cookeilanden) text(was:situated:in) text(Oceanië) -text(أوغندا) text(is:situated:in) text(East:Africa) -text(Uganda) text(is:located:in) text(Afrika) -text(Oeganda) text(is:a:neighboring:state:to) text(तंज़ानिया) -text(युगाण्डा) text(was:a:neighboring:state:to) text(جمهورية:الكونغو:الديمقراطية) -text(Uganda) text(borders:with) text(कीनिया) -text(烏干達) text(borders) text(جنوب:السودان) -text(أوغندا) text(is:butted:against) text(रवाण्डा) -text(Noord-Macedonië) text(was:located:in) text(Zuid-Europa) -text(北马其顿) text(can:be:found:in) text(यूरोप) -text(Macedonia:del:Norte) text(was:butted:against) text(科索沃) -text(North:Macedonia) text(was:adjacent:to) text(Griekenland) -text(مقدونيا:الشمالية) text(is:adjacent:to) text(Albanië) -text(उत्तर:मैसिडोनिया) text(neighbors) text(सर्बिया) -text(Noord-Macedonië) text(is:a:neighboring:country:of) text(بلغاريا) -text(ट्यूनिशिया) text(was:positioned:in) text(Norte:de:África) -text(突尼西亞) text(is:positioned:in) text(África) -text(Tunesië) text(was:a:neighboring:country:of) text(利比亞) -text(Tunisia) text(neighbors:with) text(Argelia) -text(Ecuador) text(was:sited:in) text(दक्षिण:अमेरिका) -text(Ecuador) text(was:a:neighbor:of) text(पेरू) -text(厄瓜多尔) text(is:a:neighbor:of) text(Colombia) -text(Brazil) text(is:sited:in) text(Zuid-Amerika) -text(ब्राज़ील) text(was:localized:in) text(Amerika) -text(البرازيل) text(is:a:neighboring:state:to) text(玻利維亞) -text(巴西) text(was:a:neighboring:state:to) text(कोलम्बिया) -text(Brasil) text(borders:with) text(Paraguay) -text(Brazilië) text(borders) text(Uruguay) -text(Brazil) text(is:butted:against) text(Frans-Guyana) -text(ब्राज़ील) text(was:butted:against) text(Surinam) -text(البرازيل) text(was:adjacent:to) text(委內瑞拉) -text(巴西) text(is:adjacent:to) text(अर्जेण्टीना) -text(Brasil) text(neighbors) text(غيانا) -text(Brazilië) text(is:a:neighboring:country:of) text(Peru) -text(باراغواي) text(is:localized:in) text(南美洲) -text(巴拉圭) text(was:present:in) text(América) -text(Paraguay) text(was:a:neighboring:country:of) text(الأرجنتين) -text(पैराग्वे) text(neighbors:with) text(Brazil) -text(Paraguay) text(was:a:neighbor:of) text(बोलिविया) -text(Finland) text(is:present:in) text(Northern:Europe) -text(फ़िनलैण्ड) text(is:still:in) text(أوروبا) -text(فنلندا) text(is:a:neighbor:of) text(Noorwegen) -text(Finlandia) text(is:a:neighboring:state:to) text(स्वीडन) -text(Finland) text(was:a:neighboring:state:to) text(Russia) -text(約旦) text(was:still:in) text(غرب:آسيا) -text(Jordania) text(borders:with) text(السعودية) -text(الأردن) text(borders) text(إسرائيل) -text(Jordan) text(is:butted:against) text(Iraq) -text(Jordanië) text(was:butted:against) text(سوريا) -text(पूर्वी:तिमोर) text(was:currently:in) text(جنوب:شرق:آسيا) -text(Timor-Leste) text(was:adjacent:to) text(印度尼西亚) -text(Montenegro) text(is:currently:in) text(Europa:del:Sur) -text(Montenegro) text(is:placed:in) text(Europe) -text(الجبل:الأسود) text(is:adjacent:to) text(Kosovo) -text(Montenegro) text(neighbors) text(बोस्निया:और:हर्ज़ेगोविना) -text(蒙特內哥羅) text(is:a:neighboring:country:of) text(Kroatië) -text(मॉन्टेनीग्रो) text(was:a:neighboring:country:of) text(صربيا) -text(Montenegro) text(neighbors:with) text(阿爾巴尼亞) -text(秘鲁) text(was:placed:in) text(América:del:Sur) -text(بيرو) text(can:be:found:in) text(أمريكتان) -text(Peru) text(was:a:neighbor:of) text(Ecuador) -text(Perú) text(is:a:neighbor:of) text(بوليفيا) -text(पेरू) text(is:a:neighboring:state:to) text(चिली) -text(Peru) text(was:a:neighboring:state:to) text(ब्राज़ील) -text(秘鲁) text(borders:with) text(哥伦比亚) -text(मॉण्टसेराट) text(was:situated:in) text(الكاريبي) -text(蒙塞拉特島) text(is:situated:in) text(Americas) -text(烏克蘭) text(is:located:in) text(Eastern:Europe) -text(Ucrania) text(was:located:in) text(Europa) -text(Ukraine) text(borders) text(Slovakia) -text(युक्रेन) text(is:butted:against) text(白俄羅斯) -text(Oekraïne) text(was:butted:against) text(Polonia) -text(أوكرانيا) text(was:adjacent:to) text(Rusland) -text(烏克蘭) text(is:adjacent:to) text(हंगरी) -text(Ucrania) text(neighbors) text(摩爾多瓦) -text(Ukraine) text(is:a:neighboring:country:of) text(रोमानिया) -text(डोमिनिका) text(can:be:found:in) text(加勒比地区) -text(Dominica) text(was:positioned:in) text(美洲) -text(Turkmenistan) text(is:positioned:in) text(Centraal-Azië) -text(Turkmenistan) text(was:a:neighboring:country:of) text(كازاخستان) -text(Turkmenistán) text(neighbors:with) text(अफ़्ग़ानिस्तान) -text(تركمانستان) text(was:a:neighbor:of) text(أوزبكستان) -text(तुर्कमेनिस्तान) text(is:a:neighbor:of) text(Iran) -text(غيرنزي) text(was:sited:in) text(Europa:del:Norte) -text(Guernsey) text(is:sited:in) text(欧洲) -text(直布羅陀) text(was:localized:in) text(दक्षिणी:यूरोप) -text(जिब्राल्टर) text(is:localized:in) text(Europa) -text(Gibraltar) text(is:a:neighboring:state:to) text(Spain) -text(स्विट्ज़रलैण्ड) text(was:present:in) text(West-Europa) -text(瑞士) text(is:present:in) text(यूरोप) -text(Zwitserland) text(was:a:neighboring:state:to) text(Duitsland) -text(سويسرا) text(borders:with) text(إيطاليا) -text(Suiza) text(borders) text(النمسا) -text(Switzerland) text(is:butted:against) text(फ़्रान्स) -text(स्विट्ज़रलैण्ड) text(was:butted:against) text(列支敦斯登) -text(ऑस्ट्रिया) text(is:still:in) text(西欧) -text(Oostenrijk) text(was:still:in) text(أوروبا) -text(Austria) text(was:adjacent:to) text(Alemania) -text(奧地利) text(is:adjacent:to) text(斯洛伐克) -text(Austria) text(neighbors) text(स्लोवेनिया) -text(النمسا) text(is:a:neighboring:country:of) text(Italy) -text(ऑस्ट्रिया) text(was:a:neighboring:country:of) text(瑞士) -text(Oostenrijk) text(neighbors:with) text(Hongarije) -text(Austria) text(was:a:neighbor:of) text(Liechtenstein) -text(奧地利) text(is:a:neighbor:of) text(Czech:Republic) -text(Hungría) text(was:currently:in) text(पूर्वी:यूरोप) -text(المجر) text(is:a:neighboring:state:to) text(युक्रेन) -text(Hungary) text(was:a:neighboring:state:to) text(سلوفاكيا) -text(匈牙利) text(borders:with) text(Eslovenia) -text(हंगरी) text(borders) text(Croatia) -text(Hongarije) text(is:butted:against) text(Austria) -text(Hungría) text(was:butted:against) text(Serbia) -text(المجر) text(was:adjacent:to) text(Roemenië) -text(मलावी) text(is:currently:in) text(África:Oriental) -text(Malawi) text(is:placed:in) text(अफ्रीका) -text(馬拉威) text(is:adjacent:to) text(贊比亞) -text(Malaui) text(neighbors) text(Tanzania) -text(Malawi) text(is:a:neighboring:country:of) text(Mozambique) -text(香港) text(was:placed:in) text(East:Asia) -text(Hong:Kong) text(was:a:neighboring:country:of) text(الصين) -text(Liechtenstein) text(can:be:found:in) text(Europa:Occidental) -text(Liechtenstein) text(was:situated:in) text(Europe) -text(ليختنشتاين) text(neighbors:with) text(Zwitserland) -text(लिक्टेन्स्टाइन) text(was:a:neighbor:of) text(النمسا) -text(Barbados) text(is:situated:in) text(Caraïben) -text(Barbados) text(is:located:in) text(महाअमेरिका) -text(格鲁吉亚) text(was:located:in) text(पश्चिमी:एशिया) -text(Georgië) text(can:be:found:in) text(एशिया) -text(Georgia) text(is:a:neighbor:of) text(Armenië) -text(جورجيا) text(is:a:neighboring:state:to) text(Azerbeidzjan) -text(जॉर्जिया) text(was:a:neighboring:state:to) text(रूस) -text(Georgia) text(borders:with) text(土耳其) -text(Albania) text(was:positioned:in) text(南欧) -text(Albania) text(is:positioned:in) text(Europa) -text(अल्बानिया) text(borders) text(Montenegro) -text(ألبانيا) text(is:butted:against) text(北马其顿) -text(Albanië) text(was:butted:against) text(कोसोवो:गणराज्य) -text(阿爾巴尼亞) text(was:adjacent:to) text(Grecia) -text(科威特) text(was:sited:in) text(西亚) -text(الكويت) text(is:sited:in) text(Asia) -text(Koeweit) text(is:adjacent:to) text(沙特阿拉伯) -text(Kuwait) text(neighbors) text(Irak) -text(جنوب:إفريقيا) text(was:localized:in) text(إفريقيا:الجنوبية) -text(दक्षिण:अफ़्रीका) text(is:localized:in) text(إفريقيا) -text(南非) text(is:a:neighboring:country:of) text(Mozambique) -text(South:Africa) text(was:a:neighboring:country:of) text(बोत्सवाना) -text(Sudáfrica) text(neighbors:with) text(إسواتيني) -text(Zuid-Afrika) text(was:a:neighbor:of) text(Zimbabue) -text(جنوب:إفريقيا) text(is:a:neighbor:of) text(Namibia) -text(दक्षिण:अफ़्रीका) text(is:a:neighboring:state:to) text(Lesoto) -text(Haïti) text(was:present:in) text(कैरिबिया) -text(Haití) text(is:present:in) text(Amerika) -text(海地) text(was:a:neighboring:state:to) text(डोमिनिकन:गणराज्य) -text(أفغانستان) text(is:still:in) text(جنوب:آسيا) -text(Afghanistan) text(was:still:in) text(Azië) -text(阿富汗) text(borders:with) text(土庫曼斯坦) -text(Afganistán) text(borders) text(People's:Republic:of:China) -text(Afghanistan) text(is:butted:against) text(塔吉克斯坦) -text(अफ़्ग़ानिस्तान) text(was:butted:against) text(Oezbekistan) -text(أفغانستان) text(was:adjacent:to) text(伊朗) -text(Afghanistan) text(is:adjacent:to) text(باكستان) -text(سنغافورة) text(was:currently:in) text(东南亚) -text(新加坡) text(is:currently:in) text(Asia) -text(بنين) text(is:placed:in) text(غرب:إفريقيا) -text(Benín) text(was:placed:in) text(非洲) -text(Benin) text(neighbors) text(النيجر) -text(बेनिन) text(is:a:neighboring:country:of) text(بوركينا:فاسو) -text(貝南) text(was:a:neighboring:country:of) text(टोगो) -text(Benin) text(neighbors:with) text(Nigeria) -text(奥兰) text(can:be:found:in) text(Noord-Europa) -text(Åland) text(was:situated:in) text(欧洲) -text(Croacia) text(is:situated:in) text(Southern:Europe) -text(克羅地亞) text(is:located:in) text(Europa) -text(क्रोएशिया) text(was:a:neighbor:of) text(Slovenië) -text(كرواتيا) text(is:a:neighbor:of) text(Bosnia:and:Herzegovina) -text(Kroatië) text(is:a:neighboring:state:to) text(Hungary) -text(Croatia) text(was:a:neighboring:state:to) text(塞爾維亞) -text(Croacia) text(borders:with) text(الجبل:الأسود) -text(Zweden) text(was:located:in) text(उत्तरी:यूरोप) -text(Sweden) text(can:be:found:in) text(यूरोप) -text(السويد) text(borders) text(नॉर्वे) -text(瑞典) text(is:butted:against) text(芬蘭) -text(México) text(was:positioned:in) text(North:America) -text(मेक्सिको) text(was:butted:against) text(Belize) -text(墨西哥) text(was:adjacent:to) text(美國) -text(المكسيك) text(is:adjacent:to) text(Guatemala) -text(Greenland) text(is:positioned:in) text(北美洲) -text(ग्रीनलैण्ड) text(was:sited:in) text(América) -text(جزر:بيتكيرن) text(is:sited:in) text(nan) -text(Islas:Pitcairn) text(was:localized:in) text(Oceania) -text(नेपाल) text(is:localized:in) text(南亚) -text(نيبال) text(was:present:in) text(亞洲) -text(Nepal) text(neighbors) text(Volksrepubliek:China) -text(尼泊爾) text(is:a:neighboring:country:of) text(भारत) -text(Guatemala) text(is:present:in) text(Centraal-Amerika) -text(ग्वाटेमाला) text(was:a:neighboring:country:of) text(बेलीज़) -text(غواتيمالا) text(neighbors:with) text(薩爾瓦多) -text(Guatemala) text(was:a:neighbor:of) text(Mexico) -text(危地马拉) text(is:a:neighbor:of) text(Honduras) -text(大韩民国) text(is:still:in) text(شرق:آسيا) -text(Corea:del:Sur) text(was:still:in) text(آسيا) -text(दक्षिण:कोरिया) text(is:a:neighboring:state:to) text(كوريا:الشمالية) -text(Moldavië) text(was:currently:in) text(Europa:Oriental) -text(Moldavia) text(is:currently:in) text(أوروبا) -text(مولدوفا) text(was:a:neighboring:state:to) text(Oekraïne) -text(मोल्डोवा) text(borders:with) text(رومانيا) -text(موريشيوس) text(is:placed:in) text(شرق:إفريقيا) -text(Mauricio) text(was:placed:in) text(Africa) -text(Belarus) text(can:be:found:in) text(Oost-Europa) -text(Bielorrusia) text(borders) text(أوكرانيا) -text(Wit-Rusland) text(is:butted:against) text(पोलैंड) -text(بيلاروس) text(was:butted:against) text(ليتوانيا) -text(बेलारूस) text(was:adjacent:to) text(روسيا) -text(白俄羅斯) text(is:adjacent:to) text(लातविया) -text(孟加拉國) text(was:situated:in) text(दक्षिण:एशिया) -text(Bangladés) text(neighbors) text(म्यान्मार) -text(بنغلاديش) text(is:a:neighboring:country:of) text(印度) -text(Malaysia) text(is:situated:in) text(दक्षिण:पूर्व:एशिया) -text(Malasia) text(is:located:in) text(एशिया) -text(Maleisië) text(was:a:neighboring:country:of) text(تايلاند) -text(ماليزيا) text(neighbors:with) text(Indonesia) -text(馬來西亞) text(was:a:neighbor:of) text(ब्रुनेई) -text(البوسنة:والهرسك) text(was:located:in) text(أوروبا:الجنوبية) -text(Bosnia:y:Herzegovina) text(can:be:found:in) text(Europe) -text(波斯尼亚和黑塞哥维那) text(is:a:neighbor:of) text(Servië) -text(Bosnië:en:Herzegovina) text(is:a:neighboring:state:to) text(克羅地亞) -text(बोस्निया:और:हर्ज़ेगोविना) text(was:a:neighboring:state:to) text(Montenegro) -text(Luxembourg) text(was:positioned:in) text(पश्चिमी:यूरोप) -text(Luxemburg) text(is:positioned:in) text(Europa) -text(卢森堡) text(borders:with) text(德國) -text(Luxemburgo) text(borders) text(België) -text(لوكسمبورغ) text(is:butted:against) text(France) -text(Italië) text(was:sited:in) text(Zuid-Europa) -text(Italia) text(is:sited:in) text(欧洲) -text(意大利) text(was:butted:against) text(Slovenia) -text(इटली) text(was:adjacent:to) text(سويسرا) -text(إيطاليا) text(is:adjacent:to) text(ऑस्ट्रिया) -text(Italy) text(neighbors) text(Frankrijk) -text(Italië) text(is:a:neighboring:country:of) text(Vatican:City) -text(Italia) text(was:a:neighboring:country:of) text(सान:मारिनो) -text(أذربيجان) text(was:localized:in) text(Zuidwest-Azië) -text(अज़रबैजान) text(is:localized:in) text(Asia) -text(阿塞拜疆) text(neighbors:with) text(Turkije) -text(Azerbaiyán) text(was:a:neighbor:of) text(आर्मीनिया) -text(Azerbaijan) text(is:a:neighbor:of) text(俄罗斯) -text(Azerbeidzjan) text(is:a:neighboring:state:to) text(إيران) -text(أذربيجان) text(was:a:neighboring:state:to) text(格鲁吉亚) -text(Honduras) text(was:present:in) text(Central:America) -text(洪都拉斯) text(is:present:in) text(أمريكتان) -text(हॉण्डुरस) text(borders:with) text(Guatemala) -text(Honduras) text(borders) text(نيكاراغوا) -text(هندوراس) text(is:butted:against) text(El:Salvador) -text(Mali) text(is:still:in) text(West-Afrika) -text(مالي) text(was:still:in) text(Afrika) -text(माली) text(was:butted:against) text(Burkina:Faso) -text(Mali) text(was:adjacent:to) text(غينيا) -text(Mali) text(is:adjacent:to) text(Mauritania) -text(马里) text(neighbors) text(Níger) -text(Mali) text(is:a:neighboring:country:of) text(Senegal) -text(مالي) text(was:a:neighboring:country:of) text(अल्जीरिया) -text(माली) text(neighbors:with) text(科特迪瓦) -text(República:de:China) text(was:currently:in) text(Oost-Azië) -text(चीनी:गणराज्य) text(is:currently:in) text(Azië) -text(الجزائر) text(is:placed:in) text(北部非洲) -text(阿爾及利亞) text(was:placed:in) text(África) -text(Algerije) text(was:a:neighbor:of) text(Libia) -text(Algeria) text(is:a:neighbor:of) text(تونس) -text(Argelia) text(is:a:neighboring:state:to) text(موريتانيا) -text(अल्जीरिया) text(was:a:neighboring:state:to) text(Marokko) -text(الجزائر) text(borders:with) text(Niger) -text(阿爾及利亞) text(borders) text(Mali) -text(Algerije) text(is:butted:against) text(सहरावी:अरब:जनतांत्रिक:गणराज्य) -text(फ़्रान्सीसी:गुयाना) text(can:be:found:in) text(South:America) -text(法屬圭亞那) text(was:butted:against) text(البرازيل) -text(French:Guiana) text(was:adjacent:to) text(蘇利南) -text(Jemen) text(was:situated:in) text(Asia:Occidental) -text(Yemen) text(is:situated:in) text(Asia) -text(Yemen) text(is:adjacent:to) text(Oman) -text(यमन) text(neighbors) text(Saudi:Arabia) -text(Puerto:Rico) text(is:located:in) text(Caribe) -text(पोर्टो:रीको) text(was:located:in) text(Americas) -text(Saint:Vincent:en:de:Grenadines) text(can:be:found:in) text(Caribbean) -text(Saint:Vincent:and:the:Grenadines) text(was:positioned:in) text(美洲) -text(वेनेज़ुएला) text(is:positioned:in) text(أمريكا:الجنوبية) -text(Venezuela) text(is:a:neighboring:country:of) text(巴西) -text(Venezuela) text(was:a:neighboring:country:of) text(Guyana) -text(فنزويلا) text(neighbors:with) text(Colombia) -text(Granada) text(was:sited:in) text(الكاريبي) -text(ग्रेनाडा) text(is:sited:in) text(महाअमेरिका) -text(الولايات:المتحدة) text(was:localized:in) text(Noord-Amerika) -text(Verenigde:Staten) text(was:a:neighbor:of) text(Canada) -text(United:States) text(is:a:neighbor:of) text(Mexico) -text(Tokelau) text(is:localized:in) text(Polinesia) -text(टोकेलाऊ) text(was:present:in) text(ओशिआनिया) -text(سلوفينيا) text(is:present:in) text(Europa:del:Sur) -text(斯洛文尼亞) text(is:still:in) text(Europa) -text(स्लोवेनिया) text(is:a:neighboring:state:to) text(Oostenrijk) -text(Eslovenia) text(was:a:neighboring:state:to) text(क्रोएशिया) -text(Slovenië) text(borders:with) text(意大利) -text(Slovenia) text(borders) text(匈牙利) -text(Filipinas) text(was:still:in) text(Southeast:Asia) -text(菲律賓) text(was:currently:in) text(亞洲) -text(密克羅尼西亞群島) text(is:currently:in) text(माइक्रोनीशिया) -text(ميكرونيسيا) text(is:placed:in) text(أوقيانوسيا) -text(中华人民共和国) text(was:placed:in) text(पूर्वी:एशिया) -text(चीनी:जनवादी:गणराज्य) text(can:be:found:in) text(آسيا) -text(República:Popular:China) text(is:butted:against) text(阿富汗) -text(الصين) text(was:butted:against) text(Bhutan) -text(People's:Republic:of:China) text(was:adjacent:to) text(मकाउ) -text(Volksrepubliek:China) text(is:adjacent:to) text(India) -text(中华人民共和国) text(neighbors) text(Kazakhstan) -text(चीनी:जनवादी:गणराज्य) text(is:a:neighboring:country:of) text(किर्गिज़स्तान) -text(República:Popular:China) text(was:a:neighboring:country:of) text(Tadzjikistan) -text(الصين) text(neighbors:with) text(Laos) -text(People's:Republic:of:China) text(was:a:neighbor:of) text(Rusia) -text(Volksrepubliek:China) text(is:a:neighbor:of) text(Corea:del:Norte) -text(中华人民共和国) text(is:a:neighboring:state:to) text(Myanmar) -text(चीनी:जनवादी:गणराज्य) text(was:a:neighboring:state:to) text(पाकिस्तान) -text(República:Popular:China) text(borders:with) text(मंगोलिया) -text(الصين) text(borders) text(هونغ:كونغ) -text(People's:Republic:of:China) text(is:butted:against) text(فيتنام) -text(Gabon) text(was:situated:in) text(وسط:إفريقيا) -text(加蓬) text(is:situated:in) text(अफ्रीका) -text(الغابون) text(was:butted:against) text(Guinea:Ecuatorial) -text(गबॉन) text(was:adjacent:to) text(剛果共和國) -text(Gabón) text(is:adjacent:to) text(喀麦隆) -text(Islas:ultramarinas:de:Estados:Unidos) text(is:located:in) text(أمريكا:الشمالية) -text(جزر:الولايات:المتحدة:الصغيرة:النائية) text(was:located:in) text(Amerika) -text(Andorra) text(can:be:found:in) text(दक्षिणी:यूरोप) -text(Andorra) text(was:positioned:in) text(यूरोप) -text(安道尔) text(neighbors) text(स्पेन) -text(Andorra) text(is:a:neighboring:country:of) text(فرنسا) -text(समोआ) text(is:positioned:in) text(玻里尼西亞) -text(ساموا) text(was:sited:in) text(Oceanía) -text(गाम्बिया) text(is:sited:in) text(पश्चिमी:अफ्रीका) -text(Gambia) text(was:localized:in) text(إفريقيا) -text(Gambia) text(was:a:neighboring:country:of) text(सेनेगल) -text(nan) text(is:localized:in) text(West:Asia) -text(Pedro:Miguel) text(was:present:in) text(एशिया) -text(nan) text(neighbors:with) text(जॉर्डन) -text(Pedro:Miguel) text(was:a:neighbor:of) text(मिस्र) -text(nan) text(is:a:neighbor:of) text(Israel) -text(रेयूनियों) text(is:present:in) text(Oost-Afrika) -text(Réunion) text(is:still:in) text(非洲) -text(Francia) text(was:still:in) text(Western:Europe) -text(法國) text(was:currently:in) text(أوروبا) -text(फ़्रान्स) text(is:a:neighboring:state:to) text(ألمانيا) -text(France) text(was:a:neighboring:state:to) text(लक्ज़मबर्ग) -text(Frankrijk) text(borders:with) text(इटली) -text(فرنسا) text(borders) text(अण्डोरा) -text(Francia) text(is:butted:against) text(Suiza) -text(法國) text(was:butted:against) text(Monaco) -text(फ़्रान्स) text(was:adjacent:to) text(比利時) -text(France) text(is:adjacent:to) text(España) -text(منغوليا) text(is:currently:in) text(Asia:Oriental) -text(Mongolia) text(is:placed:in) text(Asia) -text(蒙古國) text(neighbors) text(Volksrepubliek:China) -text(Mongolia) text(is:a:neighboring:country:of) text(Russia) -text(立陶宛) text(was:placed:in) text(أوروبا:الشمالية) -text(Lithuania) text(can:be:found:in) text(Europe) -text(Lituania) text(was:a:neighboring:country:of) text(Polen) -text(Litouwen) text(neighbors:with) text(Latvia) -text(लिथुआनिया) text(was:a:neighbor:of) text(Belarus) -text(ليتوانيا) text(is:a:neighbor:of) text(Rusland) -text(Islas:Caimán) text(was:situated:in) text(加勒比地区) -text(開曼群島) text(is:situated:in) text(América) -text(सेंट:लूसिया) text(is:located:in) text(Caraïben) -text(Saint:Lucia) text(was:located:in) text(أمريكتان) -text(कुराकाओ) text(can:be:found:in) text(कैरिबिया) -text(كوراساو) text(was:positioned:in) text(Americas) -text(Caribe) text(is:positioned:in) text(美洲) -text(Asia:del:Sur) text(was:sited:in) text(Azië) -text(África:Central) text(is:sited:in) text(Africa) -text(北歐) text(was:localized:in) text(Europa) -text(南欧) text(is:localized:in) text(欧洲) -text(غرب:آسيا) text(was:present:in) text(Asia) -text(दक्षिण:अमेरिका) text(is:present:in) text(महाअमेरिका) -text(بولنيزيا) text(is:still:in) text(大洋洲) -text(nan) text(was:still:in) text(Oceanië) -text(أوروبا:الغربية) text(was:currently:in) text(Europa) -text(पूर्वी:अफ्रीका) text(is:currently:in) text(Afrika) -text(西非) text(is:placed:in) text(África) -text(أوروبا:الشرقية) text(was:placed:in) text(यूरोप) -text(केंद्रीय:अमेरिका) text(can:be:found:in) text(Amerika) -text(América:del:Norte) text(was:situated:in) text(América) -text(Zuidoost-Azië) text(is:situated:in) text(亞洲) -text(Southern:Africa) text(is:located:in) text(अफ्रीका) -text(東亞) text(was:located:in) text(آسيا) -text(شمال:إفريقيا) text(can:be:found:in) text(إفريقيا) -text(मॅलानिशिया) text(was:positioned:in) text(Oceania) -text(Micronesia) text(is:positioned:in) text(ओशिआनिया) -text(मध्य:एशिया) text(was:sited:in) text(एशिया) -text(Central:Europe) text(is:sited:in) text(أوروبا) \ No newline at end of file diff --git a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_relation2text.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_relation2text.tsv index d6d5727..a33fd1c 100644 --- a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_relation2text.tsv +++ b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_relation2text.tsv @@ -1,944 +1,944 @@ palau text(is:positioned:in) micronesia palau text(was:sited:in) oceania maldives text(is:sited:in) southern_asia -maldives text(was:localized:in) asia -brunei text(is:localized:in) south-eastern_asia -brunei text(was:present:in) asia +maldives text(is:placed:in) asia +brunei text(was:placed:in) south-eastern_asia +brunei text(was:localized:in) asia brunei text(was:a:neighboring:country:of) malaysia -japan text(is:present:in) eastern_asia -japan text(is:still:in) asia -netherlands text(was:still:in) western_europe -netherlands text(neighbors:with) germany -netherlands text(was:a:neighbor:of) belgium -turkey text(was:currently:in) western_asia -turkey text(is:a:neighbor:of) armenia -turkey text(is:a:neighboring:state:to) azerbaijan -turkey text(was:a:neighboring:state:to) iran -turkey text(borders:with) greece -turkey text(borders) georgia -turkey text(is:butted:against) bulgaria -turkey text(was:butted:against) iraq -turkey text(was:adjacent:to) syria -angola text(is:currently:in) middle_africa -angola text(is:placed:in) africa -angola text(is:adjacent:to) dr_congo -angola text(neighbors) namibia -angola text(is:a:neighboring:country:of) zambia -angola text(was:a:neighboring:country:of) republic_of_the_congo -armenia text(was:placed:in) western_asia -armenia text(can:be:found:in) asia -armenia text(neighbors:with) georgia +japan text(is:localized:in) eastern_asia +japan text(was:present:in) asia +netherlands text(is:present:in) western_europe +netherlands text(was:adjacent:to) germany +netherlands text(is:adjacent:to) belgium +turkey text(is:still:in) western_asia +turkey text(was:a:neighbor:of) armenia +turkey text(is:a:neighbor:of) azerbaijan +turkey text(is:a:neighboring:state:to) iran +turkey text(was:a:neighboring:state:to) greece +turkey text(borders:with) georgia +turkey text(neighbors:withborders) bulgaria +turkey text(neighbors) iraq +turkey text(is:butted:against) syria +angola text(was:still:in) middle_africa +angola text(was:currently:in) africa +angola text(was:butted:against) dr_congo +angola text(is:a:neighboring:country:of) namibia +angola text(was:a:neighboring:country:of) zambia +angola text(was:adjacent:to) republic_of_the_congo +armenia text(is:currently:in) western_asia +armenia text(was:situated:in) asia +armenia text(is:adjacent:to) georgia armenia text(was:a:neighbor:of) azerbaijan armenia text(is:a:neighbor:of) iran armenia text(is:a:neighboring:state:to) turkey -antigua_and_barbuda text(was:situated:in) caribbean -antigua_and_barbuda text(is:situated:in) americas -swaziland text(is:located:in) southern_africa -swaziland text(was:located:in) africa +antigua_and_barbuda text(is:situated:in) caribbean +antigua_and_barbuda text(is:located:in) americas +swaziland text(was:located:in) southern_africa +swaziland text(could:be:found:in) africa swaziland text(was:a:neighboring:state:to) south_africa swaziland text(borders:with) mozambique wallis_and_futuna text(can:be:found:in) polynesia wallis_and_futuna text(was:positioned:in) oceania uruguay text(is:positioned:in) south_america uruguay text(was:sited:in) americas -uruguay text(borders) argentina -uruguay text(is:butted:against) brazil +uruguay text(neighbors:withborders) argentina +uruguay text(neighbors) brazil zambia text(is:sited:in) eastern_africa -zambia text(was:localized:in) africa -zambia text(was:butted:against) tanzania -zambia text(was:adjacent:to) mozambique -zambia text(is:adjacent:to) dr_congo -zambia text(neighbors) angola -zambia text(is:a:neighboring:country:of) botswana -zambia text(was:a:neighboring:country:of) zimbabwe -zambia text(neighbors:with) namibia -zambia text(was:a:neighbor:of) malawi -cyprus text(is:localized:in) eastern_europe -cyprus text(was:present:in) europe -cyprus text(is:a:neighbor:of) united_kingdom -ireland text(is:present:in) northern_europe -ireland text(is:still:in) europe -ireland text(is:a:neighboring:state:to) united_kingdom -burundi text(was:still:in) eastern_africa -burundi text(was:currently:in) africa -burundi text(was:a:neighboring:state:to) dr_congo -burundi text(borders:with) rwanda -burundi text(borders) tanzania -central_african_republic text(is:currently:in) middle_africa -central_african_republic text(is:placed:in) africa +zambia text(is:placed:in) africa +zambia text(is:butted:against) tanzania +zambia text(was:butted:against) mozambique +zambia text(is:a:neighboring:country:of) dr_congo +zambia text(was:a:neighboring:country:of) angola +zambia text(was:adjacent:to) botswana +zambia text(is:adjacent:to) zimbabwe +zambia text(was:a:neighbor:of) namibia +zambia text(is:a:neighbor:of) malawi +cyprus text(was:placed:in) eastern_europe +cyprus text(was:localized:in) europe +cyprus text(is:a:neighboring:state:to) united_kingdom +ireland text(is:localized:in) northern_europe +ireland text(was:present:in) europe +ireland text(was:a:neighboring:state:to) united_kingdom +burundi text(is:present:in) eastern_africa +burundi text(is:still:in) africa +burundi text(borders:with) dr_congo +burundi text(neighbors:withborders) rwanda +burundi text(neighbors) tanzania +central_african_republic text(was:still:in) middle_africa +central_african_republic text(was:currently:in) africa central_african_republic text(is:butted:against) chad central_african_republic text(was:butted:against) republic_of_the_congo -central_african_republic text(was:adjacent:to) dr_congo -central_african_republic text(is:adjacent:to) south_sudan -central_african_republic text(neighbors) cameroon -central_african_republic text(is:a:neighboring:country:of) sudan -tonga text(was:placed:in) polynesia -tonga text(can:be:found:in) oceania -ivory_coast text(was:situated:in) western_africa -ivory_coast text(is:situated:in) africa -ivory_coast text(was:a:neighboring:country:of) burkina_faso -ivory_coast text(neighbors:with) ghana -ivory_coast text(was:a:neighbor:of) liberia -ivory_coast text(is:a:neighbor:of) mali -ivory_coast text(is:a:neighboring:state:to) guinea -sierra_leone text(is:located:in) western_africa -sierra_leone text(was:a:neighboring:state:to) liberia -sierra_leone text(borders:with) guinea -mayotte text(was:located:in) eastern_africa +central_african_republic text(is:a:neighboring:country:of) dr_congo +central_african_republic text(was:a:neighboring:country:of) south_sudan +central_african_republic text(was:adjacent:to) cameroon +central_african_republic text(is:adjacent:to) sudan +tonga text(is:currently:in) polynesia +tonga text(was:situated:in) oceania +ivory_coast text(is:situated:in) western_africa +ivory_coast text(is:located:in) africa +ivory_coast text(was:a:neighbor:of) burkina_faso +ivory_coast text(is:a:neighbor:of) ghana +ivory_coast text(is:a:neighboring:state:to) liberia +ivory_coast text(was:a:neighboring:state:to) mali +ivory_coast text(borders:with) guinea +sierra_leone text(was:located:in) western_africa +sierra_leone text(neighbors:withborders) liberia +sierra_leone text(neighbors) guinea +mayotte text(could:be:found:in) eastern_africa mayotte text(can:be:found:in) africa poland text(was:positioned:in) eastern_europe -poland text(borders) germany -poland text(is:butted:against) ukraine -poland text(was:butted:against) slovakia -poland text(was:adjacent:to) belarus -poland text(is:adjacent:to) russia -poland text(neighbors) lithuania -poland text(is:a:neighboring:country:of) czechia +poland text(is:butted:against) germany +poland text(was:butted:against) ukraine +poland text(is:a:neighboring:country:of) slovakia +poland text(was:a:neighboring:country:of) belarus +poland text(was:adjacent:to) russia +poland text(is:adjacent:to) lithuania +poland text(was:a:neighbor:of) czechia kazakhstan text(is:positioned:in) central_asia kazakhstan text(was:sited:in) asia -kazakhstan text(was:a:neighboring:country:of) turkmenistan -kazakhstan text(neighbors:with) china -kazakhstan text(was:a:neighbor:of) kyrgyzstan -kazakhstan text(is:a:neighbor:of) uzbekistan -kazakhstan text(is:a:neighboring:state:to) russia +kazakhstan text(is:a:neighbor:of) turkmenistan +kazakhstan text(is:a:neighboring:state:to) china +kazakhstan text(was:a:neighboring:state:to) kyrgyzstan +kazakhstan text(borders:with) uzbekistan +kazakhstan text(neighbors:withborders) russia uzbekistan text(is:sited:in) central_asia -uzbekistan text(was:localized:in) asia -uzbekistan text(was:a:neighboring:state:to) afghanistan -uzbekistan text(borders:with) turkmenistan -uzbekistan text(borders) kazakhstan -uzbekistan text(is:butted:against) kyrgyzstan -uzbekistan text(was:butted:against) tajikistan -turks_and_caicos_islands text(is:localized:in) caribbean -turks_and_caicos_islands text(was:present:in) americas -new_caledonia text(is:present:in) melanesia -new_caledonia text(is:still:in) oceania -pakistan text(was:still:in) southern_asia +uzbekistan text(is:placed:in) asia +uzbekistan text(neighbors) afghanistan +uzbekistan text(is:butted:against) turkmenistan +uzbekistan text(was:butted:against) kazakhstan +uzbekistan text(is:a:neighboring:country:of) kyrgyzstan +uzbekistan text(was:a:neighboring:country:of) tajikistan +turks_and_caicos_islands text(was:placed:in) caribbean +turks_and_caicos_islands text(was:localized:in) americas +new_caledonia text(is:localized:in) melanesia +new_caledonia text(was:present:in) oceania +pakistan text(is:present:in) southern_asia pakistan text(was:adjacent:to) china pakistan text(is:adjacent:to) afghanistan -pakistan text(neighbors) iran -pakistan text(is:a:neighboring:country:of) india -argentina text(was:currently:in) south_america -argentina text(is:currently:in) americas -argentina text(was:a:neighboring:country:of) bolivia -argentina text(neighbors:with) chile -argentina text(was:a:neighbor:of) brazil -argentina text(is:a:neighbor:of) paraguay -argentina text(is:a:neighboring:state:to) uruguay -cuba text(is:placed:in) caribbean -cuba text(was:placed:in) americas -serbia text(can:be:found:in) southern_europe -serbia text(was:a:neighboring:state:to) macedonia -serbia text(borders:with) montenegro -serbia text(borders) kosovo -serbia text(is:butted:against) bosnia_and_herzegovina -serbia text(was:butted:against) croatia -serbia text(was:adjacent:to) hungary -serbia text(is:adjacent:to) bulgaria -serbia text(neighbors) romania -czechia text(was:situated:in) eastern_europe -czechia text(is:situated:in) europe -czechia text(is:a:neighboring:country:of) germany -czechia text(was:a:neighboring:country:of) austria -czechia text(neighbors:with) poland -czechia text(was:a:neighbor:of) slovakia -nicaragua text(is:located:in) central_america -nicaragua text(is:a:neighbor:of) honduras -nicaragua text(is:a:neighboring:state:to) costa_rica -vietnam text(was:located:in) south-eastern_asia +pakistan text(was:a:neighbor:of) iran +pakistan text(is:a:neighbor:of) india +argentina text(is:still:in) south_america +argentina text(was:still:in) americas +argentina text(is:a:neighboring:state:to) bolivia +argentina text(was:a:neighboring:state:to) chile +argentina text(borders:with) brazil +argentina text(neighbors:withborders) paraguay +argentina text(neighbors) uruguay +cuba text(was:currently:in) caribbean +cuba text(is:currently:in) americas +serbia text(was:situated:in) southern_europe +serbia text(is:butted:against) macedonia +serbia text(was:butted:against) montenegro +serbia text(is:a:neighboring:country:of) kosovo +serbia text(was:a:neighboring:country:of) bosnia_and_herzegovina +serbia text(was:adjacent:to) croatia +serbia text(is:adjacent:to) hungary +serbia text(was:a:neighbor:of) bulgaria +serbia text(is:a:neighbor:of) romania +czechia text(is:situated:in) eastern_europe +czechia text(is:located:in) europe +czechia text(is:a:neighboring:state:to) germany +czechia text(was:a:neighboring:state:to) austria +czechia text(borders:with) poland +czechia text(neighbors:withborders) slovakia +nicaragua text(was:located:in) central_america +nicaragua text(neighbors) honduras +nicaragua text(is:butted:against) costa_rica +vietnam text(could:be:found:in) south-eastern_asia vietnam text(can:be:found:in) asia -vietnam text(was:a:neighboring:state:to) cambodia -vietnam text(borders:with) laos -vietnam text(borders) china +vietnam text(was:butted:against) cambodia +vietnam text(is:a:neighboring:country:of) laos +vietnam text(was:a:neighboring:country:of) china niue text(was:positioned:in) polynesia niue text(is:positioned:in) oceania canada text(was:sited:in) northern_america canada text(is:sited:in) americas -canada text(is:butted:against) united_states -slovakia text(was:localized:in) central_europe -slovakia text(was:butted:against) ukraine -slovakia text(was:adjacent:to) poland -slovakia text(is:adjacent:to) austria -slovakia text(neighbors) hungary -slovakia text(is:a:neighboring:country:of) czechia -mozambique text(is:localized:in) eastern_africa -mozambique text(was:a:neighboring:country:of) tanzania -mozambique text(neighbors:with) swaziland -mozambique text(was:a:neighbor:of) zimbabwe -mozambique text(is:a:neighbor:of) zambia -mozambique text(is:a:neighboring:state:to) malawi -mozambique text(was:a:neighboring:state:to) south_africa -aruba text(was:present:in) caribbean -aruba text(is:present:in) americas -bolivia text(is:still:in) south_america -bolivia text(was:still:in) americas -bolivia text(borders:with) chile -bolivia text(borders) brazil -bolivia text(is:butted:against) paraguay -bolivia text(was:butted:against) argentina -bolivia text(was:adjacent:to) peru -colombia text(was:currently:in) south_america -colombia text(is:currently:in) americas -colombia text(is:adjacent:to) ecuador -colombia text(neighbors) brazil -colombia text(is:a:neighboring:country:of) panama -colombia text(was:a:neighboring:country:of) venezuela -colombia text(neighbors:with) peru -fiji text(is:placed:in) melanesia -fiji text(was:placed:in) oceania -republic_of_the_congo text(can:be:found:in) middle_africa -republic_of_the_congo text(was:a:neighbor:of) gabon -republic_of_the_congo text(is:a:neighbor:of) dr_congo -republic_of_the_congo text(is:a:neighboring:state:to) angola -republic_of_the_congo text(was:a:neighboring:state:to) cameroon -republic_of_the_congo text(borders:with) central_african_republic -saudi_arabia text(was:situated:in) western_asia -saudi_arabia text(borders) qatar -saudi_arabia text(is:butted:against) united_arab_emirates -saudi_arabia text(was:butted:against) jordan -saudi_arabia text(was:adjacent:to) yemen -saudi_arabia text(is:adjacent:to) oman -saudi_arabia text(neighbors) kuwait -saudi_arabia text(is:a:neighboring:country:of) iraq -el_salvador text(is:situated:in) central_america -el_salvador text(is:located:in) americas -el_salvador text(was:a:neighboring:country:of) guatemala -el_salvador text(neighbors:with) honduras -madagascar text(was:located:in) eastern_africa +canada text(was:adjacent:to) united_states +slovakia text(is:placed:in) central_europe +slovakia text(is:adjacent:to) ukraine +slovakia text(was:a:neighbor:of) poland +slovakia text(is:a:neighbor:of) austria +slovakia text(is:a:neighboring:state:to) hungary +slovakia text(was:a:neighboring:state:to) czechia +mozambique text(was:placed:in) eastern_africa +mozambique text(borders:with) tanzania +mozambique text(neighbors:withborders) swaziland +mozambique text(neighbors) zimbabwe +mozambique text(is:butted:against) zambia +mozambique text(was:butted:against) malawi +mozambique text(is:a:neighboring:country:of) south_africa +aruba text(was:localized:in) caribbean +aruba text(is:localized:in) americas +bolivia text(was:present:in) south_america +bolivia text(is:present:in) americas +bolivia text(was:a:neighboring:country:of) chile +bolivia text(was:adjacent:to) brazil +bolivia text(is:adjacent:to) paraguay +bolivia text(was:a:neighbor:of) argentina +bolivia text(is:a:neighbor:of) peru +colombia text(is:still:in) south_america +colombia text(was:still:in) americas +colombia text(is:a:neighboring:state:to) ecuador +colombia text(was:a:neighboring:state:to) brazil +colombia text(borders:with) panama +colombia text(neighbors:withborders) venezuela +colombia text(neighbors) peru +fiji text(was:currently:in) melanesia +fiji text(is:currently:in) oceania +republic_of_the_congo text(was:situated:in) middle_africa +republic_of_the_congo text(is:butted:against) gabon +republic_of_the_congo text(was:butted:against) dr_congo +republic_of_the_congo text(is:a:neighboring:country:of) angola +republic_of_the_congo text(was:a:neighboring:country:of) cameroon +republic_of_the_congo text(was:adjacent:to) central_african_republic +saudi_arabia text(is:situated:in) western_asia +saudi_arabia text(is:adjacent:to) qatar +saudi_arabia text(was:a:neighbor:of) united_arab_emirates +saudi_arabia text(is:a:neighbor:of) jordan +saudi_arabia text(is:a:neighboring:state:to) yemen +saudi_arabia text(was:a:neighboring:state:to) oman +saudi_arabia text(borders:with) kuwait +saudi_arabia text(neighbors:withborders) iraq +el_salvador text(is:located:in) central_america +el_salvador text(was:located:in) americas +el_salvador text(neighbors) guatemala +el_salvador text(is:butted:against) honduras +madagascar text(could:be:found:in) eastern_africa madagascar text(can:be:found:in) africa australia text(was:positioned:in) australia_and_new_zealand australia text(is:positioned:in) oceania namibia text(was:sited:in) southern_africa namibia text(is:sited:in) africa -namibia text(was:a:neighbor:of) zambia -namibia text(is:a:neighbor:of) angola -namibia text(is:a:neighboring:state:to) south_africa -namibia text(was:a:neighboring:state:to) botswana -tuvalu text(was:localized:in) polynesia -tuvalu text(is:localized:in) oceania -svalbard_and_jan_mayen text(was:present:in) northern_europe -svalbard_and_jan_mayen text(is:present:in) europe -isle_of_man text(is:still:in) northern_europe -isle_of_man text(was:still:in) europe -guyana text(was:currently:in) south_america -guyana text(borders:with) brazil -guyana text(borders) suriname -guyana text(is:butted:against) venezuela -vatican_city text(is:currently:in) southern_europe -vatican_city text(is:placed:in) europe -vatican_city text(was:butted:against) italy -british_indian_ocean_territory text(was:placed:in) eastern_africa -british_indian_ocean_territory text(can:be:found:in) africa -nigeria text(was:situated:in) western_africa -nigeria text(is:situated:in) africa -nigeria text(was:adjacent:to) chad -nigeria text(is:adjacent:to) niger -nigeria text(neighbors) cameroon -nigeria text(is:a:neighboring:country:of) benin -germany text(is:located:in) western_europe -germany text(was:a:neighboring:country:of) denmark -germany text(neighbors:with) netherlands -germany text(was:a:neighbor:of) poland -germany text(is:a:neighbor:of) luxembourg -germany text(is:a:neighboring:state:to) belgium -germany text(was:a:neighboring:state:to) switzerland -germany text(borders:with) austria -germany text(borders) france -germany text(is:butted:against) czechia -burkina_faso text(was:located:in) western_africa -burkina_faso text(was:butted:against) togo -burkina_faso text(was:adjacent:to) benin -burkina_faso text(is:adjacent:to) niger +namibia text(was:butted:against) zambia +namibia text(is:a:neighboring:country:of) angola +namibia text(was:a:neighboring:country:of) south_africa +namibia text(was:adjacent:to) botswana +tuvalu text(is:placed:in) polynesia +tuvalu text(was:placed:in) oceania +svalbard_and_jan_mayen text(was:localized:in) northern_europe +svalbard_and_jan_mayen text(is:localized:in) europe +isle_of_man text(was:present:in) northern_europe +isle_of_man text(is:present:in) europe +guyana text(is:still:in) south_america +guyana text(is:adjacent:to) brazil +guyana text(was:a:neighbor:of) suriname +guyana text(is:a:neighbor:of) venezuela +vatican_city text(was:still:in) southern_europe +vatican_city text(was:currently:in) europe +vatican_city text(is:a:neighboring:state:to) italy +british_indian_ocean_territory text(is:currently:in) eastern_africa +british_indian_ocean_territory text(was:situated:in) africa +nigeria text(is:situated:in) western_africa +nigeria text(is:located:in) africa +nigeria text(was:a:neighboring:state:to) chad +nigeria text(borders:with) niger +nigeria text(neighbors:withborders) cameroon +nigeria text(neighbors) benin +germany text(was:located:in) western_europe +germany text(is:butted:against) denmark +germany text(was:butted:against) netherlands +germany text(is:a:neighboring:country:of) poland +germany text(was:a:neighboring:country:of) luxembourg +germany text(was:adjacent:to) belgium +germany text(is:adjacent:to) switzerland +germany text(was:a:neighbor:of) austria +germany text(is:a:neighbor:of) france +germany text(is:a:neighboring:state:to) czechia +burkina_faso text(could:be:found:in) western_africa +burkina_faso text(was:a:neighboring:state:to) togo +burkina_faso text(borders:with) benin +burkina_faso text(neighbors:withborders) niger burkina_faso text(neighbors) ghana -burkina_faso text(is:a:neighboring:country:of) mali -burkina_faso text(was:a:neighboring:country:of) ivory_coast +burkina_faso text(is:butted:against) mali +burkina_faso text(was:butted:against) ivory_coast tanzania text(can:be:found:in) eastern_africa -tanzania text(neighbors:with) uganda -tanzania text(was:a:neighbor:of) mozambique -tanzania text(is:a:neighbor:of) dr_congo -tanzania text(is:a:neighboring:state:to) kenya -tanzania text(was:a:neighboring:state:to) rwanda -tanzania text(borders:with) zambia -tanzania text(borders) malawi -tanzania text(is:butted:against) burundi +tanzania text(is:a:neighboring:country:of) uganda +tanzania text(was:a:neighboring:country:of) mozambique +tanzania text(was:adjacent:to) dr_congo +tanzania text(is:adjacent:to) kenya +tanzania text(was:a:neighbor:of) rwanda +tanzania text(is:a:neighbor:of) zambia +tanzania text(is:a:neighboring:state:to) malawi +tanzania text(was:a:neighboring:state:to) burundi northern_mariana_islands text(was:positioned:in) micronesia northern_mariana_islands text(is:positioned:in) oceania belize text(was:sited:in) central_america belize text(is:sited:in) americas -belize text(was:butted:against) guatemala -belize text(was:adjacent:to) mexico -norway text(was:localized:in) northern_europe -norway text(is:adjacent:to) sweden -norway text(neighbors) finland -norway text(is:a:neighboring:country:of) russia -cocos_keeling_islands text(is:localized:in) australia_and_new_zealand -cocos_keeling_islands text(was:present:in) oceania -laos text(is:present:in) south-eastern_asia -laos text(is:still:in) asia -laos text(was:a:neighboring:country:of) china -laos text(neighbors:with) cambodia -laos text(was:a:neighbor:of) myanmar -laos text(is:a:neighbor:of) vietnam -laos text(is:a:neighboring:state:to) thailand -western_sahara text(was:still:in) northern_africa -western_sahara text(was:currently:in) africa -western_sahara text(was:a:neighboring:state:to) algeria -western_sahara text(borders:with) mauritania -western_sahara text(borders) morocco -suriname text(is:currently:in) south_america -suriname text(is:placed:in) americas -suriname text(is:butted:against) brazil -suriname text(was:butted:against) french_guiana -suriname text(was:adjacent:to) guyana -christmas_island text(was:placed:in) australia_and_new_zealand -christmas_island text(can:be:found:in) oceania -são_tomé_and_príncipe text(was:situated:in) middle_africa -são_tomé_and_príncipe text(is:situated:in) africa -egypt text(is:located:in) northern_africa -egypt text(is:adjacent:to) libya -egypt text(neighbors) israel +belize text(borders:with) guatemala +belize text(neighbors:withborders) mexico +norway text(is:placed:in) northern_europe +norway text(neighbors) sweden +norway text(is:butted:against) finland +norway text(was:butted:against) russia +cocos_keeling_islands text(was:placed:in) australia_and_new_zealand +cocos_keeling_islands text(was:localized:in) oceania +laos text(is:localized:in) south-eastern_asia +laos text(was:present:in) asia +laos text(is:a:neighboring:country:of) china +laos text(was:a:neighboring:country:of) cambodia +laos text(was:adjacent:to) myanmar +laos text(is:adjacent:to) vietnam +laos text(was:a:neighbor:of) thailand +western_sahara text(is:present:in) northern_africa +western_sahara text(is:still:in) africa +western_sahara text(is:a:neighbor:of) algeria +western_sahara text(is:a:neighboring:state:to) mauritania +western_sahara text(was:a:neighboring:state:to) morocco +suriname text(was:still:in) south_america +suriname text(was:currently:in) americas +suriname text(borders:with) brazil +suriname text(neighbors:withborders) french_guiana +suriname text(neighbors) guyana +christmas_island text(is:currently:in) australia_and_new_zealand +christmas_island text(was:situated:in) oceania +são_tomé_and_príncipe text(is:situated:in) middle_africa +são_tomé_and_príncipe text(is:located:in) africa +egypt text(was:located:in) northern_africa +egypt text(is:butted:against) libya +egypt text(was:butted:against) israel egypt text(is:a:neighboring:country:of) sudan -bulgaria text(was:located:in) eastern_europe +bulgaria text(could:be:found:in) eastern_europe bulgaria text(was:a:neighboring:country:of) macedonia -bulgaria text(neighbors:with) turkey -bulgaria text(was:a:neighbor:of) greece -bulgaria text(is:a:neighbor:of) serbia -bulgaria text(is:a:neighboring:state:to) romania +bulgaria text(was:adjacent:to) turkey +bulgaria text(is:adjacent:to) greece +bulgaria text(was:a:neighbor:of) serbia +bulgaria text(is:a:neighbor:of) romania guinea text(can:be:found:in) western_africa guinea text(was:positioned:in) africa -guinea text(was:a:neighboring:state:to) guinea-bissau -guinea text(borders:with) sierra_leone -guinea text(borders) mali -guinea text(is:butted:against) liberia -guinea text(was:butted:against) senegal -guinea text(was:adjacent:to) ivory_coast +guinea text(is:a:neighboring:state:to) guinea-bissau +guinea text(was:a:neighboring:state:to) sierra_leone +guinea text(borders:with) mali +guinea text(neighbors:withborders) liberia +guinea text(neighbors) senegal +guinea text(is:butted:against) ivory_coast spain text(is:positioned:in) southern_europe -spain text(is:adjacent:to) morocco -spain text(neighbors) gibraltar -spain text(is:a:neighboring:country:of) andorra -spain text(was:a:neighboring:country:of) france -spain text(neighbors:with) portugal +spain text(was:butted:against) morocco +spain text(is:a:neighboring:country:of) gibraltar +spain text(was:a:neighboring:country:of) andorra +spain text(was:adjacent:to) france +spain text(is:adjacent:to) portugal costa_rica text(was:sited:in) central_america costa_rica text(is:sited:in) americas costa_rica text(was:a:neighbor:of) panama costa_rica text(is:a:neighbor:of) nicaragua -malta text(was:localized:in) southern_europe -malta text(is:localized:in) europe -portugal text(was:present:in) southern_europe -portugal text(is:present:in) europe +malta text(is:placed:in) southern_europe +malta text(was:placed:in) europe +portugal text(was:localized:in) southern_europe +portugal text(is:localized:in) europe portugal text(is:a:neighboring:state:to) spain -romania text(is:still:in) eastern_europe -romania text(was:still:in) europe +romania text(was:present:in) eastern_europe +romania text(is:present:in) europe romania text(was:a:neighboring:state:to) ukraine romania text(borders:with) hungary -romania text(borders) moldova -romania text(is:butted:against) bulgaria -romania text(was:butted:against) serbia -san_marino text(was:currently:in) southern_europe -san_marino text(is:currently:in) europe -san_marino text(was:adjacent:to) italy -mauritania text(is:placed:in) western_africa -mauritania text(was:placed:in) africa -mauritania text(is:adjacent:to) algeria -mauritania text(neighbors) mali -mauritania text(is:a:neighboring:country:of) western_sahara -mauritania text(was:a:neighboring:country:of) senegal -trinidad_and_tobago text(can:be:found:in) caribbean -trinidad_and_tobago text(was:situated:in) americas -bahrain text(is:situated:in) western_asia -bahrain text(is:located:in) asia -myanmar text(was:located:in) south-eastern_asia -myanmar text(neighbors:with) india -myanmar text(was:a:neighbor:of) bangladesh -myanmar text(is:a:neighbor:of) china -myanmar text(is:a:neighboring:state:to) laos -myanmar text(was:a:neighboring:state:to) thailand +romania text(neighbors:withborders) moldova +romania text(neighbors) bulgaria +romania text(is:butted:against) serbia +san_marino text(is:still:in) southern_europe +san_marino text(was:still:in) europe +san_marino text(was:butted:against) italy +mauritania text(was:currently:in) western_africa +mauritania text(is:currently:in) africa +mauritania text(is:a:neighboring:country:of) algeria +mauritania text(was:a:neighboring:country:of) mali +mauritania text(was:adjacent:to) western_sahara +mauritania text(is:adjacent:to) senegal +trinidad_and_tobago text(was:situated:in) caribbean +trinidad_and_tobago text(is:situated:in) americas +bahrain text(is:located:in) western_asia +bahrain text(was:located:in) asia +myanmar text(could:be:found:in) south-eastern_asia +myanmar text(was:a:neighbor:of) india +myanmar text(is:a:neighbor:of) bangladesh +myanmar text(is:a:neighboring:state:to) china +myanmar text(was:a:neighboring:state:to) laos +myanmar text(borders:with) thailand iraq text(can:be:found:in) western_asia -iraq text(borders:with) turkey -iraq text(borders) saudi_arabia +iraq text(neighbors:withborders) turkey +iraq text(neighbors) saudi_arabia iraq text(is:butted:against) iran iraq text(was:butted:against) jordan -iraq text(was:adjacent:to) kuwait -iraq text(is:adjacent:to) syria +iraq text(is:a:neighboring:country:of) kuwait +iraq text(was:a:neighboring:country:of) syria south_georgia text(was:positioned:in) south_america south_georgia text(is:positioned:in) americas iceland text(was:sited:in) northern_europe iceland text(is:sited:in) europe -dr_congo text(was:localized:in) middle_africa -dr_congo text(is:localized:in) africa -dr_congo text(neighbors) uganda -dr_congo text(is:a:neighboring:country:of) tanzania -dr_congo text(was:a:neighboring:country:of) republic_of_the_congo -dr_congo text(neighbors:with) central_african_republic -dr_congo text(was:a:neighbor:of) angola -dr_congo text(is:a:neighbor:of) rwanda -dr_congo text(is:a:neighboring:state:to) south_sudan -dr_congo text(was:a:neighboring:state:to) zambia -dr_congo text(borders:with) burundi -seychelles text(was:present:in) eastern_africa -seychelles text(is:present:in) africa -kyrgyzstan text(is:still:in) central_asia -kyrgyzstan text(borders) china -kyrgyzstan text(is:butted:against) kazakhstan -kyrgyzstan text(was:butted:against) tajikistan -kyrgyzstan text(was:adjacent:to) uzbekistan -botswana text(was:still:in) southern_africa -botswana text(was:currently:in) africa -botswana text(is:adjacent:to) zimbabwe -botswana text(neighbors) namibia -botswana text(is:a:neighboring:country:of) zambia -botswana text(was:a:neighboring:country:of) south_africa -faroe_islands text(is:currently:in) northern_europe -faroe_islands text(is:placed:in) europe -jamaica text(was:placed:in) caribbean -jamaica text(can:be:found:in) americas -american_samoa text(was:situated:in) polynesia -american_samoa text(is:situated:in) oceania -lesotho text(is:located:in) southern_africa -lesotho text(was:located:in) africa -lesotho text(neighbors:with) south_africa +dr_congo text(is:placed:in) middle_africa +dr_congo text(was:placed:in) africa +dr_congo text(was:adjacent:to) uganda +dr_congo text(is:adjacent:to) tanzania +dr_congo text(was:a:neighbor:of) republic_of_the_congo +dr_congo text(is:a:neighbor:of) central_african_republic +dr_congo text(is:a:neighboring:state:to) angola +dr_congo text(was:a:neighboring:state:to) rwanda +dr_congo text(borders:with) south_sudan +dr_congo text(neighbors:withborders) zambia +dr_congo text(neighbors) burundi +seychelles text(was:localized:in) eastern_africa +seychelles text(is:localized:in) africa +kyrgyzstan text(was:present:in) central_asia +kyrgyzstan text(is:butted:against) china +kyrgyzstan text(was:butted:against) kazakhstan +kyrgyzstan text(is:a:neighboring:country:of) tajikistan +kyrgyzstan text(was:a:neighboring:country:of) uzbekistan +botswana text(is:present:in) southern_africa +botswana text(is:still:in) africa +botswana text(was:adjacent:to) zimbabwe +botswana text(is:adjacent:to) namibia +botswana text(was:a:neighbor:of) zambia +botswana text(is:a:neighbor:of) south_africa +faroe_islands text(was:still:in) northern_europe +faroe_islands text(was:currently:in) europe +jamaica text(is:currently:in) caribbean +jamaica text(was:situated:in) americas +american_samoa text(is:situated:in) polynesia +american_samoa text(is:located:in) oceania +lesotho text(was:located:in) southern_africa +lesotho text(could:be:found:in) africa +lesotho text(is:a:neighboring:state:to) south_africa sri_lanka text(can:be:found:in) southern_asia -sri_lanka text(was:a:neighbor:of) india +sri_lanka text(was:a:neighboring:state:to) india belgium text(was:positioned:in) western_europe belgium text(is:positioned:in) europe -belgium text(is:a:neighbor:of) germany -belgium text(is:a:neighboring:state:to) luxembourg -belgium text(was:a:neighboring:state:to) france -belgium text(borders:with) netherlands +belgium text(borders:with) germany +belgium text(neighbors:withborders) luxembourg +belgium text(neighbors) france +belgium text(is:butted:against) netherlands qatar text(was:sited:in) western_asia qatar text(is:sited:in) asia -qatar text(borders) saudi_arabia -solomon_islands text(was:localized:in) melanesia -solomon_islands text(is:localized:in) oceania -syria text(was:present:in) western_asia -syria text(is:present:in) asia -syria text(is:butted:against) israel -syria text(was:butted:against) turkey +qatar text(was:butted:against) saudi_arabia +solomon_islands text(is:placed:in) melanesia +solomon_islands text(was:placed:in) oceania +syria text(was:localized:in) western_asia +syria text(is:localized:in) asia +syria text(is:a:neighboring:country:of) israel +syria text(was:a:neighboring:country:of) turkey syria text(was:adjacent:to) jordan syria text(is:adjacent:to) lebanon -syria text(neighbors) iraq -india text(is:still:in) southern_asia -india text(was:still:in) asia -india text(is:a:neighboring:country:of) afghanistan -india text(was:a:neighboring:country:of) bhutan -india text(neighbors:with) bangladesh -india text(was:a:neighbor:of) china -india text(is:a:neighbor:of) nepal -india text(is:a:neighboring:state:to) myanmar -india text(was:a:neighboring:state:to) pakistan -india text(borders:with) sri_lanka -morocco text(was:currently:in) northern_africa -morocco text(borders) algeria -morocco text(is:butted:against) spain -morocco text(was:butted:against) western_sahara -kenya text(is:currently:in) eastern_africa -kenya text(is:placed:in) africa -kenya text(was:adjacent:to) uganda -kenya text(is:adjacent:to) tanzania -kenya text(neighbors) somalia -kenya text(is:a:neighboring:country:of) south_sudan -kenya text(was:a:neighboring:country:of) ethiopia -south_sudan text(was:placed:in) middle_africa -south_sudan text(can:be:found:in) africa -south_sudan text(neighbors:with) uganda -south_sudan text(was:a:neighbor:of) dr_congo -south_sudan text(is:a:neighbor:of) kenya -south_sudan text(is:a:neighboring:state:to) central_african_republic -south_sudan text(was:a:neighboring:state:to) sudan -south_sudan text(borders:with) ethiopia -ghana text(was:situated:in) western_africa -ghana text(borders) burkina_faso -ghana text(is:butted:against) ivory_coast -ghana text(was:butted:against) togo -tajikistan text(is:situated:in) central_asia -tajikistan text(is:located:in) asia -tajikistan text(was:adjacent:to) china -tajikistan text(is:adjacent:to) kyrgyzstan -tajikistan text(neighbors) afghanistan -tajikistan text(is:a:neighboring:country:of) uzbekistan -marshall_islands text(was:located:in) micronesia +syria text(was:a:neighbor:of) iraq +india text(was:present:in) southern_asia +india text(is:present:in) asia +india text(is:a:neighbor:of) afghanistan +india text(is:a:neighboring:state:to) bhutan +india text(was:a:neighboring:state:to) bangladesh +india text(borders:with) china +india text(neighbors:withborders) nepal +india text(neighbors) myanmar +india text(is:butted:against) pakistan +india text(was:butted:against) sri_lanka +morocco text(is:still:in) northern_africa +morocco text(is:a:neighboring:country:of) algeria +morocco text(was:a:neighboring:country:of) spain +morocco text(was:adjacent:to) western_sahara +kenya text(was:still:in) eastern_africa +kenya text(was:currently:in) africa +kenya text(is:adjacent:to) uganda +kenya text(was:a:neighbor:of) tanzania +kenya text(is:a:neighbor:of) somalia +kenya text(is:a:neighboring:state:to) south_sudan +kenya text(was:a:neighboring:state:to) ethiopia +south_sudan text(is:currently:in) middle_africa +south_sudan text(was:situated:in) africa +south_sudan text(borders:with) uganda +south_sudan text(neighbors:withborders) dr_congo +south_sudan text(neighbors) kenya +south_sudan text(is:butted:against) central_african_republic +south_sudan text(was:butted:against) sudan +south_sudan text(is:a:neighboring:country:of) ethiopia +ghana text(is:situated:in) western_africa +ghana text(was:a:neighboring:country:of) burkina_faso +ghana text(was:adjacent:to) ivory_coast +ghana text(is:adjacent:to) togo +tajikistan text(is:located:in) central_asia +tajikistan text(was:located:in) asia +tajikistan text(was:a:neighbor:of) china +tajikistan text(is:a:neighbor:of) kyrgyzstan +tajikistan text(is:a:neighboring:state:to) afghanistan +tajikistan text(was:a:neighboring:state:to) uzbekistan +marshall_islands text(could:be:found:in) micronesia marshall_islands text(can:be:found:in) oceania cameroon text(was:positioned:in) middle_africa cameroon text(is:positioned:in) africa -cameroon text(was:a:neighboring:country:of) chad -cameroon text(neighbors:with) republic_of_the_congo -cameroon text(was:a:neighbor:of) gabon -cameroon text(is:a:neighbor:of) equatorial_guinea -cameroon text(is:a:neighboring:state:to) central_african_republic -cameroon text(was:a:neighboring:state:to) nigeria +cameroon text(borders:with) chad +cameroon text(neighbors:withborders) republic_of_the_congo +cameroon text(neighbors) gabon +cameroon text(is:butted:against) equatorial_guinea +cameroon text(was:butted:against) central_african_republic +cameroon text(is:a:neighboring:country:of) nigeria nauru text(was:sited:in) micronesia nauru text(is:sited:in) oceania -thailand text(was:localized:in) south-eastern_asia -thailand text(borders:with) cambodia -thailand text(borders) myanmar -thailand text(is:butted:against) laos -thailand text(was:butted:against) malaysia -sudan text(is:localized:in) northern_africa -sudan text(was:adjacent:to) chad -sudan text(is:adjacent:to) libya -sudan text(neighbors) south_sudan -sudan text(is:a:neighboring:country:of) eritrea -sudan text(was:a:neighboring:country:of) central_african_republic -sudan text(neighbors:with) egypt -sudan text(was:a:neighbor:of) ethiopia -chad text(was:present:in) middle_africa -chad text(is:present:in) africa -chad text(is:a:neighbor:of) libya -chad text(is:a:neighboring:state:to) niger -chad text(was:a:neighboring:state:to) south_sudan -chad text(borders:with) cameroon -chad text(borders) central_african_republic -chad text(is:butted:against) nigeria -vanuatu text(is:still:in) melanesia -vanuatu text(was:still:in) oceania -cape_verde text(was:currently:in) western_africa -cape_verde text(is:currently:in) africa -falkland_islands text(is:placed:in) south_america -falkland_islands text(was:placed:in) americas -liberia text(can:be:found:in) western_africa -liberia text(was:situated:in) africa -liberia text(was:butted:against) ivory_coast -liberia text(was:adjacent:to) sierra_leone -liberia text(is:adjacent:to) guinea -cambodia text(is:situated:in) south-eastern_asia -cambodia text(is:located:in) asia -cambodia text(neighbors) vietnam -cambodia text(is:a:neighboring:country:of) thailand -cambodia text(was:a:neighboring:country:of) laos -zimbabwe text(was:located:in) eastern_africa -zimbabwe text(neighbors:with) zambia -zimbabwe text(was:a:neighbor:of) south_africa -zimbabwe text(is:a:neighbor:of) botswana -zimbabwe text(is:a:neighboring:state:to) mozambique +thailand text(is:placed:in) south-eastern_asia +thailand text(was:a:neighboring:country:of) cambodia +thailand text(was:adjacent:to) myanmar +thailand text(is:adjacent:to) laos +thailand text(was:a:neighbor:of) malaysia +sudan text(was:placed:in) northern_africa +sudan text(is:a:neighbor:of) chad +sudan text(is:a:neighboring:state:to) libya +sudan text(was:a:neighboring:state:to) south_sudan +sudan text(borders:with) eritrea +sudan text(neighbors:withborders) central_african_republic +sudan text(neighbors) egypt +sudan text(is:butted:against) ethiopia +chad text(was:localized:in) middle_africa +chad text(is:localized:in) africa +chad text(was:butted:against) libya +chad text(is:a:neighboring:country:of) niger +chad text(was:a:neighboring:country:of) south_sudan +chad text(was:adjacent:to) cameroon +chad text(is:adjacent:to) central_african_republic +chad text(was:a:neighbor:of) nigeria +vanuatu text(was:present:in) melanesia +vanuatu text(is:present:in) oceania +cape_verde text(is:still:in) western_africa +cape_verde text(was:still:in) africa +falkland_islands text(was:currently:in) south_america +falkland_islands text(is:currently:in) americas +liberia text(was:situated:in) western_africa +liberia text(is:situated:in) africa +liberia text(is:a:neighbor:of) ivory_coast +liberia text(is:a:neighboring:state:to) sierra_leone +liberia text(was:a:neighboring:state:to) guinea +cambodia text(is:located:in) south-eastern_asia +cambodia text(was:located:in) asia +cambodia text(borders:with) vietnam +cambodia text(neighbors:withborders) thailand +cambodia text(neighbors) laos +zimbabwe text(could:be:found:in) eastern_africa +zimbabwe text(is:butted:against) zambia +zimbabwe text(was:butted:against) south_africa +zimbabwe text(is:a:neighboring:country:of) botswana +zimbabwe text(was:a:neighboring:country:of) mozambique comoros text(can:be:found:in) eastern_africa comoros text(was:positioned:in) africa guam text(is:positioned:in) micronesia guam text(was:sited:in) oceania bahamas text(is:sited:in) caribbean -bahamas text(was:localized:in) americas -lebanon text(is:localized:in) western_asia -lebanon text(was:present:in) asia -lebanon text(was:a:neighboring:state:to) israel -lebanon text(borders:with) syria -sint_maarten text(is:present:in) caribbean -sint_maarten text(is:still:in) americas -sint_maarten text(borders) saint_martin -ethiopia text(was:still:in) eastern_africa -ethiopia text(was:currently:in) africa -ethiopia text(is:butted:against) somalia -ethiopia text(was:butted:against) kenya -ethiopia text(was:adjacent:to) eritrea -ethiopia text(is:adjacent:to) south_sudan -ethiopia text(neighbors) djibouti -ethiopia text(is:a:neighboring:country:of) sudan -united_states_virgin_islands text(is:currently:in) caribbean -united_states_virgin_islands text(is:placed:in) americas -guinea-bissau text(was:placed:in) western_africa -guinea-bissau text(can:be:found:in) africa -guinea-bissau text(was:a:neighboring:country:of) guinea -guinea-bissau text(neighbors:with) senegal -libya text(was:situated:in) northern_africa -libya text(is:situated:in) africa -libya text(was:a:neighbor:of) chad -libya text(is:a:neighbor:of) tunisia -libya text(is:a:neighboring:state:to) niger -libya text(was:a:neighboring:state:to) algeria -libya text(borders:with) egypt -libya text(borders) sudan -bhutan text(is:located:in) southern_asia -bhutan text(was:located:in) asia -bhutan text(is:butted:against) china -bhutan text(was:butted:against) india +bahamas text(is:placed:in) americas +lebanon text(was:placed:in) western_asia +lebanon text(was:localized:in) asia +lebanon text(was:adjacent:to) israel +lebanon text(is:adjacent:to) syria +sint_maarten text(is:localized:in) caribbean +sint_maarten text(was:present:in) americas +sint_maarten text(was:a:neighbor:of) saint_martin +ethiopia text(is:present:in) eastern_africa +ethiopia text(is:still:in) africa +ethiopia text(is:a:neighbor:of) somalia +ethiopia text(is:a:neighboring:state:to) kenya +ethiopia text(was:a:neighboring:state:to) eritrea +ethiopia text(borders:with) south_sudan +ethiopia text(neighbors:withborders) djibouti +ethiopia text(neighbors) sudan +united_states_virgin_islands text(was:still:in) caribbean +united_states_virgin_islands text(was:currently:in) americas +guinea-bissau text(is:currently:in) western_africa +guinea-bissau text(was:situated:in) africa +guinea-bissau text(is:butted:against) guinea +guinea-bissau text(was:butted:against) senegal +libya text(is:situated:in) northern_africa +libya text(is:located:in) africa +libya text(is:a:neighboring:country:of) chad +libya text(was:a:neighboring:country:of) tunisia +libya text(was:adjacent:to) niger +libya text(is:adjacent:to) algeria +libya text(was:a:neighbor:of) egypt +libya text(is:a:neighbor:of) sudan +bhutan text(was:located:in) southern_asia +bhutan text(could:be:found:in) asia +bhutan text(is:a:neighboring:state:to) china +bhutan text(was:a:neighboring:state:to) india macau text(can:be:found:in) eastern_asia macau text(was:positioned:in) asia -macau text(was:adjacent:to) china +macau text(borders:with) china french_polynesia text(is:positioned:in) polynesia french_polynesia text(was:sited:in) oceania somalia text(is:sited:in) eastern_africa -somalia text(was:localized:in) africa -somalia text(is:adjacent:to) djibouti +somalia text(is:placed:in) africa +somalia text(neighbors:withborders) djibouti somalia text(neighbors) kenya -somalia text(is:a:neighboring:country:of) ethiopia -saint_barthélemy text(is:localized:in) caribbean -saint_barthélemy text(was:present:in) americas -russia text(is:present:in) eastern_europe -russia text(is:still:in) europe -russia text(was:a:neighboring:country:of) ukraine -russia text(neighbors:with) belarus -russia text(was:a:neighbor:of) china -russia text(is:a:neighbor:of) kazakhstan -russia text(is:a:neighboring:state:to) norway -russia text(was:a:neighboring:state:to) poland -russia text(borders:with) azerbaijan -russia text(borders) lithuania -russia text(is:butted:against) estonia -russia text(was:butted:against) north_korea -russia text(was:adjacent:to) finland -russia text(is:adjacent:to) mongolia -russia text(neighbors) latvia -russia text(is:a:neighboring:country:of) georgia -new_zealand text(was:still:in) australia_and_new_zealand -new_zealand text(was:currently:in) oceania -panama text(is:currently:in) central_america -panama text(is:placed:in) americas -panama text(was:a:neighboring:country:of) costa_rica -panama text(neighbors:with) colombia -papua_new_guinea text(was:placed:in) melanesia -papua_new_guinea text(can:be:found:in) oceania -papua_new_guinea text(was:a:neighbor:of) indonesia -north_korea text(was:situated:in) eastern_asia -north_korea text(is:a:neighbor:of) china -north_korea text(is:a:neighboring:state:to) south_korea -north_korea text(was:a:neighboring:state:to) russia -latvia text(is:situated:in) northern_europe -latvia text(is:located:in) europe -latvia text(borders:with) lithuania -latvia text(borders) belarus -latvia text(is:butted:against) russia -latvia text(was:butted:against) estonia -oman text(was:located:in) western_asia +somalia text(is:butted:against) ethiopia +saint_barthélemy text(was:placed:in) caribbean +saint_barthélemy text(was:localized:in) americas +russia text(is:localized:in) eastern_europe +russia text(was:present:in) europe +russia text(was:butted:against) ukraine +russia text(is:a:neighboring:country:of) belarus +russia text(was:a:neighboring:country:of) china +russia text(was:adjacent:to) kazakhstan +russia text(is:adjacent:to) norway +russia text(was:a:neighbor:of) poland +russia text(is:a:neighbor:of) azerbaijan +russia text(is:a:neighboring:state:to) lithuania +russia text(was:a:neighboring:state:to) estonia +russia text(borders:with) north_korea +russia text(neighbors:withborders) finland +russia text(neighbors) mongolia +russia text(is:butted:against) latvia +russia text(was:butted:against) georgia +new_zealand text(is:present:in) australia_and_new_zealand +new_zealand text(is:still:in) oceania +panama text(was:still:in) central_america +panama text(was:currently:in) americas +panama text(is:a:neighboring:country:of) costa_rica +panama text(was:a:neighboring:country:of) colombia +papua_new_guinea text(is:currently:in) melanesia +papua_new_guinea text(was:situated:in) oceania +papua_new_guinea text(was:adjacent:to) indonesia +north_korea text(is:situated:in) eastern_asia +north_korea text(is:adjacent:to) china +north_korea text(was:a:neighbor:of) south_korea +north_korea text(is:a:neighbor:of) russia +latvia text(is:located:in) northern_europe +latvia text(was:located:in) europe +latvia text(is:a:neighboring:state:to) lithuania +latvia text(was:a:neighboring:state:to) belarus +latvia text(borders:with) russia +latvia text(neighbors:withborders) estonia +oman text(could:be:found:in) western_asia oman text(can:be:found:in) asia -oman text(was:adjacent:to) saudi_arabia -oman text(is:adjacent:to) yemen -oman text(neighbors) united_arab_emirates +oman text(neighbors) saudi_arabia +oman text(is:butted:against) yemen +oman text(was:butted:against) united_arab_emirates saint_pierre_and_miquelon text(was:positioned:in) northern_america saint_pierre_and_miquelon text(is:positioned:in) americas martinique text(was:sited:in) caribbean martinique text(is:sited:in) americas -united_kingdom text(was:localized:in) northern_europe -united_kingdom text(is:localized:in) europe +united_kingdom text(is:placed:in) northern_europe +united_kingdom text(was:placed:in) europe united_kingdom text(is:a:neighboring:country:of) ireland -israel text(was:present:in) western_asia -israel text(is:present:in) asia +israel text(was:localized:in) western_asia +israel text(is:localized:in) asia israel text(was:a:neighboring:country:of) lebanon -israel text(neighbors:with) egypt -israel text(was:a:neighbor:of) jordan -israel text(is:a:neighbor:of) syria -jersey text(is:still:in) northern_europe -jersey text(was:still:in) europe -pitcairn_islands text(was:currently:in) polynesia -pitcairn_islands text(is:currently:in) oceania -togo text(is:placed:in) western_africa -togo text(was:placed:in) africa -togo text(is:a:neighboring:state:to) burkina_faso -togo text(was:a:neighboring:state:to) ghana -togo text(borders:with) benin -kiribati text(can:be:found:in) micronesia -kiribati text(was:situated:in) oceania -iran text(is:situated:in) southern_asia -iran text(is:located:in) asia -iran text(borders) afghanistan -iran text(is:butted:against) turkmenistan -iran text(was:butted:against) turkey -iran text(was:adjacent:to) armenia -iran text(is:adjacent:to) azerbaijan -iran text(neighbors) pakistan -iran text(is:a:neighboring:country:of) iraq -saint_martin text(was:located:in) caribbean +israel text(was:adjacent:to) egypt +israel text(is:adjacent:to) jordan +israel text(was:a:neighbor:of) syria +jersey text(was:present:in) northern_europe +jersey text(is:present:in) europe +pitcairn_islands text(is:still:in) polynesia +pitcairn_islands text(was:still:in) oceania +togo text(was:currently:in) western_africa +togo text(is:currently:in) africa +togo text(is:a:neighbor:of) burkina_faso +togo text(is:a:neighboring:state:to) ghana +togo text(was:a:neighboring:state:to) benin +kiribati text(was:situated:in) micronesia +kiribati text(is:situated:in) oceania +iran text(is:located:in) southern_asia +iran text(was:located:in) asia +iran text(borders:with) afghanistan +iran text(neighbors:withborders) turkmenistan +iran text(neighbors) turkey +iran text(is:butted:against) armenia +iran text(was:butted:against) azerbaijan +iran text(is:a:neighboring:country:of) pakistan +iran text(was:a:neighboring:country:of) iraq +saint_martin text(could:be:found:in) caribbean saint_martin text(can:be:found:in) americas -saint_martin text(was:a:neighboring:country:of) sint_maarten +saint_martin text(was:adjacent:to) sint_maarten dominican_republic text(was:positioned:in) caribbean dominican_republic text(is:positioned:in) americas -dominican_republic text(neighbors:with) haiti +dominican_republic text(is:adjacent:to) haiti denmark text(was:sited:in) northern_europe denmark text(was:a:neighbor:of) germany bermuda text(is:sited:in) northern_america -bermuda text(was:localized:in) americas -chile text(is:localized:in) south_america +bermuda text(is:placed:in) americas +chile text(was:placed:in) south_america chile text(is:a:neighbor:of) argentina chile text(is:a:neighboring:state:to) bolivia chile text(was:a:neighboring:state:to) peru -kosovo text(was:present:in) eastern_europe -kosovo text(is:present:in) europe +kosovo text(was:localized:in) eastern_europe +kosovo text(is:localized:in) europe kosovo text(borders:with) serbia -kosovo text(borders) albania -kosovo text(is:butted:against) macedonia -kosovo text(was:butted:against) montenegro -saint_kitts_and_nevis text(is:still:in) caribbean -saint_kitts_and_nevis text(was:still:in) americas -eritrea text(was:currently:in) eastern_africa -eritrea text(was:adjacent:to) djibouti -eritrea text(is:adjacent:to) sudan -eritrea text(neighbors) ethiopia -equatorial_guinea text(is:currently:in) middle_africa -equatorial_guinea text(is:placed:in) africa -equatorial_guinea text(is:a:neighboring:country:of) gabon -equatorial_guinea text(was:a:neighboring:country:of) cameroon -niger text(was:placed:in) western_africa -niger text(can:be:found:in) africa -niger text(neighbors:with) chad -niger text(was:a:neighbor:of) libya -niger text(is:a:neighbor:of) burkina_faso -niger text(is:a:neighboring:state:to) benin -niger text(was:a:neighboring:state:to) mali -niger text(borders:with) algeria -niger text(borders) nigeria -anguilla text(was:situated:in) caribbean -anguilla text(is:situated:in) americas -rwanda text(is:located:in) eastern_africa -rwanda text(was:located:in) africa +kosovo text(neighbors:withborders) albania +kosovo text(neighbors) macedonia +kosovo text(is:butted:against) montenegro +saint_kitts_and_nevis text(was:present:in) caribbean +saint_kitts_and_nevis text(is:present:in) americas +eritrea text(is:still:in) eastern_africa +eritrea text(was:butted:against) djibouti +eritrea text(is:a:neighboring:country:of) sudan +eritrea text(was:a:neighboring:country:of) ethiopia +equatorial_guinea text(was:still:in) middle_africa +equatorial_guinea text(was:currently:in) africa +equatorial_guinea text(was:adjacent:to) gabon +equatorial_guinea text(is:adjacent:to) cameroon +niger text(is:currently:in) western_africa +niger text(was:situated:in) africa +niger text(was:a:neighbor:of) chad +niger text(is:a:neighbor:of) libya +niger text(is:a:neighboring:state:to) burkina_faso +niger text(was:a:neighboring:state:to) benin +niger text(borders:with) mali +niger text(neighbors:withborders) algeria +niger text(neighbors) nigeria +anguilla text(is:situated:in) caribbean +anguilla text(is:located:in) americas +rwanda text(was:located:in) eastern_africa +rwanda text(could:be:found:in) africa rwanda text(is:butted:against) burundi rwanda text(was:butted:against) tanzania -rwanda text(was:adjacent:to) uganda -rwanda text(is:adjacent:to) dr_congo +rwanda text(is:a:neighboring:country:of) uganda +rwanda text(was:a:neighboring:country:of) dr_congo united_arab_emirates text(can:be:found:in) western_asia united_arab_emirates text(was:positioned:in) asia -united_arab_emirates text(neighbors) oman -united_arab_emirates text(is:a:neighboring:country:of) saudi_arabia +united_arab_emirates text(was:adjacent:to) oman +united_arab_emirates text(is:adjacent:to) saudi_arabia estonia text(is:positioned:in) northern_europe estonia text(was:sited:in) europe -estonia text(was:a:neighboring:country:of) latvia -estonia text(neighbors:with) russia +estonia text(was:a:neighbor:of) latvia +estonia text(is:a:neighbor:of) russia greece text(is:sited:in) southern_europe -greece text(was:localized:in) europe -greece text(was:a:neighbor:of) bulgaria -greece text(is:a:neighbor:of) albania -greece text(is:a:neighboring:state:to) macedonia -greece text(was:a:neighboring:state:to) turkey -senegal text(is:localized:in) western_africa -senegal text(was:present:in) africa -senegal text(borders:with) guinea-bissau -senegal text(borders) mauritania -senegal text(is:butted:against) mali -senegal text(was:butted:against) gambia -senegal text(was:adjacent:to) guinea -guadeloupe text(is:present:in) caribbean -guadeloupe text(is:still:in) americas -monaco text(was:still:in) western_europe -monaco text(is:adjacent:to) france -djibouti text(was:currently:in) eastern_africa -djibouti text(neighbors) eritrea -djibouti text(is:a:neighboring:country:of) somalia -djibouti text(was:a:neighboring:country:of) ethiopia -indonesia text(is:currently:in) south-eastern_asia -indonesia text(neighbors:with) papua_new_guinea -indonesia text(was:a:neighbor:of) timor-leste -indonesia text(is:a:neighbor:of) malaysia -british_virgin_islands text(is:placed:in) caribbean -british_virgin_islands text(was:placed:in) americas -cook_islands text(can:be:found:in) polynesia -cook_islands text(was:situated:in) oceania -uganda text(is:situated:in) eastern_africa -uganda text(is:located:in) africa -uganda text(is:a:neighboring:state:to) tanzania -uganda text(was:a:neighboring:state:to) dr_congo -uganda text(borders:with) kenya -uganda text(borders) south_sudan -uganda text(is:butted:against) rwanda -macedonia text(was:located:in) southern_europe +greece text(is:placed:in) europe +greece text(is:a:neighboring:state:to) bulgaria +greece text(was:a:neighboring:state:to) albania +greece text(borders:with) macedonia +greece text(neighbors:withborders) turkey +senegal text(was:placed:in) western_africa +senegal text(was:localized:in) africa +senegal text(neighbors) guinea-bissau +senegal text(is:butted:against) mauritania +senegal text(was:butted:against) mali +senegal text(is:a:neighboring:country:of) gambia +senegal text(was:a:neighboring:country:of) guinea +guadeloupe text(is:localized:in) caribbean +guadeloupe text(was:present:in) americas +monaco text(is:present:in) western_europe +monaco text(was:adjacent:to) france +djibouti text(is:still:in) eastern_africa +djibouti text(is:adjacent:to) eritrea +djibouti text(was:a:neighbor:of) somalia +djibouti text(is:a:neighbor:of) ethiopia +indonesia text(was:still:in) south-eastern_asia +indonesia text(is:a:neighboring:state:to) papua_new_guinea +indonesia text(was:a:neighboring:state:to) timor-leste +indonesia text(borders:with) malaysia +british_virgin_islands text(was:currently:in) caribbean +british_virgin_islands text(is:currently:in) americas +cook_islands text(was:situated:in) polynesia +cook_islands text(is:situated:in) oceania +uganda text(is:located:in) eastern_africa +uganda text(was:located:in) africa +uganda text(neighbors:withborders) tanzania +uganda text(neighbors) dr_congo +uganda text(is:butted:against) kenya +uganda text(was:butted:against) south_sudan +uganda text(is:a:neighboring:country:of) rwanda +macedonia text(could:be:found:in) southern_europe macedonia text(can:be:found:in) europe -macedonia text(was:butted:against) kosovo +macedonia text(was:a:neighboring:country:of) kosovo macedonia text(was:adjacent:to) greece macedonia text(is:adjacent:to) albania -macedonia text(neighbors) serbia -macedonia text(is:a:neighboring:country:of) bulgaria +macedonia text(was:a:neighbor:of) serbia +macedonia text(is:a:neighbor:of) bulgaria tunisia text(was:positioned:in) northern_africa tunisia text(is:positioned:in) africa -tunisia text(was:a:neighboring:country:of) libya -tunisia text(neighbors:with) algeria +tunisia text(is:a:neighboring:state:to) libya +tunisia text(was:a:neighboring:state:to) algeria ecuador text(was:sited:in) south_america -ecuador text(was:a:neighbor:of) peru -ecuador text(is:a:neighbor:of) colombia +ecuador text(borders:with) peru +ecuador text(neighbors:withborders) colombia brazil text(is:sited:in) south_america -brazil text(was:localized:in) americas -brazil text(is:a:neighboring:state:to) bolivia -brazil text(was:a:neighboring:state:to) colombia -brazil text(borders:with) paraguay -brazil text(borders) uruguay -brazil text(is:butted:against) french_guiana -brazil text(was:butted:against) suriname -brazil text(was:adjacent:to) venezuela -brazil text(is:adjacent:to) argentina -brazil text(neighbors) guyana -brazil text(is:a:neighboring:country:of) peru -paraguay text(is:localized:in) south_america -paraguay text(was:present:in) americas -paraguay text(was:a:neighboring:country:of) argentina -paraguay text(neighbors:with) brazil -paraguay text(was:a:neighbor:of) bolivia -finland text(is:present:in) northern_europe -finland text(is:still:in) europe -finland text(is:a:neighbor:of) norway -finland text(is:a:neighboring:state:to) sweden -finland text(was:a:neighboring:state:to) russia -jordan text(was:still:in) western_asia -jordan text(borders:with) saudi_arabia -jordan text(borders) israel -jordan text(is:butted:against) iraq -jordan text(was:butted:against) syria -timor-leste text(was:currently:in) south-eastern_asia -timor-leste text(was:adjacent:to) indonesia -montenegro text(is:currently:in) southern_europe -montenegro text(is:placed:in) europe -montenegro text(is:adjacent:to) kosovo -montenegro text(neighbors) bosnia_and_herzegovina -montenegro text(is:a:neighboring:country:of) croatia -montenegro text(was:a:neighboring:country:of) serbia -montenegro text(neighbors:with) albania -peru text(was:placed:in) south_america -peru text(can:be:found:in) americas -peru text(was:a:neighbor:of) ecuador -peru text(is:a:neighbor:of) bolivia -peru text(is:a:neighboring:state:to) chile -peru text(was:a:neighboring:state:to) brazil -peru text(borders:with) colombia -montserrat text(was:situated:in) caribbean -montserrat text(is:situated:in) americas -ukraine text(is:located:in) eastern_europe -ukraine text(was:located:in) europe -ukraine text(borders) slovakia -ukraine text(is:butted:against) belarus -ukraine text(was:butted:against) poland -ukraine text(was:adjacent:to) russia -ukraine text(is:adjacent:to) hungary -ukraine text(neighbors) moldova -ukraine text(is:a:neighboring:country:of) romania +brazil text(is:placed:in) americas +brazil text(neighbors) bolivia +brazil text(is:butted:against) colombia +brazil text(was:butted:against) paraguay +brazil text(is:a:neighboring:country:of) uruguay +brazil text(was:a:neighboring:country:of) french_guiana +brazil text(was:adjacent:to) suriname +brazil text(is:adjacent:to) venezuela +brazil text(was:a:neighbor:of) argentina +brazil text(is:a:neighbor:of) guyana +brazil text(is:a:neighboring:state:to) peru +paraguay text(was:placed:in) south_america +paraguay text(was:localized:in) americas +paraguay text(was:a:neighboring:state:to) argentina +paraguay text(borders:with) brazil +paraguay text(neighbors:withborders) bolivia +finland text(is:localized:in) northern_europe +finland text(was:present:in) europe +finland text(neighbors) norway +finland text(is:butted:against) sweden +finland text(was:butted:against) russia +jordan text(is:present:in) western_asia +jordan text(is:a:neighboring:country:of) saudi_arabia +jordan text(was:a:neighboring:country:of) israel +jordan text(was:adjacent:to) iraq +jordan text(is:adjacent:to) syria +timor-leste text(is:still:in) south-eastern_asia +timor-leste text(was:a:neighbor:of) indonesia +montenegro text(was:still:in) southern_europe +montenegro text(was:currently:in) europe +montenegro text(is:a:neighbor:of) kosovo +montenegro text(is:a:neighboring:state:to) bosnia_and_herzegovina +montenegro text(was:a:neighboring:state:to) croatia +montenegro text(borders:with) serbia +montenegro text(neighbors:withborders) albania +peru text(is:currently:in) south_america +peru text(was:situated:in) americas +peru text(neighbors) ecuador +peru text(is:butted:against) bolivia +peru text(was:butted:against) chile +peru text(is:a:neighboring:country:of) brazil +peru text(was:a:neighboring:country:of) colombia +montserrat text(is:situated:in) caribbean +montserrat text(is:located:in) americas +ukraine text(was:located:in) eastern_europe +ukraine text(could:be:found:in) europe +ukraine text(was:adjacent:to) slovakia +ukraine text(is:adjacent:to) belarus +ukraine text(was:a:neighbor:of) poland +ukraine text(is:a:neighbor:of) russia +ukraine text(is:a:neighboring:state:to) hungary +ukraine text(was:a:neighboring:state:to) moldova +ukraine text(borders:with) romania dominica text(can:be:found:in) caribbean dominica text(was:positioned:in) americas turkmenistan text(is:positioned:in) central_asia -turkmenistan text(was:a:neighboring:country:of) kazakhstan -turkmenistan text(neighbors:with) afghanistan -turkmenistan text(was:a:neighbor:of) uzbekistan -turkmenistan text(is:a:neighbor:of) iran +turkmenistan text(neighbors:withborders) kazakhstan +turkmenistan text(neighbors) afghanistan +turkmenistan text(is:butted:against) uzbekistan +turkmenistan text(was:butted:against) iran guernsey text(was:sited:in) northern_europe guernsey text(is:sited:in) europe -gibraltar text(was:localized:in) southern_europe -gibraltar text(is:localized:in) europe -gibraltar text(is:a:neighboring:state:to) spain -switzerland text(was:present:in) western_europe -switzerland text(is:present:in) europe -switzerland text(was:a:neighboring:state:to) germany -switzerland text(borders:with) italy -switzerland text(borders) austria -switzerland text(is:butted:against) france -switzerland text(was:butted:against) liechtenstein -austria text(is:still:in) western_europe -austria text(was:still:in) europe -austria text(was:adjacent:to) germany -austria text(is:adjacent:to) slovakia -austria text(neighbors) slovenia -austria text(is:a:neighboring:country:of) italy -austria text(was:a:neighboring:country:of) switzerland -austria text(neighbors:with) hungary -austria text(was:a:neighbor:of) liechtenstein -austria text(is:a:neighbor:of) czechia -hungary text(was:currently:in) eastern_europe -hungary text(is:a:neighboring:state:to) ukraine -hungary text(was:a:neighboring:state:to) slovakia -hungary text(borders:with) slovenia -hungary text(borders) croatia -hungary text(is:butted:against) austria -hungary text(was:butted:against) serbia -hungary text(was:adjacent:to) romania -malawi text(is:currently:in) eastern_africa -malawi text(is:placed:in) africa -malawi text(is:adjacent:to) zambia -malawi text(neighbors) tanzania -malawi text(is:a:neighboring:country:of) mozambique -hong_kong text(was:placed:in) eastern_asia -hong_kong text(was:a:neighboring:country:of) china -liechtenstein text(can:be:found:in) western_europe -liechtenstein text(was:situated:in) europe -liechtenstein text(neighbors:with) switzerland -liechtenstein text(was:a:neighbor:of) austria -barbados text(is:situated:in) caribbean -barbados text(is:located:in) americas -georgia text(was:located:in) western_asia +gibraltar text(is:placed:in) southern_europe +gibraltar text(was:placed:in) europe +gibraltar text(is:a:neighboring:country:of) spain +switzerland text(was:localized:in) western_europe +switzerland text(is:localized:in) europe +switzerland text(was:a:neighboring:country:of) germany +switzerland text(was:adjacent:to) italy +switzerland text(is:adjacent:to) austria +switzerland text(was:a:neighbor:of) france +switzerland text(is:a:neighbor:of) liechtenstein +austria text(was:present:in) western_europe +austria text(is:present:in) europe +austria text(is:a:neighboring:state:to) germany +austria text(was:a:neighboring:state:to) slovakia +austria text(borders:with) slovenia +austria text(neighbors:withborders) italy +austria text(neighbors) switzerland +austria text(is:butted:against) hungary +austria text(was:butted:against) liechtenstein +austria text(is:a:neighboring:country:of) czechia +hungary text(is:still:in) eastern_europe +hungary text(was:a:neighboring:country:of) ukraine +hungary text(was:adjacent:to) slovakia +hungary text(is:adjacent:to) slovenia +hungary text(was:a:neighbor:of) croatia +hungary text(is:a:neighbor:of) austria +hungary text(is:a:neighboring:state:to) serbia +hungary text(was:a:neighboring:state:to) romania +malawi text(was:still:in) eastern_africa +malawi text(was:currently:in) africa +malawi text(borders:with) zambia +malawi text(neighbors:withborders) tanzania +malawi text(neighbors) mozambique +hong_kong text(is:currently:in) eastern_asia +hong_kong text(is:butted:against) china +liechtenstein text(was:situated:in) western_europe +liechtenstein text(is:situated:in) europe +liechtenstein text(was:butted:against) switzerland +liechtenstein text(is:a:neighboring:country:of) austria +barbados text(is:located:in) caribbean +barbados text(was:located:in) americas +georgia text(could:be:found:in) western_asia georgia text(can:be:found:in) asia -georgia text(is:a:neighbor:of) armenia -georgia text(is:a:neighboring:state:to) azerbaijan -georgia text(was:a:neighboring:state:to) russia -georgia text(borders:with) turkey +georgia text(was:a:neighboring:country:of) armenia +georgia text(was:adjacent:to) azerbaijan +georgia text(is:adjacent:to) russia +georgia text(was:a:neighbor:of) turkey albania text(was:positioned:in) southern_europe albania text(is:positioned:in) europe -albania text(borders) montenegro -albania text(is:butted:against) macedonia -albania text(was:butted:against) kosovo -albania text(was:adjacent:to) greece +albania text(is:a:neighbor:of) montenegro +albania text(is:a:neighboring:state:to) macedonia +albania text(was:a:neighboring:state:to) kosovo +albania text(borders:with) greece kuwait text(was:sited:in) western_asia kuwait text(is:sited:in) asia -kuwait text(is:adjacent:to) saudi_arabia +kuwait text(neighbors:withborders) saudi_arabia kuwait text(neighbors) iraq -south_africa text(was:localized:in) southern_africa -south_africa text(is:localized:in) africa -south_africa text(is:a:neighboring:country:of) mozambique -south_africa text(was:a:neighboring:country:of) botswana -south_africa text(neighbors:with) swaziland -south_africa text(was:a:neighbor:of) zimbabwe -south_africa text(is:a:neighbor:of) namibia -south_africa text(is:a:neighboring:state:to) lesotho -haiti text(was:present:in) caribbean -haiti text(is:present:in) americas -haiti text(was:a:neighboring:state:to) dominican_republic -afghanistan text(is:still:in) southern_asia -afghanistan text(was:still:in) asia -afghanistan text(borders:with) turkmenistan -afghanistan text(borders) china -afghanistan text(is:butted:against) tajikistan -afghanistan text(was:butted:against) uzbekistan -afghanistan text(was:adjacent:to) iran -afghanistan text(is:adjacent:to) pakistan -singapore text(was:currently:in) south-eastern_asia -singapore text(is:currently:in) asia -benin text(is:placed:in) western_africa -benin text(was:placed:in) africa -benin text(neighbors) niger -benin text(is:a:neighboring:country:of) burkina_faso -benin text(was:a:neighboring:country:of) togo -benin text(neighbors:with) nigeria -åland_islands text(can:be:found:in) northern_europe -åland_islands text(was:situated:in) europe -croatia text(is:situated:in) southern_europe -croatia text(is:located:in) europe -croatia text(was:a:neighbor:of) slovenia -croatia text(is:a:neighbor:of) bosnia_and_herzegovina -croatia text(is:a:neighboring:state:to) hungary -croatia text(was:a:neighboring:state:to) serbia -croatia text(borders:with) montenegro -sweden text(was:located:in) northern_europe +south_africa text(is:placed:in) southern_africa +south_africa text(was:placed:in) africa +south_africa text(is:butted:against) mozambique +south_africa text(was:butted:against) botswana +south_africa text(is:a:neighboring:country:of) swaziland +south_africa text(was:a:neighboring:country:of) zimbabwe +south_africa text(was:adjacent:to) namibia +south_africa text(is:adjacent:to) lesotho +haiti text(was:localized:in) caribbean +haiti text(is:localized:in) americas +haiti text(was:a:neighbor:of) dominican_republic +afghanistan text(was:present:in) southern_asia +afghanistan text(is:present:in) asia +afghanistan text(is:a:neighbor:of) turkmenistan +afghanistan text(is:a:neighboring:state:to) china +afghanistan text(was:a:neighboring:state:to) tajikistan +afghanistan text(borders:with) uzbekistan +afghanistan text(neighbors:withborders) iran +afghanistan text(neighbors) pakistan +singapore text(is:still:in) south-eastern_asia +singapore text(was:still:in) asia +benin text(was:currently:in) western_africa +benin text(is:currently:in) africa +benin text(is:butted:against) niger +benin text(was:butted:against) burkina_faso +benin text(is:a:neighboring:country:of) togo +benin text(was:a:neighboring:country:of) nigeria +åland_islands text(was:situated:in) northern_europe +åland_islands text(is:situated:in) europe +croatia text(is:located:in) southern_europe +croatia text(was:located:in) europe +croatia text(was:adjacent:to) slovenia +croatia text(is:adjacent:to) bosnia_and_herzegovina +croatia text(was:a:neighbor:of) hungary +croatia text(is:a:neighbor:of) serbia +croatia text(is:a:neighboring:state:to) montenegro +sweden text(could:be:found:in) northern_europe sweden text(can:be:found:in) europe -sweden text(borders) norway -sweden text(is:butted:against) finland +sweden text(was:a:neighboring:state:to) norway +sweden text(borders:with) finland mexico text(was:positioned:in) northern_america -mexico text(was:butted:against) belize -mexico text(was:adjacent:to) united_states -mexico text(is:adjacent:to) guatemala +mexico text(neighbors:withborders) belize +mexico text(neighbors) united_states +mexico text(is:butted:against) guatemala greenland text(is:positioned:in) northern_america greenland text(was:sited:in) americas norfolk_island text(is:sited:in) australia_and_new_zealand -norfolk_island text(was:localized:in) oceania -nepal text(is:localized:in) southern_asia -nepal text(was:present:in) asia -nepal text(neighbors) china +norfolk_island text(is:placed:in) oceania +nepal text(was:placed:in) southern_asia +nepal text(was:localized:in) asia +nepal text(was:butted:against) china nepal text(is:a:neighboring:country:of) india -guatemala text(is:present:in) central_america +guatemala text(is:localized:in) central_america guatemala text(was:a:neighboring:country:of) belize -guatemala text(neighbors:with) el_salvador -guatemala text(was:a:neighbor:of) mexico -guatemala text(is:a:neighbor:of) honduras -south_korea text(is:still:in) eastern_asia -south_korea text(was:still:in) asia -south_korea text(is:a:neighboring:state:to) north_korea -moldova text(was:currently:in) eastern_europe -moldova text(is:currently:in) europe -moldova text(was:a:neighboring:state:to) ukraine -moldova text(borders:with) romania -mauritius text(is:placed:in) eastern_africa -mauritius text(was:placed:in) africa -belarus text(can:be:found:in) eastern_europe -belarus text(borders) ukraine -belarus text(is:butted:against) poland -belarus text(was:butted:against) lithuania -belarus text(was:adjacent:to) russia -belarus text(is:adjacent:to) latvia -bangladesh text(was:situated:in) southern_asia -bangladesh text(neighbors) myanmar -bangladesh text(is:a:neighboring:country:of) india -malaysia text(is:situated:in) south-eastern_asia -malaysia text(is:located:in) asia -malaysia text(was:a:neighboring:country:of) thailand -malaysia text(neighbors:with) indonesia +guatemala text(was:adjacent:to) el_salvador +guatemala text(is:adjacent:to) mexico +guatemala text(was:a:neighbor:of) honduras +south_korea text(was:present:in) eastern_asia +south_korea text(is:present:in) asia +south_korea text(is:a:neighbor:of) north_korea +moldova text(is:still:in) eastern_europe +moldova text(was:still:in) europe +moldova text(is:a:neighboring:state:to) ukraine +moldova text(was:a:neighboring:state:to) romania +mauritius text(was:currently:in) eastern_africa +mauritius text(is:currently:in) africa +belarus text(was:situated:in) eastern_europe +belarus text(borders:with) ukraine +belarus text(neighbors:withborders) poland +belarus text(neighbors) lithuania +belarus text(is:butted:against) russia +belarus text(was:butted:against) latvia +bangladesh text(is:situated:in) southern_asia +bangladesh text(is:a:neighboring:country:of) myanmar +bangladesh text(was:a:neighboring:country:of) india +malaysia text(is:located:in) south-eastern_asia +malaysia text(was:located:in) asia +malaysia text(was:adjacent:to) thailand +malaysia text(is:adjacent:to) indonesia malaysia text(was:a:neighbor:of) brunei -bosnia_and_herzegovina text(was:located:in) southern_europe +bosnia_and_herzegovina text(could:be:found:in) southern_europe bosnia_and_herzegovina text(can:be:found:in) europe bosnia_and_herzegovina text(is:a:neighbor:of) serbia bosnia_and_herzegovina text(is:a:neighboring:state:to) croatia @@ -946,164 +946,164 @@ bosnia_and_herzegovina text(was:a:neighboring:state:to) montenegro luxembourg text(was:positioned:in) western_europe luxembourg text(is:positioned:in) europe luxembourg text(borders:with) germany -luxembourg text(borders) belgium -luxembourg text(is:butted:against) france +luxembourg text(neighbors:withborders) belgium +luxembourg text(neighbors) france italy text(was:sited:in) southern_europe italy text(is:sited:in) europe -italy text(was:butted:against) slovenia -italy text(was:adjacent:to) switzerland -italy text(is:adjacent:to) austria -italy text(neighbors) france -italy text(is:a:neighboring:country:of) vatican_city -italy text(was:a:neighboring:country:of) san_marino -azerbaijan text(was:localized:in) western_asia -azerbaijan text(is:localized:in) asia -azerbaijan text(neighbors:with) turkey -azerbaijan text(was:a:neighbor:of) armenia -azerbaijan text(is:a:neighbor:of) russia -azerbaijan text(is:a:neighboring:state:to) iran -azerbaijan text(was:a:neighboring:state:to) georgia -honduras text(was:present:in) central_america -honduras text(is:present:in) americas -honduras text(borders:with) guatemala -honduras text(borders) nicaragua +italy text(is:butted:against) slovenia +italy text(was:butted:against) switzerland +italy text(is:a:neighboring:country:of) austria +italy text(was:a:neighboring:country:of) france +italy text(was:adjacent:to) vatican_city +italy text(is:adjacent:to) san_marino +azerbaijan text(is:placed:in) western_asia +azerbaijan text(was:placed:in) asia +azerbaijan text(was:a:neighbor:of) turkey +azerbaijan text(is:a:neighbor:of) armenia +azerbaijan text(is:a:neighboring:state:to) russia +azerbaijan text(was:a:neighboring:state:to) iran +azerbaijan text(borders:with) georgia +honduras text(was:localized:in) central_america +honduras text(is:localized:in) americas +honduras text(neighbors:withborders) guatemala +honduras text(neighbors) nicaragua honduras text(is:butted:against) el_salvador -mali text(is:still:in) western_africa -mali text(was:still:in) africa +mali text(was:present:in) western_africa +mali text(is:present:in) africa mali text(was:butted:against) burkina_faso -mali text(was:adjacent:to) guinea -mali text(is:adjacent:to) mauritania -mali text(neighbors) niger -mali text(is:a:neighboring:country:of) senegal -mali text(was:a:neighboring:country:of) algeria -mali text(neighbors:with) ivory_coast -taiwan text(was:currently:in) eastern_asia -taiwan text(is:currently:in) asia -algeria text(is:placed:in) northern_africa -algeria text(was:placed:in) africa -algeria text(was:a:neighbor:of) libya -algeria text(is:a:neighbor:of) tunisia -algeria text(is:a:neighboring:state:to) mauritania -algeria text(was:a:neighboring:state:to) morocco -algeria text(borders:with) niger -algeria text(borders) mali -algeria text(is:butted:against) western_sahara -french_guiana text(can:be:found:in) south_america -french_guiana text(was:butted:against) brazil -french_guiana text(was:adjacent:to) suriname -yemen text(was:situated:in) western_asia -yemen text(is:situated:in) asia -yemen text(is:adjacent:to) oman -yemen text(neighbors) saudi_arabia -puerto_rico text(is:located:in) caribbean -puerto_rico text(was:located:in) americas +mali text(is:a:neighboring:country:of) guinea +mali text(was:a:neighboring:country:of) mauritania +mali text(was:adjacent:to) niger +mali text(is:adjacent:to) senegal +mali text(was:a:neighbor:of) algeria +mali text(is:a:neighbor:of) ivory_coast +taiwan text(is:still:in) eastern_asia +taiwan text(was:still:in) asia +algeria text(was:currently:in) northern_africa +algeria text(is:currently:in) africa +algeria text(is:a:neighboring:state:to) libya +algeria text(was:a:neighboring:state:to) tunisia +algeria text(borders:with) mauritania +algeria text(neighbors:withborders) morocco +algeria text(neighbors) niger +algeria text(is:butted:against) mali +algeria text(was:butted:against) western_sahara +french_guiana text(was:situated:in) south_america +french_guiana text(is:a:neighboring:country:of) brazil +french_guiana text(was:a:neighboring:country:of) suriname +yemen text(is:situated:in) western_asia +yemen text(is:located:in) asia +yemen text(was:adjacent:to) oman +yemen text(is:adjacent:to) saudi_arabia +puerto_rico text(was:located:in) caribbean +puerto_rico text(could:be:found:in) americas saint_vincent_and_the_grenadines text(can:be:found:in) caribbean saint_vincent_and_the_grenadines text(was:positioned:in) americas venezuela text(is:positioned:in) south_america -venezuela text(is:a:neighboring:country:of) brazil -venezuela text(was:a:neighboring:country:of) guyana -venezuela text(neighbors:with) colombia +venezuela text(was:a:neighbor:of) brazil +venezuela text(is:a:neighbor:of) guyana +venezuela text(is:a:neighboring:state:to) colombia grenada text(was:sited:in) caribbean grenada text(is:sited:in) americas -united_states text(was:localized:in) northern_america -united_states text(was:a:neighbor:of) canada -united_states text(is:a:neighbor:of) mexico -tokelau text(is:localized:in) polynesia -tokelau text(was:present:in) oceania -slovenia text(is:present:in) southern_europe -slovenia text(is:still:in) europe -slovenia text(is:a:neighboring:state:to) austria -slovenia text(was:a:neighboring:state:to) croatia -slovenia text(borders:with) italy -slovenia text(borders) hungary -philippines text(was:still:in) south-eastern_asia -philippines text(was:currently:in) asia -micronesia text(is:currently:in) micronesia -micronesia text(is:placed:in) oceania -china text(was:placed:in) eastern_asia -china text(can:be:found:in) asia -china text(is:butted:against) afghanistan -china text(was:butted:against) bhutan +united_states text(is:placed:in) northern_america +united_states text(was:a:neighboring:state:to) canada +united_states text(borders:with) mexico +tokelau text(was:placed:in) polynesia +tokelau text(was:localized:in) oceania +slovenia text(is:localized:in) southern_europe +slovenia text(was:present:in) europe +slovenia text(neighbors:withborders) austria +slovenia text(neighbors) croatia +slovenia text(is:butted:against) italy +slovenia text(was:butted:against) hungary +philippines text(is:present:in) south-eastern_asia +philippines text(is:still:in) asia +micronesia text(was:still:in) micronesia +micronesia text(was:currently:in) oceania +china text(is:currently:in) eastern_asia +china text(was:situated:in) asia +china text(is:a:neighboring:country:of) afghanistan +china text(was:a:neighboring:country:of) bhutan china text(was:adjacent:to) macau china text(is:adjacent:to) india -china text(neighbors) kazakhstan -china text(is:a:neighboring:country:of) kyrgyzstan -china text(was:a:neighboring:country:of) tajikistan -china text(neighbors:with) laos -china text(was:a:neighbor:of) russia -china text(is:a:neighbor:of) north_korea -china text(is:a:neighboring:state:to) myanmar -china text(was:a:neighboring:state:to) pakistan -china text(borders:with) mongolia -china text(borders) hong_kong -china text(is:butted:against) vietnam -gabon text(was:situated:in) middle_africa -gabon text(is:situated:in) africa -gabon text(was:butted:against) equatorial_guinea -gabon text(was:adjacent:to) republic_of_the_congo -gabon text(is:adjacent:to) cameroon -united_states_minor_outlying_islands text(is:located:in) northern_america -united_states_minor_outlying_islands text(was:located:in) americas +china text(was:a:neighbor:of) kazakhstan +china text(is:a:neighbor:of) kyrgyzstan +china text(is:a:neighboring:state:to) tajikistan +china text(was:a:neighboring:state:to) laos +china text(borders:with) russia +china text(neighbors:withborders) north_korea +china text(neighbors) myanmar +china text(is:butted:against) pakistan +china text(was:butted:against) mongolia +china text(is:a:neighboring:country:of) hong_kong +china text(was:a:neighboring:country:of) vietnam +gabon text(is:situated:in) middle_africa +gabon text(is:located:in) africa +gabon text(was:adjacent:to) equatorial_guinea +gabon text(is:adjacent:to) republic_of_the_congo +gabon text(was:a:neighbor:of) cameroon +united_states_minor_outlying_islands text(was:located:in) northern_america +united_states_minor_outlying_islands text(could:be:found:in) americas andorra text(can:be:found:in) southern_europe andorra text(was:positioned:in) europe -andorra text(neighbors) spain -andorra text(is:a:neighboring:country:of) france +andorra text(is:a:neighbor:of) spain +andorra text(is:a:neighboring:state:to) france samoa text(is:positioned:in) polynesia samoa text(was:sited:in) oceania gambia text(is:sited:in) western_africa -gambia text(was:localized:in) africa -gambia text(was:a:neighboring:country:of) senegal -palestine text(is:localized:in) western_asia -palestine text(was:present:in) asia -palestine text(neighbors:with) jordan -palestine text(was:a:neighbor:of) egypt -palestine text(is:a:neighbor:of) israel -réunion text(is:present:in) eastern_africa -réunion text(is:still:in) africa -france text(was:still:in) western_europe -france text(was:currently:in) europe -france text(is:a:neighboring:state:to) germany -france text(was:a:neighboring:state:to) luxembourg -france text(borders:with) italy -france text(borders) andorra -france text(is:butted:against) switzerland -france text(was:butted:against) monaco -france text(was:adjacent:to) belgium -france text(is:adjacent:to) spain -mongolia text(is:currently:in) eastern_asia -mongolia text(is:placed:in) asia -mongolia text(neighbors) china -mongolia text(is:a:neighboring:country:of) russia -lithuania text(was:placed:in) northern_europe -lithuania text(can:be:found:in) europe -lithuania text(was:a:neighboring:country:of) poland -lithuania text(neighbors:with) latvia -lithuania text(was:a:neighbor:of) belarus -lithuania text(is:a:neighbor:of) russia -cayman_islands text(was:situated:in) caribbean -cayman_islands text(is:situated:in) americas -saint_lucia text(is:located:in) caribbean -saint_lucia text(was:located:in) americas +gambia text(is:placed:in) africa +gambia text(was:a:neighboring:state:to) senegal +palestine text(was:placed:in) western_asia +palestine text(was:localized:in) asia +palestine text(borders:with) jordan +palestine text(neighbors:withborders) egypt +palestine text(neighbors) israel +réunion text(is:localized:in) eastern_africa +réunion text(was:present:in) africa +france text(is:present:in) western_europe +france text(is:still:in) europe +france text(is:butted:against) germany +france text(was:butted:against) luxembourg +france text(is:a:neighboring:country:of) italy +france text(was:a:neighboring:country:of) andorra +france text(was:adjacent:to) switzerland +france text(is:adjacent:to) monaco +france text(was:a:neighbor:of) belgium +france text(is:a:neighbor:of) spain +mongolia text(was:still:in) eastern_asia +mongolia text(was:currently:in) asia +mongolia text(is:a:neighboring:state:to) china +mongolia text(was:a:neighboring:state:to) russia +lithuania text(is:currently:in) northern_europe +lithuania text(was:situated:in) europe +lithuania text(borders:with) poland +lithuania text(neighbors:withborders) latvia +lithuania text(neighbors) belarus +lithuania text(is:butted:against) russia +cayman_islands text(is:situated:in) caribbean +cayman_islands text(is:located:in) americas +saint_lucia text(was:located:in) caribbean +saint_lucia text(could:be:found:in) americas curaçao text(can:be:found:in) caribbean curaçao text(was:positioned:in) americas caribbean text(is:positioned:in) americas southern_asia text(was:sited:in) asia middle_africa text(is:sited:in) africa -northern_europe text(was:localized:in) europe -southern_europe text(is:localized:in) europe -western_asia text(was:present:in) asia -south_america text(is:present:in) americas -polynesia text(is:still:in) oceania -australia_and_new_zealand text(was:still:in) oceania -western_europe text(was:currently:in) europe -eastern_africa text(is:currently:in) africa -western_africa text(is:placed:in) africa -eastern_europe text(was:placed:in) europe -central_america text(can:be:found:in) americas -northern_america text(was:situated:in) americas -south-eastern_asia text(is:situated:in) asia -southern_africa text(is:located:in) africa -eastern_asia text(was:located:in) asia +northern_europe text(is:placed:in) europe +southern_europe text(was:placed:in) europe +western_asia text(was:localized:in) asia +south_america text(is:localized:in) americas +polynesia text(was:present:in) oceania +australia_and_new_zealand text(is:present:in) oceania +western_europe text(is:still:in) europe +eastern_africa text(was:still:in) africa +western_africa text(was:currently:in) africa +eastern_europe text(is:currently:in) europe +central_america text(was:situated:in) americas +northern_america text(is:situated:in) americas +south-eastern_asia text(is:located:in) asia +southern_africa text(was:located:in) africa +eastern_asia text(could:be:found:in) asia northern_africa text(can:be:found:in) africa melanesia text(was:positioned:in) oceania micronesia text(is:positioned:in) oceania diff --git a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_relation2text_traintest.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_relation2text_traintest.tsv new file mode 100644 index 0000000..8f79ecc --- /dev/null +++ b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_relation2text_traintest.tsv @@ -0,0 +1,1111 @@ +palau text(is:positioned:in) micronesia +palau text(was:localized:in) oceania +maldives text(is:localized:in) southern_asia +maldives text(was:present:in) asia +brunei text(is:present:in) south-eastern_asia +brunei text(is:still:in) asia +brunei text(was:a:neighboring:country:of) malaysia +japan text(was:still:in) eastern_asia +japan text(was:currently:in) asia +netherlands text(is:currently:in) western_europe +netherlands text(was:a:neighbor:of) belgium +turkey text(was:situated:in) western_asia +turkey text(is:a:neighbor:of) armenia +turkey text(is:a:neighboring:state:to) azerbaijan +turkey text(was:a:neighboring:state:to) iran +turkey text(borders:with) greece +turkey text(neighbors:withborders) georgia +angola text(is:situated:in) middle_africa +angola text(is:located:in) africa +angola text(neighbors) dr_congo +angola text(is:butted:against) namibia +angola text(was:butted:against) republic_of_the_congo +armenia text(was:located:in) western_asia +armenia text(could:be:found:in) asia +armenia text(is:a:neighboring:country:of) georgia +armenia text(was:a:neighboring:country:of) azerbaijan +armenia text(was:a:neighbor:of) iran +armenia text(is:a:neighbor:of) turkey +antigua_and_barbuda text(can:be:found:in) caribbean +antigua_and_barbuda text(was:positioned:in) americas +swaziland text(is:positioned:in) southern_africa +swaziland text(was:localized:in) africa +swaziland text(is:a:neighboring:state:to) south_africa +swaziland text(was:a:neighboring:state:to) mozambique +wallis_and_futuna text(is:localized:in) polynesia +wallis_and_futuna text(was:present:in) oceania +uruguay text(is:present:in) south_america +uruguay text(is:still:in) americas +uruguay text(borders:with) argentina +uruguay text(neighbors:withborders) brazil +cyprus text(was:still:in) eastern_europe +cyprus text(was:currently:in) europe +cyprus text(neighbors) united_kingdom +ireland text(is:currently:in) northern_europe +ireland text(was:situated:in) europe +ireland text(is:butted:against) united_kingdom +burundi text(is:situated:in) eastern_africa +burundi text(is:located:in) africa +burundi text(was:butted:against) dr_congo +burundi text(is:a:neighboring:country:of) rwanda +central_african_republic text(was:located:in) middle_africa +central_african_republic text(could:be:found:in) africa +central_african_republic text(was:a:neighboring:country:of) chad +central_african_republic text(was:a:neighbor:of) republic_of_the_congo +central_african_republic text(is:a:neighbor:of) dr_congo +central_african_republic text(is:a:neighboring:state:to) south_sudan +central_african_republic text(was:a:neighboring:state:to) cameroon +tonga text(can:be:found:in) polynesia +tonga text(was:positioned:in) oceania +ivory_coast text(is:positioned:in) western_africa +ivory_coast text(was:localized:in) africa +ivory_coast text(borders:with) liberia +ivory_coast text(neighbors:withborders) mali +ivory_coast text(neighbors) guinea +sierra_leone text(is:localized:in) western_africa +sierra_leone text(is:butted:against) liberia +sierra_leone text(was:butted:against) guinea +mayotte text(was:present:in) eastern_africa +mayotte text(is:present:in) africa +poland text(is:still:in) eastern_europe +poland text(is:a:neighboring:country:of) ukraine +poland text(was:a:neighboring:country:of) slovakia +poland text(was:a:neighbor:of) belarus +poland text(is:a:neighbor:of) russia +poland text(is:a:neighboring:state:to) lithuania +uzbekistan text(was:still:in) central_asia +uzbekistan text(was:currently:in) asia +uzbekistan text(was:a:neighboring:state:to) afghanistan +uzbekistan text(borders:with) turkmenistan +uzbekistan text(neighbors:withborders) kyrgyzstan +uzbekistan text(neighbors) tajikistan +turks_and_caicos_islands text(is:currently:in) caribbean +turks_and_caicos_islands text(was:situated:in) americas +new_caledonia text(is:situated:in) melanesia +new_caledonia text(is:located:in) oceania +pakistan text(was:located:in) southern_asia +pakistan text(is:butted:against) china +pakistan text(was:butted:against) afghanistan +pakistan text(is:a:neighboring:country:of) iran +pakistan text(was:a:neighboring:country:of) india +argentina text(could:be:found:in) south_america +argentina text(can:be:found:in) americas +argentina text(was:a:neighbor:of) bolivia +argentina text(is:a:neighbor:of) chile +argentina text(is:a:neighboring:state:to) brazil +argentina text(was:a:neighboring:state:to) paraguay +argentina text(borders:with) uruguay +cuba text(was:positioned:in) caribbean +cuba text(is:positioned:in) americas +serbia text(was:localized:in) southern_europe +serbia text(neighbors:withborders) macedonia +serbia text(neighbors) montenegro +serbia text(is:butted:against) bosnia_and_herzegovina +serbia text(was:butted:against) croatia +serbia text(is:a:neighboring:country:of) romania +vietnam text(is:localized:in) south-eastern_asia +vietnam text(was:present:in) asia +vietnam text(was:a:neighboring:country:of) cambodia +vietnam text(was:a:neighbor:of) laos +vietnam text(is:a:neighbor:of) china +niue text(is:present:in) polynesia +niue text(is:still:in) oceania +canada text(was:still:in) northern_america +canada text(was:currently:in) americas +slovakia text(is:currently:in) central_europe +slovakia text(is:a:neighboring:state:to) ukraine +slovakia text(was:a:neighboring:state:to) poland +slovakia text(borders:with) austria +mozambique text(was:situated:in) eastern_africa +mozambique text(neighbors:withborders) swaziland +mozambique text(neighbors) malawi +mozambique text(is:butted:against) south_africa +aruba text(is:situated:in) caribbean +aruba text(is:located:in) americas +bolivia text(was:located:in) south_america +bolivia text(could:be:found:in) americas +bolivia text(was:butted:against) chile +bolivia text(is:a:neighboring:country:of) brazil +bolivia text(was:a:neighboring:country:of) paraguay +bolivia text(was:a:neighbor:of) argentina +bolivia text(is:a:neighbor:of) peru +colombia text(can:be:found:in) south_america +colombia text(was:positioned:in) americas +colombia text(is:a:neighboring:state:to) brazil +colombia text(was:a:neighboring:state:to) peru +fiji text(is:positioned:in) melanesia +fiji text(was:localized:in) oceania +republic_of_the_congo text(is:localized:in) middle_africa +republic_of_the_congo text(borders:with) gabon +republic_of_the_congo text(neighbors:withborders) dr_congo +republic_of_the_congo text(neighbors) angola +republic_of_the_congo text(is:butted:against) cameroon +republic_of_the_congo text(was:butted:against) central_african_republic +el_salvador text(was:present:in) central_america +el_salvador text(is:present:in) americas +el_salvador text(is:a:neighboring:country:of) guatemala +el_salvador text(was:a:neighboring:country:of) honduras +madagascar text(is:still:in) eastern_africa +madagascar text(was:still:in) africa +australia text(was:currently:in) australia_and_new_zealand +australia text(is:currently:in) oceania +namibia text(was:situated:in) southern_africa +namibia text(is:situated:in) africa +namibia text(was:a:neighbor:of) angola +namibia text(is:a:neighbor:of) south_africa +tuvalu text(is:located:in) polynesia +tuvalu text(was:located:in) oceania +svalbard_and_jan_mayen text(could:be:found:in) northern_europe +svalbard_and_jan_mayen text(can:be:found:in) europe +isle_of_man text(was:positioned:in) northern_europe +isle_of_man text(is:positioned:in) europe +vatican_city text(was:localized:in) southern_europe +vatican_city text(is:localized:in) europe +vatican_city text(is:a:neighboring:state:to) italy +british_indian_ocean_territory text(was:present:in) eastern_africa +british_indian_ocean_territory text(is:present:in) africa +nigeria text(is:still:in) western_africa +nigeria text(was:still:in) africa +nigeria text(was:a:neighboring:state:to) chad +nigeria text(borders:with) niger +nigeria text(neighbors:withborders) cameroon +nigeria text(neighbors) benin +northern_mariana_islands text(was:currently:in) micronesia +northern_mariana_islands text(is:currently:in) oceania +belize text(was:situated:in) central_america +belize text(is:situated:in) americas +belize text(is:butted:against) guatemala +belize text(was:butted:against) mexico +cocos_keeling_islands text(is:located:in) australia_and_new_zealand +cocos_keeling_islands text(was:located:in) oceania +laos text(could:be:found:in) south-eastern_asia +laos text(can:be:found:in) asia +laos text(is:a:neighboring:country:of) china +laos text(was:a:neighboring:country:of) cambodia +laos text(was:a:neighbor:of) vietnam +western_sahara text(was:positioned:in) northern_africa +western_sahara text(is:positioned:in) africa +western_sahara text(is:a:neighbor:of) algeria +western_sahara text(is:a:neighboring:state:to) mauritania +western_sahara text(was:a:neighboring:state:to) morocco +christmas_island text(was:localized:in) australia_and_new_zealand +christmas_island text(is:localized:in) oceania +são_tomé_and_príncipe text(was:present:in) middle_africa +são_tomé_and_príncipe text(is:present:in) africa +guinea text(is:still:in) western_africa +guinea text(was:still:in) africa +guinea text(borders:with) sierra_leone +guinea text(neighbors:withborders) mali +guinea text(neighbors) liberia +guinea text(is:butted:against) senegal +guinea text(was:butted:against) ivory_coast +costa_rica text(was:currently:in) central_america +costa_rica text(is:currently:in) americas +malta text(was:situated:in) southern_europe +malta text(is:situated:in) europe +portugal text(is:located:in) southern_europe +portugal text(was:located:in) europe +romania text(could:be:found:in) eastern_europe +romania text(can:be:found:in) europe +romania text(is:a:neighboring:country:of) ukraine +romania text(was:a:neighboring:country:of) moldova +romania text(was:a:neighbor:of) serbia +san_marino text(was:positioned:in) southern_europe +san_marino text(is:positioned:in) europe +san_marino text(is:a:neighbor:of) italy +mauritania text(was:localized:in) western_africa +mauritania text(is:localized:in) africa +mauritania text(is:a:neighboring:state:to) algeria +mauritania text(was:a:neighboring:state:to) mali +mauritania text(borders:with) western_sahara +mauritania text(neighbors:withborders) senegal +trinidad_and_tobago text(was:present:in) caribbean +trinidad_and_tobago text(is:present:in) americas +bahrain text(is:still:in) western_asia +bahrain text(was:still:in) asia +south_georgia text(was:currently:in) south_america +south_georgia text(is:currently:in) americas +iceland text(was:situated:in) northern_europe +iceland text(is:situated:in) europe +dr_congo text(is:located:in) middle_africa +dr_congo text(was:located:in) africa +dr_congo text(neighbors) uganda +dr_congo text(is:butted:against) republic_of_the_congo +dr_congo text(was:butted:against) central_african_republic +dr_congo text(is:a:neighboring:country:of) angola +dr_congo text(was:a:neighboring:country:of) rwanda +dr_congo text(was:a:neighbor:of) south_sudan +dr_congo text(is:a:neighbor:of) burundi +seychelles text(could:be:found:in) eastern_africa +seychelles text(can:be:found:in) africa +kyrgyzstan text(was:positioned:in) central_asia +kyrgyzstan text(is:a:neighboring:state:to) china +kyrgyzstan text(was:a:neighboring:state:to) tajikistan +kyrgyzstan text(borders:with) uzbekistan +faroe_islands text(is:positioned:in) northern_europe +faroe_islands text(was:localized:in) europe +jamaica text(is:localized:in) caribbean +jamaica text(was:present:in) americas +american_samoa text(is:present:in) polynesia +american_samoa text(is:still:in) oceania +lesotho text(was:still:in) southern_africa +lesotho text(was:currently:in) africa +lesotho text(neighbors:withborders) south_africa +sri_lanka text(is:currently:in) southern_asia +sri_lanka text(neighbors) india +belgium text(was:situated:in) western_europe +belgium text(is:situated:in) europe +belgium text(is:butted:against) luxembourg +belgium text(was:butted:against) france +belgium text(is:a:neighboring:country:of) netherlands +qatar text(is:located:in) western_asia +qatar text(was:located:in) asia +solomon_islands text(could:be:found:in) melanesia +solomon_islands text(can:be:found:in) oceania +india text(was:positioned:in) southern_asia +india text(is:positioned:in) asia +india text(was:a:neighboring:country:of) afghanistan +india text(was:a:neighbor:of) bangladesh +india text(is:a:neighbor:of) china +india text(is:a:neighboring:state:to) nepal +india text(was:a:neighboring:state:to) pakistan +india text(borders:with) sri_lanka +morocco text(was:localized:in) northern_africa +morocco text(neighbors:withborders) algeria +morocco text(neighbors) western_sahara +kenya text(is:localized:in) eastern_africa +kenya text(was:present:in) africa +kenya text(is:butted:against) uganda +kenya text(was:butted:against) somalia +kenya text(is:a:neighboring:country:of) south_sudan +kenya text(was:a:neighboring:country:of) ethiopia +south_sudan text(is:present:in) middle_africa +south_sudan text(is:still:in) africa +south_sudan text(was:a:neighbor:of) uganda +south_sudan text(is:a:neighbor:of) dr_congo +south_sudan text(is:a:neighboring:state:to) kenya +south_sudan text(was:a:neighboring:state:to) central_african_republic +south_sudan text(borders:with) ethiopia +tajikistan text(was:still:in) central_asia +tajikistan text(was:currently:in) asia +tajikistan text(neighbors:withborders) china +tajikistan text(neighbors) kyrgyzstan +tajikistan text(is:butted:against) afghanistan +tajikistan text(was:butted:against) uzbekistan +marshall_islands text(is:currently:in) micronesia +marshall_islands text(was:situated:in) oceania +cameroon text(is:situated:in) middle_africa +cameroon text(is:located:in) africa +cameroon text(is:a:neighboring:country:of) chad +cameroon text(was:a:neighboring:country:of) republic_of_the_congo +cameroon text(was:a:neighbor:of) gabon +cameroon text(is:a:neighbor:of) equatorial_guinea +cameroon text(is:a:neighboring:state:to) central_african_republic +cameroon text(was:a:neighboring:state:to) nigeria +nauru text(was:located:in) micronesia +nauru text(could:be:found:in) oceania +chad text(can:be:found:in) middle_africa +chad text(was:positioned:in) africa +chad text(borders:with) libya +chad text(neighbors:withborders) niger +chad text(neighbors) south_sudan +chad text(is:butted:against) cameroon +chad text(was:butted:against) central_african_republic +chad text(is:a:neighboring:country:of) nigeria +vanuatu text(is:positioned:in) melanesia +vanuatu text(was:localized:in) oceania +cape_verde text(is:localized:in) western_africa +cape_verde text(was:present:in) africa +falkland_islands text(is:present:in) south_america +falkland_islands text(is:still:in) americas +liberia text(was:still:in) western_africa +liberia text(was:currently:in) africa +liberia text(was:a:neighboring:country:of) ivory_coast +liberia text(was:a:neighbor:of) sierra_leone +liberia text(is:a:neighbor:of) guinea +cambodia text(is:currently:in) south-eastern_asia +cambodia text(was:situated:in) asia +cambodia text(is:a:neighboring:state:to) vietnam +cambodia text(was:a:neighboring:state:to) laos +comoros text(is:situated:in) eastern_africa +comoros text(is:located:in) africa +guam text(was:located:in) micronesia +guam text(could:be:found:in) oceania +bahamas text(can:be:found:in) caribbean +bahamas text(was:positioned:in) americas +lebanon text(is:positioned:in) western_asia +lebanon text(was:localized:in) asia +lebanon text(borders:with) israel +sint_maarten text(is:localized:in) caribbean +sint_maarten text(was:present:in) americas +ethiopia text(is:present:in) eastern_africa +ethiopia text(is:still:in) africa +ethiopia text(neighbors:withborders) somalia +ethiopia text(neighbors) kenya +ethiopia text(is:butted:against) south_sudan +united_states_virgin_islands text(was:still:in) caribbean +united_states_virgin_islands text(was:currently:in) americas +libya text(is:currently:in) northern_africa +libya text(was:situated:in) africa +libya text(was:butted:against) chad +libya text(is:a:neighboring:country:of) tunisia +libya text(was:a:neighboring:country:of) niger +libya text(was:a:neighbor:of) algeria +french_polynesia text(is:situated:in) polynesia +french_polynesia text(is:located:in) oceania +somalia text(was:located:in) eastern_africa +somalia text(could:be:found:in) africa +somalia text(is:a:neighbor:of) kenya +somalia text(is:a:neighboring:state:to) ethiopia +saint_barthélemy text(can:be:found:in) caribbean +saint_barthélemy text(was:positioned:in) americas +russia text(is:positioned:in) eastern_europe +russia text(was:localized:in) europe +russia text(was:a:neighboring:state:to) ukraine +russia text(borders:with) belarus +russia text(neighbors:withborders) china +russia text(neighbors) poland +russia text(is:butted:against) azerbaijan +russia text(was:butted:against) lithuania +russia text(is:a:neighboring:country:of) estonia +russia text(was:a:neighboring:country:of) north_korea +russia text(was:a:neighbor:of) finland +russia text(is:a:neighbor:of) latvia +russia text(is:a:neighboring:state:to) georgia +new_zealand text(is:localized:in) australia_and_new_zealand +new_zealand text(was:present:in) oceania +papua_new_guinea text(is:present:in) melanesia +papua_new_guinea text(is:still:in) oceania +north_korea text(was:still:in) eastern_asia +north_korea text(was:a:neighboring:state:to) china +north_korea text(borders:with) south_korea +north_korea text(neighbors:withborders) russia +latvia text(was:currently:in) northern_europe +latvia text(is:currently:in) europe +latvia text(neighbors) lithuania +latvia text(is:butted:against) belarus +latvia text(was:butted:against) russia +latvia text(is:a:neighboring:country:of) estonia +oman text(was:situated:in) western_asia +oman text(is:situated:in) asia +oman text(was:a:neighboring:country:of) yemen +oman text(was:a:neighbor:of) united_arab_emirates +saint_pierre_and_miquelon text(is:located:in) northern_america +saint_pierre_and_miquelon text(was:located:in) americas +martinique text(could:be:found:in) caribbean +martinique text(can:be:found:in) americas +united_kingdom text(was:positioned:in) northern_europe +united_kingdom text(is:positioned:in) europe +united_kingdom text(is:a:neighbor:of) ireland +israel text(was:localized:in) western_asia +israel text(is:localized:in) asia +israel text(is:a:neighboring:state:to) lebanon +jersey text(was:present:in) northern_europe +jersey text(is:present:in) europe +pitcairn_islands text(is:still:in) polynesia +pitcairn_islands text(was:still:in) oceania +togo text(was:currently:in) western_africa +togo text(is:currently:in) africa +togo text(was:a:neighboring:state:to) benin +kiribati text(was:situated:in) micronesia +kiribati text(is:situated:in) oceania +iran text(is:located:in) southern_asia +iran text(was:located:in) asia +iran text(borders:with) afghanistan +iran text(neighbors:withborders) turkmenistan +iran text(neighbors) turkey +iran text(is:butted:against) armenia +iran text(was:butted:against) azerbaijan +iran text(is:a:neighboring:country:of) pakistan +dominican_republic text(could:be:found:in) caribbean +dominican_republic text(can:be:found:in) americas +dominican_republic text(was:a:neighboring:country:of) haiti +bermuda text(was:positioned:in) northern_america +bermuda text(is:positioned:in) americas +chile text(was:localized:in) south_america +chile text(was:a:neighbor:of) argentina +chile text(is:a:neighbor:of) bolivia +chile text(is:a:neighboring:state:to) peru +saint_kitts_and_nevis text(is:localized:in) caribbean +saint_kitts_and_nevis text(was:present:in) americas +equatorial_guinea text(is:present:in) middle_africa +equatorial_guinea text(is:still:in) africa +equatorial_guinea text(was:a:neighboring:state:to) gabon +equatorial_guinea text(borders:with) cameroon +niger text(was:still:in) western_africa +niger text(was:currently:in) africa +niger text(neighbors:withborders) chad +niger text(neighbors) libya +niger text(is:butted:against) benin +niger text(was:butted:against) mali +niger text(is:a:neighboring:country:of) algeria +niger text(was:a:neighboring:country:of) nigeria +anguilla text(is:currently:in) caribbean +anguilla text(was:situated:in) americas +rwanda text(is:situated:in) eastern_africa +rwanda text(is:located:in) africa +rwanda text(was:a:neighbor:of) burundi +rwanda text(is:a:neighbor:of) uganda +rwanda text(is:a:neighboring:state:to) dr_congo +united_arab_emirates text(was:located:in) western_asia +united_arab_emirates text(could:be:found:in) asia +united_arab_emirates text(was:a:neighboring:state:to) oman +estonia text(can:be:found:in) northern_europe +estonia text(was:positioned:in) europe +estonia text(borders:with) latvia +estonia text(neighbors:withborders) russia +greece text(is:positioned:in) southern_europe +greece text(was:localized:in) europe +greece text(neighbors) albania +greece text(is:butted:against) macedonia +greece text(was:butted:against) turkey +senegal text(is:localized:in) western_africa +senegal text(was:present:in) africa +senegal text(is:a:neighboring:country:of) mauritania +senegal text(was:a:neighboring:country:of) mali +senegal text(was:a:neighbor:of) gambia +senegal text(is:a:neighbor:of) guinea +guadeloupe text(is:present:in) caribbean +guadeloupe text(is:still:in) americas +british_virgin_islands text(was:still:in) caribbean +british_virgin_islands text(was:currently:in) americas +cook_islands text(is:currently:in) polynesia +cook_islands text(was:situated:in) oceania +uganda text(is:situated:in) eastern_africa +uganda text(is:located:in) africa +uganda text(is:a:neighboring:state:to) dr_congo +uganda text(was:a:neighboring:state:to) kenya +uganda text(borders:with) south_sudan +uganda text(neighbors:withborders) rwanda +macedonia text(was:located:in) southern_europe +macedonia text(could:be:found:in) europe +macedonia text(neighbors) greece +macedonia text(is:butted:against) albania +macedonia text(was:butted:against) serbia +tunisia text(can:be:found:in) northern_africa +tunisia text(was:positioned:in) africa +tunisia text(is:a:neighboring:country:of) libya +tunisia text(was:a:neighboring:country:of) algeria +brazil text(is:positioned:in) south_america +brazil text(was:localized:in) americas +brazil text(was:a:neighbor:of) bolivia +brazil text(is:a:neighbor:of) colombia +brazil text(is:a:neighboring:state:to) paraguay +brazil text(was:a:neighboring:state:to) uruguay +brazil text(borders:with) argentina +brazil text(neighbors:withborders) peru +paraguay text(is:localized:in) south_america +paraguay text(was:present:in) americas +paraguay text(neighbors) argentina +paraguay text(is:butted:against) brazil +paraguay text(was:butted:against) bolivia +finland text(is:present:in) northern_europe +finland text(is:still:in) europe +finland text(is:a:neighboring:country:of) sweden +finland text(was:a:neighboring:country:of) russia +montenegro text(was:still:in) southern_europe +montenegro text(was:currently:in) europe +montenegro text(was:a:neighbor:of) bosnia_and_herzegovina +montenegro text(is:a:neighbor:of) croatia +montenegro text(is:a:neighboring:state:to) serbia +montenegro text(was:a:neighboring:state:to) albania +peru text(is:currently:in) south_america +peru text(was:situated:in) americas +peru text(borders:with) bolivia +peru text(neighbors:withborders) chile +peru text(neighbors) brazil +peru text(is:butted:against) colombia +montserrat text(is:situated:in) caribbean +montserrat text(is:located:in) americas +ukraine text(was:located:in) eastern_europe +ukraine text(could:be:found:in) europe +ukraine text(was:butted:against) slovakia +ukraine text(is:a:neighboring:country:of) belarus +ukraine text(was:a:neighboring:country:of) poland +ukraine text(was:a:neighbor:of) russia +ukraine text(is:a:neighbor:of) moldova +ukraine text(is:a:neighboring:state:to) romania +dominica text(can:be:found:in) caribbean +dominica text(was:positioned:in) americas +turkmenistan text(is:positioned:in) central_asia +turkmenistan text(was:a:neighboring:state:to) afghanistan +turkmenistan text(borders:with) uzbekistan +turkmenistan text(neighbors:withborders) iran +guernsey text(was:localized:in) northern_europe +guernsey text(is:localized:in) europe +gibraltar text(was:present:in) southern_europe +gibraltar text(is:present:in) europe +switzerland text(is:still:in) western_europe +switzerland text(was:still:in) europe +switzerland text(neighbors) italy +switzerland text(is:butted:against) austria +switzerland text(was:butted:against) france +switzerland text(is:a:neighboring:country:of) liechtenstein +austria text(was:currently:in) western_europe +austria text(is:currently:in) europe +austria text(was:a:neighboring:country:of) slovakia +austria text(was:a:neighbor:of) slovenia +austria text(is:a:neighbor:of) italy +austria text(is:a:neighboring:state:to) switzerland +austria text(was:a:neighboring:state:to) liechtenstein +malawi text(was:situated:in) eastern_africa +malawi text(is:situated:in) africa +malawi text(borders:with) mozambique +hong_kong text(is:located:in) eastern_asia +hong_kong text(neighbors:withborders) china +liechtenstein text(was:located:in) western_europe +liechtenstein text(could:be:found:in) europe +liechtenstein text(neighbors) switzerland +liechtenstein text(is:butted:against) austria +barbados text(can:be:found:in) caribbean +barbados text(was:positioned:in) americas +georgia text(is:positioned:in) western_asia +georgia text(was:localized:in) asia +georgia text(was:butted:against) armenia +georgia text(is:a:neighboring:country:of) azerbaijan +georgia text(was:a:neighboring:country:of) russia +georgia text(was:a:neighbor:of) turkey +albania text(is:localized:in) southern_europe +albania text(was:present:in) europe +albania text(is:a:neighbor:of) montenegro +albania text(is:a:neighboring:state:to) macedonia +albania text(was:a:neighboring:state:to) greece +kuwait text(is:present:in) western_asia +kuwait text(is:still:in) asia +south_africa text(was:still:in) southern_africa +south_africa text(was:currently:in) africa +south_africa text(borders:with) mozambique +south_africa text(neighbors:withborders) swaziland +south_africa text(neighbors) namibia +south_africa text(is:butted:against) lesotho +haiti text(is:currently:in) caribbean +haiti text(was:situated:in) americas +haiti text(was:butted:against) dominican_republic +afghanistan text(is:situated:in) southern_asia +afghanistan text(is:located:in) asia +afghanistan text(is:a:neighboring:country:of) turkmenistan +afghanistan text(was:a:neighboring:country:of) china +afghanistan text(was:a:neighbor:of) tajikistan +afghanistan text(is:a:neighbor:of) uzbekistan +afghanistan text(is:a:neighboring:state:to) iran +afghanistan text(was:a:neighboring:state:to) pakistan +singapore text(was:located:in) south-eastern_asia +singapore text(could:be:found:in) asia +benin text(can:be:found:in) western_africa +benin text(was:positioned:in) africa +benin text(borders:with) niger +benin text(neighbors:withborders) togo +benin text(neighbors) nigeria +åland_islands text(is:positioned:in) northern_europe +åland_islands text(was:localized:in) europe +croatia text(is:localized:in) southern_europe +croatia text(was:present:in) europe +croatia text(is:butted:against) slovenia +croatia text(was:butted:against) bosnia_and_herzegovina +croatia text(is:a:neighboring:country:of) serbia +croatia text(was:a:neighboring:country:of) montenegro +sweden text(is:present:in) northern_europe +sweden text(is:still:in) europe +sweden text(was:a:neighbor:of) finland +mexico text(was:still:in) northern_america +mexico text(is:a:neighbor:of) belize +mexico text(is:a:neighboring:state:to) guatemala +greenland text(was:currently:in) northern_america +greenland text(is:currently:in) americas +norfolk_island text(was:situated:in) australia_and_new_zealand +norfolk_island text(is:situated:in) oceania +nepal text(is:located:in) southern_asia +nepal text(was:located:in) asia +nepal text(was:a:neighboring:state:to) china +nepal text(borders:with) india +guatemala text(could:be:found:in) central_america +guatemala text(neighbors:withborders) belize +guatemala text(neighbors) el_salvador +guatemala text(is:butted:against) mexico +guatemala text(was:butted:against) honduras +south_korea text(can:be:found:in) eastern_asia +south_korea text(was:positioned:in) asia +south_korea text(is:a:neighboring:country:of) north_korea +moldova text(is:positioned:in) eastern_europe +moldova text(was:localized:in) europe +moldova text(was:a:neighboring:country:of) ukraine +moldova text(was:a:neighbor:of) romania +mauritius text(is:localized:in) eastern_africa +mauritius text(was:present:in) africa +belarus text(is:present:in) eastern_europe +belarus text(is:a:neighbor:of) ukraine +belarus text(is:a:neighboring:state:to) poland +belarus text(was:a:neighboring:state:to) lithuania +belarus text(borders:with) russia +belarus text(neighbors:withborders) latvia +bangladesh text(is:still:in) southern_asia +bangladesh text(neighbors) india +malaysia text(was:still:in) south-eastern_asia +malaysia text(was:currently:in) asia +malaysia text(is:butted:against) brunei +bosnia_and_herzegovina text(is:currently:in) southern_europe +bosnia_and_herzegovina text(was:situated:in) europe +bosnia_and_herzegovina text(was:butted:against) serbia +bosnia_and_herzegovina text(is:a:neighboring:country:of) croatia +bosnia_and_herzegovina text(was:a:neighboring:country:of) montenegro +luxembourg text(is:situated:in) western_europe +luxembourg text(is:located:in) europe +luxembourg text(was:a:neighbor:of) belgium +luxembourg text(is:a:neighbor:of) france +italy text(was:located:in) southern_europe +italy text(could:be:found:in) europe +italy text(is:a:neighboring:state:to) slovenia +italy text(was:a:neighboring:state:to) switzerland +italy text(borders:with) austria +italy text(neighbors:withborders) france +italy text(neighbors) vatican_city +italy text(is:butted:against) san_marino +azerbaijan text(can:be:found:in) western_asia +azerbaijan text(was:positioned:in) asia +azerbaijan text(was:butted:against) turkey +azerbaijan text(is:a:neighboring:country:of) armenia +azerbaijan text(was:a:neighboring:country:of) russia +azerbaijan text(was:a:neighbor:of) iran +azerbaijan text(is:a:neighbor:of) georgia +honduras text(is:positioned:in) central_america +honduras text(was:localized:in) americas +honduras text(is:a:neighboring:state:to) guatemala +honduras text(was:a:neighboring:state:to) el_salvador +mali text(is:localized:in) western_africa +mali text(was:present:in) africa +mali text(borders:with) guinea +mali text(neighbors:withborders) mauritania +mali text(neighbors) niger +mali text(is:butted:against) senegal +mali text(was:butted:against) algeria +mali text(is:a:neighboring:country:of) ivory_coast +taiwan text(is:present:in) eastern_asia +taiwan text(is:still:in) asia +algeria text(was:still:in) northern_africa +algeria text(was:currently:in) africa +algeria text(was:a:neighboring:country:of) libya +algeria text(was:a:neighbor:of) tunisia +algeria text(is:a:neighbor:of) mauritania +algeria text(is:a:neighboring:state:to) morocco +algeria text(was:a:neighboring:state:to) niger +algeria text(borders:with) mali +algeria text(neighbors:withborders) western_sahara +yemen text(is:currently:in) western_asia +yemen text(was:situated:in) asia +yemen text(neighbors) oman +puerto_rico text(is:situated:in) caribbean +puerto_rico text(is:located:in) americas +saint_vincent_and_the_grenadines text(was:located:in) caribbean +saint_vincent_and_the_grenadines text(could:be:found:in) americas +grenada text(can:be:found:in) caribbean +grenada text(was:positioned:in) americas +tokelau text(is:positioned:in) polynesia +tokelau text(was:localized:in) oceania +slovenia text(is:localized:in) southern_europe +slovenia text(was:present:in) europe +slovenia text(is:butted:against) austria +slovenia text(was:butted:against) croatia +slovenia text(is:a:neighboring:country:of) italy +philippines text(is:present:in) south-eastern_asia +philippines text(is:still:in) asia +micronesia text(was:still:in) micronesia +micronesia text(was:currently:in) oceania +china text(is:currently:in) eastern_asia +china text(was:situated:in) asia +china text(was:a:neighboring:country:of) afghanistan +china text(was:a:neighbor:of) india +china text(is:a:neighbor:of) kyrgyzstan +china text(is:a:neighboring:state:to) tajikistan +china text(was:a:neighboring:state:to) laos +china text(borders:with) russia +china text(neighbors:withborders) north_korea +china text(neighbors) pakistan +china text(is:butted:against) hong_kong +china text(was:butted:against) vietnam +gabon text(is:situated:in) middle_africa +gabon text(is:located:in) africa +gabon text(is:a:neighboring:country:of) equatorial_guinea +gabon text(was:a:neighboring:country:of) republic_of_the_congo +gabon text(was:a:neighbor:of) cameroon +united_states_minor_outlying_islands text(was:located:in) northern_america +united_states_minor_outlying_islands text(could:be:found:in) americas +andorra text(can:be:found:in) southern_europe +andorra text(was:positioned:in) europe +andorra text(is:a:neighbor:of) france +samoa text(is:positioned:in) polynesia +samoa text(was:localized:in) oceania +gambia text(is:localized:in) western_africa +gambia text(was:present:in) africa +gambia text(is:a:neighboring:state:to) senegal +palestine text(is:present:in) western_asia +palestine text(is:still:in) asia +palestine text(was:a:neighboring:state:to) israel +réunion text(was:still:in) eastern_africa +réunion text(was:currently:in) africa +france text(is:currently:in) western_europe +france text(was:situated:in) europe +france text(borders:with) luxembourg +france text(neighbors:withborders) italy +france text(neighbors) andorra +france text(is:butted:against) switzerland +france text(was:butted:against) belgium +lithuania text(is:situated:in) northern_europe +lithuania text(is:located:in) europe +lithuania text(is:a:neighboring:country:of) poland +lithuania text(was:a:neighboring:country:of) latvia +lithuania text(was:a:neighbor:of) belarus +lithuania text(is:a:neighbor:of) russia +cayman_islands text(was:located:in) caribbean +cayman_islands text(could:be:found:in) americas +saint_lucia text(can:be:found:in) caribbean +saint_lucia text(was:positioned:in) americas +curaçao text(is:positioned:in) caribbean +curaçao text(was:localized:in) americas +caribbean text(is:localized:in) americas +southern_asia text(was:present:in) asia +middle_africa text(is:present:in) africa +northern_europe text(is:still:in) europe +southern_europe text(was:still:in) europe +western_asia text(was:currently:in) asia +south_america text(is:currently:in) americas +polynesia text(was:situated:in) oceania +australia_and_new_zealand text(is:situated:in) oceania +western_europe text(is:located:in) europe +eastern_africa text(was:located:in) africa +western_africa text(could:be:found:in) africa +eastern_europe text(can:be:found:in) europe +central_america text(was:positioned:in) americas +northern_america text(is:positioned:in) americas +south-eastern_asia text(was:localized:in) asia +southern_africa text(is:localized:in) africa +eastern_asia text(was:present:in) asia +northern_africa text(is:present:in) africa +melanesia text(is:still:in) oceania +micronesia text(was:still:in) oceania +central_asia text(was:currently:in) asia +central_europe text(is:currently:in) europe +netherlands text(was:a:neighboring:country:of) germany +turkey text(was:a:neighbor:of) bulgaria +turkey text(is:a:neighbor:of) iraq +turkey text(is:a:neighboring:state:to) syria +angola text(was:a:neighboring:state:to) zambia +zambia text(is:positioned:in) eastern_africa +zambia text(was:localized:in) africa +zambia text(borders:with) tanzania +zambia text(neighbors:withborders) mozambique +zambia text(neighbors) dr_congo +zambia text(is:butted:against) angola +zambia text(was:butted:against) botswana +zambia text(is:a:neighboring:country:of) zimbabwe +zambia text(was:a:neighboring:country:of) namibia +zambia text(was:a:neighbor:of) malawi +burundi text(is:a:neighbor:of) tanzania +central_african_republic text(is:a:neighboring:state:to) sudan +ivory_coast text(was:a:neighboring:state:to) burkina_faso +ivory_coast text(borders:with) ghana +poland text(neighbors:withborders) germany +poland text(neighbors) czechia +kazakhstan text(is:localized:in) central_asia +kazakhstan text(was:present:in) asia +kazakhstan text(is:butted:against) turkmenistan +kazakhstan text(was:butted:against) china +kazakhstan text(is:a:neighboring:country:of) kyrgyzstan +kazakhstan text(was:a:neighboring:country:of) uzbekistan +kazakhstan text(was:a:neighbor:of) russia +uzbekistan text(is:a:neighbor:of) kazakhstan +serbia text(is:a:neighboring:state:to) kosovo +serbia text(was:a:neighboring:state:to) hungary +serbia text(borders:with) bulgaria +czechia text(is:present:in) eastern_europe +czechia text(is:still:in) europe +czechia text(neighbors:withborders) germany +czechia text(neighbors) austria +czechia text(is:butted:against) poland +czechia text(was:butted:against) slovakia +nicaragua text(was:still:in) central_america +nicaragua text(is:a:neighboring:country:of) honduras +nicaragua text(was:a:neighboring:country:of) costa_rica +canada text(was:a:neighbor:of) united_states +slovakia text(is:a:neighbor:of) hungary +slovakia text(is:a:neighboring:state:to) czechia +mozambique text(was:a:neighboring:state:to) tanzania +mozambique text(borders:with) zimbabwe +mozambique text(neighbors:withborders) zambia +colombia text(neighbors) ecuador +colombia text(is:butted:against) panama +colombia text(was:butted:against) venezuela +saudi_arabia text(was:currently:in) western_asia +saudi_arabia text(is:a:neighboring:country:of) qatar +saudi_arabia text(was:a:neighboring:country:of) united_arab_emirates +saudi_arabia text(was:a:neighbor:of) jordan +saudi_arabia text(is:a:neighbor:of) yemen +saudi_arabia text(is:a:neighboring:state:to) oman +saudi_arabia text(was:a:neighboring:state:to) kuwait +saudi_arabia text(borders:with) iraq +namibia text(neighbors:withborders) zambia +namibia text(neighbors) botswana +guyana text(is:currently:in) south_america +guyana text(is:butted:against) brazil +guyana text(was:butted:against) suriname +guyana text(is:a:neighboring:country:of) venezuela +germany text(was:situated:in) western_europe +germany text(was:a:neighboring:country:of) denmark +germany text(was:a:neighbor:of) netherlands +germany text(is:a:neighbor:of) poland +germany text(is:a:neighboring:state:to) luxembourg +germany text(was:a:neighboring:state:to) belgium +germany text(borders:with) switzerland +germany text(neighbors:withborders) austria +germany text(neighbors) france +germany text(is:butted:against) czechia +burkina_faso text(is:situated:in) western_africa +burkina_faso text(was:butted:against) togo +burkina_faso text(is:a:neighboring:country:of) benin +burkina_faso text(was:a:neighboring:country:of) niger +burkina_faso text(was:a:neighbor:of) ghana +burkina_faso text(is:a:neighbor:of) mali +burkina_faso text(is:a:neighboring:state:to) ivory_coast +tanzania text(is:located:in) eastern_africa +tanzania text(was:a:neighboring:state:to) uganda +tanzania text(borders:with) mozambique +tanzania text(neighbors:withborders) dr_congo +tanzania text(neighbors) kenya +tanzania text(is:butted:against) rwanda +tanzania text(was:butted:against) zambia +tanzania text(is:a:neighboring:country:of) malawi +tanzania text(was:a:neighboring:country:of) burundi +norway text(was:located:in) northern_europe +norway text(was:a:neighbor:of) sweden +norway text(is:a:neighbor:of) finland +norway text(is:a:neighboring:state:to) russia +laos text(was:a:neighboring:state:to) myanmar +laos text(borders:with) thailand +suriname text(could:be:found:in) south_america +suriname text(can:be:found:in) americas +suriname text(neighbors:withborders) brazil +suriname text(neighbors) french_guiana +suriname text(is:butted:against) guyana +egypt text(was:positioned:in) northern_africa +egypt text(was:butted:against) libya +egypt text(is:a:neighboring:country:of) israel +egypt text(was:a:neighboring:country:of) sudan +bulgaria text(is:positioned:in) eastern_europe +bulgaria text(was:a:neighbor:of) macedonia +bulgaria text(is:a:neighbor:of) turkey +bulgaria text(is:a:neighboring:state:to) greece +bulgaria text(was:a:neighboring:state:to) serbia +bulgaria text(borders:with) romania +guinea text(neighbors:withborders) guinea-bissau +spain text(was:localized:in) southern_europe +spain text(neighbors) morocco +spain text(is:butted:against) gibraltar +spain text(was:butted:against) andorra +spain text(is:a:neighboring:country:of) france +spain text(was:a:neighboring:country:of) portugal +costa_rica text(was:a:neighbor:of) panama +costa_rica text(is:a:neighbor:of) nicaragua +portugal text(is:a:neighboring:state:to) spain +romania text(was:a:neighboring:state:to) hungary +romania text(borders:with) bulgaria +myanmar text(is:localized:in) south-eastern_asia +myanmar text(neighbors:withborders) india +myanmar text(neighbors) bangladesh +myanmar text(is:butted:against) china +myanmar text(was:butted:against) laos +myanmar text(is:a:neighboring:country:of) thailand +iraq text(was:present:in) western_asia +iraq text(was:a:neighboring:country:of) turkey +iraq text(was:a:neighbor:of) saudi_arabia +iraq text(is:a:neighbor:of) iran +iraq text(is:a:neighboring:state:to) jordan +iraq text(was:a:neighboring:state:to) kuwait +iraq text(borders:with) syria +dr_congo text(neighbors:withborders) tanzania +dr_congo text(neighbors) zambia +kyrgyzstan text(is:butted:against) kazakhstan +botswana text(is:present:in) southern_africa +botswana text(is:still:in) africa +botswana text(was:butted:against) zimbabwe +botswana text(is:a:neighboring:country:of) namibia +botswana text(was:a:neighboring:country:of) zambia +botswana text(was:a:neighbor:of) south_africa +belgium text(is:a:neighbor:of) germany +qatar text(is:a:neighboring:state:to) saudi_arabia +syria text(was:still:in) western_asia +syria text(was:currently:in) asia +syria text(was:a:neighboring:state:to) israel +syria text(borders:with) turkey +syria text(neighbors:withborders) jordan +syria text(neighbors) lebanon +syria text(is:butted:against) iraq +india text(was:butted:against) bhutan +india text(is:a:neighboring:country:of) myanmar +morocco text(was:a:neighboring:country:of) spain +kenya text(was:a:neighbor:of) tanzania +south_sudan text(is:a:neighbor:of) sudan +ghana text(is:currently:in) western_africa +ghana text(is:a:neighboring:state:to) burkina_faso +ghana text(was:a:neighboring:state:to) ivory_coast +ghana text(borders:with) togo +thailand text(was:situated:in) south-eastern_asia +thailand text(neighbors:withborders) cambodia +thailand text(neighbors) myanmar +thailand text(is:butted:against) laos +thailand text(was:butted:against) malaysia +sudan text(is:situated:in) northern_africa +sudan text(is:a:neighboring:country:of) chad +sudan text(was:a:neighboring:country:of) libya +sudan text(was:a:neighbor:of) south_sudan +sudan text(is:a:neighbor:of) eritrea +sudan text(is:a:neighboring:state:to) central_african_republic +sudan text(was:a:neighboring:state:to) egypt +sudan text(borders:with) ethiopia +cambodia text(neighbors:withborders) thailand +zimbabwe text(is:located:in) eastern_africa +zimbabwe text(neighbors) zambia +zimbabwe text(is:butted:against) south_africa +zimbabwe text(was:butted:against) botswana +zimbabwe text(is:a:neighboring:country:of) mozambique +lebanon text(was:a:neighboring:country:of) syria +sint_maarten text(was:a:neighbor:of) saint_martin +ethiopia text(is:a:neighbor:of) eritrea +ethiopia text(is:a:neighboring:state:to) djibouti +ethiopia text(was:a:neighboring:state:to) sudan +guinea-bissau text(was:located:in) western_africa +guinea-bissau text(could:be:found:in) africa +guinea-bissau text(borders:with) guinea +guinea-bissau text(neighbors:withborders) senegal +libya text(neighbors) egypt +libya text(is:butted:against) sudan +bhutan text(can:be:found:in) southern_asia +bhutan text(was:positioned:in) asia +bhutan text(was:butted:against) china +bhutan text(is:a:neighboring:country:of) india +macau text(is:positioned:in) eastern_asia +macau text(was:localized:in) asia +macau text(was:a:neighboring:country:of) china +somalia text(was:a:neighbor:of) djibouti +russia text(is:a:neighbor:of) kazakhstan +russia text(is:a:neighboring:state:to) norway +russia text(was:a:neighboring:state:to) mongolia +panama text(is:localized:in) central_america +panama text(was:present:in) americas +panama text(borders:with) costa_rica +panama text(neighbors:withborders) colombia +papua_new_guinea text(neighbors) indonesia +oman text(is:butted:against) saudi_arabia +israel text(was:butted:against) egypt +israel text(is:a:neighboring:country:of) jordan +israel text(was:a:neighboring:country:of) syria +togo text(was:a:neighbor:of) burkina_faso +togo text(is:a:neighbor:of) ghana +iran text(is:a:neighboring:state:to) iraq +saint_martin text(is:present:in) caribbean +saint_martin text(is:still:in) americas +saint_martin text(was:a:neighboring:state:to) sint_maarten +denmark text(was:still:in) northern_europe +denmark text(borders:with) germany +kosovo text(was:currently:in) eastern_europe +kosovo text(is:currently:in) europe +kosovo text(neighbors:withborders) serbia +kosovo text(neighbors) albania +kosovo text(is:butted:against) macedonia +kosovo text(was:butted:against) montenegro +eritrea text(was:situated:in) eastern_africa +eritrea text(is:a:neighboring:country:of) djibouti +eritrea text(was:a:neighboring:country:of) sudan +eritrea text(was:a:neighbor:of) ethiopia +niger text(is:a:neighbor:of) burkina_faso +rwanda text(is:a:neighboring:state:to) tanzania +united_arab_emirates text(was:a:neighboring:state:to) saudi_arabia +greece text(borders:with) bulgaria +senegal text(neighbors:withborders) guinea-bissau +monaco text(is:situated:in) western_europe +monaco text(neighbors) france +djibouti text(is:located:in) eastern_africa +djibouti text(is:butted:against) eritrea +djibouti text(was:butted:against) somalia +djibouti text(is:a:neighboring:country:of) ethiopia +indonesia text(was:located:in) south-eastern_asia +indonesia text(was:a:neighboring:country:of) papua_new_guinea +indonesia text(was:a:neighbor:of) timor-leste +indonesia text(is:a:neighbor:of) malaysia +uganda text(is:a:neighboring:state:to) tanzania +macedonia text(was:a:neighboring:state:to) kosovo +macedonia text(borders:with) bulgaria +ecuador text(could:be:found:in) south_america +ecuador text(neighbors:withborders) peru +ecuador text(neighbors) colombia +brazil text(is:butted:against) french_guiana +brazil text(was:butted:against) suriname +brazil text(is:a:neighboring:country:of) venezuela +brazil text(was:a:neighboring:country:of) guyana +finland text(was:a:neighbor:of) norway +jordan text(can:be:found:in) western_asia +jordan text(is:a:neighbor:of) saudi_arabia +jordan text(is:a:neighboring:state:to) israel +jordan text(was:a:neighboring:state:to) iraq +jordan text(borders:with) syria +timor-leste text(was:positioned:in) south-eastern_asia +timor-leste text(neighbors:withborders) indonesia +montenegro text(neighbors) kosovo +peru text(is:butted:against) ecuador +ukraine text(was:butted:against) hungary +turkmenistan text(is:a:neighboring:country:of) kazakhstan +gibraltar text(was:a:neighboring:country:of) spain +switzerland text(was:a:neighbor:of) germany +austria text(is:a:neighbor:of) germany +austria text(is:a:neighboring:state:to) hungary +austria text(was:a:neighboring:state:to) czechia +hungary text(is:positioned:in) eastern_europe +hungary text(borders:with) ukraine +hungary text(neighbors:withborders) slovakia +hungary text(neighbors) slovenia +hungary text(is:butted:against) croatia +hungary text(was:butted:against) austria +hungary text(is:a:neighboring:country:of) serbia +hungary text(was:a:neighboring:country:of) romania +malawi text(was:a:neighbor:of) zambia +malawi text(is:a:neighbor:of) tanzania +albania text(is:a:neighboring:state:to) kosovo +kuwait text(was:a:neighboring:state:to) saudi_arabia +kuwait text(borders:with) iraq +south_africa text(neighbors:withborders) botswana +south_africa text(neighbors) zimbabwe +benin text(is:butted:against) burkina_faso +croatia text(was:butted:against) hungary +sweden text(is:a:neighboring:country:of) norway +mexico text(was:a:neighboring:country:of) united_states +bangladesh text(was:a:neighbor:of) myanmar +malaysia text(is:a:neighbor:of) thailand +malaysia text(is:a:neighboring:state:to) indonesia +luxembourg text(was:a:neighboring:state:to) germany +honduras text(borders:with) nicaragua +mali text(neighbors:withborders) burkina_faso +french_guiana text(was:localized:in) south_america +french_guiana text(neighbors) brazil +french_guiana text(is:butted:against) suriname +yemen text(was:butted:against) saudi_arabia +venezuela text(is:localized:in) south_america +venezuela text(is:a:neighboring:country:of) brazil +venezuela text(was:a:neighboring:country:of) guyana +venezuela text(was:a:neighbor:of) colombia +united_states text(was:present:in) northern_america +united_states text(is:a:neighbor:of) canada +united_states text(is:a:neighboring:state:to) mexico +slovenia text(was:a:neighboring:state:to) hungary +china text(borders:with) bhutan +china text(neighbors:withborders) macau +china text(neighbors) kazakhstan +china text(is:butted:against) myanmar +china text(was:butted:against) mongolia +andorra text(is:a:neighboring:country:of) spain +palestine text(was:a:neighboring:country:of) jordan +palestine text(was:a:neighbor:of) egypt +france text(is:a:neighbor:of) germany +france text(is:a:neighboring:state:to) monaco +france text(was:a:neighboring:state:to) spain +mongolia text(is:present:in) eastern_asia +mongolia text(is:still:in) asia +mongolia text(borders:with) china +mongolia text(neighbors:withborders) russia \ No newline at end of file diff --git a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_country2text.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_country2text.tsv deleted file mode 100644 index 770f4a3..0000000 --- a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_country2text.tsv +++ /dev/null @@ -1,1063 +0,0 @@ -text(帛琉) locatedIn text(ميكرونيسيا) -text(Palau) locatedIn text(Oceanië) -text(馬爾代夫) locatedIn text(South:Asia) -text(المالديف) locatedIn text(Azië) -text(Brunei) locatedIn text(Sudeste:Asiático) -text(بروناي) locatedIn text(Asia) -text(Brunei) neighborOf text(ماليزيا) -text(Japón) locatedIn text(東亞) -text(Japan) locatedIn text(Asia) -text(Países:Bajos) neighborOf text(ألمانيا) -text(荷蘭) neighborOf text(بلجيكا) -text(تركيا) neighborOf text(Armenia) -text(Turquía) neighborOf text(أذربيجان) -text(Turkey) neighborOf text(إيران) -text(तुर्की) neighborOf text(Griekenland) -text(Turkije) neighborOf text(Georgia) -text(土耳其) neighborOf text(Bulgaria) -text(تركيا) neighborOf text(Irak) -text(Turquía) neighborOf text(Syrië) -text(Angola) locatedIn text(وسط:إفريقيا) -text(安哥拉) locatedIn text(Africa) -text(أنغولا) neighborOf text(Congo-Kinshasa) -text(Angola) neighborOf text(नामीबिया) -text(अंगोला) neighborOf text(贊比亞) -text(Angola) neighborOf text(جمهورية:الكونغو) -text(आर्मीनिया) locatedIn text(पश्चिमी:एशिया) -text(亞美尼亞) locatedIn text(亞洲) -text(Armenia) neighborOf text(जॉर्जिया) -text(أرمينيا) neighborOf text(Azerbeidzjan) -text(Armenië) neighborOf text(Iran) -text(Armenia) neighborOf text(Turkey) -text(Antigua:en:Barbuda) locatedIn text(Caribbean) -text(安提瓜和巴布达) locatedIn text(América) -text(Esuatini) locatedIn text(إفريقيا:الجنوبية) -text(Swaziland) locatedIn text(África) -text(एस्वातीनी) neighborOf text(Sudáfrica) -text(Eswatini) neighborOf text(موزمبيق) -text(Wallis:y:Futuna) locatedIn text(بولنيزيا) -text(Wallis:en:Futuna) locatedIn text(大洋洲) -text(उरुग्वे) locatedIn text(أمريكا:الجنوبية) -text(Uruguay) locatedIn text(Americas) -text(Uruguay) neighborOf text(阿根廷) -text(Uruguay) neighborOf text(巴西) -text(Zambia) locatedIn text(East:Africa) -text(Zambia) locatedIn text(Afrika) -text(زامبيا) neighborOf text(Tanzania) -text(ज़ाम्बिया) neighborOf text(Mozambique) -text(Zambia) neighborOf text(Democratic:Republic:of:the:Congo) -text(贊比亞) neighborOf text(Angola) -text(Zambia) neighborOf text(Botswana) -text(Zambia) neighborOf text(Zimbabwe) -text(زامبيا) neighborOf text(Namibië) -text(ज़ाम्बिया) neighborOf text(Malawi) -text(قبرص) locatedIn text(पूर्वी:यूरोप) -text(Cyprus) locatedIn text(Europe) -text(साइप्रस) neighborOf text(United:Kingdom) -text(المملكة:المتحدة) locatedIn text(أوروبا:الشمالية) -text(United:Kingdom) locatedIn text(Europa) -text(Reino:Unido) neighborOf text(英国) -text(बुरुण्डी) locatedIn text(شرق:إفريقيا) -text(Burundi) locatedIn text(अफ्रीका) -text(Burundi) neighborOf text(刚果民主共和国) -text(بوروندي) neighborOf text(Rwanda) -text(蒲隆地) neighborOf text(تنزانيا) -text(中非共和國) locatedIn text(Central:Africa) -text(جمهورية:إفريقيا:الوسطى) locatedIn text(非洲) -text(Central:African:Republic) neighborOf text(تشاد) -text(Centraal-Afrikaanse:Republiek) neighborOf text(剛果共和國) -text(República:Centroafricana) neighborOf text(جمهورية:الكونغو:الديمقراطية) -text(मध्य:अफ़्रीकी:गणराज्य) neighborOf text(Zuid-Soedan) -text(中非共和國) neighborOf text(Camerún) -text(جمهورية:إفريقيا:الوسطى) neighborOf text(Soedan) -text(Tonga) locatedIn text(पोलीनेशिया) -text(東加) locatedIn text(أوقيانوسيا) -text(कोत:दिव्वार) locatedIn text(West-Afrika) -text(科特迪瓦) locatedIn text(إفريقيا) -text(Ivoorkust) neighborOf text(Burkina:Faso) -text(Costa:de:Marfil) neighborOf text(घाना) -text(Ivory:Coast) neighborOf text(लाइबेरिया) -text(ساحل:العاج) neighborOf text(马里) -text(कोत:दिव्वार) neighborOf text(几内亚) -text(सिएरा:लियोन) neighborOf text(利比里亞) -text(سيراليون) neighborOf text(Guinea) -text(Mayotte) locatedIn text(Oost-Afrika) -text(马约特) locatedIn text(Africa) -text(بولندا) neighborOf text(德國) -text(Polonia) neighborOf text(Oekraïne) -text(Polen) neighborOf text(斯洛伐克) -text(波蘭) neighborOf text(Bielorrusia) -text(Poland) neighborOf text(Russia) -text(पोलैंड) neighborOf text(लिथुआनिया) -text(بولندا) neighborOf text(جمهورية:التشيك) -text(कज़ाख़िस्तान) locatedIn text(Centraal-Azië) -text(Kazachstan) locatedIn text(آسيا) -text(Kazajistán) neighborOf text(تركمانستان) -text(哈萨克斯坦) neighborOf text(People's:Republic:of:China) -text(Kazakhstan) neighborOf text(Kirguistán) -text(كازاخستان) neighborOf text(उज़्बेकिस्तान) -text(कज़ाख़िस्तान) neighborOf text(रूस) -text(Uzbekistan) locatedIn text(中亚) -text(أوزبكستان) locatedIn text(एशिया) -text(乌兹别克斯坦) neighborOf text(Afghanistan) -text(Uzbekistán) neighborOf text(土庫曼斯坦) -text(Oezbekistan) neighborOf text(Kazachstan) -text(उज़्बेकिस्तान) neighborOf text(吉尔吉斯斯坦) -text(Uzbekistan) neighborOf text(ताजीकिस्तान) -text(Islas:Turcas:y:Caicos) locatedIn text(Caraïben) -text(Turks:and:Caicos:Islands) locatedIn text(أمريكتان) -text(नया:कैलेडोनिया) locatedIn text(Melanesia) -text(New:Caledonia) locatedIn text(Oceanía) -text(巴基斯坦) neighborOf text(中华人民共和国) -text(Pakistan) neighborOf text(Afghanistan) -text(Pakistán) neighborOf text(ईरान) -text(पाकिस्तान) neighborOf text(India) -text(अर्जेण्टीना) locatedIn text(南美洲) -text(Argentinië) locatedIn text(美洲) -text(الأرجنتين) neighborOf text(Bolivia) -text(Argentina) neighborOf text(Chili) -text(Argentina) neighborOf text(Brazilië) -text(阿根廷) neighborOf text(Paraguay) -text(अर्जेण्टीना) neighborOf text(烏拉圭) -text(كوبا) locatedIn text(Caribe) -text(古巴) locatedIn text(महाअमेरिका) -text(塞爾維亞) neighborOf text(Macedonia:del:Norte) -text(Servië) neighborOf text(मॉन्टेनीग्रो) -text(सर्बिया) neighborOf text(कोसोवो:गणराज्य) -text(Serbia) neighborOf text(बोस्निया:और:हर्ज़ेगोविना) -text(صربيا) neighborOf text(क्रोएशिया) -text(Serbia) neighborOf text(Hongarije) -text(塞爾維亞) neighborOf text(Bulgarije) -text(Servië) neighborOf text(Romania) -text(República:Checa) locatedIn text(Oost-Europa) -text(चेक:गणराज्य) locatedIn text(أوروبا) -text(捷克) neighborOf text(जर्मनी) -text(Czech:Republic) neighborOf text(ऑस्ट्रिया) -text(Tsjechië) neighborOf text(Polonia) -text(جمهورية:التشيك) neighborOf text(स्लोवाकिया) -text(Nicaragua) neighborOf text(هندوراس) -text(निकारागुआ) neighborOf text(Costa:Rica) -text(Vietnam) locatedIn text(दक्षिण:पूर्व:एशिया) -text(Vietnam) locatedIn text(Azië) -text(Vietnam) neighborOf text(柬埔寨) -text(越南) neighborOf text(Laos) -text(فيتنام) neighborOf text(الصين) -text(نييوي) locatedIn text(玻里尼西亞) -text(निउए) locatedIn text(ओशिआनिया) -text(加拿大) locatedIn text(北美洲) -text(Canadá) locatedIn text(Amerika) -text(Canada) neighborOf text(United:States) -text(سلوفاكيا) neighborOf text(Ukraine) -text(Slowakije) neighborOf text(Polen) -text(Slovakia) neighborOf text(奧地利) -text(Eslovaquia) neighborOf text(हंगरी) -text(斯洛伐克) neighborOf text(República:Checa) -text(Mozambique) neighborOf text(Tanzania) -text(मोज़ाम्बीक) neighborOf text(斯威士兰) -text(莫桑比克) neighborOf text(Zimbabwe) -text(Mozambique) neighborOf text(Zambia) -text(موزمبيق) neighborOf text(Malawi) -text(Mozambique) neighborOf text(جنوب:إفريقيا) -text(Aruba) locatedIn text(الكاريبي) -text(Aruba) locatedIn text(América) -text(Bolivia) locatedIn text(América:del:Sur) -text(Bolivia) locatedIn text(Americas) -text(बोलिविया) neighborOf text(智利) -text(بوليفيا) neighborOf text(ब्राज़ील) -text(玻利維亞) neighborOf text(باراغواي) -text(Bolivia) neighborOf text(Argentinië) -text(Bolivia) neighborOf text(Perú) -text(Colombia) locatedIn text(दक्षिण:अमेरिका) -text(哥伦比亚) locatedIn text(أمريكتان) -text(Colombia) neighborOf text(ईक्वाडोर) -text(कोलम्बिया) neighborOf text(البرازيل) -text(كولومبيا) neighborOf text(Panama) -text(Colombia) neighborOf text(فنزويلا) -text(Colombia) neighborOf text(بيرو) -text(Fiji) locatedIn text(Melanesia) -text(Fiji) locatedIn text(Oceania) -text(Congo-Brazzaville) neighborOf text(加蓬) -text(Republic:of:the:Congo) neighborOf text(कांगो:लोकतान्त्रिक:गणराज्य) -text(कांगो:गणराज्य) neighborOf text(安哥拉) -text(República:del:Congo) neighborOf text(कैमरुन) -text(جمهورية:الكونغو) neighborOf text(Central:African:Republic) -text(Arabia:Saudí) neighborOf text(Qatar) -text(沙特阿拉伯) neighborOf text(संयुक्त:अरब:अमीरात) -text(السعودية) neighborOf text(約旦) -text(सउदी:अरब) neighborOf text(اليمن) -text(Saudi:Arabia) neighborOf text(Oman) -text(Saoedi-Arabië) neighborOf text(科威特) -text(Arabia:Saudí) neighborOf text(العراق) -text(El:Salvador) locatedIn text(Central:America) -text(अल:साल्वाडोर) locatedIn text(美洲) -text(السلفادور) neighborOf text(غواتيمالا) -text(薩爾瓦多) neighborOf text(洪都拉斯) -text(Madagascar) locatedIn text(东部非洲) -text(मेडागास्कर) locatedIn text(África) -text(Australia) locatedIn text(nan) -text(Australia) locatedIn text(Oceanië) -text(纳米比亚) locatedIn text(Zuidelijk:Afrika) -text(Namibia) locatedIn text(Afrika) -text(Namibia) neighborOf text(贊比亞) -text(ناميبيا) neighborOf text(أنغولا) -text(नामीबिया) neighborOf text(南非) -text(Namibië) neighborOf text(बोत्सवाना) -text(Tuvalu) locatedIn text(Polynesië) -text(तुवालू) locatedIn text(大洋洲) -text(斯瓦巴和扬马延) locatedIn text(Northern:Europe) -text(Spitsbergen:en:Jan:Mayen) locatedIn text(欧洲) -text(Man) locatedIn text(उत्तरी:यूरोप) -text(جزيرة:مان) locatedIn text(Europa) -text(圭亚那) neighborOf text(Brasil) -text(Guyana) neighborOf text(Surinam) -text(غيانا) neighborOf text(委內瑞拉) -text(वैटिकन:नगर) locatedIn text(Zuid-Europa) -text(梵蒂岡城國) locatedIn text(यूरोप) -text(Vaticaanstad) neighborOf text(意大利) -text(British:Indian:Ocean:Territory) locatedIn text(África:Oriental) -text(Territorio:Británico:del:Océano:Índico) locatedIn text(अफ्रीका) -text(नाइजीरिया) locatedIn text(غرب:إفريقيا) -text(奈及利亞) locatedIn text(非洲) -text(نيجيريا) neighborOf text(乍得) -text(Nigeria) neighborOf text(Níger) -text(Nigeria) neighborOf text(喀麦隆) -text(Nigeria) neighborOf text(貝南) -text(Duitsland) neighborOf text(Denmark) -text(Alemania) neighborOf text(Netherlands) -text(Germany) neighborOf text(波蘭) -text(ألمانيا) neighborOf text(لوكسمبورغ) -text(德國) neighborOf text(België) -text(जर्मनी) neighborOf text(Suiza) -text(Duitsland) neighborOf text(Austria) -text(Alemania) neighborOf text(France) -text(Germany) neighborOf text(चेक:गणराज्य) -text(Burkina:Faso) neighborOf text(Togo) -text(بوركينا:فاسو) neighborOf text(بنين) -text(Burkina:Faso) neighborOf text(النيجر) -text(बुर्किना:फासो) neighborOf text(Ghana) -text(布吉納法索) neighborOf text(माली) -text(Burkina:Faso) neighborOf text(科特迪瓦) -text(Tanzania) neighborOf text(Uganda) -text(तंज़ानिया) neighborOf text(Mozambique) -text(坦桑尼亞) neighborOf text(República:Democrática:del:Congo) -text(Tanzania) neighborOf text(Kenia) -text(تنزانيا) neighborOf text(رواندا) -text(Tanzania) neighborOf text(Zambia) -text(Tanzania) neighborOf text(मलावी) -text(तंज़ानिया) neighborOf text(Burundi) -text(उत्तरी:मारियाना:द्वीप) locatedIn text(माइक्रोनीशिया) -text(Noordelijke:Marianen) locatedIn text(أوقيانوسيا) -text(Belize) locatedIn text(أمريكا:الوسطى) -text(बेलीज़) locatedIn text(महाअमेरिका) -text(Belice) neighborOf text(Guatemala) -text(بليز) neighborOf text(墨西哥) -text(नॉर्वे) neighborOf text(Zweden) -text(النرويج) neighborOf text(Finland) -text(Noorwegen) neighborOf text(俄罗斯) -text(جزر:كوكوس) locatedIn text(nan) -text(कोकोस:(कीलिंग):द्वीपसमूह) locatedIn text(Oceanía) -text(Laos) locatedIn text(Zuidoost-Azië) -text(लाओस) locatedIn text(Asia) -text(Laos) neighborOf text(República:Popular:China) -text(لاوس) neighborOf text(Cambodia) -text(老撾) neighborOf text(Birmania) -text(Laos) neighborOf text(वियतनाम) -text(Laos) neighborOf text(泰國) -text(Sahrawi:Arabische:Democratische:Republiek) locatedIn text(Norte:de:África) -text(الجمهورية:العربية:الصحراوية:الديمقراطية) locatedIn text(إفريقيا) -text(Sahrawi:Arab:Democratic:Republic) neighborOf text(अल्जीरिया) -text(República:Árabe:Saharaui:Democrática) neighborOf text(毛里塔尼亞) -text(सहरावी:अरब:जनतांत्रिक:गणराज्य) neighborOf text(Marruecos) -text(蘇利南) locatedIn text(Zuid-Amerika) -text(سورينام) locatedIn text(Amerika) -text(Suriname) neighborOf text(Brazil) -text(सूरीनाम) neighborOf text(Guayana:Francesa) -text(Suriname) neighborOf text(Guyana) -text(Isla:de:Navidad) locatedIn text(Australië:en:Nieuw-Zeeland) -text(Christmas:Island) locatedIn text(ओशिआनिया) -text(São:Tomé:and:Príncipe) locatedIn text(मध्य:अफ्रीका) -text(ساو:تومي:وبرينسيب) locatedIn text(Africa) -text(मिस्र) neighborOf text(Libia) -text(Egipto) neighborOf text(إسرائيل) -text(Egypte) neighborOf text(السودان) -text(बुल्गारिया) neighborOf text(北马其顿) -text(بلغاريا) neighborOf text(तुर्की) -text(保加利亚) neighborOf text(Grecia) -text(Bulgaria) neighborOf text(सर्बिया) -text(Bulgaria) neighborOf text(羅馬尼亞) -text(غينيا) locatedIn text(पश्चिमी:अफ्रीका) -text(Guinea) locatedIn text(África) -text(गिनी) neighborOf text(غينيا:بيساو) -text(Guinee) neighborOf text(Sierra:Leone) -text(几内亚) neighborOf text(Mali) -text(Guinea) neighborOf text(ليبيريا) -text(غينيا) neighborOf text(Senegal) -text(Guinea) neighborOf text(Ivoorkust) -text(España) neighborOf text(Morocco) -text(स्पेन) neighborOf text(جبل:طارق) -text(西班牙) neighborOf text(Andorra) -text(Spain) neighborOf text(Francia) -text(Spanje) neighborOf text(पुर्तगाल) -text(كوستاريكا) locatedIn text(Centraal-Amerika) -text(Costa:Rica) locatedIn text(América) -text(哥斯达黎加) neighborOf text(بنما) -text(Costa:Rica) neighborOf text(Nicaragua) -text(مالطا) locatedIn text(Europa:del:Sur) -text(Malta) locatedIn text(Europe) -text(葡萄牙) locatedIn text(南欧) -text(البرتغال) locatedIn text(Europa) -text(Portugal) neighborOf text(إسبانيا) -text(Roemenië) locatedIn text(Eastern:Europe) -text(رومانيا) locatedIn text(أوروبا) -text(रोमानिया) neighborOf text(Ucrania) -text(Rumania) neighborOf text(Hungría) -text(Romania) neighborOf text(मोल्डोवा) -text(羅馬尼亞) neighborOf text(Bulgarije) -text(Roemenië) neighborOf text(Serbia) -text(सान:मारिनो) locatedIn text(أوروبا:الجنوبية) -text(San:Marino) locatedIn text(欧洲) -text(سان:مارينو) neighborOf text(Italië) -text(Mauritania) locatedIn text(West:Africa) -text(Mauritania) locatedIn text(Afrika) -text(موريتانيا) neighborOf text(Algerije) -text(मॉरीतानिया) neighborOf text(Mali) -text(Mauritanië) neighborOf text(撒拉威阿拉伯民主共和國) -text(毛里塔尼亞) neighborOf text(Senegal) -text(त्रिनिदाद:और:टोबैगो) locatedIn text(加勒比地区) -text(ترينيداد:وتوباغو) locatedIn text(Americas) -text(巴林) locatedIn text(Zuidwest-Azië) -text(बहरीन) locatedIn text(Asia) -text(Myanmar) neighborOf text(भारत) -text(म्यान्मार) neighborOf text(Bangladesh) -text(Myanmar) neighborOf text(चीनी:जनवादी:गणराज्य) -text(ميانمار) neighborOf text(लाओस) -text(緬甸) neighborOf text(Tailandia) -text(इराक) neighborOf text(Turkije) -text(Irak) neighborOf text(沙特阿拉伯) -text(伊拉克) neighborOf text(Irán) -text(Iraq) neighborOf text(Jordanië) -text(Irak) neighborOf text(Kuwait) -text(العراق) neighborOf text(Syria) -text(South:Georgia:and:the:South:Sandwich:Islands) locatedIn text(South:America) -text(جورجيا:الجنوبية:وجزر:ساندويتش:الجنوبية) locatedIn text(أمريكتان) -text(冰島) locatedIn text(Noord-Europa) -text(IJsland) locatedIn text(Europa) -text(Congo-Kinshasa) locatedIn text(中部非洲) -text(Democratic:Republic:of:the:Congo) locatedIn text(अफ्रीका) -text(刚果民主共和国) neighborOf text(Uganda) -text(جمهورية:الكونغو:الديمقراطية) neighborOf text(坦桑尼亞) -text(कांगो:लोकतान्त्रिक:गणराज्य) neighborOf text(剛果共和國) -text(República:Democrática:del:Congo) neighborOf text(Centraal-Afrikaanse:Republiek) -text(Congo-Kinshasa) neighborOf text(Angola) -text(Democratic:Republic:of:the:Congo) neighborOf text(卢旺达) -text(刚果民主共和国) neighborOf text(جنوب:السودان) -text(جمهورية:الكونغو:الديمقراطية) neighborOf text(Zambia) -text(कांगो:लोकतान्त्रिक:गणराज्य) neighborOf text(बुरुण्डी) -text(塞舌尔) locatedIn text(पूर्वी:अफ्रीका) -text(सेशेल्स) locatedIn text(非洲) -text(قرغيزستان) neighborOf text(Volksrepubliek:China) -text(Kyrgyzstan) neighborOf text(Kazajistán) -text(किर्गिज़स्तान) neighborOf text(Tayikistán) -text(Kirgizië) neighborOf text(أوزبكستان) -text(بوتسوانا) locatedIn text(Southern:Africa) -text(Botswana) locatedIn text(إفريقيا) -text(波札那) neighborOf text(Zimbabue) -text(Botsuana) neighborOf text(纳米比亚) -text(Botswana) neighborOf text(زامبيا) -text(बोत्सवाना) neighborOf text(दक्षिण:अफ़्रीका) -text(फ़रो:द्वीपसमूह) locatedIn text(Europa:del:Norte) -text(法罗群岛) locatedIn text(यूरोप) -text(Jamaica) locatedIn text(कैरिबिया) -text(जमैका) locatedIn text(美洲) -text(Samoa:Americana) locatedIn text(Polinesia) -text(अमेरिकी:समोआ) locatedIn text(Oceania) -text(莱索托) locatedIn text(दक्षिणी:अफ्रीका) -text(Lesoto) locatedIn text(Africa) -text(लेसोथो) neighborOf text(Zuid-Afrika) -text(Sri:Lanka) neighborOf text(印度) -text(Belgium) locatedIn text(أوروبا:الغربية) -text(比利時) locatedIn text(Europe) -text(बेल्जियम) neighborOf text(ألمانيا) -text(Bélgica) neighborOf text(Luxembourg) -text(بلجيكا) neighborOf text(فرنسا) -text(België) neighborOf text(هولندا) -text(قطر) locatedIn text(Asia:Occidental) -text(卡塔尔) locatedIn text(亞洲) -text(Qatar) neighborOf text(السعودية) -text(Islas:Salomón) locatedIn text(ميلانيزيا) -text(所罗门群岛) locatedIn text(Oceanië) -text(敘利亞) locatedIn text(西亚) -text(سوريا) locatedIn text(آسيا) -text(सीरिया) neighborOf text(以色列) -text(Siria) neighborOf text(土耳其) -text(Syrië) neighborOf text(जॉर्डन) -text(Syria) neighborOf text(黎巴嫩) -text(敘利亞) neighborOf text(इराक) -text(India) locatedIn text(南亚) -text(India) locatedIn text(एशिया) -text(الهند) neighborOf text(Afganistán) -text(India) neighborOf text(Bhutan) -text(भारत) neighborOf text(Bangladesh) -text(印度) neighborOf text(People's:Republic:of:China) -text(India) neighborOf text(नेपाल) -text(India) neighborOf text(Birmania) -text(الهند) neighborOf text(Pakistan) -text(India) neighborOf text(斯里蘭卡) -text(المغرب) neighborOf text(Algeria) -text(मोरक्को) neighborOf text(España) -text(摩洛哥) neighborOf text(Sahrawi:Arabische:Democratische:Republiek) -text(Kenia) locatedIn text(East:Africa) -text(Kenya) locatedIn text(África) -text(कीनिया) neighborOf text(أوغندا) -text(肯尼亚) neighborOf text(Tanzania) -text(كينيا) neighborOf text(Somalia) -text(Kenia) neighborOf text(South:Sudan) -text(Kenia) neighborOf text(Ethiopië) -text(दक्षिण:सूडान) locatedIn text(Centraal-Afrika) -text(Sudán:del:Sur) locatedIn text(Afrika) -text(南蘇丹) neighborOf text(Oeganda) -text(Zuid-Soedan) neighborOf text(República:Democrática:del:Congo) -text(جنوب:السودان) neighborOf text(Kenya) -text(South:Sudan) neighborOf text(República:Centroafricana) -text(दक्षिण:सूडान) neighborOf text(Sudan) -text(Sudán:del:Sur) neighborOf text(Ethiopia) -text(Ghana) neighborOf text(Burkina:Faso) -text(迦納) neighborOf text(Costa:de:Marfil) -text(غانا) neighborOf text(Togo) -text(塔吉克斯坦) locatedIn text(मध्य:एशिया) -text(Tajikistan) locatedIn text(Azië) -text(Tadzjikistan) neighborOf text(中华人民共和国) -text(طاجيكستان) neighborOf text(Kirguistán) -text(ताजीकिस्तान) neighborOf text(أفغانستان) -text(Tayikistán) neighborOf text(乌兹别克斯坦) -text(Islas:Marshall) locatedIn text(Micronesië) -text(Marshall:Islands) locatedIn text(大洋洲) -text(الكاميرون) locatedIn text(África:Central) -text(Kameroen) locatedIn text(अफ्रीका) -text(Cameroon) neighborOf text(चाड) -text(Camerún) neighborOf text(Congo-Brazzaville) -text(कैमरुन) neighborOf text(Gabon) -text(喀麦隆) neighborOf text(赤道几内亚) -text(الكاميرون) neighborOf text(मध्य:अफ़्रीकी:गणराज्य) -text(Kameroen) neighborOf text(नाइजीरिया) -text(नौरु) locatedIn text(密克羅尼西亞群島) -text(瑙鲁) locatedIn text(أوقيانوسيا) -text(Thailand) neighborOf text(Camboya) -text(تايلاند) neighborOf text(Myanmar) -text(Thailand) neighborOf text(Laos) -text(थाईलैंड) neighborOf text(馬來西亞) -text(Sudán) neighborOf text(Chad) -text(सूडान) neighborOf text(लीबिया) -text(苏丹) neighborOf text(南蘇丹) -text(Soedan) neighborOf text(Eritrea) -text(السودان) neighborOf text(中非共和國) -text(Sudan) neighborOf text(埃及) -text(Sudán) neighborOf text(Etiopía) -text(Tsjaad) locatedIn text(وسط:إفريقيا) -text(Chad) locatedIn text(非洲) -text(تشاد) neighborOf text(Libië) -text(乍得) neighborOf text(Niger) -text(चाड) neighborOf text(Zuid-Soedan) -text(Chad) neighborOf text(Cameroon) -text(Tsjaad) neighborOf text(جمهورية:إفريقيا:الوسطى) -text(Chad) neighborOf text(奈及利亞) -text(Vanuatu) locatedIn text(मॅलानिशिया) -text(萬那杜) locatedIn text(Oceanía) -text(الرأس:الأخضر) locatedIn text(西非) -text(佛得角) locatedIn text(إفريقيا) -text(Islas:Malvinas) locatedIn text(أمريكا:الجنوبية) -text(福克蘭群島) locatedIn text(महाअमेरिका) -text(Liberia) locatedIn text(África:Occidental) -text(Liberia) locatedIn text(Africa) -text(Liberia) neighborOf text(Ivory:Coast) -text(लाइबेरिया) neighborOf text(Sierra:Leone) -text(利比里亞) neighborOf text(गिनी) -text(कम्बोडिया) locatedIn text(东南亚) -text(Cambodja) locatedIn text(Asia) -text(كمبوديا) neighborOf text(Vietnam) -text(柬埔寨) neighborOf text(泰國) -text(Cambodia) neighborOf text(لاوس) -text(زيمبابوي) neighborOf text(ज़ाम्बिया) -text(津巴布韦) neighborOf text(South:Africa) -text(ज़िम्बाब्वे) neighborOf text(بوتسوانا) -text(Zimbabwe) neighborOf text(मोज़ाम्बीक) -text(جزر:القمر) locatedIn text(شرق:إفريقيا) -text(कोमोरोस) locatedIn text(África) -text(Guam) locatedIn text(Micronesia) -text(關島) locatedIn text(ओशिआनिया) -text(The:Bahamas) locatedIn text(Caribbean) -text(جزر:البهاما) locatedIn text(Amerika) -text(लेबनॉन) locatedIn text(West:Asia) -text(Libanon) locatedIn text(Asia) -text(Líbano) neighborOf text(Israel) -text(Lebanon) neighborOf text(سوريا) -text(Sint:Maarten) locatedIn text(Caraïben) -text(सेंट:मार्टिन) locatedIn text(América) -text(Saint:Martin) neighborOf text(सेंट:मार्टिन:की:सामूहिकता) -text(إثيوبيا) locatedIn text(Oost-Afrika) -text(埃塞俄比亚) locatedIn text(Afrika) -text(इथियोपिया) neighborOf text(索馬里) -text(Ethiopië) neighborOf text(कीनिया) -text(Ethiopia) neighborOf text(Eritrea) -text(Etiopía) neighborOf text(جنوب:السودان) -text(إثيوبيا) neighborOf text(जिबूती) -text(埃塞俄比亚) neighborOf text(सूडान) -text(美屬維爾京群島) locatedIn text(Caribe) -text(संयुक्त:राज्य:वर्जिन:द्वीपसमूह) locatedIn text(Americas) -text(Guinea-Bisáu) locatedIn text(West-Afrika) -text(Guinea-Bissau) locatedIn text(अफ्रीका) -text(畿內亞比紹) neighborOf text(Guinee) -text(Guinee-Bissau) neighborOf text(塞内加尔) -text(ليبيا) locatedIn text(شمال:إفريقيا) -text(利比亞) locatedIn text(非洲) -text(Libya) neighborOf text(تشاد) -text(Libia) neighborOf text(تونس) -text(लीबिया) neighborOf text(Niger) -text(Libië) neighborOf text(阿爾及利亞) -text(ليبيا) neighborOf text(مصر) -text(利比亞) neighborOf text(苏丹) -text(Bhutan) locatedIn text(Asia:del:Sur) -text(भूटान) locatedIn text(亞洲) -text(不丹) neighborOf text(الصين) -text(بوتان) neighborOf text(भारत) -text(澳門) locatedIn text(شرق:آسيا) -text(Macau) locatedIn text(آسيا) -text(मकाउ) neighborOf text(República:Popular:China) -text(Frans-Polynesië) locatedIn text(Polynesia) -text(French:Polynesia) locatedIn text(Oceania) -text(Somalië) locatedIn text(东部非洲) -text(Somalia) locatedIn text(إفريقيا) -text(الصومال) neighborOf text(吉布提) -text(सोमालिया) neighborOf text(肯尼亚) -text(Somalia) neighborOf text(इथियोपिया) -text(सेंट:बार्थेलेमी) locatedIn text(الكاريبي) -text(Saint-Barthélemy) locatedIn text(أمريكتان) -text(روسيا) locatedIn text(东欧) -text(Rusia) locatedIn text(Europa) -text(Rusland) neighborOf text(烏克蘭) -text(Russia) neighborOf text(Belarus) -text(रूस) neighborOf text(चीनी:जनवादी:गणराज्य) -text(俄罗斯) neighborOf text(哈萨克斯坦) -text(روسيا) neighborOf text(挪威) -text(Rusia) neighborOf text(Poland) -text(Rusland) neighborOf text(Azerbaiyán) -text(Russia) neighborOf text(ليتوانيا) -text(रूस) neighborOf text(إستونيا) -text(俄罗斯) neighborOf text(Corea:del:Norte) -text(روسيا) neighborOf text(फ़िनलैण्ड) -text(Rusia) neighborOf text(Mongolia) -text(Rusland) neighborOf text(लातविया) -text(Russia) neighborOf text(格鲁吉亚) -text(نيوزيلندا) locatedIn text(nan) -text(New:Zealand) locatedIn text(Oceanië) -text(Panamá) locatedIn text(América:Central) -text(Panama) locatedIn text(美洲) -text(巴拿馬) neighborOf text(कोस्टा:रीका) -text(पनामा) neighborOf text(哥伦比亚) -text(Papua:New:Guinea) locatedIn text(美拉尼西亞) -text(Papúa:Nueva:Guinea) locatedIn text(大洋洲) -text(巴布亚新几内亚) neighborOf text(Indonesië) -text(उत्तर:कोरिया) neighborOf text(Volksrepubliek:China) -text(كوريا:الشمالية) neighborOf text(Zuid-Korea) -text(朝鮮民主主義人民共和國) neighborOf text(रूस) -text(Letland) locatedIn text(北歐) -text(لاتفيا) locatedIn text(أوروبا) -text(Latvia) neighborOf text(立陶宛) -text(拉脫維亞) neighborOf text(Wit-Rusland) -text(Letonia) neighborOf text(俄罗斯) -text(लातविया) neighborOf text(Estonia) -text(Omán) locatedIn text(غرب:آسيا) -text(Oman) locatedIn text(एशिया) -text(سلطنة:عمان) neighborOf text(सउदी:अरब) -text(ओमान) neighborOf text(Yemen) -text(阿曼) neighborOf text(阿拉伯联合酋长国) -text(सन्त:पियर:और:मिकलान) locatedIn text(أمريكا:الشمالية) -text(San:Pedro:y:Miquelón) locatedIn text(महाअमेरिका) -text(मार्टीनिक) locatedIn text(加勒比地区) -text(馬提尼克) locatedIn text(Amerika) -text(Verenigd:Koninkrijk) locatedIn text(أوروبا:الشمالية) -text(यूनाइटेड:किंगडम) locatedIn text(欧洲) -text(Reino:Unido) neighborOf text(英国) -text(Israel) locatedIn text(पश्चिमी:एशिया) -text(इज़राइल) locatedIn text(Azië) -text(Israël) neighborOf text(لبنان) -text(إسرائيل) neighborOf text(Egypt) -text(以色列) neighborOf text(Jordan) -text(Israel) neighborOf text(सीरिया) -text(Jersey) locatedIn text(Northern:Europe) -text(Jersey) locatedIn text(Europa) -text(Islas:Pitcairn) locatedIn text(بولنيزيا) -text(جزر:بيتكيرن) locatedIn text(أوقيانوسيا) -text(Togo) locatedIn text(غرب:إفريقيا) -text(多哥) locatedIn text(Africa) -text(टोगो) neighborOf text(بوركينا:فاسو) -text(توغو) neighborOf text(Ghana) -text(Togo) neighborOf text(Benin) -text(كيريباتي) locatedIn text(Micronesia) -text(Kiribati) locatedIn text(Oceanía) -text(伊朗) locatedIn text(Zuid-Azië) -text(Iran) locatedIn text(Asia) -text(إيران) neighborOf text(阿富汗) -text(Iran) neighborOf text(Turkmenistan) -text(ईरान) neighborOf text(تركيا) -text(Irán) neighborOf text(आर्मीनिया) -text(伊朗) neighborOf text(Azerbaijan) -text(Iran) neighborOf text(باكستان) -text(إيران) neighborOf text(Irak) -text(تجمع:سان:مارتين) locatedIn text(कैरिबिया) -text(法屬聖馬丁) locatedIn text(América) -text(Saint-Martin) neighborOf text(圣马丁岛) -text(República:Dominicana) locatedIn text(Caribbean) -text(Dominican:Republic) locatedIn text(Americas) -text(多明尼加) neighborOf text(هايتي) -text(丹麥) neighborOf text(德國) -text(बरमूडा) locatedIn text(América:del:Norte) -text(Bermuda) locatedIn text(أمريكتان) -text(تشيلي) neighborOf text(الأرجنتين) -text(चिली) neighborOf text(Bolivia) -text(Chile) neighborOf text(Peru) -text(Kosovo) locatedIn text(أوروبا:الشرقية) -text(Kosovo) locatedIn text(यूरोप) -text(كوسوفو) neighborOf text(صربيا) -text(科索沃) neighborOf text(Albania) -text(Kosovo) neighborOf text(Noord-Macedonië) -text(कोसोवो:गणराज्य) neighborOf text(Montenegro) -text(सन्त:किट्स:और:नेविस) locatedIn text(Caraïben) -text(Saint:Kitts:en:Nevis) locatedIn text(美洲) -text(इरित्रिया) neighborOf text(Djibouti) -text(厄立特里亞) neighborOf text(Soedan) -text(Eritrea) neighborOf text(Ethiopië) -text(भूमध्यरेखीय:गिनी) locatedIn text(Central:Africa) -text(Guinea:Ecuatorial) locatedIn text(África) -text(Equatorial:Guinea) neighborOf text(الغابون) -text(غينيا:الاستوائية) neighborOf text(Camerún) -text(尼日尔) locatedIn text(पश्चिमी:अफ्रीका) -text(नाइजर) locatedIn text(Afrika) -text(Níger) neighborOf text(乍得) -text(النيجر) neighborOf text(Libya) -text(Niger) neighborOf text(Burkina:Faso) -text(Niger) neighborOf text(Benín) -text(尼日尔) neighborOf text(مالي) -text(नाइजर) neighborOf text(Argelia) -text(Níger) neighborOf text(نيجيريا) -text(Anguila) locatedIn text(Caribe) -text(Anguilla) locatedIn text(महाअमेरिका) -text(Rwanda) locatedIn text(África:Oriental) -text(रवाण्डा) locatedIn text(अफ्रीका) -text(Ruanda) neighborOf text(Burundi) -text(Rwanda) neighborOf text(تنزانيا) -text(رواندا) neighborOf text(烏干達) -text(卢旺达) neighborOf text(Congo-Kinshasa) -text(الإمارات:العربية:المتحدة) locatedIn text(Zuidwest-Azië) -text(Verenigde:Arabische:Emiraten) locatedIn text(Asia) -text(United:Arab:Emirates) neighborOf text(Oman) -text(Emiratos:Árabes:Unidos) neighborOf text(Saudi:Arabia) -text(Estland) locatedIn text(उत्तरी:यूरोप) -text(एस्टोनिया) locatedIn text(Europe) -text(Estonia) neighborOf text(Letland) -text(愛沙尼亞) neighborOf text(روسيا) -text(希腊) locatedIn text(दक्षिणी:यूरोप) -text(اليونان) locatedIn text(Europa) -text(Greece) neighborOf text(बुल्गारिया) -text(यूनान) neighborOf text(ألبانيا) -text(Griekenland) neighborOf text(North:Macedonia) -text(Grecia) neighborOf text(Turquía) -text(Senegal) locatedIn text(West:Africa) -text(सेनेगल) locatedIn text(非洲) -text(السنغال) neighborOf text(गिनी-बिसाऊ) -text(Senegal) neighborOf text(Mauritania) -text(Senegal) neighborOf text(Mali) -text(塞内加尔) neighborOf text(岡比亞) -text(Senegal) neighborOf text(几内亚) -text(Guadeloupe) locatedIn text(الكاريبي) -text(Guadalupe) locatedIn text(Amerika) -text(मोनाको) neighborOf text(फ़्रान्स) -text(Djibouti) neighborOf text(إرتريا) -text(Yibuti) neighborOf text(索馬里) -text(جيبوتي) neighborOf text(Ethiopia) -text(इंडोनेशिया) neighborOf text(पापुआ:न्यू:गिनी) -text(Indonesia) neighborOf text(Timor-Leste) -text(印度尼西亚) neighborOf text(Maleisië) -text(جزر:عذراء:بريطانية) locatedIn text(加勒比地区) -text(英屬維爾京群島) locatedIn text(América) -text(Islas:Cook) locatedIn text(पोलीनेशिया) -text(جزر:كوك) locatedIn text(ओशिआनिया) -text(युगाण्डा) locatedIn text(पूर्वी:अफ्रीका) -text(Uganda) locatedIn text(إفريقيا) -text(Uganda) neighborOf text(Tanzania) -text(أوغندا) neighborOf text(Democratic:Republic:of:the:Congo) -text(Oeganda) neighborOf text(كينيا) -text(烏干達) neighborOf text(South:Sudan) -text(युगाण्डा) neighborOf text(Rwanda) -text(مقدونيا:الشمالية) locatedIn text(Southern:Europe) -text(उत्तर:मैसिडोनिया) locatedIn text(أوروبا) -text(Macedonia:del:Norte) neighborOf text(Kosovo) -text(北马其顿) neighborOf text(希腊) -text(Noord-Macedonië) neighborOf text(阿爾巴尼亞) -text(North:Macedonia) neighborOf text(Serbia) -text(مقدونيا:الشمالية) neighborOf text(بلغاريا) -text(Túnez) locatedIn text(北部非洲) -text(突尼西亞) locatedIn text(Africa) -text(Tunisia) neighborOf text(Libia) -text(ट्यूनिशिया) neighborOf text(الجزائر) -text(الإكوادور) neighborOf text(पेरू) -text(Ecuador) neighborOf text(Colombia) -text(巴西) locatedIn text(南美洲) -text(Brazilië) locatedIn text(Americas) -text(ब्राज़ील) neighborOf text(बोलिविया) -text(البرازيل) neighborOf text(कोलम्बिया) -text(Brasil) neighborOf text(Paraguay) -text(Brazil) neighborOf text(الأوروغواي) -text(巴西) neighborOf text(Frans-Guyana) -text(Brazilië) neighborOf text(Surinam) -text(ब्राज़ील) neighborOf text(Venezuela) -text(البرازيل) neighborOf text(Argentina) -text(Brasil) neighborOf text(Guyana) -text(Brazil) neighborOf text(秘鲁) -text(Paraguay) locatedIn text(América:del:Sur) -text(巴拉圭) locatedIn text(أمريكتان) -text(पैराग्वे) neighborOf text(Argentina) -text(Paraguay) neighborOf text(巴西) -text(باراغواي) neighborOf text(بوليفيا) -text(Finlandia) locatedIn text(Noord-Europa) -text(Finland) locatedIn text(欧洲) -text(芬蘭) neighborOf text(Norway) -text(فنلندا) neighborOf text(स्वीडन) -text(Finland) neighborOf text(Rusia) -text(Jordania) neighborOf text(Saoedi-Arabië) -text(الأردن) neighborOf text(Israel) -text(約旦) neighborOf text(伊拉克) -text(Jordanië) neighborOf text(Siria) -text(पूर्वी:तिमोर) neighborOf text(إندونيسيا) -text(الجبل:الأسود) locatedIn text(Zuid-Europa) -text(蒙特內哥羅) locatedIn text(Europa) -text(Montenegro) neighborOf text(Kosovo) -text(Montenegro) neighborOf text(البوسنة:والهرسك) -text(मॉन्टेनीग्रो) neighborOf text(Kroatië) -text(Montenegro) neighborOf text(塞爾維亞) -text(الجبل:الأسود) neighborOf text(अल्बानिया) -text(Peru) locatedIn text(दक्षिण:अमेरिका) -text(Perú) locatedIn text(美洲) -text(بيرو) neighborOf text(Ecuador) -text(Peru) neighborOf text(玻利維亞) -text(पेरू) neighborOf text(Chile) -text(秘鲁) neighborOf text(Brazilië) -text(Peru) neighborOf text(كولومبيا) -text(Montserrat) locatedIn text(कैरिबिया) -text(Montserrat) locatedIn text(महाअमेरिका) -text(युक्रेन) locatedIn text(Europa:Oriental) -text(أوكرانيا) locatedIn text(यूरोप) -text(Oekraïne) neighborOf text(स्लोवाकिया) -text(Ukraine) neighborOf text(بيلاروس) -text(Ucrania) neighborOf text(पोलैंड) -text(烏克蘭) neighborOf text(Rusland) -text(युक्रेन) neighborOf text(المجر) -text(أوكرانيا) neighborOf text(Moldova) -text(Oekraïne) neighborOf text(رومانيا) -text(Dominica) locatedIn text(Caribbean) -text(डोमिनिका) locatedIn text(Amerika) -text(तुर्कमेनिस्तान) neighborOf text(Kazakhstan) -text(Turkmenistán) neighborOf text(अफ़्ग़ानिस्तान) -text(Turkmenistan) neighborOf text(Uzbekistán) -text(تركمانستان) neighborOf text(Iran) -text(غيرنزي) locatedIn text(Europa:del:Norte) -text(ग्वेर्नसे) locatedIn text(Europe) -text(Gibraltar) locatedIn text(Europa:del:Sur) -text(जिब्राल्टर) locatedIn text(Europa) -text(Gibraltar) neighborOf text(स्पेन) -text(स्विट्ज़रलैण्ड) locatedIn text(Western:Europe) -text(瑞士) locatedIn text(أوروبا) -text(سويسرا) neighborOf text(जर्मनी) -text(Zwitserland) neighborOf text(Italia) -text(Switzerland) neighborOf text(Austria) -text(Suiza) neighborOf text(法國) -text(स्विट्ज़रलैण्ड) neighborOf text(लिक्टेन्स्टाइन) -text(Oostenrijk) locatedIn text(西欧) -text(النمسا) locatedIn text(欧洲) -text(ऑस्ट्रिया) neighborOf text(Duitsland) -text(奧地利) neighborOf text(سلوفاكيا) -text(Austria) neighborOf text(Slovenië) -text(Austria) neighborOf text(इटली) -text(Oostenrijk) neighborOf text(瑞士) -text(النمسا) neighborOf text(Hungary) -text(ऑस्ट्रिया) neighborOf text(Liechtenstein) -text(奧地利) neighborOf text(捷克) -text(匈牙利) neighborOf text(Ukraine) -text(Hongarije) neighborOf text(Slowakije) -text(हंगरी) neighborOf text(سلوفينيا) -text(Hungría) neighborOf text(Croatia) -text(المجر) neighborOf text(Austria) -text(Hungary) neighborOf text(Servië) -text(匈牙利) neighborOf text(रोमानिया) -text(Malaui) locatedIn text(East:Africa) -text(馬拉威) locatedIn text(África) -text(مالاوي) neighborOf text(Zambia) -text(Malawi) neighborOf text(Tanzania) -text(Malawi) neighborOf text(莫桑比克) -text(Hong:Kong) neighborOf text(People's:Republic:of:China) -text(ليختنشتاين) locatedIn text(पश्चिमी:यूरोप) -text(Liechtenstein) locatedIn text(Europa) -text(列支敦斯登) neighborOf text(سويسرا) -text(Liechtenstein) neighborOf text(Austria) -text(Barbados) locatedIn text(Caraïben) -text(巴巴多斯) locatedIn text(América) -text(Georgia) locatedIn text(Asia:Occidental) -text(جورجيا) locatedIn text(亞洲) -text(Georgië) neighborOf text(亞美尼亞) -text(Georgia) neighborOf text(阿塞拜疆) -text(जॉर्जिया) neighborOf text(Russia) -text(格鲁吉亚) neighborOf text(Turkey) -text(Albanië) locatedIn text(南欧) -text(Albania) locatedIn text(यूरोप) -text(Albania) neighborOf text(蒙特內哥羅) -text(ألبانيا) neighborOf text(उत्तर:मैसिडोनिया) -text(阿爾巴尼亞) neighborOf text(كوسوفو) -text(अल्बानिया) neighborOf text(اليونان) -text(Kuwait) locatedIn text(西亚) -text(कुवैत) locatedIn text(آسيا) -text(Koeweit) neighborOf text(Arabia:Saudí) -text(الكويت) neighborOf text(Iraq) -text(Sudáfrica) locatedIn text(南部非洲) -text(جنوب:إفريقيا) locatedIn text(Afrika) -text(南非) neighborOf text(Mozambique) -text(दक्षिण:अफ़्रीका) neighborOf text(Botswana) -text(Zuid-Afrika) neighborOf text(إسواتيني) -text(South:Africa) neighborOf text(Zimbabwe) -text(Sudáfrica) neighborOf text(Namibia) -text(جنوب:إفريقيا) neighborOf text(Lesotho) -text(海地) locatedIn text(Caribe) -text(Haití) locatedIn text(Americas) -text(Haïti) neighborOf text(جمهورية:الدومينيكان) -text(Afghanistan) locatedIn text(جنوب:آسيا) -text(Afghanistan) locatedIn text(एशिया) -text(Afganistán) neighborOf text(土庫曼斯坦) -text(أفغانستان) neighborOf text(中华人民共和国) -text(阿富汗) neighborOf text(塔吉克斯坦) -text(अफ़्ग़ानिस्तान) neighborOf text(Oezbekistan) -text(Afghanistan) neighborOf text(ईरान) -text(Afghanistan) neighborOf text(巴基斯坦) -text(Singapur) locatedIn text(Southeast:Asia) -text(सिंगापुर) locatedIn text(Azië) -text(बेनिन) locatedIn text(西非) -text(Benin) locatedIn text(अफ्रीका) -text(貝南) neighborOf text(النيجر) -text(بنين) neighborOf text(बुर्किना:फासो) -text(Benin) neighborOf text(Togo) -text(Benín) neighborOf text(Nigeria) -text(Åland) locatedIn text(北歐) -text(ऑलैण्ड:द्वीपसमूह) locatedIn text(Europe) -text(Croacia) locatedIn text(أوروبا:الجنوبية) -text(克羅地亞) locatedIn text(Europa) -text(كرواتيا) neighborOf text(Slovenia) -text(क्रोएशिया) neighborOf text(波斯尼亚和黑塞哥维那) -text(Kroatië) neighborOf text(Hongarije) -text(Croatia) neighborOf text(सर्बिया) -text(Croacia) neighborOf text(Montenegro) -text(Sweden) locatedIn text(أوروبا:الشمالية) -text(السويد) locatedIn text(أوروبا) -text(瑞典) neighborOf text(Noruega) -text(Suecia) neighborOf text(फ़िनलैण्ड) -text(México) neighborOf text(伯利兹) -text(Mexico) neighborOf text(संयुक्त:राज्य:अमेरिका) -text(Mexico) neighborOf text(Guatemala) -text(جرينلاند) locatedIn text(उत्तर:अमेरिका) -text(Greenland) locatedIn text(أمريكتان) -text(Pitcairn:Islands) locatedIn text(Australia:and:New:Zealand) -text(पिटकेर्न:द्वीपसमूह) locatedIn text(Oceania) -text(尼泊爾) locatedIn text(दक्षिण:एशिया) -text(Nepal) locatedIn text(Asia) -text(Nepal) neighborOf text(الصين) -text(Nepal) neighborOf text(印度) -text(Guatemala) neighborOf text(Belize) -text(危地马拉) neighborOf text(El:Salvador) -text(ग्वाटेमाला) neighborOf text(मेक्सिको) -text(غواتيمالا) neighborOf text(Honduras) -text(दक्षिण:कोरिया) locatedIn text(East:Asia) -text(Corea:del:Sur) locatedIn text(Asia) -text(大韩民国) neighborOf text(North:Korea) -text(Moldavië) locatedIn text(पूर्वी:यूरोप) -text(摩爾多瓦) locatedIn text(欧洲) -text(مولدوفا) neighborOf text(Ucrania) -text(Moldavia) neighborOf text(Rumania) -text(Mauritius) locatedIn text(شرق:إفريقيا) -text(毛里求斯) locatedIn text(非洲) -text(白俄羅斯) neighborOf text(烏克蘭) -text(बेलारूस) neighborOf text(بولندا) -text(Bielorrusia) neighborOf text(Lithuania) -text(Belarus) neighborOf text(रूस) -text(Wit-Rusland) neighborOf text(لاتفيا) -text(बांग्लादेश) neighborOf text(म्यान्मार) -text(بنغلاديش) neighborOf text(India) -text(Malaysia) locatedIn text(جنوب:شرق:آسيا) -text(Malasia) locatedIn text(亞洲) -text(मलेशिया) neighborOf text(Tailandia) -text(ماليزيا) neighborOf text(Indonesia) -text(馬來西亞) neighborOf text(汶莱) -text(Bosnia:and:Herzegovina) locatedIn text(दक्षिणी:यूरोप) -text(Bosnië:en:Herzegovina) locatedIn text(Europa) -text(Bosnia:y:Herzegovina) neighborOf text(Serbia) -text(बोस्निया:और:हर्ज़ेगोविना) neighborOf text(克羅地亞) -text(البوسنة:والهرسك) neighborOf text(Montenegro) -text(Luxemburgo) locatedIn text(West-Europa) -text(Luxemburg) locatedIn text(यूरोप) -text(लक्ज़मबर्ग) neighborOf text(Alemania) -text(卢森堡) neighborOf text(Belgium) -text(لوكسمبورغ) neighborOf text(Frankrijk) -text(Italy) locatedIn text(Southern:Europe) -text(إيطاليا) locatedIn text(Europe) -text(意大利) neighborOf text(स्लोवेनिया) -text(Italië) neighborOf text(Zwitserland) -text(Italia) neighborOf text(Oostenrijk) -text(इटली) neighborOf text(France) -text(Italy) neighborOf text(Ciudad:del:Vaticano) -text(إيطاليا) neighborOf text(圣马力诺) -text(अज़रबैजान) locatedIn text(West:Asia) -text(أذربيجان) locatedIn text(آسيا) -text(Azerbeidzjan) neighborOf text(तुर्की) -text(Azerbaiyán) neighborOf text(Armenia) -text(Azerbaijan) neighborOf text(俄罗斯) -text(阿塞拜疆) neighborOf text(Irán) -text(अज़रबैजान) neighborOf text(Georgia) -text(Honduras) locatedIn text(中美洲) -text(Honduras) locatedIn text(美洲) -text(हॉण्डुरस) neighborOf text(Guatemala) -text(هندوراس) neighborOf text(尼加拉瓜) -text(洪都拉斯) neighborOf text(El:Salvador) -text(马里) locatedIn text(África:Occidental) -text(माली) locatedIn text(إفريقيا) -text(Mali) neighborOf text(布吉納法索) -text(Mali) neighborOf text(Guinea) -text(مالي) neighborOf text(Mauritania) -text(Mali) neighborOf text(Niger) -text(马里) neighborOf text(सेनेगल) -text(माली) neighborOf text(अल्जीरिया) -text(Mali) neighborOf text(ساحل:العاج) -text(Taiwan) locatedIn text(Oost-Azië) -text(चीनी:गणराज्य) locatedIn text(एशिया) -text(Algerije) locatedIn text(Noord-Afrika) -text(Algeria) locatedIn text(Africa) -text(阿爾及利亞) neighborOf text(लीबिया) -text(Argelia) neighborOf text(Tunesië) -text(الجزائر) neighborOf text(موريتانيا) -text(अल्जीरिया) neighborOf text(Marokko) -text(Algerije) neighborOf text(Niger) -text(Algeria) neighborOf text(Mali) -text(阿爾及利亞) neighborOf text(الجمهورية:العربية:الصحراوية:الديمقراطية) -text(फ़्रान्सीसी:गुयाना) neighborOf text(ब्राज़ील) -text(French:Guiana) neighborOf text(蘇利南) -text(Jemen) locatedIn text(غرب:آسيا) -text(也门) locatedIn text(Azië) -text(Yemen) neighborOf text(Omán) -text(यमन) neighborOf text(沙特阿拉伯) -text(Puerto:Rico) locatedIn text(الكاريبي) -text(波多黎各) locatedIn text(महाअमेरिका) -text(سانت:فينسنت:والغرينادين) locatedIn text(加勒比地区) -text(圣文森特和格林纳丁斯) locatedIn text(Amerika) -text(वेनेज़ुएला) neighborOf text(البرازيل) -text(Venezuela) neighborOf text(गयाना) -text(Venezuela) neighborOf text(Colombia) -text(غرينادا) locatedIn text(कैरिबिया) -text(Grenada) locatedIn text(América) -text(Estados:Unidos) neighborOf text(Canada) -text(الولايات:المتحدة) neighborOf text(المكسيك) -text(توكيلاو) locatedIn text(玻里尼西亞) -text(Tokelau) locatedIn text(Oceanië) -text(斯洛文尼亞) locatedIn text(Zuid-Europa) -text(Eslovenia) locatedIn text(Europa) -text(Slovenië) neighborOf text(النمسا) -text(سلوفينيا) neighborOf text(كرواتيا) -text(Slovenia) neighborOf text(意大利) -text(स्लोवेनिया) neighborOf text(हंगरी) -text(الفلبين) locatedIn text(Sudeste:Asiático) -text(Filipinas) locatedIn text(Asia) -text(ميكرونيسيا) locatedIn text(माइक्रोनीशिया) -text(Micronesië) locatedIn text(大洋洲) -text(República:Popular:China) locatedIn text(पूर्वी:एशिया) -text(चीनी:जनवादी:गणराज्य) locatedIn text(Asia) -text(Volksrepubliek:China) neighborOf text(Afganistán) -text(People's:Republic:of:China) neighborOf text(Bután) -text(中华人民共和国) neighborOf text(ماكاو) -text(الصين) neighborOf text(India) -text(República:Popular:China) neighborOf text(كازاخستان) -text(चीनी:जनवादी:गणराज्य) neighborOf text(吉尔吉斯斯坦) -text(Volksrepubliek:China) neighborOf text(Tajikistan) -text(People's:Republic:of:China) neighborOf text(老撾) -text(中华人民共和国) neighborOf text(روسيا) -text(الصين) neighborOf text(Noord-Korea) -text(República:Popular:China) neighborOf text(Myanmar) -text(चीनी:जनवादी:गणराज्य) neighborOf text(Pakistan) -text(Volksrepubliek:China) neighborOf text(Mongolia) -text(People's:Republic:of:China) neighborOf text(हांगकांग) -text(中华人民共和国) neighborOf text(Vietnam) -text(गबॉन) locatedIn text(मध्य:अफ्रीका) -text(Gabon) locatedIn text(África) -text(Gabón) neighborOf text(Equatoriaal-Guinea) -text(加蓬) neighborOf text(Republic:of:the:Congo) -text(Gabon) neighborOf text(कैमरुन) -text(Amerikaanse:Kleinere:Afgelegen:Eilanden) locatedIn text(North:America) -text(United:States:Minor:Outlying:Islands) locatedIn text(Americas) -text(Andorra) locatedIn text(Europa:del:Sur) -text(安道尔) locatedIn text(أوروبا) -text(Andorra) neighborOf text(西班牙) -text(अण्डोरा) neighborOf text(Francia) -text(ساموا) locatedIn text(Polynesië) -text(Samoa) locatedIn text(أوقيانوسيا) -text(The:Gambia) locatedIn text(West-Afrika) -text(गाम्बिया) locatedIn text(Afrika) -text(غامبيا) neighborOf text(السنغال) -text(nan) locatedIn text(पश्चिमी:एशिया) -text(Pedro:Miguel) locatedIn text(亞洲) -text(Pedro:Miguel) neighborOf text(जॉर्डन) -text(nan) neighborOf text(मिस्र) -text(nan) neighborOf text(इज़राइल) -text(रेयूनियों) locatedIn text(Oost-Afrika) -text(留尼汪) locatedIn text(अफ्रीका) -text(فرنسا) locatedIn text(Europa:Occidental) -text(फ़्रान्स) locatedIn text(欧洲) -text(法國) neighborOf text(Germany) -text(Frankrijk) neighborOf text(Luxembourg) -text(France) neighborOf text(Italië) -text(Francia) neighborOf text(أندورا) -text(فرنسا) neighborOf text(Switzerland) -text(फ़्रान्स) neighborOf text(摩納哥) -text(法國) neighborOf text(比利時) -text(Frankrijk) neighborOf text(Spain) -text(منغوليا) locatedIn text(Asia:Oriental) -text(蒙古國) locatedIn text(آسيا) -text(Mongolië) neighborOf text(الصين) -text(मंगोलिया) neighborOf text(Rusia) -text(Lituania) locatedIn text(Northern:Europe) -text(Litouwen) locatedIn text(Europa) -text(लिथुआनिया) neighborOf text(Polonia) -text(ليتوانيا) neighborOf text(Latvia) -text(立陶宛) neighborOf text(بيلاروس) -text(Lithuania) neighborOf text(Rusland) -text(Kaaimaneilanden) locatedIn text(Caribbean) -text(開曼群島) locatedIn text(أمريكتان) -text(سانت:لوسيا) locatedIn text(Caraïben) -text(圣卢西亚) locatedIn text(美洲) -text(Curaçao) locatedIn text(Caribe) -text(كوراساو) locatedIn text(महाअमेरिका) -text(الكاريبي) locatedIn text(Amerika) -text(South:Asia) locatedIn text(एशिया) -text(中部非洲) locatedIn text(非洲) -text(उत्तरी:यूरोप) locatedIn text(यूरोप) -text(南欧) locatedIn text(Europe) -text(Zuidwest-Azië) locatedIn text(Azië) -text(Zuid-Amerika) locatedIn text(América) -text(Polinesia) locatedIn text(Oceanía) -text(nan) locatedIn text(ओशिआनिया) -text(أوروبا:الغربية) locatedIn text(Europa) -text(东部非洲) locatedIn text(إفريقيا) -text(غرب:إفريقيا) locatedIn text(Africa) -text(Oost-Europa) locatedIn text(أوروبا) -text(केंद्रीय:अमेरिका) locatedIn text(Americas) -text(Noord-Amerika) locatedIn text(أمريكتان) -text(दक्षिण:पूर्व:एशिया) locatedIn text(Asia) -text(África:austral) locatedIn text(África) -text(東亞) locatedIn text(Asia) -text(North:Africa) locatedIn text(Afrika) -text(Melanesië) locatedIn text(Oceania) -text(密克羅尼西亞群島) locatedIn text(Oceanië) -text(Asia:Central) locatedIn text(亞洲) -text(Centraal-Europa) locatedIn text(欧洲) \ No newline at end of file diff --git a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_country2text_relation2text.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_country2text_relation2text.tsv deleted file mode 100644 index 6de0f99..0000000 --- a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_country2text_relation2text.tsv +++ /dev/null @@ -1,1063 +0,0 @@ -text(पलाउ) text(was:localized:in) text(Micronesia) -text(帛琉) text(is:localized:in) text(أوقيانوسيا) -text(Maldivas) text(was:present:in) text(Zuid-Azië) -text(馬爾代夫) text(is:present:in) text(Asia) -text(Brunei) text(is:still:in) text(Sudeste:Asiático) -text(Brunéi) text(was:still:in) text(Azië) -text(汶莱) text(is:a:neighboring:state:to) text(मलेशिया) -text(जापान) text(was:currently:in) text(East:Asia) -text(Japan) text(is:currently:in) text(Asia) -text(Nederland) text(was:a:neighboring:state:to) text(जर्मनी) -text(荷蘭) text(borders:with) text(बेल्जियम) -text(Turkey) text(borders) text(Armenia) -text(تركيا) text(is:butted:against) text(अज़रबैजान) -text(तुर्की) text(was:butted:against) text(Irán) -text(Turquía) text(was:adjacent:to) text(اليونان) -text(土耳其) text(is:adjacent:to) text(Georgië) -text(Turkije) text(neighbors) text(Bulgaria) -text(Turkey) text(is:a:neighboring:country:of) text(Irak) -text(تركيا) text(was:a:neighboring:country:of) text(Syria) -text(अंगोला) text(is:placed:in) text(Centraal-Afrika) -text(Angola) text(was:placed:in) text(非洲) -text(Angola) text(neighbors:with) text(कांगो:लोकतान्त्रिक:गणराज्य) -text(Angola) text(was:a:neighbor:of) text(ناميبيا) -text(安哥拉) text(is:a:neighbor:of) text(Zambia) -text(أنغولا) text(is:a:neighboring:state:to) text(कांगो:गणराज्य) -text(亞美尼亞) text(can:be:found:in) text(पश्चिमी:एशिया) -text(أرمينيا) text(was:situated:in) text(亞洲) -text(Armenia) text(was:a:neighboring:state:to) text(Georgia) -text(Armenië) text(borders:with) text(阿塞拜疆) -text(आर्मीनिया) text(borders) text(Iran) -text(Armenia) text(is:butted:against) text(तुर्की) -text(अण्टीगुआ:और:बारबूडा) text(is:situated:in) text(Caribbean) -text(أنتيغوا:وباربودا) text(is:located:in) text(أمريكتان) -text(एस्वातीनी) text(was:located:in) text(南部非洲) -text(斯威士兰) text(can:be:found:in) text(Africa) -text(Eswatini) text(was:butted:against) text(南非) -text(Swaziland) text(was:adjacent:to) text(Mozambique) -text(Wallis:and:Futuna) text(was:positioned:in) text(पोलीनेशिया) -text(वालिस:और:फ़्यूचूना) text(is:positioned:in) text(Oceanía) -text(उरुग्वे) text(was:sited:in) text(Zuid-Amerika) -text(الأوروغواي) text(is:sited:in) text(Americas) -text(烏拉圭) text(is:adjacent:to) text(Argentina) -text(Uruguay) text(neighbors) text(Brasil) -text(Zambia) text(was:localized:in) text(东部非洲) -text(زامبيا) text(is:localized:in) text(Afrika) -text(Zambia) text(is:a:neighboring:country:of) text(تنزانيا) -text(ज़ाम्बिया) text(was:a:neighboring:country:of) text(موزمبيق) -text(贊比亞) text(neighbors:with) text(Congo-Kinshasa) -text(Zambia) text(was:a:neighbor:of) text(अंगोला) -text(Zambia) text(is:a:neighbor:of) text(Botsuana) -text(زامبيا) text(is:a:neighboring:state:to) text(Zimbabwe) -text(Zambia) text(was:a:neighboring:state:to) text(Namibia) -text(ज़ाम्बिया) text(borders:with) text(مالاوي) -text(Cyprus) text(was:present:in) text(东欧) -text(साइप्रस) text(is:present:in) text(Europe) -text(塞浦路斯) text(borders) text(Reino:Unido) -text(Verenigd:Koninkrijk) text(is:still:in) text(Northern:Europe) -text(المملكة:المتحدة) text(was:still:in) text(Europa) -text(Reino:Unido) text(is:butted:against) text(Verenigd:Koninkrijk) -text(Burundi) text(was:currently:in) text(East:Africa) -text(बुरुण्डी) text(is:currently:in) text(África) -text(بوروندي) text(was:butted:against) text(Democratic:Republic:of:the:Congo) -text(Burundi) text(was:adjacent:to) text(رواندا) -text(Burundi) text(is:adjacent:to) text(Tanzania) -text(Centraal-Afrikaanse:Republiek) text(is:placed:in) text(中部非洲) -text(मध्य:अफ़्रीकी:गणराज्य) text(was:placed:in) text(अफ्रीका) -text(中非共和國) text(neighbors) text(Chad) -text(Central:African:Republic) text(is:a:neighboring:country:of) text(República:del:Congo) -text(جمهورية:إفريقيا:الوسطى) text(was:a:neighboring:country:of) text(República:Democrática:del:Congo) -text(República:Centroafricana) text(neighbors:with) text(दक्षिण:सूडान) -text(Centraal-Afrikaanse:Republiek) text(was:a:neighbor:of) text(Kameroen) -text(मध्य:अफ़्रीकी:गणराज्य) text(is:a:neighbor:of) text(सूडान) -text(Tonga) text(can:be:found:in) text(Polynesia) -text(東加) text(was:situated:in) text(大洋洲) -text(Ivoorkust) text(is:situated:in) text(West:Africa) -text(ساحل:العاج) text(is:located:in) text(إفريقيا) -text(Ivory:Coast) text(is:a:neighboring:state:to) text(Burkina:Faso) -text(Costa:de:Marfil) text(was:a:neighboring:state:to) text(Ghana) -text(कोत:दिव्वार) text(borders:with) text(ليبيريا) -text(科特迪瓦) text(borders) text(Mali) -text(Ivoorkust) text(is:butted:against) text(Guinea) -text(सिएरा:लियोन) text(was:butted:against) text(Liberia) -text(Sierra:Leone) text(was:adjacent:to) text(गिनी) -text(马约特) text(was:located:in) text(África:Oriental) -text(Mayotte) text(can:be:found:in) text(非洲) -text(波蘭) text(is:adjacent:to) text(Germany) -text(Poland) text(neighbors) text(烏克蘭) -text(بولندا) text(is:a:neighboring:country:of) text(Slowakije) -text(Polonia) text(was:a:neighboring:country:of) text(Bielorrusia) -text(पोलैंड) text(neighbors:with) text(रूस) -text(Polen) text(was:a:neighbor:of) text(立陶宛) -text(波蘭) text(is:a:neighbor:of) text(चेक:गणराज्य) -text(कज़ाख़िस्तान) text(was:positioned:in) text(آسيا:الوسطى) -text(Kazajistán) text(is:positioned:in) text(آسيا) -text(Kazachstan) text(is:a:neighboring:state:to) text(Turkmenistan) -text(哈萨克斯坦) text(was:a:neighboring:state:to) text(中华人民共和国) -text(كازاخستان) text(borders:with) text(Kirgizië) -text(Kazakhstan) text(borders) text(Uzbekistán) -text(कज़ाख़िस्तान) text(is:butted:against) text(روسيا) -text(उज़्बेकिस्तान) text(was:sited:in) text(Central:Asia) -text(乌兹别克斯坦) text(is:sited:in) text(एशिया) -text(Uzbekistan) text(was:butted:against) text(Afganistán) -text(أوزبكستان) text(was:adjacent:to) text(Turkmenistan) -text(Oezbekistan) text(is:adjacent:to) text(Kazajistán) -text(Uzbekistán) text(neighbors) text(Kirguistán) -text(उज़्बेकिस्तान) text(is:a:neighboring:country:of) text(Tajikistan) -text(Turks-:en:Caicoseilanden) text(was:localized:in) text(الكاريبي) -text(Islas:Turcas:y:Caicos) text(is:localized:in) text(美洲) -text(Nieuw-Caledonië) text(was:present:in) text(ميلانيزيا) -text(New:Caledonia) text(is:present:in) text(Oceanië) -text(Pakistan) text(was:a:neighboring:country:of) text(चीनी:जनवादी:गणराज्य) -text(Pakistan) text(neighbors:with) text(Afghanistan) -text(Pakistán) text(was:a:neighbor:of) text(ईरान) -text(巴基斯坦) text(is:a:neighbor:of) text(India) -text(Argentina) text(is:still:in) text(南美洲) -text(阿根廷) text(was:still:in) text(महाअमेरिका) -text(Argentinië) text(is:a:neighboring:state:to) text(Bolivia) -text(अर्जेण्टीना) text(was:a:neighboring:state:to) text(智利) -text(الأرجنتين) text(borders:with) text(Brazilië) -text(Argentina) text(borders) text(Paraguay) -text(Argentina) text(is:butted:against) text(Uruguay) -text(Cuba) text(was:currently:in) text(加勒比地区) -text(古巴) text(is:currently:in) text(Amerika) -text(Serbia) text(was:butted:against) text(Macedonia:del:Norte) -text(सर्बिया) text(was:adjacent:to) text(蒙特內哥羅) -text(صربيا) text(is:adjacent:to) text(Kosovo) -text(Serbia) text(neighbors) text(Bosnia:and:Herzegovina) -text(塞爾維亞) text(is:a:neighboring:country:of) text(كرواتيا) -text(Servië) text(was:a:neighboring:country:of) text(हंगरी) -text(Serbia) text(neighbors:with) text(保加利亚) -text(सर्बिया) text(was:a:neighbor:of) text(羅馬尼亞) -text(جمهورية:التشيك) text(is:placed:in) text(Eastern:Europe) -text(Tsjechië) text(was:placed:in) text(欧洲) -text(República:Checa) text(is:a:neighbor:of) text(Duitsland) -text(捷克) text(is:a:neighboring:state:to) text(Austria) -text(Czech:Republic) text(was:a:neighboring:state:to) text(Poland) -text(चेक:गणराज्य) text(borders:with) text(स्लोवाकिया) -text(निकारागुआ) text(borders) text(Honduras) -text(Nicaragua) text(is:butted:against) text(Costa:Rica) -text(Vietnam) text(can:be:found:in) text(جنوب:شرق:آسيا) -text(越南) text(was:situated:in) text(Asia) -text(Vietnam) text(was:butted:against) text(Cambodia) -text(Vietnam) text(was:adjacent:to) text(لاوس) -text(वियतनाम) text(is:adjacent:to) text(República:Popular:China) -text(نييوي) text(is:situated:in) text(Polynesië) -text(Niue) text(is:located:in) text(Oceania) -text(Canada) text(was:located:in) text(उत्तर:अमेरिका) -text(كندا) text(can:be:found:in) text(América) -text(Canadá) text(neighbors) text(संयुक्त:राज्य:अमेरिका) -text(Eslovaquia) text(is:a:neighboring:country:of) text(Ucrania) -text(Slovakia) text(was:a:neighboring:country:of) text(بولندا) -text(斯洛伐克) text(neighbors:with) text(奧地利) -text(سلوفاكيا) text(was:a:neighbor:of) text(Hongarije) -text(Slowakije) text(is:a:neighbor:of) text(جمهورية:التشيك) -text(मोज़ाम्बीक) text(is:a:neighboring:state:to) text(Tanzania) -text(莫桑比克) text(was:a:neighboring:state:to) text(Esuatini) -text(Mozambique) text(borders:with) text(زيمبابوي) -text(Mozambique) text(borders) text(贊比亞) -text(Mozambique) text(is:butted:against) text(मलावी) -text(موزمبيق) text(was:butted:against) text(South:Africa) -text(Aruba) text(was:positioned:in) text(Caraïben) -text(Aruba) text(is:positioned:in) text(أمريكتان) -text(Bolivia) text(was:sited:in) text(América:del:Sur) -text(Bolivia) text(is:sited:in) text(Americas) -text(玻利維亞) text(was:adjacent:to) text(Chili) -text(बोलिविया) text(is:adjacent:to) text(Brazil) -text(بوليفيا) text(neighbors) text(باراغواي) -text(Bolivia) text(is:a:neighboring:country:of) text(阿根廷) -text(Bolivia) text(was:a:neighboring:country:of) text(بيرو) -text(Colombia) text(was:localized:in) text(South:America) -text(كولومبيا) text(is:localized:in) text(美洲) -text(Colombia) text(neighbors:with) text(ईक्वाडोर) -text(कोलम्बिया) text(was:a:neighbor:of) text(ब्राज़ील) -text(哥伦比亚) text(is:a:neighbor:of) text(Panama) -text(Colombia) text(is:a:neighboring:state:to) text(Venezuela) -text(Colombia) text(was:a:neighboring:state:to) text(Peru) -text(فيجي) text(was:present:in) text(美拉尼西亞) -text(斐濟) text(is:present:in) text(ओशिआनिया) -text(Congo-Brazzaville) text(borders:with) text(Gabon) -text(Republic:of:the:Congo) text(borders) text(刚果民主共和国) -text(جمهورية:الكونغو) text(is:butted:against) text(Angola) -text(剛果共和國) text(was:butted:against) text(कैमरुन) -text(कांगो:गणराज्य) text(was:adjacent:to) text(中非共和國) -text(सउदी:अरब) text(is:adjacent:to) text(Qatar) -text(Arabia:Saudí) text(neighbors) text(United:Arab:Emirates) -text(Saoedi-Arabië) text(is:a:neighboring:country:of) text(約旦) -text(السعودية) text(was:a:neighboring:country:of) text(也门) -text(沙特阿拉伯) text(neighbors:with) text(Omán) -text(Saudi:Arabia) text(was:a:neighbor:of) text(कुवैत) -text(सउदी:अरब) text(is:a:neighbor:of) text(伊拉克) -text(السلفادور) text(is:still:in) text(أمريكا:الوسطى) -text(अल:साल्वाडोर) text(was:still:in) text(महाअमेरिका) -text(El:Salvador) text(is:a:neighboring:state:to) text(Guatemala) -text(El:Salvador) text(was:a:neighboring:state:to) text(Honduras) -text(Madagascar) text(was:currently:in) text(شرق:إفريقيا) -text(Madagascar) text(is:currently:in) text(Africa) -text(ऑस्ट्रेलिया) text(is:placed:in) text(Australia:and:New:Zealand) -text(澳大利亚) text(was:placed:in) text(أوقيانوسيا) -text(纳米比亚) text(can:be:found:in) text(दक्षिणी:अफ्रीका) -text(Namibië) text(was:situated:in) text(Afrika) -text(नामीबिया) text(borders:with) text(Zambia) -text(Namibia) text(borders) text(Angola) -text(ناميبيا) text(is:butted:against) text(Sudáfrica) -text(Namibia) text(was:butted:against) text(بوتسوانا) -text(Tuvalu) text(is:situated:in) text(Polinesia) -text(Tuvalu) text(is:located:in) text(Oceanía) -text(سفالبارد:ويان:ماين) text(was:located:in) text(Europa:del:Norte) -text(nan) text(can:be:found:in) text(Europa) -text(Man) text(was:positioned:in) text(Noord-Europa) -text(Isle:of:Man) text(is:positioned:in) text(यूरोप) -text(Guyana) text(was:adjacent:to) text(البرازيل) -text(Guyana) text(is:adjacent:to) text(Suriname) -text(圭亚那) text(neighbors) text(委內瑞拉) -text(الفاتيكان) text(was:sited:in) text(Southern:Europe) -text(梵蒂岡城國) text(is:sited:in) text(أوروبا) -text(Ciudad:del:Vaticano) text(is:a:neighboring:country:of) text(إيطاليا) -text(英屬印度洋領地) text(was:localized:in) text(Oost-Afrika) -text(Brits:Indische:Oceaanterritorium) text(is:localized:in) text(África) -text(Nigeria) text(was:present:in) text(África:Occidental) -text(奈及利亞) text(is:present:in) text(अफ्रीका) -text(नाइजीरिया) text(was:a:neighboring:country:of) text(Tsjaad) -text(Nigeria) text(neighbors:with) text(Niger) -text(نيجيريا) text(was:a:neighbor:of) text(Camerún) -text(Nigeria) text(is:a:neighbor:of) text(بنين) -text(Alemania) text(is:a:neighboring:state:to) text(डेनमार्क) -text(德國) text(was:a:neighboring:state:to) text(नीदरलैण्ड) -text(ألمانيا) text(borders:with) text(Polonia) -text(जर्मनी) text(borders) text(Luxembourg) -text(Germany) text(is:butted:against) text(Bélgica) -text(Duitsland) text(was:butted:against) text(Switzerland) -text(Alemania) text(was:adjacent:to) text(Austria) -text(德國) text(is:adjacent:to) text(Frankrijk) -text(ألمانيا) text(neighbors) text(Tsjechië) -text(Burkina:Faso) text(is:a:neighboring:country:of) text(多哥) -text(布吉納法索) text(was:a:neighboring:country:of) text(Benín) -text(बुर्किना:फासो) text(neighbors:with) text(尼日尔) -text(بوركينا:فاسو) text(was:a:neighbor:of) text(Ghana) -text(Burkina:Faso) text(is:a:neighbor:of) text(马里) -text(Burkina:Faso) text(is:a:neighboring:state:to) text(ساحل:العاج) -text(坦桑尼亞) text(was:a:neighboring:state:to) text(Uganda) -text(तंज़ानिया) text(borders:with) text(मोज़ाम्बीक) -text(Tanzania) text(borders) text(جمهورية:الكونغو:الديمقراطية) -text(تنزانيا) text(is:butted:against) text(Kenia) -text(Tanzania) text(was:butted:against) text(Ruanda) -text(Tanzania) text(was:adjacent:to) text(Zambia) -text(坦桑尼亞) text(is:adjacent:to) text(Malawi) -text(तंज़ानिया) text(neighbors) text(蒲隆地) -text(Islas:Marianas:del:Norte) text(is:still:in) text(Micronesië) -text(उत्तरी:मारियाना:द्वीप) text(was:still:in) text(大洋洲) -text(Belize) text(was:currently:in) text(América:Central) -text(伯利兹) text(is:currently:in) text(Amerika) -text(بليز) text(is:a:neighboring:country:of) text(ग्वाटेमाला) -text(Belice) text(was:a:neighboring:country:of) text(México) -text(Norway) text(neighbors:with) text(Suecia) -text(挪威) text(was:a:neighbor:of) text(Finland) -text(النرويج) text(is:a:neighbor:of) text(俄罗斯) -text(कोकोस:(कीलिंग):द्वीपसमूह) text(is:placed:in) text(nan) -text(islas:Cocos) text(was:placed:in) text(Oceanië) -text(Laos) text(can:be:found:in) text(东南亚) -text(लाओस) text(was:situated:in) text(Azië) -text(老撾) text(is:a:neighboring:state:to) text(الصين) -text(Laos) text(was:a:neighboring:state:to) text(柬埔寨) -text(Laos) text(borders:with) text(ميانمار) -text(لاوس) text(borders) text(فيتنام) -text(Laos) text(is:butted:against) text(Thailand) -text(República:Árabe:Saharaui:Democrática) text(is:situated:in) text(उत्तर:अफ़्रीका) -text(Sahrawi:Arab:Democratic:Republic) text(is:located:in) text(إفريقيا) -text(الجمهورية:العربية:الصحراوية:الديمقراطية) text(was:butted:against) text(Algeria) -text(Sahrawi:Arabische:Democratische:Republiek) text(was:adjacent:to) text(Mauritanië) -text(撒拉威阿拉伯民主共和國) text(is:adjacent:to) text(Morocco) -text(سورينام) text(was:located:in) text(أمريكا:الجنوبية) -text(सूरीनाम) text(can:be:found:in) text(América) -text(Suriname) text(neighbors) text(巴西) -text(Surinam) text(is:a:neighboring:country:of) text(Guayana:Francesa) -text(蘇利南) text(was:a:neighboring:country:of) text(गयाना) -text(聖誕島) text(was:positioned:in) text(Australië:en:Nieuw-Zeeland) -text(Christmas:Island) text(is:positioned:in) text(Oceania) -text(Sao:Tomé:en:Principe) text(was:sited:in) text(Central:Africa) -text(ساو:تومي:وبرينسيب) text(is:sited:in) text(非洲) -text(Egipto) text(neighbors:with) text(ليبيا) -text(埃及) text(was:a:neighbor:of) text(Israel) -text(Egypte) text(is:a:neighbor:of) text(苏丹) -text(बुल्गारिया) text(is:a:neighboring:state:to) text(North:Macedonia) -text(Bulgaria) text(was:a:neighboring:state:to) text(Turquía) -text(Bulgarije) text(borders:with) text(यूनान) -text(بلغاريا) text(borders) text(صربيا) -text(Bulgaria) text(is:butted:against) text(Rumania) -text(Guinee) text(was:localized:in) text(غرب:إفريقيا) -text(几内亚) text(is:localized:in) text(Africa) -text(Guinea) text(was:butted:against) text(Guinea-Bissau) -text(غينيا) text(was:adjacent:to) text(Sierra:Leone) -text(Guinea) text(is:adjacent:to) text(Mali) -text(गिनी) text(neighbors) text(Liberia) -text(Guinee) text(is:a:neighboring:country:of) text(Senegal) -text(几内亚) text(was:a:neighboring:country:of) text(Ivory:Coast) -text(إسبانيا) text(neighbors:with) text(मोरक्को) -text(Spanje) text(was:a:neighbor:of) text(جبل:طارق) -text(西班牙) text(is:a:neighbor:of) text(أندورا) -text(Spain) text(is:a:neighboring:state:to) text(فرنسا) -text(स्पेन) text(was:a:neighboring:state:to) text(葡萄牙) -text(कोस्टा:रीका) text(was:present:in) text(中美洲) -text(哥斯达黎加) text(is:present:in) text(أمريكتان) -text(Costa:Rica) text(borders:with) text(Panama) -text(Costa:Rica) text(borders) text(Nicaragua) -text(مالطا) text(is:still:in) text(أوروبا:الجنوبية) -text(माल्टा) text(was:still:in) text(Europe) -text(Portugal) text(was:currently:in) text(Zuid-Europa) -text(पुर्तगाल) text(is:currently:in) text(Europa) -text(Portugal) text(is:butted:against) text(España) -text(Romania) text(is:placed:in) text(पूर्वी:यूरोप) -text(रोमानिया) text(was:placed:in) text(欧洲) -text(Roemenië) text(was:butted:against) text(Ukraine) -text(رومانيا) text(was:adjacent:to) text(Hungría) -text(羅馬尼亞) text(is:adjacent:to) text(Moldova) -text(Rumania) text(neighbors) text(保加利亚) -text(Romania) text(is:a:neighboring:country:of) text(Serbia) -text(San:Marino) text(can:be:found:in) text(Europa:del:Sur) -text(San:Marino) text(was:situated:in) text(Europa) -text(圣马力诺) text(was:a:neighboring:country:of) text(Italy) -text(Mauritania) text(is:situated:in) text(West-Afrika) -text(मॉरीतानिया) text(is:located:in) text(Afrika) -text(毛里塔尼亞) text(neighbors:with) text(Argelia) -text(Mauritania) text(was:a:neighbor:of) text(مالي) -text(موريتانيا) text(is:a:neighbor:of) text(सहरावी:अरब:जनतांत्रिक:गणराज्य) -text(Mauritanië) text(is:a:neighboring:state:to) text(塞内加尔) -text(千里達及托巴哥) text(was:located:in) text(कैरिबिया) -text(Trinidad:and:Tobago) text(can:be:found:in) text(Americas) -text(巴林) text(was:positioned:in) text(西亚) -text(Bahrain) text(is:positioned:in) text(Asia) -text(緬甸) text(was:a:neighboring:state:to) text(الهند) -text(Birmania) text(borders:with) text(बांग्लादेश) -text(Myanmar) text(borders) text(People's:Republic:of:China) -text(म्यान्मार) text(is:butted:against) text(लाओस) -text(Myanmar) text(was:butted:against) text(Tailandia) -text(العراق) text(was:adjacent:to) text(土耳其) -text(इराक) text(is:adjacent:to) text(Arabia:Saudí) -text(Iraq) text(neighbors) text(Iran) -text(Irak) text(is:a:neighboring:country:of) text(Jordania) -text(Irak) text(was:a:neighboring:country:of) text(Kuwait) -text(伊拉克) text(neighbors:with) text(Siria) -text(南乔治亚和南桑威奇群岛) text(was:sited:in) text(दक्षिण:अमेरिका) -text(दक्षिण:जॉर्जिया:एवं:दक्षिण:सैंडविच:द्वीप:समूह) text(is:sited:in) text(美洲) -text(Iceland) text(was:localized:in) text(उत्तरी:यूरोप) -text(Islandia) text(is:localized:in) text(यूरोप) -text(कांगो:लोकतान्त्रिक:गणराज्य) text(was:present:in) text(मध्य:अफ्रीका) -text(Congo-Kinshasa) text(is:present:in) text(África) -text(Democratic:Republic:of:the:Congo) text(was:a:neighbor:of) text(Oeganda) -text(República:Democrática:del:Congo) text(is:a:neighbor:of) text(Tanzania) -text(刚果民主共和国) text(is:a:neighboring:state:to) text(República:del:Congo) -text(جمهورية:الكونغو:الديمقراطية) text(was:a:neighboring:state:to) text(Central:African:Republic) -text(कांगो:लोकतान्त्रिक:गणराज्य) text(borders:with) text(Angola) -text(Congo-Kinshasa) text(borders) text(卢旺达) -text(Democratic:Republic:of:the:Congo) text(is:butted:against) text(Zuid-Soedan) -text(República:Democrática:del:Congo) text(was:butted:against) text(زامبيا) -text(刚果民主共和国) text(was:adjacent:to) text(Burundi) -text(塞舌尔) text(is:still:in) text(पूर्वी:अफ्रीका) -text(سيشل) text(was:still:in) text(अफ्रीका) -text(吉尔吉斯斯坦) text(is:adjacent:to) text(Volksrepubliek:China) -text(Kyrgyzstan) text(neighbors) text(Kazachstan) -text(قرغيزستان) text(is:a:neighboring:country:of) text(Tayikistán) -text(किर्गिज़स्तान) text(was:a:neighboring:country:of) text(乌兹别克斯坦) -text(Botswana) text(was:currently:in) text(Zuidelijk:Afrika) -text(Botswana) text(is:currently:in) text(إفريقيا) -text(波札那) text(neighbors:with) text(津巴布韦) -text(बोत्सवाना) text(was:a:neighbor:of) text(纳米比亚) -text(Botsuana) text(is:a:neighbor:of) text(Zambia) -text(بوتسوانا) text(is:a:neighboring:state:to) text(Zuid-Afrika) -text(法罗群岛) text(is:placed:in) text(أوروبا:الشمالية) -text(Islas:Feroe) text(was:placed:in) text(أوروبا) -text(Jamaica) text(can:be:found:in) text(Caribe) -text(Jamaica) text(was:situated:in) text(महाअमेरिका) -text(ساموا:الأمريكية) text(is:situated:in) text(玻里尼西亞) -text(अमेरिकी:समोआ) text(is:located:in) text(ओशिआनिया) -text(莱索托) text(was:located:in) text(África:austral) -text(Lesotho) text(can:be:found:in) text(非洲) -text(ليسوتو) text(was:a:neighboring:state:to) text(جنوب:إفريقيا) -text(Sri:Lanka) text(borders:with) text(India) -text(بلجيكا) text(was:positioned:in) text(West-Europa) -text(Belgium) text(is:positioned:in) text(Europe) -text(België) text(borders) text(जर्मनी) -text(比利時) text(is:butted:against) text(Luxemburg) -text(बेल्जियम) text(was:butted:against) text(Francia) -text(Bélgica) text(was:adjacent:to) text(Países:Bajos) -text(قطر) text(was:sited:in) text(Zuidwest-Azië) -text(क़तर) text(is:sited:in) text(亞洲) -text(Catar) text(is:adjacent:to) text(Saoedi-Arabië) -text(Islas:Salomón) text(was:localized:in) text(Melanesië) -text(Salomonseilanden) text(is:localized:in) text(أوقيانوسيا) -text(सीरिया) text(was:present:in) text(Asia:Occidental) -text(敘利亞) text(is:present:in) text(آسيا) -text(Syrië) text(neighbors) text(以色列) -text(سوريا) text(is:a:neighboring:country:of) text(Turkije) -text(Syria) text(was:a:neighboring:country:of) text(الأردن) -text(Siria) text(neighbors:with) text(लेबनॉन) -text(सीरिया) text(was:a:neighbor:of) text(العراق) -text(भारत) text(is:still:in) text(South:Asia) -text(印度) text(was:still:in) text(एशिया) -text(India) text(is:a:neighbor:of) text(अफ़्ग़ानिस्तान) -text(India) text(is:a:neighboring:state:to) text(Bután) -text(الهند) text(was:a:neighboring:state:to) text(Bangladesh) -text(India) text(borders:with) text(中华人民共和国) -text(भारत) text(borders) text(Nepal) -text(印度) text(is:butted:against) text(ميانمار) -text(India) text(was:butted:against) text(باكستان) -text(India) text(was:adjacent:to) text(Sri:Lanka) -text(Marruecos) text(is:adjacent:to) text(अल्जीरिया) -text(المغرب) text(neighbors) text(إسبانيا) -text(摩洛哥) text(is:a:neighboring:country:of) text(República:Árabe:Saharaui:Democrática) -text(Kenya) text(was:currently:in) text(东部非洲) -text(肯尼亚) text(is:currently:in) text(Africa) -text(كينيا) text(was:a:neighboring:country:of) text(युगाण्डा) -text(Kenia) text(neighbors:with) text(تنزانيا) -text(कीनिया) text(was:a:neighbor:of) text(الصومال) -text(Kenia) text(is:a:neighbor:of) text(南蘇丹) -text(Kenya) text(is:a:neighboring:state:to) text(इथियोपिया) -text(South:Sudan) text(is:placed:in) text(وسط:إفريقيا) -text(Sudán:del:Sur) text(was:placed:in) text(Afrika) -text(جنوب:السودان) text(was:a:neighboring:state:to) text(Uganda) -text(दक्षिण:सूडान) text(borders:with) text(جمهورية:الكونغو:الديمقراطية) -text(Zuid-Soedan) text(borders) text(肯尼亚) -text(南蘇丹) text(is:butted:against) text(جمهورية:إفريقيا:الوسطى) -text(South:Sudan) text(was:butted:against) text(Sudán) -text(Sudán:del:Sur) text(was:adjacent:to) text(埃塞俄比亚) -text(घाना) text(is:adjacent:to) text(Burkina:Faso) -text(Ghana) text(neighbors) text(Costa:de:Marfil) -text(迦納) text(is:a:neighboring:country:of) text(Togo) -text(طاجيكستان) text(can:be:found:in) text(Asia:Central) -text(ताजीकिस्तान) text(was:situated:in) text(Asia) -text(塔吉克斯坦) text(was:a:neighboring:country:of) text(चीनी:जनवादी:गणराज्य) -text(Tadzjikistan) text(neighbors:with) text(Kirgizië) -text(Tajikistan) text(was:a:neighbor:of) text(أفغانستان) -text(Tayikistán) text(is:a:neighbor:of) text(Uzbekistan) -text(मार्शल:द्वीपसमूह) text(is:situated:in) text(密克羅尼西亞群島) -text(Marshalleilanden) text(is:located:in) text(Oceanía) -text(Cameroon) text(was:located:in) text(África:Central) -text(الكاميرون) text(can:be:found:in) text(África) -text(喀麦隆) text(is:a:neighboring:state:to) text(تشاد) -text(Kameroen) text(was:a:neighboring:state:to) text(Congo-Brazzaville) -text(कैमरुन) text(borders:with) text(Gabon) -text(Camerún) text(borders) text(भूमध्यरेखीय:गिनी) -text(Cameroon) text(is:butted:against) text(República:Centroafricana) -text(الكاميرون) text(was:butted:against) text(Nigeria) -text(Nauru) text(was:positioned:in) text(माइक्रोनीशिया) -text(瑙鲁) text(is:positioned:in) text(大洋洲) -text(泰國) text(was:adjacent:to) text(كمبوديا) -text(थाईलैंड) text(is:adjacent:to) text(緬甸) -text(Thailand) text(neighbors) text(老撾) -text(تايلاند) text(is:a:neighboring:country:of) text(Malaysia) -text(Sudan) text(was:a:neighboring:country:of) text(चाड) -text(Soedan) text(neighbors:with) text(लीबिया) -text(السودان) text(was:a:neighbor:of) text(جنوب:السودان) -text(सूडान) text(is:a:neighbor:of) text(Eritrea) -text(苏丹) text(is:a:neighboring:state:to) text(Centraal-Afrikaanse:Republiek) -text(Sudán) text(was:a:neighboring:state:to) text(مصر) -text(Sudan) text(borders:with) text(Etiopía) -text(乍得) text(was:sited:in) text(Centraal-Afrika) -text(Chad) text(is:sited:in) text(अफ्रीका) -text(Chad) text(borders) text(Libië) -text(Tsjaad) text(is:butted:against) text(नाइजर) -text(تشاد) text(was:butted:against) text(दक्षिण:सूडान) -text(चाड) text(was:adjacent:to) text(喀麦隆) -text(乍得) text(is:adjacent:to) text(मध्य:अफ़्रीकी:गणराज्य) -text(Chad) text(neighbors) text(奈及利亞) -text(萬那杜) text(was:localized:in) text(Melanesia) -text(Vanuatu) text(is:localized:in) text(Oceanië) -text(الرأس:الأخضر) text(was:present:in) text(पश्चिमी:अफ्रीका) -text(Kaapverdië) text(is:present:in) text(إفريقيا) -text(福克蘭群島) text(is:still:in) text(Zuid-Amerika) -text(Islas:Malvinas) text(was:still:in) text(Amerika) -text(利比里亞) text(was:currently:in) text(西非) -text(Liberia) text(is:currently:in) text(非洲) -text(लाइबेरिया) text(is:a:neighboring:country:of) text(कोत:दिव्वार) -text(ليبيريا) text(was:a:neighboring:country:of) text(塞拉利昂) -text(Liberia) text(neighbors:with) text(Guinea) -text(कम्बोडिया) text(is:placed:in) text(दक्षिण:पूर्व:एशिया) -text(Camboya) text(was:placed:in) text(Azië) -text(Cambodja) text(was:a:neighbor:of) text(Vietnam) -text(Cambodia) text(is:a:neighbor:of) text(Thailand) -text(柬埔寨) text(is:a:neighboring:state:to) text(Laos) -text(Zimbabwe) text(was:a:neighboring:state:to) text(ज़ाम्बिया) -text(ज़िम्बाब्वे) text(borders:with) text(दक्षिण:अफ़्रीका) -text(Zimbabue) text(borders) text(Botswana) -text(Zimbabwe) text(is:butted:against) text(莫桑比克) -text(कोमोरोस) text(can:be:found:in) text(East:Africa) -text(Comoras) text(was:situated:in) text(Africa) -text(關島) text(is:situated:in) text(ميكرونيسيا) -text(Guam) text(is:located:in) text(Oceania) -text(बहामास) text(was:located:in) text(Caribbean) -text(The:Bahamas) text(can:be:found:in) text(América) -text(Lebanon) text(was:positioned:in) text(West:Asia) -text(Líbano) text(is:positioned:in) text(Asia) -text(لبنان) text(was:butted:against) text(Israël) -text(Libanon) text(was:adjacent:to) text(敘利亞) -text(Saint:Martin) text(was:sited:in) text(الكاريبي) -text(सेंट:मार्टिन) text(is:sited:in) text(أمريكتان) -text(圣马丁岛) text(is:adjacent:to) text(San:Martín) -text(Ethiopia) text(was:localized:in) text(África:Oriental) -text(إثيوبيا) text(is:localized:in) text(Afrika) -text(Ethiopië) text(neighbors) text(Somalia) -text(इथियोपिया) text(is:a:neighboring:country:of) text(كينيا) -text(埃塞俄比亚) text(was:a:neighboring:country:of) text(Eritrea) -text(Etiopía) text(neighbors:with) text(Zuid-Soedan) -text(Ethiopia) text(was:a:neighbor:of) text(Djibouti) -text(إثيوبيا) text(is:a:neighbor:of) text(Soedan) -text(Amerikaanse:Maagdeneilanden) text(was:present:in) text(加勒比地区) -text(美屬維爾京群島) text(is:present:in) text(Americas) -text(गिनी-बिसाऊ) text(is:still:in) text(West:Africa) -text(Guinee-Bissau) text(was:still:in) text(África) -text(畿內亞比紹) text(is:a:neighboring:state:to) text(غينيا) -text(غينيا:بيساو) text(was:a:neighboring:state:to) text(السنغال) -text(Libya) text(was:currently:in) text(North:Africa) -text(利比亞) text(is:currently:in) text(अफ्रीका) -text(Libia) text(borders:with) text(Chad) -text(ليبيا) text(borders) text(Túnez) -text(लीबिया) text(is:butted:against) text(النيجر) -text(Libië) text(was:butted:against) text(الجزائر) -text(Libya) text(was:adjacent:to) text(Egypt) -text(利比亞) text(is:adjacent:to) text(السودان) -text(भूटान) text(is:placed:in) text(جنوب:آسيا) -text(بوتان) text(was:placed:in) text(亞洲) -text(Bhutan) text(neighbors) text(República:Popular:China) -text(不丹) text(is:a:neighboring:country:of) text(الهند) -text(ماكاو) text(can:be:found:in) text(شرق:آسيا) -text(Macao) text(was:situated:in) text(آسيا) -text(澳門) text(was:a:neighboring:country:of) text(الصين) -text(法屬玻里尼西亞) text(is:situated:in) text(بولنيزيا) -text(French:Polynesia) text(is:located:in) text(ओशिआनिया) -text(Somalië) text(was:located:in) text(شرق:إفريقيا) -text(索馬里) text(can:be:found:in) text(إفريقيا) -text(Somalia) text(neighbors:with) text(Yibuti) -text(सोमालिया) text(was:a:neighbor:of) text(Kenia) -text(الصومال) text(is:a:neighbor:of) text(Ethiopië) -text(Saint:Barthélemy) text(was:positioned:in) text(Caraïben) -text(聖巴泰勒米) text(is:positioned:in) text(美洲) -text(Rusia) text(was:sited:in) text(Europa:Oriental) -text(Russia) text(is:sited:in) text(Europa) -text(Rusland) text(is:a:neighboring:state:to) text(युक्रेन) -text(रूस) text(was:a:neighboring:state:to) text(Wit-Rusland) -text(روسيا) text(borders:with) text(People's:Republic:of:China) -text(俄罗斯) text(borders) text(哈萨克斯坦) -text(Rusia) text(is:butted:against) text(Noruega) -text(Russia) text(was:butted:against) text(पोलैंड) -text(Rusland) text(was:adjacent:to) text(Azerbaiyán) -text(रूस) text(is:adjacent:to) text(Lithuania) -text(روسيا) text(neighbors) text(إستونيا) -text(俄罗斯) text(is:a:neighboring:country:of) text(North:Korea) -text(Rusia) text(was:a:neighboring:country:of) text(फ़िनलैण्ड) -text(Russia) text(neighbors:with) text(Mongolië) -text(Rusland) text(was:a:neighbor:of) text(Letonia) -text(रूस) text(is:a:neighbor:of) text(جورجيا) -text(Nieuw-Zeeland) text(was:localized:in) text(nan) -text(Nueva:Zelanda) text(is:localized:in) text(أوقيانوسيا) -text(पनामा) text(was:present:in) text(Centraal-Amerika) -text(بنما) text(is:present:in) text(महाअमेरिका) -text(Panamá) text(is:a:neighboring:state:to) text(كوستاريكا) -text(巴拿馬) text(was:a:neighboring:state:to) text(كولومبيا) -text(Papúa:Nueva:Guinea) text(is:still:in) text(Melanesia) -text(पापुआ:न्यू:गिनी) text(was:still:in) text(Oceanía) -text(بابوا:غينيا:الجديدة) text(borders:with) text(Indonesia) -text(朝鮮民主主義人民共和國) text(borders) text(Volksrepubliek:China) -text(उत्तर:कोरिया) text(is:butted:against) text(Zuid-Korea) -text(Noord-Korea) text(was:butted:against) text(روسيا) -text(拉脫維亞) text(was:currently:in) text(北歐) -text(لاتفيا) text(is:currently:in) text(欧洲) -text(Letland) text(was:adjacent:to) text(Lituania) -text(लातविया) text(is:adjacent:to) text(بيلاروس) -text(Latvia) text(neighbors) text(俄罗斯) -text(Letonia) text(is:a:neighboring:country:of) text(愛沙尼亞) -text(Oman) text(is:placed:in) text(غرب:آسيا) -text(ओमान) text(was:placed:in) text(एशिया) -text(سلطنة:عمان) text(was:a:neighboring:country:of) text(السعودية) -text(阿曼) text(neighbors:with) text(اليمن) -text(Oman) text(was:a:neighbor:of) text(Emiratos:Árabes:Unidos) -text(圣皮埃尔和密克隆) text(can:be:found:in) text(North:America) -text(सन्त:पियर:और:मिकलान) text(was:situated:in) text(Amerika) -text(馬提尼克) text(is:situated:in) text(कैरिबिया) -text(मार्टीनिक) text(is:located:in) text(América) -text(المملكة:المتحدة) text(was:located:in) text(Northern:Europe) -text(United:Kingdom) text(can:be:found:in) text(Europa) -text(英国) text(is:a:neighbor:of) text(United:Kingdom) -text(इज़राइल) text(was:positioned:in) text(पश्चिमी:एशिया) -text(إسرائيل) text(is:positioned:in) text(Asia) -text(Israel) text(is:a:neighboring:state:to) text(黎巴嫩) -text(Israel) text(was:a:neighboring:state:to) text(मिस्र) -text(以色列) text(borders:with) text(Jordan) -text(Israël) text(borders) text(Syrië) -text(澤西) text(was:sited:in) text(Europa:del:Norte) -text(Jersey) text(is:sited:in) text(यूरोप) -text(पिटकेर्न:द्वीपसमूह) text(was:localized:in) text(पोलीनेशिया) -text(جزر:بيتكيرن) text(is:localized:in) text(大洋洲) -text(Togo) text(was:present:in) text(África:Occidental) -text(توغو) text(is:present:in) text(非洲) -text(Togo) text(is:butted:against) text(布吉納法索) -text(टोगो) text(was:butted:against) text(غانا) -text(多哥) text(was:adjacent:to) text(Benin) -text(كيريباتي) text(is:still:in) text(Micronesia) -text(किरिबाती) text(was:still:in) text(Oceanië) -text(伊朗) text(was:currently:in) text(南亚) -text(إيران) text(is:currently:in) text(Azië) -text(Irán) text(is:adjacent:to) text(Afghanistan) -text(Iran) text(neighbors) text(Turkmenistán) -text(ईरान) text(is:a:neighboring:country:of) text(Turkey) -text(Iran) text(was:a:neighboring:country:of) text(亞美尼亞) -text(伊朗) text(neighbors:with) text(Azerbaijan) -text(إيران) text(was:a:neighbor:of) text(पाकिस्तान) -text(Irán) text(is:a:neighbor:of) text(इराक) -text(सेंट:मार्टिन:की:सामूहिकता) text(is:placed:in) text(Caribe) -text(Sint-Maarten) text(was:placed:in) text(أمريكتان) -text(法屬聖馬丁) text(is:a:neighboring:state:to) text(San:Martín) -text(多明尼加) text(can:be:found:in) text(Caribbean) -text(Dominicaanse:Republiek) text(was:situated:in) text(Americas) -text(Dominican:Republic) text(was:a:neighboring:state:to) text(Haiti) -text(الدنمارك) text(borders:with) text(Germany) -text(Bermudas) text(is:situated:in) text(北美洲) -text(百慕大) text(is:located:in) text(美洲) -text(Chile) text(borders) text(Argentinië) -text(تشيلي) text(is:butted:against) text(Bolivia) -text(Chile) text(was:butted:against) text(Perú) -text(كوسوفو) text(was:located:in) text(Oost-Europa) -text(Kosovo) text(can:be:found:in) text(أوروبا) -text(科索沃) text(was:adjacent:to) text(塞爾維亞) -text(Kosovo) text(is:adjacent:to) text(Albania) -text(कोसोवो:गणराज्य) text(neighbors) text(مقدونيا:الشمالية) -text(Kosovo) text(is:a:neighboring:country:of) text(मॉन्टेनीग्रो) -text(سانت:كيتس:ونيفيس) text(was:positioned:in) text(الكاريبي) -text(San:Cristóbal:y:Nieves) text(is:positioned:in) text(महाअमेरिका) -text(Eritrea) text(was:a:neighboring:country:of) text(جيبوتي) -text(इरित्रिया) text(neighbors:with) text(सूडान) -text(إرتريا) text(was:a:neighbor:of) text(इथियोपिया) -text(赤道几内亚) text(was:sited:in) text(中部非洲) -text(غينيا:الاستوائية) text(is:sited:in) text(Africa) -text(Equatorial:Guinea) text(is:a:neighbor:of) text(加蓬) -text(Equatoriaal-Guinea) text(is:a:neighboring:state:to) text(Kameroen) -text(Níger) text(was:localized:in) text(غرب:إفريقيا) -text(Niger) text(is:localized:in) text(Afrika) -text(Niger) text(was:a:neighboring:state:to) text(Tsjaad) -text(尼日尔) text(borders:with) text(Libia) -text(नाइजर) text(borders) text(बुर्किना:फासो) -text(النيجر) text(is:butted:against) text(बेनिन) -text(Níger) text(was:butted:against) text(माली) -text(Niger) text(was:adjacent:to) text(阿爾及利亞) -text(Niger) text(is:adjacent:to) text(नाइजीरिया) -text(Anguilla) text(was:present:in) text(加勒比地区) -text(Anguila) text(is:present:in) text(Amerika) -text(Rwanda) text(is:still:in) text(Oost-Afrika) -text(Rwanda) text(was:still:in) text(África) -text(रवाण्डा) text(neighbors) text(बुरुण्डी) -text(رواندا) text(is:a:neighboring:country:of) text(Tanzania) -text(Ruanda) text(was:a:neighboring:country:of) text(烏干達) -text(卢旺达) text(neighbors:with) text(कांगो:लोकतान्त्रिक:गणराज्य) -text(الإمارات:العربية:المتحدة) text(was:currently:in) text(西亚) -text(阿拉伯联合酋长国) text(is:currently:in) text(Asia) -text(संयुक्त:अरब:अमीरात) text(was:a:neighbor:of) text(Omán) -text(Verenigde:Arabische:Emiraten) text(is:a:neighbor:of) text(沙特阿拉伯) -text(Estonia) text(is:placed:in) text(Noord-Europa) -text(एस्टोनिया) text(was:placed:in) text(Europe) -text(Estonia) text(is:a:neighboring:state:to) text(拉脫維亞) -text(Estland) text(was:a:neighboring:state:to) text(Rusia) -text(Greece) text(can:be:found:in) text(दक्षिणी:यूरोप) -text(希腊) text(was:situated:in) text(Europa) -text(Griekenland) text(borders:with) text(बुल्गारिया) -text(Grecia) text(borders) text(Albania) -text(اليونان) text(is:butted:against) text(उत्तर:मैसिडोनिया) -text(यूनान) text(was:butted:against) text(تركيا) -text(Senegal) text(is:situated:in) text(West-Afrika) -text(Senegal) text(is:located:in) text(अफ्रीका) -text(सेनेगल) text(was:adjacent:to) text(Guinea-Bisáu) -text(Senegal) text(is:adjacent:to) text(Mauritania) -text(塞内加尔) text(neighbors) text(Mali) -text(السنغال) text(is:a:neighboring:country:of) text(岡比亞) -text(Senegal) text(was:a:neighboring:country:of) text(Guinea) -text(गुआदेलूप) text(was:located:in) text(Caraïben) -text(Guadeloupe) text(can:be:found:in) text(América) -text(Monaco) text(neighbors:with) text(法國) -text(Djibouti) text(was:a:neighbor:of) text(厄立特里亞) -text(जिबूती) text(is:a:neighbor:of) text(Somalia) -text(吉布提) text(is:a:neighboring:state:to) text(埃塞俄比亚) -text(इंडोनेशिया) text(was:a:neighboring:state:to) text(Papoea-Nieuw-Guinea) -text(إندونيسيا) text(borders:with) text(東帝汶) -text(Indonesië) text(borders) text(Malasia) -text(Islas:Vírgenes:Británicas) text(was:positioned:in) text(कैरिबिया) -text(Britse:Maagdeneilanden) text(is:positioned:in) text(أمريكتان) -text(库克群岛) text(was:sited:in) text(Polynesia) -text(Cook:Islands) text(is:sited:in) text(Oceania) -text(أوغندا) text(was:localized:in) text(पूर्वी:अफ्रीका) -text(Uganda) text(is:localized:in) text(إفريقيا) -text(Oeganda) text(is:butted:against) text(Tanzania) -text(युगाण्डा) text(was:butted:against) text(Congo-Kinshasa) -text(Uganda) text(was:adjacent:to) text(कीनिया) -text(烏干達) text(is:adjacent:to) text(南蘇丹) -text(أوغندا) text(neighbors) text(Rwanda) -text(Noord-Macedonië) text(was:present:in) text(南欧) -text(北马其顿) text(is:present:in) text(欧洲) -text(Macedonia:del:Norte) text(is:a:neighboring:country:of) text(كوسوفو) -text(North:Macedonia) text(was:a:neighboring:country:of) text(Greece) -text(مقدونيا:الشمالية) text(neighbors:with) text(अल्बानिया) -text(उत्तर:मैसिडोनिया) text(was:a:neighbor:of) text(Servië) -text(Noord-Macedonië) text(is:a:neighbor:of) text(Bulgaria) -text(ट्यूनिशिया) text(is:still:in) text(Noord-Afrika) -text(突尼西亞) text(was:still:in) text(非洲) -text(Tunesië) text(is:a:neighboring:state:to) text(ليبيا) -text(Tunisia) text(was:a:neighboring:state:to) text(Algerije) -text(الإكوادور) text(borders:with) text(पेरू) -text(Ecuador) text(borders) text(Colombia) -text(Brasil) text(was:currently:in) text(南美洲) -text(Brazilië) text(is:currently:in) text(Americas) -text(Brazil) text(is:butted:against) text(玻利維亞) -text(ब्राज़ील) text(was:butted:against) text(कोलम्बिया) -text(البرازيل) text(was:adjacent:to) text(巴拉圭) -text(巴西) text(is:adjacent:to) text(Uruguay) -text(Brasil) text(neighbors) text(غويانا:الفرنسية) -text(Brazilië) text(is:a:neighboring:country:of) text(Suriname) -text(Brazil) text(was:a:neighboring:country:of) text(वेनेज़ुएला) -text(ब्राज़ील) text(neighbors:with) text(अर्जेण्टीना) -text(البرازيل) text(was:a:neighbor:of) text(غيانا) -text(巴西) text(is:a:neighbor:of) text(Peru) -text(Paraguay) text(is:placed:in) text(América:del:Sur) -text(पैराग्वे) text(was:placed:in) text(美洲) -text(Paraguay) text(is:a:neighboring:state:to) text(الأرجنتين) -text(Paraguay) text(was:a:neighboring:state:to) text(Brasil) -text(باراغواي) text(borders:with) text(बोलिविया) -text(فنلندا) text(can:be:found:in) text(उत्तरी:यूरोप) -text(Finlandia) text(was:situated:in) text(Europa) -text(Finland) text(borders) text(Noorwegen) -text(芬蘭) text(is:butted:against) text(स्वीडन) -text(Finland) text(was:butted:against) text(Russia) -text(Jordanië) text(was:adjacent:to) text(Saudi:Arabia) -text(जॉर्डन) text(is:adjacent:to) text(इज़राइल) -text(約旦) text(neighbors) text(Iraq) -text(Jordania) text(is:a:neighboring:country:of) text(سوريا) -text(تيمور:الشرقية) text(was:a:neighboring:country:of) text(印度尼西亚) -text(Montenegro) text(is:situated:in) text(Southern:Europe) -text(Montenegro) text(is:located:in) text(यूरोप) -text(الجبل:الأسود) text(neighbors:with) text(Kosovo) -text(Montenegro) text(was:a:neighbor:of) text(البوسنة:والهرسك) -text(蒙特內哥羅) text(is:a:neighbor:of) text(Kroatië) -text(मॉन्टेनीग्रो) text(is:a:neighboring:state:to) text(Serbia) -text(Montenegro) text(was:a:neighboring:state:to) text(ألبانيا) -text(秘鲁) text(was:located:in) text(South:America) -text(بيرو) text(can:be:found:in) text(महाअमेरिका) -text(Peru) text(borders:with) text(Ecuador) -text(Perú) text(borders) text(بوليفيا) -text(पेरू) text(is:butted:against) text(चिली) -text(Peru) text(was:butted:against) text(Brazilië) -text(秘鲁) text(was:adjacent:to) text(哥伦比亚) -text(مونتسيرات) text(was:positioned:in) text(Caribe) -text(Montserrat) text(is:positioned:in) text(Amerika) -text(Oekraïne) text(was:sited:in) text(أوروبا:الشرقية) -text(أوكرانيا) text(is:sited:in) text(أوروبا) -text(烏克蘭) text(is:adjacent:to) text(स्लोवाकिया) -text(Ucrania) text(neighbors) text(बेलारूस) -text(Ukraine) text(is:a:neighboring:country:of) text(Polen) -text(युक्रेन) text(was:a:neighboring:country:of) text(Rusland) -text(Oekraïne) text(neighbors:with) text(المجر) -text(أوكرانيا) text(was:a:neighbor:of) text(摩爾多瓦) -text(烏克蘭) text(is:a:neighbor:of) text(रोमानिया) -text(Dominica) text(was:localized:in) text(Caribbean) -text(多米尼克) text(is:localized:in) text(América) -text(تركمانستان) text(is:a:neighboring:state:to) text(كازاخستان) -text(तुर्कमेनिस्तान) text(was:a:neighboring:state:to) text(阿富汗) -text(土庫曼斯坦) text(borders:with) text(أوزبكستان) -text(Turkmenistan) text(borders) text(Iran) -text(ग्वेर्नसे) text(was:present:in) text(أوروبا:الشمالية) -text(Guernsey) text(is:present:in) text(Europe) -text(Gibraltar) text(is:still:in) text(أوروبا:الجنوبية) -text(Gibraltar) text(was:still:in) text(Europa) -text(直布羅陀) text(is:butted:against) text(Spanje) -text(स्विट्ज़रलैण्ड) text(was:currently:in) text(西欧) -text(瑞士) text(is:currently:in) text(欧洲) -text(Zwitserland) text(was:butted:against) text(Duitsland) -text(سويسرا) text(was:adjacent:to) text(Italië) -text(Suiza) text(is:adjacent:to) text(النمسا) -text(Switzerland) text(neighbors) text(फ़्रान्स) -text(स्विट्ज़रलैण्ड) text(is:a:neighboring:country:of) text(列支敦斯登) -text(ऑस्ट्रिया) text(is:placed:in) text(Europa:Occidental) -text(Oostenrijk) text(was:placed:in) text(Europa) -text(Austria) text(was:a:neighboring:country:of) text(Alemania) -text(奧地利) text(neighbors:with) text(Eslovaquia) -text(Austria) text(was:a:neighbor:of) text(سلوفينيا) -text(النمسا) text(is:a:neighbor:of) text(Italia) -text(ऑस्ट्रिया) text(is:a:neighboring:state:to) text(瑞士) -text(Oostenrijk) text(was:a:neighboring:state:to) text(Hungary) -text(Austria) text(borders:with) text(Liechtenstein) -text(奧地利) text(borders) text(República:Checa) -text(匈牙利) text(is:butted:against) text(Ucrania) -text(हंगरी) text(was:butted:against) text(Slovakia) -text(Hongarije) text(was:adjacent:to) text(斯洛文尼亞) -text(Hungría) text(is:adjacent:to) text(Croatia) -text(المجر) text(neighbors) text(Austria) -text(Hungary) text(is:a:neighboring:country:of) text(सर्बिया) -text(匈牙利) text(was:a:neighboring:country:of) text(Roemenië) -text(馬拉威) text(can:be:found:in) text(东部非洲) -text(Malaui) text(was:situated:in) text(Africa) -text(Malawi) text(neighbors:with) text(贊比亞) -text(مالاوي) text(was:a:neighbor:of) text(坦桑尼亞) -text(मलावी) text(is:a:neighbor:of) text(Mozambique) -text(Hong:Kong) text(is:a:neighboring:state:to) text(中华人民共和国) -text(Liechtenstein) text(is:situated:in) text(पश्चिमी:यूरोप) -text(Liechtenstein) text(is:located:in) text(यूरोप) -text(ليختنشتاين) text(was:a:neighboring:state:to) text(Zwitserland) -text(लिक्टेन्स्टाइन) text(borders:with) text(النمسا) -text(बारबाडोस) text(was:located:in) text(الكاريبي) -text(باربادوس) text(can:be:found:in) text(أمريكتان) -text(जॉर्जिया) text(was:positioned:in) text(Zuidwest-Azië) -text(Georgia) text(is:positioned:in) text(亞洲) -text(格鲁吉亚) text(borders) text(أرمينيا) -text(Georgië) text(is:butted:against) text(Azerbeidzjan) -text(Georgia) text(was:butted:against) text(रूस) -text(جورجيا) text(was:adjacent:to) text(तुर्की) -text(Albanië) text(was:sited:in) text(Zuid-Europa) -text(阿爾巴尼亞) text(is:sited:in) text(أوروبا) -text(Albania) text(is:adjacent:to) text(Montenegro) -text(Albania) text(neighbors) text(北马其顿) -text(अल्बानिया) text(is:a:neighboring:country:of) text(科索沃) -text(ألبانيا) text(was:a:neighboring:country:of) text(希腊) -text(科威特) text(was:localized:in) text(Asia:Occidental) -text(الكويت) text(is:localized:in) text(آسيا) -text(Koeweit) text(neighbors:with) text(सउदी:अरब) -text(Kuwait) text(was:a:neighbor:of) text(Irak) -text(南非) text(was:present:in) text(إفريقيا:الجنوبية) -text(South:Africa) text(is:present:in) text(Afrika) -text(Sudáfrica) text(is:a:neighbor:of) text(Mozambique) -text(Zuid-Afrika) text(is:a:neighboring:state:to) text(Botswana) -text(جنوب:إفريقيا) text(was:a:neighboring:state:to) text(إسواتيني) -text(दक्षिण:अफ़्रीका) text(borders:with) text(زيمبابوي) -text(南非) text(borders) text(Namibië) -text(South:Africa) text(is:butted:against) text(Lesotho) -text(هايتي) text(is:still:in) text(加勒比地区) -text(हैती) text(was:still:in) text(Americas) -text(Haïti) text(was:butted:against) text(جمهورية:الدومينيكان) -text(Afganistán) text(was:currently:in) text(दक्षिण:एशिया) -text(Afghanistan) text(is:currently:in) text(एशिया) -text(अफ़्ग़ानिस्तान) text(was:adjacent:to) text(Turkmenistan) -text(أفغانستان) text(is:adjacent:to) text(चीनी:जनवादी:गणराज्य) -text(Afghanistan) text(neighbors) text(طاجيكستان) -text(阿富汗) text(is:a:neighboring:country:of) text(Oezbekistan) -text(Afganistán) text(was:a:neighboring:country:of) text(ईरान) -text(Afghanistan) text(neighbors:with) text(Pakistan) -text(सिंगापुर) text(is:placed:in) text(Southeast:Asia) -text(Singapore) text(was:placed:in) text(Asia) -text(貝南) text(can:be:found:in) text(पश्चिमी:अफ्रीका) -text(Benin) text(was:situated:in) text(África) -text(بنين) text(was:a:neighbor:of) text(尼日尔) -text(Benín) text(is:a:neighbor:of) text(بوركينا:فاسو) -text(Benin) text(is:a:neighboring:state:to) text(Togo) -text(बेनिन) text(was:a:neighboring:state:to) text(Nigeria) -text(ऑलैण्ड:द्वीपसमूह) text(is:situated:in) text(北歐) -text(Åland) text(is:located:in) text(Europe) -text(Croacia) text(was:located:in) text(Europa:del:Sur) -text(克羅地亞) text(can:be:found:in) text(Europa) -text(क्रोएशिया) text(borders:with) text(स्लोवेनिया) -text(كرواتيا) text(borders) text(Bosnia:y:Herzegovina) -text(Kroatië) text(is:butted:against) text(हंगरी) -text(Croatia) text(was:butted:against) text(صربيا) -text(Croacia) text(was:adjacent:to) text(الجبل:الأسود) -text(Zweden) text(was:positioned:in) text(Northern:Europe) -text(Sweden) text(is:positioned:in) text(欧洲) -text(السويد) text(is:adjacent:to) text(नॉर्वे) -text(瑞典) text(neighbors) text(फ़िनलैण्ड) -text(मेक्सिको) text(is:a:neighboring:country:of) text(Belize) -text(墨西哥) text(was:a:neighboring:country:of) text(Estados:Unidos) -text(المكسيك) text(neighbors:with) text(غواتيمالا) -text(格陵兰) text(was:sited:in) text(Noord-Amerika) -text(جرينلاند) text(is:sited:in) text(美洲) -text(皮特凯恩群岛) text(was:localized:in) text(nan) -text(पिटकेर्न:द्वीपसमूह) text(is:localized:in) text(ओशिआनिया) -text(Nepal) text(was:present:in) text(Asia:del:Sur) -text(नेपाल) text(is:present:in) text(Azië) -text(نيبال) text(was:a:neighbor:of) text(República:Popular:China) -text(Nepal) text(is:a:neighbor:of) text(India) -text(Guatemala) text(is:a:neighboring:state:to) text(बेलीज़) -text(危地马拉) text(was:a:neighboring:state:to) text(薩爾瓦多) -text(Guatemala) text(borders:with) text(Mexico) -text(Guatemala) text(borders) text(洪都拉斯) -text(South:Korea) text(is:still:in) text(Oost-Azië) -text(كوريا:الجنوبية) text(was:still:in) text(Asia) -text(大韩民国) text(is:butted:against) text(كوريا:الشمالية) -text(Moldavië) text(was:currently:in) text(东欧) -text(Moldavia) text(is:currently:in) text(Europa) -text(مولدوفا) text(was:butted:against) text(Ukraine) -text(मोल्डोवा) text(was:adjacent:to) text(رومانيا) -text(Mauritius) text(is:placed:in) text(East:Africa) -text(Mauritius) text(was:placed:in) text(अफ्रीका) -text(白俄羅斯) text(is:adjacent:to) text(युक्रेन) -text(Belarus) text(neighbors) text(波蘭) -text(Bielorrusia) text(is:a:neighboring:country:of) text(Litouwen) -text(Wit-Rusland) text(was:a:neighboring:country:of) text(روسيا) -text(بيلاروس) text(neighbors:with) text(لاتفيا) -text(Bangladesh) text(was:a:neighbor:of) text(Birmania) -text(孟加拉國) text(is:a:neighbor:of) text(भारत) -text(Maleisië) text(can:be:found:in) text(Zuidoost-Azië) -text(ماليزيا) text(was:situated:in) text(亞洲) -text(馬來西亞) text(is:a:neighboring:state:to) text(Tailandia) -text(मलेशिया) text(was:a:neighboring:state:to) text(Indonesia) -text(Malaysia) text(borders:with) text(Brunei) -text(波斯尼亚和黑塞哥维那) text(is:situated:in) text(दक्षिणी:यूरोप) -text(Bosnië:en:Herzegovina) text(is:located:in) text(यूरोप) -text(बोस्निया:और:हर्ज़ेगोविना) text(borders) text(Serbia) -text(Bosnia:and:Herzegovina) text(is:butted:against) text(克羅地亞) -text(البوسنة:والهرسك) text(was:butted:against) text(Montenegro) -text(卢森堡) text(was:located:in) text(Western:Europe) -text(Luxemburgo) text(can:be:found:in) text(أوروبا) -text(لوكسمبورغ) text(was:adjacent:to) text(德國) -text(लक्ज़मबर्ग) text(is:adjacent:to) text(بلجيكا) -text(Luxembourg) text(neighbors) text(France) -text(意大利) text(was:positioned:in) text(南欧) -text(इटली) text(is:positioned:in) text(Europe) -text(إيطاليا) text(is:a:neighboring:country:of) text(Eslovenia) -text(Italy) text(was:a:neighboring:country:of) text(سويسرا) -text(Italië) text(neighbors:with) text(ऑस्ट्रिया) -text(Italia) text(was:a:neighbor:of) text(Frankrijk) -text(意大利) text(is:a:neighbor:of) text(वैटिकन:नगर) -text(इटली) text(is:a:neighboring:state:to) text(San:Marino) -text(أذربيجان) text(was:sited:in) text(West:Asia) -text(अज़रबैजान) text(is:sited:in) text(آسيا) -text(阿塞拜疆) text(was:a:neighboring:state:to) text(Turquía) -text(Azerbaiyán) text(borders:with) text(Armenia) -text(Azerbaijan) text(borders) text(俄罗斯) -text(Azerbeidzjan) text(is:butted:against) text(Iran) -text(أذربيجان) text(was:butted:against) text(जॉर्जिया) -text(हॉण्डुरस) text(was:localized:in) text(Central:America) -text(Honduras) text(is:localized:in) text(महाअमेरिका) -text(هندوراس) text(was:adjacent:to) text(ग्वाटेमाला) -text(Honduras) text(is:adjacent:to) text(尼加拉瓜) -text(Honduras) text(neighbors) text(El:Salvador) -text(Mali) text(was:present:in) text(西非) -text(马里) text(is:present:in) text(إفريقيا) -text(Mali) text(is:a:neighboring:country:of) text(Burkina:Faso) -text(مالي) text(was:a:neighboring:country:of) text(गिनी) -text(माली) text(neighbors:with) text(मॉरीतानिया) -text(Mali) text(was:a:neighbor:of) text(नाइजर) -text(Mali) text(is:a:neighbor:of) text(Senegal) -text(马里) text(is:a:neighboring:state:to) text(Algeria) -text(Mali) text(was:a:neighboring:state:to) text(科特迪瓦) -text(中華民國) text(is:still:in) text(पूर्वी:एशिया) -text(Taiwan) text(was:still:in) text(एशिया) -text(Argelia) text(was:currently:in) text(Norte:de:África) -text(अल्जीरिया) text(is:currently:in) text(非洲) -text(الجزائر) text(borders:with) text(लीबिया) -text(阿爾及利亞) text(borders) text(تونس) -text(Algerije) text(is:butted:against) text(毛里塔尼亞) -text(Algeria) text(was:butted:against) text(Marokko) -text(Argelia) text(was:adjacent:to) text(النيجر) -text(अल्जीरिया) text(is:adjacent:to) text(مالي) -text(الجزائر) text(neighbors) text(Sahrawi:Arab:Democratic:Republic) -text(Frans-Guyana) text(is:a:neighboring:country:of) text(Brazil) -text(फ़्रान्सीसी:गुयाना) text(was:a:neighboring:country:of) text(سورينام) -text(Jemen) text(is:placed:in) text(غرب:آسيا) -text(Yemen) text(was:placed:in) text(Asia) -text(Yemen) text(neighbors:with) text(Oman) -text(यमन) text(was:a:neighbor:of) text(Arabia:Saudí) -text(Puerto:Rico) text(can:be:found:in) text(Caraïben) -text(波多黎各) text(was:situated:in) text(Amerika) -text(سانت:فينسنت:والغرينادين) text(is:situated:in) text(कैरिबिया) -text(सन्त:विन्सेण्ट:और:ग्रेनाडाइन्स) text(is:located:in) text(América) -text(Venezuela) text(is:a:neighbor:of) text(ब्राज़ील) -text(Venezuela) text(is:a:neighboring:state:to) text(Guyana) -text(فنزويلا) text(was:a:neighboring:state:to) text(Colombia) -text(格瑞那達) text(was:located:in) text(Caribe) -text(Grenada) text(can:be:found:in) text(أمريكتان) -text(美國) text(borders:with) text(加拿大) -text(الولايات:المتحدة) text(borders) text(Mexico) -text(Tokelau) text(was:positioned:in) text(Polynesië) -text(توكيلاو) text(is:positioned:in) text(أوقيانوسيا) -text(Slovenië) text(was:sited:in) text(Southern:Europe) -text(Slovenia) text(is:sited:in) text(Europa) -text(سلوفينيا) text(is:butted:against) text(Oostenrijk) -text(斯洛文尼亞) text(was:butted:against) text(क्रोएशिया) -text(स्लोवेनिया) text(was:adjacent:to) text(إيطاليا) -text(Eslovenia) text(is:adjacent:to) text(Hongarije) -text(الفلبين) text(was:localized:in) text(Sudeste:Asiático) -text(फ़िलीपीन्स) text(is:localized:in) text(Azië) -text(Micronesia) text(was:present:in) text(Micronesië) -text(密克羅尼西亞群島) text(is:present:in) text(Oceanía) -text(الصين) text(is:still:in) text(Asia:Oriental) -text(People's:Republic:of:China) text(was:still:in) text(Asia) -text(Volksrepubliek:China) text(neighbors) text(अफ़्ग़ानिस्तान) -text(中华人民共和国) text(is:a:neighboring:country:of) text(Bhutan) -text(चीनी:जनवादी:गणराज्य) text(was:a:neighboring:country:of) text(Macau) -text(República:Popular:China) text(neighbors:with) text(印度) -text(الصين) text(was:a:neighbor:of) text(Kazakhstan) -text(People's:Republic:of:China) text(is:a:neighbor:of) text(Kirguistán) -text(Volksrepubliek:China) text(is:a:neighboring:state:to) text(ताजीकिस्तान) -text(中华人民共和国) text(was:a:neighboring:state:to) text(Laos) -text(चीनी:जनवादी:गणराज्य) text(borders:with) text(Rusia) -text(República:Popular:China) text(borders) text(Corea:del:Norte) -text(الصين) text(is:butted:against) text(Myanmar) -text(People's:Republic:of:China) text(was:butted:against) text(Pakistan) -text(Volksrepubliek:China) text(was:adjacent:to) text(मंगोलिया) -text(中华人民共和国) text(is:adjacent:to) text(हांगकांग) -text(चीनी:जनवादी:गणराज्य) text(neighbors) text(越南) -text(الغابون) text(was:currently:in) text(Central:Africa) -text(गबॉन) text(is:currently:in) text(Africa) -text(Gabón) text(is:a:neighboring:country:of) text(Guinea:Ecuatorial) -text(Gabon) text(was:a:neighboring:country:of) text(Republic:of:the:Congo) -text(Gabon) text(neighbors:with) text(कैमरुन) -text(United:States:Minor:Outlying:Islands) text(is:placed:in) text(أمريكا:الشمالية) -text(संयुक्त:राज्य:अमेरिका:के:छोटे:दूरस्थ:द्वीपसमूह) text(was:placed:in) text(Americas) -text(Andorra) text(can:be:found:in) text(أوروبا:الجنوبية) -text(Andorra) text(was:situated:in) text(欧洲) -text(安道尔) text(was:a:neighbor:of) text(西班牙) -text(Andorra) text(is:a:neighbor:of) text(فرنسا) -text(Samoa) text(is:situated:in) text(Polinesia) -text(Samoa) text(is:located:in) text(大洋洲) -text(The:Gambia) text(was:located:in) text(West:Africa) -text(غامبيا) text(can:be:found:in) text(Afrika) -text(गाम्बिया) text(is:a:neighboring:state:to) text(सेनेगल) -text(Pedro:Miguel) text(was:positioned:in) text(पश्चिमी:एशिया) -text(nan) text(is:positioned:in) text(亞洲) -text(Pedro:Miguel) text(was:a:neighboring:state:to) text(الأردن) -text(nan) text(borders:with) text(Egipto) -text(Pedro:Miguel) text(borders) text(إسرائيل) -text(Reunión) text(was:sited:in) text(África:Oriental) -text(ريونيون) text(is:sited:in) text(África) -text(Francia) text(was:localized:in) text(أوروبا:الغربية) -text(法國) text(is:localized:in) text(Europa) -text(फ़्रान्स) text(is:butted:against) text(ألمانيا) -text(France) text(was:butted:against) text(Luxemburg) -text(Frankrijk) text(was:adjacent:to) text(Italy) -text(فرنسا) text(is:adjacent:to) text(अण्डोरा) -text(Francia) text(neighbors) text(Suiza) -text(法國) text(is:a:neighboring:country:of) text(موناكو) -text(फ़्रान्स) text(was:a:neighboring:country:of) text(Belgium) -text(France) text(neighbors:with) text(Spain) -text(منغوليا) text(was:present:in) text(東亞) -text(Mongolia) text(is:present:in) text(آسيا) -text(蒙古國) text(was:a:neighbor:of) text(República:Popular:China) -text(Mongolia) text(is:a:neighbor:of) text(Russia) -text(लिथुआनिया) text(is:still:in) text(Europa:del:Norte) -text(ليتوانيا) text(was:still:in) text(यूरोप) -text(立陶宛) text(is:a:neighboring:state:to) text(Poland) -text(Lithuania) text(was:a:neighboring:state:to) text(Letland) -text(Lituania) text(borders:with) text(बेलारूस) -text(Litouwen) text(borders) text(Rusland) -text(Kaaimaneilanden) text(was:currently:in) text(Caribbean) -text(جزر:كايمان) text(is:currently:in) text(美洲) -text(圣卢西亚) text(is:placed:in) text(الكاريبي) -text(Santa:Lucía) text(was:placed:in) text(महाअमेरिका) -text(Curaçao) text(can:be:found:in) text(加勒比地区) -text(库拉索) text(was:situated:in) text(Amerika) -text(Caraïben) text(is:situated:in) text(América) -text(Zuid-Azië) text(is:located:in) text(एशिया) -text(मध्य:अफ्रीका) text(was:located:in) text(अफ्रीका) -text(Noord-Europa) text(can:be:found:in) text(أوروبا) -text(Zuid-Europa) text(was:positioned:in) text(Europe) -text(西亚) text(is:positioned:in) text(Asia) -text(أمريكا:الجنوبية) text(was:sited:in) text(أمريكتان) -text(玻里尼西亞) text(is:sited:in) text(Oceanië) -text(nan) text(was:localized:in) text(Oceania) -text(West-Europa) text(is:localized:in) text(Europa) -text(شرق:إفريقيا) text(was:present:in) text(إفريقيا) -text(África:Occidental) text(is:present:in) text(非洲) -text(Eastern:Europe) text(is:still:in) text(欧洲) -text(केंद्रीय:अमेरिका) text(was:still:in) text(Americas) -text(América:del:Norte) text(was:currently:in) text(美洲) -text(جنوب:شرق:آسيا) text(is:currently:in) text(Azië) -text(Southern:Africa) text(is:placed:in) text(Africa) -text(East:Asia) text(was:placed:in) text(Asia) -text(北部非洲) text(can:be:found:in) text(Afrika) -text(मॅलानिशिया) text(was:situated:in) text(ओशिआनिया) -text(माइक्रोनीशिया) text(is:situated:in) text(أوقيانوسيا) -text(中亚) text(is:located:in) text(亞洲) -text(Centraal-Europa) text(was:located:in) text(Europa) \ No newline at end of file diff --git a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_relation2text.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_relation2text.tsv index 3520a42..4b80f8e 100644 --- a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_relation2text.tsv +++ b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_relation2text.tsv @@ -1,1063 +1,1063 @@ -palau text(was:localized:in) micronesia -palau text(is:localized:in) oceania -maldives text(was:present:in) southern_asia -maldives text(is:present:in) asia -brunei text(is:still:in) south-eastern_asia -brunei text(was:still:in) asia -brunei text(is:a:neighboring:state:to) malaysia -japan text(was:currently:in) eastern_asia -japan text(is:currently:in) asia -netherlands text(was:a:neighboring:state:to) germany -netherlands text(borders:with) belgium -turkey text(borders) armenia -turkey text(is:butted:against) azerbaijan -turkey text(was:butted:against) iran -turkey text(was:adjacent:to) greece -turkey text(is:adjacent:to) georgia -turkey text(neighbors) bulgaria -turkey text(is:a:neighboring:country:of) iraq -turkey text(was:a:neighboring:country:of) syria -angola text(is:placed:in) middle_africa -angola text(was:placed:in) africa -angola text(neighbors:with) dr_congo -angola text(was:a:neighbor:of) namibia -angola text(is:a:neighbor:of) zambia -angola text(is:a:neighboring:state:to) republic_of_the_congo -armenia text(can:be:found:in) western_asia -armenia text(was:situated:in) asia -armenia text(was:a:neighboring:state:to) georgia -armenia text(borders:with) azerbaijan -armenia text(borders) iran -armenia text(is:butted:against) turkey -antigua_and_barbuda text(is:situated:in) caribbean -antigua_and_barbuda text(is:located:in) americas -swaziland text(was:located:in) southern_africa -swaziland text(can:be:found:in) africa -swaziland text(was:butted:against) south_africa -swaziland text(was:adjacent:to) mozambique -wallis_and_futuna text(was:positioned:in) polynesia -wallis_and_futuna text(is:positioned:in) oceania -uruguay text(was:sited:in) south_america -uruguay text(is:sited:in) americas -uruguay text(is:adjacent:to) argentina +palau text(is:positioned:in) micronesia +palau text(was:sited:in) oceania +maldives text(is:sited:in) southern_asia +maldives text(is:placed:in) asia +brunei text(was:placed:in) south-eastern_asia +brunei text(was:localized:in) asia +brunei text(was:a:neighboring:country:of) malaysia +japan text(is:localized:in) eastern_asia +japan text(was:present:in) asia +netherlands text(was:adjacent:to) germany +netherlands text(is:adjacent:to) belgium +turkey text(was:a:neighbor:of) armenia +turkey text(is:a:neighbor:of) azerbaijan +turkey text(is:a:neighboring:state:to) iran +turkey text(was:a:neighboring:state:to) greece +turkey text(borders:with) georgia +turkey text(neighbors:withborders) bulgaria +turkey text(neighbors) iraq +turkey text(is:butted:against) syria +angola text(is:present:in) middle_africa +angola text(is:still:in) africa +angola text(was:butted:against) dr_congo +angola text(is:a:neighboring:country:of) namibia +angola text(was:a:neighboring:country:of) zambia +angola text(was:adjacent:to) republic_of_the_congo +armenia text(was:still:in) western_asia +armenia text(was:currently:in) asia +armenia text(is:adjacent:to) georgia +armenia text(was:a:neighbor:of) azerbaijan +armenia text(is:a:neighbor:of) iran +armenia text(is:a:neighboring:state:to) turkey +antigua_and_barbuda text(is:currently:in) caribbean +antigua_and_barbuda text(was:situated:in) americas +swaziland text(is:situated:in) southern_africa +swaziland text(is:located:in) africa +swaziland text(was:a:neighboring:state:to) south_africa +swaziland text(borders:with) mozambique +wallis_and_futuna text(was:located:in) polynesia +wallis_and_futuna text(could:be:found:in) oceania +uruguay text(can:be:found:in) south_america +uruguay text(was:positioned:in) americas +uruguay text(neighbors:withborders) argentina uruguay text(neighbors) brazil -zambia text(was:localized:in) eastern_africa -zambia text(is:localized:in) africa -zambia text(is:a:neighboring:country:of) tanzania -zambia text(was:a:neighboring:country:of) mozambique -zambia text(neighbors:with) dr_congo -zambia text(was:a:neighbor:of) angola -zambia text(is:a:neighbor:of) botswana -zambia text(is:a:neighboring:state:to) zimbabwe -zambia text(was:a:neighboring:state:to) namibia -zambia text(borders:with) malawi -cyprus text(was:present:in) eastern_europe -cyprus text(is:present:in) europe -cyprus text(borders) united_kingdom -ireland text(is:still:in) northern_europe -ireland text(was:still:in) europe -ireland text(is:butted:against) united_kingdom -burundi text(was:currently:in) eastern_africa -burundi text(is:currently:in) africa -burundi text(was:butted:against) dr_congo -burundi text(was:adjacent:to) rwanda -burundi text(is:adjacent:to) tanzania -central_african_republic text(is:placed:in) middle_africa -central_african_republic text(was:placed:in) africa -central_african_republic text(neighbors) chad -central_african_republic text(is:a:neighboring:country:of) republic_of_the_congo -central_african_republic text(was:a:neighboring:country:of) dr_congo -central_african_republic text(neighbors:with) south_sudan -central_african_republic text(was:a:neighbor:of) cameroon -central_african_republic text(is:a:neighbor:of) sudan -tonga text(can:be:found:in) polynesia -tonga text(was:situated:in) oceania -ivory_coast text(is:situated:in) western_africa -ivory_coast text(is:located:in) africa -ivory_coast text(is:a:neighboring:state:to) burkina_faso -ivory_coast text(was:a:neighboring:state:to) ghana -ivory_coast text(borders:with) liberia -ivory_coast text(borders) mali -ivory_coast text(is:butted:against) guinea -sierra_leone text(was:butted:against) liberia -sierra_leone text(was:adjacent:to) guinea -mayotte text(was:located:in) eastern_africa -mayotte text(can:be:found:in) africa -poland text(is:adjacent:to) germany -poland text(neighbors) ukraine +zambia text(is:positioned:in) eastern_africa +zambia text(was:sited:in) africa +zambia text(is:butted:against) tanzania +zambia text(was:butted:against) mozambique +zambia text(is:a:neighboring:country:of) dr_congo +zambia text(was:a:neighboring:country:of) angola +zambia text(was:adjacent:to) botswana +zambia text(is:adjacent:to) zimbabwe +zambia text(was:a:neighbor:of) namibia +zambia text(is:a:neighbor:of) malawi +cyprus text(is:sited:in) eastern_europe +cyprus text(is:placed:in) europe +cyprus text(is:a:neighboring:state:to) united_kingdom +ireland text(was:placed:in) northern_europe +ireland text(was:localized:in) europe +ireland text(was:a:neighboring:state:to) united_kingdom +burundi text(is:localized:in) eastern_africa +burundi text(was:present:in) africa +burundi text(borders:with) dr_congo +burundi text(neighbors:withborders) rwanda +burundi text(neighbors) tanzania +central_african_republic text(is:present:in) middle_africa +central_african_republic text(is:still:in) africa +central_african_republic text(is:butted:against) chad +central_african_republic text(was:butted:against) republic_of_the_congo +central_african_republic text(is:a:neighboring:country:of) dr_congo +central_african_republic text(was:a:neighboring:country:of) south_sudan +central_african_republic text(was:adjacent:to) cameroon +central_african_republic text(is:adjacent:to) sudan +tonga text(was:still:in) polynesia +tonga text(was:currently:in) oceania +ivory_coast text(is:currently:in) western_africa +ivory_coast text(was:situated:in) africa +ivory_coast text(was:a:neighbor:of) burkina_faso +ivory_coast text(is:a:neighbor:of) ghana +ivory_coast text(is:a:neighboring:state:to) liberia +ivory_coast text(was:a:neighboring:state:to) mali +ivory_coast text(borders:with) guinea +sierra_leone text(neighbors:withborders) liberia +sierra_leone text(neighbors) guinea +mayotte text(is:situated:in) eastern_africa +mayotte text(is:located:in) africa +poland text(is:butted:against) germany +poland text(was:butted:against) ukraine poland text(is:a:neighboring:country:of) slovakia poland text(was:a:neighboring:country:of) belarus -poland text(neighbors:with) russia -poland text(was:a:neighbor:of) lithuania -poland text(is:a:neighbor:of) czechia -kazakhstan text(was:positioned:in) central_asia -kazakhstan text(is:positioned:in) asia -kazakhstan text(is:a:neighboring:state:to) turkmenistan -kazakhstan text(was:a:neighboring:state:to) china -kazakhstan text(borders:with) kyrgyzstan -kazakhstan text(borders) uzbekistan -kazakhstan text(is:butted:against) russia -uzbekistan text(was:sited:in) central_asia -uzbekistan text(is:sited:in) asia -uzbekistan text(was:butted:against) afghanistan -uzbekistan text(was:adjacent:to) turkmenistan -uzbekistan text(is:adjacent:to) kazakhstan -uzbekistan text(neighbors) kyrgyzstan -uzbekistan text(is:a:neighboring:country:of) tajikistan -turks_and_caicos_islands text(was:localized:in) caribbean -turks_and_caicos_islands text(is:localized:in) americas -new_caledonia text(was:present:in) melanesia -new_caledonia text(is:present:in) oceania -pakistan text(was:a:neighboring:country:of) china -pakistan text(neighbors:with) afghanistan +poland text(was:adjacent:to) russia +poland text(is:adjacent:to) lithuania +poland text(was:a:neighbor:of) czechia +kazakhstan text(was:located:in) central_asia +kazakhstan text(could:be:found:in) asia +kazakhstan text(is:a:neighbor:of) turkmenistan +kazakhstan text(is:a:neighboring:state:to) china +kazakhstan text(was:a:neighboring:state:to) kyrgyzstan +kazakhstan text(borders:with) uzbekistan +kazakhstan text(neighbors:withborders) russia +uzbekistan text(can:be:found:in) central_asia +uzbekistan text(was:positioned:in) asia +uzbekistan text(neighbors) afghanistan +uzbekistan text(is:butted:against) turkmenistan +uzbekistan text(was:butted:against) kazakhstan +uzbekistan text(is:a:neighboring:country:of) kyrgyzstan +uzbekistan text(was:a:neighboring:country:of) tajikistan +turks_and_caicos_islands text(is:positioned:in) caribbean +turks_and_caicos_islands text(was:sited:in) americas +new_caledonia text(is:sited:in) melanesia +new_caledonia text(is:placed:in) oceania +pakistan text(was:adjacent:to) china +pakistan text(is:adjacent:to) afghanistan pakistan text(was:a:neighbor:of) iran pakistan text(is:a:neighbor:of) india -argentina text(is:still:in) south_america -argentina text(was:still:in) americas +argentina text(was:placed:in) south_america +argentina text(was:localized:in) americas argentina text(is:a:neighboring:state:to) bolivia argentina text(was:a:neighboring:state:to) chile argentina text(borders:with) brazil -argentina text(borders) paraguay -argentina text(is:butted:against) uruguay -cuba text(was:currently:in) caribbean -cuba text(is:currently:in) americas -serbia text(was:butted:against) macedonia -serbia text(was:adjacent:to) montenegro -serbia text(is:adjacent:to) kosovo -serbia text(neighbors) bosnia_and_herzegovina -serbia text(is:a:neighboring:country:of) croatia -serbia text(was:a:neighboring:country:of) hungary -serbia text(neighbors:with) bulgaria -serbia text(was:a:neighbor:of) romania -czechia text(is:placed:in) eastern_europe -czechia text(was:placed:in) europe -czechia text(is:a:neighbor:of) germany -czechia text(is:a:neighboring:state:to) austria -czechia text(was:a:neighboring:state:to) poland -czechia text(borders:with) slovakia -nicaragua text(borders) honduras +argentina text(neighbors:withborders) paraguay +argentina text(neighbors) uruguay +cuba text(is:localized:in) caribbean +cuba text(was:present:in) americas +serbia text(is:butted:against) macedonia +serbia text(was:butted:against) montenegro +serbia text(is:a:neighboring:country:of) kosovo +serbia text(was:a:neighboring:country:of) bosnia_and_herzegovina +serbia text(was:adjacent:to) croatia +serbia text(is:adjacent:to) hungary +serbia text(was:a:neighbor:of) bulgaria +serbia text(is:a:neighbor:of) romania +czechia text(is:present:in) eastern_europe +czechia text(is:still:in) europe +czechia text(is:a:neighboring:state:to) germany +czechia text(was:a:neighboring:state:to) austria +czechia text(borders:with) poland +czechia text(neighbors:withborders) slovakia +nicaragua text(neighbors) honduras nicaragua text(is:butted:against) costa_rica -vietnam text(can:be:found:in) south-eastern_asia -vietnam text(was:situated:in) asia +vietnam text(was:still:in) south-eastern_asia +vietnam text(was:currently:in) asia vietnam text(was:butted:against) cambodia -vietnam text(was:adjacent:to) laos -vietnam text(is:adjacent:to) china -niue text(is:situated:in) polynesia -niue text(is:located:in) oceania -canada text(was:located:in) northern_america -canada text(can:be:found:in) americas -canada text(neighbors) united_states -slovakia text(is:a:neighboring:country:of) ukraine -slovakia text(was:a:neighboring:country:of) poland -slovakia text(neighbors:with) austria -slovakia text(was:a:neighbor:of) hungary -slovakia text(is:a:neighbor:of) czechia -mozambique text(is:a:neighboring:state:to) tanzania -mozambique text(was:a:neighboring:state:to) swaziland -mozambique text(borders:with) zimbabwe -mozambique text(borders) zambia -mozambique text(is:butted:against) malawi -mozambique text(was:butted:against) south_africa -aruba text(was:positioned:in) caribbean -aruba text(is:positioned:in) americas -bolivia text(was:sited:in) south_america -bolivia text(is:sited:in) americas -bolivia text(was:adjacent:to) chile -bolivia text(is:adjacent:to) brazil -bolivia text(neighbors) paraguay -bolivia text(is:a:neighboring:country:of) argentina -bolivia text(was:a:neighboring:country:of) peru -colombia text(was:localized:in) south_america -colombia text(is:localized:in) americas -colombia text(neighbors:with) ecuador -colombia text(was:a:neighbor:of) brazil -colombia text(is:a:neighbor:of) panama -colombia text(is:a:neighboring:state:to) venezuela -colombia text(was:a:neighboring:state:to) peru -fiji text(was:present:in) melanesia -fiji text(is:present:in) oceania -republic_of_the_congo text(borders:with) gabon -republic_of_the_congo text(borders) dr_congo -republic_of_the_congo text(is:butted:against) angola -republic_of_the_congo text(was:butted:against) cameroon +vietnam text(is:a:neighboring:country:of) laos +vietnam text(was:a:neighboring:country:of) china +niue text(is:currently:in) polynesia +niue text(was:situated:in) oceania +canada text(is:situated:in) northern_america +canada text(is:located:in) americas +canada text(was:adjacent:to) united_states +slovakia text(is:adjacent:to) ukraine +slovakia text(was:a:neighbor:of) poland +slovakia text(is:a:neighbor:of) austria +slovakia text(is:a:neighboring:state:to) hungary +slovakia text(was:a:neighboring:state:to) czechia +mozambique text(borders:with) tanzania +mozambique text(neighbors:withborders) swaziland +mozambique text(neighbors) zimbabwe +mozambique text(is:butted:against) zambia +mozambique text(was:butted:against) malawi +mozambique text(is:a:neighboring:country:of) south_africa +aruba text(was:located:in) caribbean +aruba text(could:be:found:in) americas +bolivia text(can:be:found:in) south_america +bolivia text(was:positioned:in) americas +bolivia text(was:a:neighboring:country:of) chile +bolivia text(was:adjacent:to) brazil +bolivia text(is:adjacent:to) paraguay +bolivia text(was:a:neighbor:of) argentina +bolivia text(is:a:neighbor:of) peru +colombia text(is:positioned:in) south_america +colombia text(was:sited:in) americas +colombia text(is:a:neighboring:state:to) ecuador +colombia text(was:a:neighboring:state:to) brazil +colombia text(borders:with) panama +colombia text(neighbors:withborders) venezuela +colombia text(neighbors) peru +fiji text(is:sited:in) melanesia +fiji text(is:placed:in) oceania +republic_of_the_congo text(is:butted:against) gabon +republic_of_the_congo text(was:butted:against) dr_congo +republic_of_the_congo text(is:a:neighboring:country:of) angola +republic_of_the_congo text(was:a:neighboring:country:of) cameroon republic_of_the_congo text(was:adjacent:to) central_african_republic saudi_arabia text(is:adjacent:to) qatar -saudi_arabia text(neighbors) united_arab_emirates -saudi_arabia text(is:a:neighboring:country:of) jordan -saudi_arabia text(was:a:neighboring:country:of) yemen -saudi_arabia text(neighbors:with) oman -saudi_arabia text(was:a:neighbor:of) kuwait -saudi_arabia text(is:a:neighbor:of) iraq -el_salvador text(is:still:in) central_america -el_salvador text(was:still:in) americas -el_salvador text(is:a:neighboring:state:to) guatemala -el_salvador text(was:a:neighboring:state:to) honduras -madagascar text(was:currently:in) eastern_africa -madagascar text(is:currently:in) africa -australia text(is:placed:in) australia_and_new_zealand -australia text(was:placed:in) oceania -namibia text(can:be:found:in) southern_africa -namibia text(was:situated:in) africa -namibia text(borders:with) zambia -namibia text(borders) angola -namibia text(is:butted:against) south_africa -namibia text(was:butted:against) botswana -tuvalu text(is:situated:in) polynesia -tuvalu text(is:located:in) oceania -svalbard_and_jan_mayen text(was:located:in) northern_europe -svalbard_and_jan_mayen text(can:be:found:in) europe -isle_of_man text(was:positioned:in) northern_europe -isle_of_man text(is:positioned:in) europe -guyana text(was:adjacent:to) brazil -guyana text(is:adjacent:to) suriname -guyana text(neighbors) venezuela -vatican_city text(was:sited:in) southern_europe -vatican_city text(is:sited:in) europe -vatican_city text(is:a:neighboring:country:of) italy -british_indian_ocean_territory text(was:localized:in) eastern_africa -british_indian_ocean_territory text(is:localized:in) africa -nigeria text(was:present:in) western_africa -nigeria text(is:present:in) africa -nigeria text(was:a:neighboring:country:of) chad -nigeria text(neighbors:with) niger -nigeria text(was:a:neighbor:of) cameroon -nigeria text(is:a:neighbor:of) benin -germany text(is:a:neighboring:state:to) denmark -germany text(was:a:neighboring:state:to) netherlands -germany text(borders:with) poland -germany text(borders) luxembourg -germany text(is:butted:against) belgium -germany text(was:butted:against) switzerland -germany text(was:adjacent:to) austria -germany text(is:adjacent:to) france -germany text(neighbors) czechia -burkina_faso text(is:a:neighboring:country:of) togo -burkina_faso text(was:a:neighboring:country:of) benin -burkina_faso text(neighbors:with) niger -burkina_faso text(was:a:neighbor:of) ghana -burkina_faso text(is:a:neighbor:of) mali -burkina_faso text(is:a:neighboring:state:to) ivory_coast -tanzania text(was:a:neighboring:state:to) uganda -tanzania text(borders:with) mozambique -tanzania text(borders) dr_congo -tanzania text(is:butted:against) kenya -tanzania text(was:butted:against) rwanda -tanzania text(was:adjacent:to) zambia -tanzania text(is:adjacent:to) malawi -tanzania text(neighbors) burundi -northern_mariana_islands text(is:still:in) micronesia -northern_mariana_islands text(was:still:in) oceania -belize text(was:currently:in) central_america -belize text(is:currently:in) americas -belize text(is:a:neighboring:country:of) guatemala -belize text(was:a:neighboring:country:of) mexico -norway text(neighbors:with) sweden -norway text(was:a:neighbor:of) finland -norway text(is:a:neighbor:of) russia -cocos_keeling_islands text(is:placed:in) australia_and_new_zealand -cocos_keeling_islands text(was:placed:in) oceania -laos text(can:be:found:in) south-eastern_asia -laos text(was:situated:in) asia -laos text(is:a:neighboring:state:to) china -laos text(was:a:neighboring:state:to) cambodia -laos text(borders:with) myanmar -laos text(borders) vietnam -laos text(is:butted:against) thailand -western_sahara text(is:situated:in) northern_africa -western_sahara text(is:located:in) africa -western_sahara text(was:butted:against) algeria -western_sahara text(was:adjacent:to) mauritania -western_sahara text(is:adjacent:to) morocco -suriname text(was:located:in) south_america -suriname text(can:be:found:in) americas -suriname text(neighbors) brazil -suriname text(is:a:neighboring:country:of) french_guiana -suriname text(was:a:neighboring:country:of) guyana -christmas_island text(was:positioned:in) australia_and_new_zealand -christmas_island text(is:positioned:in) oceania -são_tomé_and_príncipe text(was:sited:in) middle_africa -são_tomé_and_príncipe text(is:sited:in) africa -egypt text(neighbors:with) libya -egypt text(was:a:neighbor:of) israel -egypt text(is:a:neighbor:of) sudan -bulgaria text(is:a:neighboring:state:to) macedonia -bulgaria text(was:a:neighboring:state:to) turkey -bulgaria text(borders:with) greece -bulgaria text(borders) serbia -bulgaria text(is:butted:against) romania -guinea text(was:localized:in) western_africa -guinea text(is:localized:in) africa -guinea text(was:butted:against) guinea-bissau -guinea text(was:adjacent:to) sierra_leone -guinea text(is:adjacent:to) mali -guinea text(neighbors) liberia -guinea text(is:a:neighboring:country:of) senegal -guinea text(was:a:neighboring:country:of) ivory_coast -spain text(neighbors:with) morocco -spain text(was:a:neighbor:of) gibraltar -spain text(is:a:neighbor:of) andorra -spain text(is:a:neighboring:state:to) france -spain text(was:a:neighboring:state:to) portugal -costa_rica text(was:present:in) central_america -costa_rica text(is:present:in) americas -costa_rica text(borders:with) panama -costa_rica text(borders) nicaragua -malta text(is:still:in) southern_europe -malta text(was:still:in) europe -portugal text(was:currently:in) southern_europe -portugal text(is:currently:in) europe -portugal text(is:butted:against) spain -romania text(is:placed:in) eastern_europe -romania text(was:placed:in) europe -romania text(was:butted:against) ukraine -romania text(was:adjacent:to) hungary -romania text(is:adjacent:to) moldova +saudi_arabia text(was:a:neighbor:of) united_arab_emirates +saudi_arabia text(is:a:neighbor:of) jordan +saudi_arabia text(is:a:neighboring:state:to) yemen +saudi_arabia text(was:a:neighboring:state:to) oman +saudi_arabia text(borders:with) kuwait +saudi_arabia text(neighbors:withborders) iraq +el_salvador text(was:placed:in) central_america +el_salvador text(was:localized:in) americas +el_salvador text(neighbors) guatemala +el_salvador text(is:butted:against) honduras +madagascar text(is:localized:in) eastern_africa +madagascar text(was:present:in) africa +australia text(is:present:in) australia_and_new_zealand +australia text(is:still:in) oceania +namibia text(was:still:in) southern_africa +namibia text(was:currently:in) africa +namibia text(was:butted:against) zambia +namibia text(is:a:neighboring:country:of) angola +namibia text(was:a:neighboring:country:of) south_africa +namibia text(was:adjacent:to) botswana +tuvalu text(is:currently:in) polynesia +tuvalu text(was:situated:in) oceania +svalbard_and_jan_mayen text(is:situated:in) northern_europe +svalbard_and_jan_mayen text(is:located:in) europe +isle_of_man text(was:located:in) northern_europe +isle_of_man text(could:be:found:in) europe +guyana text(is:adjacent:to) brazil +guyana text(was:a:neighbor:of) suriname +guyana text(is:a:neighbor:of) venezuela +vatican_city text(can:be:found:in) southern_europe +vatican_city text(was:positioned:in) europe +vatican_city text(is:a:neighboring:state:to) italy +british_indian_ocean_territory text(is:positioned:in) eastern_africa +british_indian_ocean_territory text(was:sited:in) africa +nigeria text(is:sited:in) western_africa +nigeria text(is:placed:in) africa +nigeria text(was:a:neighboring:state:to) chad +nigeria text(borders:with) niger +nigeria text(neighbors:withborders) cameroon +nigeria text(neighbors) benin +germany text(is:butted:against) denmark +germany text(was:butted:against) netherlands +germany text(is:a:neighboring:country:of) poland +germany text(was:a:neighboring:country:of) luxembourg +germany text(was:adjacent:to) belgium +germany text(is:adjacent:to) switzerland +germany text(was:a:neighbor:of) austria +germany text(is:a:neighbor:of) france +germany text(is:a:neighboring:state:to) czechia +burkina_faso text(was:a:neighboring:state:to) togo +burkina_faso text(borders:with) benin +burkina_faso text(neighbors:withborders) niger +burkina_faso text(neighbors) ghana +burkina_faso text(is:butted:against) mali +burkina_faso text(was:butted:against) ivory_coast +tanzania text(is:a:neighboring:country:of) uganda +tanzania text(was:a:neighboring:country:of) mozambique +tanzania text(was:adjacent:to) dr_congo +tanzania text(is:adjacent:to) kenya +tanzania text(was:a:neighbor:of) rwanda +tanzania text(is:a:neighbor:of) zambia +tanzania text(is:a:neighboring:state:to) malawi +tanzania text(was:a:neighboring:state:to) burundi +northern_mariana_islands text(was:placed:in) micronesia +northern_mariana_islands text(was:localized:in) oceania +belize text(is:localized:in) central_america +belize text(was:present:in) americas +belize text(borders:with) guatemala +belize text(neighbors:withborders) mexico +norway text(neighbors) sweden +norway text(is:butted:against) finland +norway text(was:butted:against) russia +cocos_keeling_islands text(is:present:in) australia_and_new_zealand +cocos_keeling_islands text(is:still:in) oceania +laos text(was:still:in) south-eastern_asia +laos text(was:currently:in) asia +laos text(is:a:neighboring:country:of) china +laos text(was:a:neighboring:country:of) cambodia +laos text(was:adjacent:to) myanmar +laos text(is:adjacent:to) vietnam +laos text(was:a:neighbor:of) thailand +western_sahara text(is:currently:in) northern_africa +western_sahara text(was:situated:in) africa +western_sahara text(is:a:neighbor:of) algeria +western_sahara text(is:a:neighboring:state:to) mauritania +western_sahara text(was:a:neighboring:state:to) morocco +suriname text(is:situated:in) south_america +suriname text(is:located:in) americas +suriname text(borders:with) brazil +suriname text(neighbors:withborders) french_guiana +suriname text(neighbors) guyana +christmas_island text(was:located:in) australia_and_new_zealand +christmas_island text(could:be:found:in) oceania +são_tomé_and_príncipe text(can:be:found:in) middle_africa +são_tomé_and_príncipe text(was:positioned:in) africa +egypt text(is:butted:against) libya +egypt text(was:butted:against) israel +egypt text(is:a:neighboring:country:of) sudan +bulgaria text(was:a:neighboring:country:of) macedonia +bulgaria text(was:adjacent:to) turkey +bulgaria text(is:adjacent:to) greece +bulgaria text(was:a:neighbor:of) serbia +bulgaria text(is:a:neighbor:of) romania +guinea text(is:positioned:in) western_africa +guinea text(was:sited:in) africa +guinea text(is:a:neighboring:state:to) guinea-bissau +guinea text(was:a:neighboring:state:to) sierra_leone +guinea text(borders:with) mali +guinea text(neighbors:withborders) liberia +guinea text(neighbors) senegal +guinea text(is:butted:against) ivory_coast +spain text(was:butted:against) morocco +spain text(is:a:neighboring:country:of) gibraltar +spain text(was:a:neighboring:country:of) andorra +spain text(was:adjacent:to) france +spain text(is:adjacent:to) portugal +costa_rica text(is:sited:in) central_america +costa_rica text(is:placed:in) americas +costa_rica text(was:a:neighbor:of) panama +costa_rica text(is:a:neighbor:of) nicaragua +malta text(was:placed:in) southern_europe +malta text(was:localized:in) europe +portugal text(is:localized:in) southern_europe +portugal text(was:present:in) europe +portugal text(is:a:neighboring:state:to) spain +romania text(is:present:in) eastern_europe +romania text(is:still:in) europe +romania text(was:a:neighboring:state:to) ukraine +romania text(borders:with) hungary +romania text(neighbors:withborders) moldova romania text(neighbors) bulgaria -romania text(is:a:neighboring:country:of) serbia -san_marino text(can:be:found:in) southern_europe -san_marino text(was:situated:in) europe -san_marino text(was:a:neighboring:country:of) italy -mauritania text(is:situated:in) western_africa -mauritania text(is:located:in) africa -mauritania text(neighbors:with) algeria -mauritania text(was:a:neighbor:of) mali -mauritania text(is:a:neighbor:of) western_sahara -mauritania text(is:a:neighboring:state:to) senegal -trinidad_and_tobago text(was:located:in) caribbean -trinidad_and_tobago text(can:be:found:in) americas -bahrain text(was:positioned:in) western_asia -bahrain text(is:positioned:in) asia -myanmar text(was:a:neighboring:state:to) india -myanmar text(borders:with) bangladesh -myanmar text(borders) china -myanmar text(is:butted:against) laos -myanmar text(was:butted:against) thailand -iraq text(was:adjacent:to) turkey -iraq text(is:adjacent:to) saudi_arabia -iraq text(neighbors) iran -iraq text(is:a:neighboring:country:of) jordan -iraq text(was:a:neighboring:country:of) kuwait -iraq text(neighbors:with) syria -south_georgia text(was:sited:in) south_america -south_georgia text(is:sited:in) americas -iceland text(was:localized:in) northern_europe -iceland text(is:localized:in) europe -dr_congo text(was:present:in) middle_africa -dr_congo text(is:present:in) africa -dr_congo text(was:a:neighbor:of) uganda -dr_congo text(is:a:neighbor:of) tanzania -dr_congo text(is:a:neighboring:state:to) republic_of_the_congo -dr_congo text(was:a:neighboring:state:to) central_african_republic -dr_congo text(borders:with) angola -dr_congo text(borders) rwanda -dr_congo text(is:butted:against) south_sudan -dr_congo text(was:butted:against) zambia -dr_congo text(was:adjacent:to) burundi -seychelles text(is:still:in) eastern_africa -seychelles text(was:still:in) africa -kyrgyzstan text(is:adjacent:to) china -kyrgyzstan text(neighbors) kazakhstan +romania text(is:butted:against) serbia +san_marino text(was:still:in) southern_europe +san_marino text(was:currently:in) europe +san_marino text(was:butted:against) italy +mauritania text(is:currently:in) western_africa +mauritania text(was:situated:in) africa +mauritania text(is:a:neighboring:country:of) algeria +mauritania text(was:a:neighboring:country:of) mali +mauritania text(was:adjacent:to) western_sahara +mauritania text(is:adjacent:to) senegal +trinidad_and_tobago text(is:situated:in) caribbean +trinidad_and_tobago text(is:located:in) americas +bahrain text(was:located:in) western_asia +bahrain text(could:be:found:in) asia +myanmar text(was:a:neighbor:of) india +myanmar text(is:a:neighbor:of) bangladesh +myanmar text(is:a:neighboring:state:to) china +myanmar text(was:a:neighboring:state:to) laos +myanmar text(borders:with) thailand +iraq text(neighbors:withborders) turkey +iraq text(neighbors) saudi_arabia +iraq text(is:butted:against) iran +iraq text(was:butted:against) jordan +iraq text(is:a:neighboring:country:of) kuwait +iraq text(was:a:neighboring:country:of) syria +south_georgia text(can:be:found:in) south_america +south_georgia text(was:positioned:in) americas +iceland text(is:positioned:in) northern_europe +iceland text(was:sited:in) europe +dr_congo text(is:sited:in) middle_africa +dr_congo text(is:placed:in) africa +dr_congo text(was:adjacent:to) uganda +dr_congo text(is:adjacent:to) tanzania +dr_congo text(was:a:neighbor:of) republic_of_the_congo +dr_congo text(is:a:neighbor:of) central_african_republic +dr_congo text(is:a:neighboring:state:to) angola +dr_congo text(was:a:neighboring:state:to) rwanda +dr_congo text(borders:with) south_sudan +dr_congo text(neighbors:withborders) zambia +dr_congo text(neighbors) burundi +seychelles text(was:placed:in) eastern_africa +seychelles text(was:localized:in) africa +kyrgyzstan text(is:butted:against) china +kyrgyzstan text(was:butted:against) kazakhstan kyrgyzstan text(is:a:neighboring:country:of) tajikistan kyrgyzstan text(was:a:neighboring:country:of) uzbekistan -botswana text(was:currently:in) southern_africa -botswana text(is:currently:in) africa -botswana text(neighbors:with) zimbabwe -botswana text(was:a:neighbor:of) namibia -botswana text(is:a:neighbor:of) zambia -botswana text(is:a:neighboring:state:to) south_africa -faroe_islands text(is:placed:in) northern_europe -faroe_islands text(was:placed:in) europe -jamaica text(can:be:found:in) caribbean -jamaica text(was:situated:in) americas -american_samoa text(is:situated:in) polynesia -american_samoa text(is:located:in) oceania -lesotho text(was:located:in) southern_africa -lesotho text(can:be:found:in) africa -lesotho text(was:a:neighboring:state:to) south_africa -sri_lanka text(borders:with) india -belgium text(was:positioned:in) western_europe -belgium text(is:positioned:in) europe -belgium text(borders) germany -belgium text(is:butted:against) luxembourg -belgium text(was:butted:against) france -belgium text(was:adjacent:to) netherlands -qatar text(was:sited:in) western_asia -qatar text(is:sited:in) asia -qatar text(is:adjacent:to) saudi_arabia -solomon_islands text(was:localized:in) melanesia -solomon_islands text(is:localized:in) oceania -syria text(was:present:in) western_asia -syria text(is:present:in) asia -syria text(neighbors) israel -syria text(is:a:neighboring:country:of) turkey -syria text(was:a:neighboring:country:of) jordan -syria text(neighbors:with) lebanon +botswana text(is:localized:in) southern_africa +botswana text(was:present:in) africa +botswana text(was:adjacent:to) zimbabwe +botswana text(is:adjacent:to) namibia +botswana text(was:a:neighbor:of) zambia +botswana text(is:a:neighbor:of) south_africa +faroe_islands text(is:present:in) northern_europe +faroe_islands text(is:still:in) europe +jamaica text(was:still:in) caribbean +jamaica text(was:currently:in) americas +american_samoa text(is:currently:in) polynesia +american_samoa text(was:situated:in) oceania +lesotho text(is:situated:in) southern_africa +lesotho text(is:located:in) africa +lesotho text(is:a:neighboring:state:to) south_africa +sri_lanka text(was:a:neighboring:state:to) india +belgium text(was:located:in) western_europe +belgium text(could:be:found:in) europe +belgium text(borders:with) germany +belgium text(neighbors:withborders) luxembourg +belgium text(neighbors) france +belgium text(is:butted:against) netherlands +qatar text(can:be:found:in) western_asia +qatar text(was:positioned:in) asia +qatar text(was:butted:against) saudi_arabia +solomon_islands text(is:positioned:in) melanesia +solomon_islands text(was:sited:in) oceania +syria text(is:sited:in) western_asia +syria text(is:placed:in) asia +syria text(is:a:neighboring:country:of) israel +syria text(was:a:neighboring:country:of) turkey +syria text(was:adjacent:to) jordan +syria text(is:adjacent:to) lebanon syria text(was:a:neighbor:of) iraq -india text(is:still:in) southern_asia -india text(was:still:in) asia +india text(was:placed:in) southern_asia +india text(was:localized:in) asia india text(is:a:neighbor:of) afghanistan india text(is:a:neighboring:state:to) bhutan india text(was:a:neighboring:state:to) bangladesh india text(borders:with) china -india text(borders) nepal -india text(is:butted:against) myanmar -india text(was:butted:against) pakistan -india text(was:adjacent:to) sri_lanka -morocco text(is:adjacent:to) algeria -morocco text(neighbors) spain -morocco text(is:a:neighboring:country:of) western_sahara -kenya text(was:currently:in) eastern_africa -kenya text(is:currently:in) africa -kenya text(was:a:neighboring:country:of) uganda -kenya text(neighbors:with) tanzania -kenya text(was:a:neighbor:of) somalia -kenya text(is:a:neighbor:of) south_sudan -kenya text(is:a:neighboring:state:to) ethiopia -south_sudan text(is:placed:in) middle_africa -south_sudan text(was:placed:in) africa -south_sudan text(was:a:neighboring:state:to) uganda -south_sudan text(borders:with) dr_congo -south_sudan text(borders) kenya +india text(neighbors:withborders) nepal +india text(neighbors) myanmar +india text(is:butted:against) pakistan +india text(was:butted:against) sri_lanka +morocco text(is:a:neighboring:country:of) algeria +morocco text(was:a:neighboring:country:of) spain +morocco text(was:adjacent:to) western_sahara +kenya text(is:localized:in) eastern_africa +kenya text(was:present:in) africa +kenya text(is:adjacent:to) uganda +kenya text(was:a:neighbor:of) tanzania +kenya text(is:a:neighbor:of) somalia +kenya text(is:a:neighboring:state:to) south_sudan +kenya text(was:a:neighboring:state:to) ethiopia +south_sudan text(is:present:in) middle_africa +south_sudan text(is:still:in) africa +south_sudan text(borders:with) uganda +south_sudan text(neighbors:withborders) dr_congo +south_sudan text(neighbors) kenya south_sudan text(is:butted:against) central_african_republic south_sudan text(was:butted:against) sudan -south_sudan text(was:adjacent:to) ethiopia -ghana text(is:adjacent:to) burkina_faso -ghana text(neighbors) ivory_coast -ghana text(is:a:neighboring:country:of) togo -tajikistan text(can:be:found:in) central_asia -tajikistan text(was:situated:in) asia -tajikistan text(was:a:neighboring:country:of) china -tajikistan text(neighbors:with) kyrgyzstan -tajikistan text(was:a:neighbor:of) afghanistan -tajikistan text(is:a:neighbor:of) uzbekistan -marshall_islands text(is:situated:in) micronesia -marshall_islands text(is:located:in) oceania -cameroon text(was:located:in) middle_africa -cameroon text(can:be:found:in) africa -cameroon text(is:a:neighboring:state:to) chad -cameroon text(was:a:neighboring:state:to) republic_of_the_congo -cameroon text(borders:with) gabon -cameroon text(borders) equatorial_guinea -cameroon text(is:butted:against) central_african_republic -cameroon text(was:butted:against) nigeria -nauru text(was:positioned:in) micronesia -nauru text(is:positioned:in) oceania -thailand text(was:adjacent:to) cambodia -thailand text(is:adjacent:to) myanmar -thailand text(neighbors) laos -thailand text(is:a:neighboring:country:of) malaysia -sudan text(was:a:neighboring:country:of) chad -sudan text(neighbors:with) libya -sudan text(was:a:neighbor:of) south_sudan -sudan text(is:a:neighbor:of) eritrea -sudan text(is:a:neighboring:state:to) central_african_republic -sudan text(was:a:neighboring:state:to) egypt -sudan text(borders:with) ethiopia -chad text(was:sited:in) middle_africa -chad text(is:sited:in) africa -chad text(borders) libya -chad text(is:butted:against) niger -chad text(was:butted:against) south_sudan +south_sudan text(is:a:neighboring:country:of) ethiopia +ghana text(was:a:neighboring:country:of) burkina_faso +ghana text(was:adjacent:to) ivory_coast +ghana text(is:adjacent:to) togo +tajikistan text(was:still:in) central_asia +tajikistan text(was:currently:in) asia +tajikistan text(was:a:neighbor:of) china +tajikistan text(is:a:neighbor:of) kyrgyzstan +tajikistan text(is:a:neighboring:state:to) afghanistan +tajikistan text(was:a:neighboring:state:to) uzbekistan +marshall_islands text(is:currently:in) micronesia +marshall_islands text(was:situated:in) oceania +cameroon text(is:situated:in) middle_africa +cameroon text(is:located:in) africa +cameroon text(borders:with) chad +cameroon text(neighbors:withborders) republic_of_the_congo +cameroon text(neighbors) gabon +cameroon text(is:butted:against) equatorial_guinea +cameroon text(was:butted:against) central_african_republic +cameroon text(is:a:neighboring:country:of) nigeria +nauru text(was:located:in) micronesia +nauru text(could:be:found:in) oceania +thailand text(was:a:neighboring:country:of) cambodia +thailand text(was:adjacent:to) myanmar +thailand text(is:adjacent:to) laos +thailand text(was:a:neighbor:of) malaysia +sudan text(is:a:neighbor:of) chad +sudan text(is:a:neighboring:state:to) libya +sudan text(was:a:neighboring:state:to) south_sudan +sudan text(borders:with) eritrea +sudan text(neighbors:withborders) central_african_republic +sudan text(neighbors) egypt +sudan text(is:butted:against) ethiopia +chad text(can:be:found:in) middle_africa +chad text(was:positioned:in) africa +chad text(was:butted:against) libya +chad text(is:a:neighboring:country:of) niger +chad text(was:a:neighboring:country:of) south_sudan chad text(was:adjacent:to) cameroon chad text(is:adjacent:to) central_african_republic -chad text(neighbors) nigeria -vanuatu text(was:localized:in) melanesia -vanuatu text(is:localized:in) oceania -cape_verde text(was:present:in) western_africa -cape_verde text(is:present:in) africa -falkland_islands text(is:still:in) south_america -falkland_islands text(was:still:in) americas -liberia text(was:currently:in) western_africa -liberia text(is:currently:in) africa -liberia text(is:a:neighboring:country:of) ivory_coast -liberia text(was:a:neighboring:country:of) sierra_leone -liberia text(neighbors:with) guinea -cambodia text(is:placed:in) south-eastern_asia -cambodia text(was:placed:in) asia -cambodia text(was:a:neighbor:of) vietnam -cambodia text(is:a:neighbor:of) thailand -cambodia text(is:a:neighboring:state:to) laos -zimbabwe text(was:a:neighboring:state:to) zambia -zimbabwe text(borders:with) south_africa -zimbabwe text(borders) botswana -zimbabwe text(is:butted:against) mozambique -comoros text(can:be:found:in) eastern_africa -comoros text(was:situated:in) africa -guam text(is:situated:in) micronesia -guam text(is:located:in) oceania -bahamas text(was:located:in) caribbean -bahamas text(can:be:found:in) americas -lebanon text(was:positioned:in) western_asia -lebanon text(is:positioned:in) asia -lebanon text(was:butted:against) israel -lebanon text(was:adjacent:to) syria -sint_maarten text(was:sited:in) caribbean -sint_maarten text(is:sited:in) americas -sint_maarten text(is:adjacent:to) saint_martin -ethiopia text(was:localized:in) eastern_africa -ethiopia text(is:localized:in) africa -ethiopia text(neighbors) somalia -ethiopia text(is:a:neighboring:country:of) kenya -ethiopia text(was:a:neighboring:country:of) eritrea -ethiopia text(neighbors:with) south_sudan -ethiopia text(was:a:neighbor:of) djibouti -ethiopia text(is:a:neighbor:of) sudan -united_states_virgin_islands text(was:present:in) caribbean -united_states_virgin_islands text(is:present:in) americas -guinea-bissau text(is:still:in) western_africa -guinea-bissau text(was:still:in) africa -guinea-bissau text(is:a:neighboring:state:to) guinea -guinea-bissau text(was:a:neighboring:state:to) senegal -libya text(was:currently:in) northern_africa -libya text(is:currently:in) africa -libya text(borders:with) chad -libya text(borders) tunisia -libya text(is:butted:against) niger -libya text(was:butted:against) algeria -libya text(was:adjacent:to) egypt -libya text(is:adjacent:to) sudan -bhutan text(is:placed:in) southern_asia -bhutan text(was:placed:in) asia -bhutan text(neighbors) china -bhutan text(is:a:neighboring:country:of) india -macau text(can:be:found:in) eastern_asia -macau text(was:situated:in) asia -macau text(was:a:neighboring:country:of) china -french_polynesia text(is:situated:in) polynesia -french_polynesia text(is:located:in) oceania -somalia text(was:located:in) eastern_africa -somalia text(can:be:found:in) africa -somalia text(neighbors:with) djibouti -somalia text(was:a:neighbor:of) kenya -somalia text(is:a:neighbor:of) ethiopia -saint_barthélemy text(was:positioned:in) caribbean -saint_barthélemy text(is:positioned:in) americas -russia text(was:sited:in) eastern_europe -russia text(is:sited:in) europe -russia text(is:a:neighboring:state:to) ukraine -russia text(was:a:neighboring:state:to) belarus -russia text(borders:with) china -russia text(borders) kazakhstan -russia text(is:butted:against) norway -russia text(was:butted:against) poland -russia text(was:adjacent:to) azerbaijan -russia text(is:adjacent:to) lithuania -russia text(neighbors) estonia -russia text(is:a:neighboring:country:of) north_korea -russia text(was:a:neighboring:country:of) finland -russia text(neighbors:with) mongolia -russia text(was:a:neighbor:of) latvia -russia text(is:a:neighbor:of) georgia -new_zealand text(was:localized:in) australia_and_new_zealand -new_zealand text(is:localized:in) oceania -panama text(was:present:in) central_america -panama text(is:present:in) americas -panama text(is:a:neighboring:state:to) costa_rica -panama text(was:a:neighboring:state:to) colombia -papua_new_guinea text(is:still:in) melanesia -papua_new_guinea text(was:still:in) oceania -papua_new_guinea text(borders:with) indonesia -north_korea text(borders) china -north_korea text(is:butted:against) south_korea -north_korea text(was:butted:against) russia -latvia text(was:currently:in) northern_europe -latvia text(is:currently:in) europe -latvia text(was:adjacent:to) lithuania -latvia text(is:adjacent:to) belarus -latvia text(neighbors) russia -latvia text(is:a:neighboring:country:of) estonia -oman text(is:placed:in) western_asia -oman text(was:placed:in) asia -oman text(was:a:neighboring:country:of) saudi_arabia -oman text(neighbors:with) yemen -oman text(was:a:neighbor:of) united_arab_emirates -saint_pierre_and_miquelon text(can:be:found:in) northern_america -saint_pierre_and_miquelon text(was:situated:in) americas -martinique text(is:situated:in) caribbean -martinique text(is:located:in) americas -united_kingdom text(was:located:in) northern_europe -united_kingdom text(can:be:found:in) europe -united_kingdom text(is:a:neighbor:of) ireland -israel text(was:positioned:in) western_asia -israel text(is:positioned:in) asia -israel text(is:a:neighboring:state:to) lebanon -israel text(was:a:neighboring:state:to) egypt -israel text(borders:with) jordan -israel text(borders) syria -jersey text(was:sited:in) northern_europe -jersey text(is:sited:in) europe -pitcairn_islands text(was:localized:in) polynesia -pitcairn_islands text(is:localized:in) oceania -togo text(was:present:in) western_africa -togo text(is:present:in) africa -togo text(is:butted:against) burkina_faso -togo text(was:butted:against) ghana -togo text(was:adjacent:to) benin -kiribati text(is:still:in) micronesia -kiribati text(was:still:in) oceania -iran text(was:currently:in) southern_asia -iran text(is:currently:in) asia -iran text(is:adjacent:to) afghanistan -iran text(neighbors) turkmenistan -iran text(is:a:neighboring:country:of) turkey -iran text(was:a:neighboring:country:of) armenia -iran text(neighbors:with) azerbaijan -iran text(was:a:neighbor:of) pakistan -iran text(is:a:neighbor:of) iraq -saint_martin text(is:placed:in) caribbean -saint_martin text(was:placed:in) americas -saint_martin text(is:a:neighboring:state:to) sint_maarten -dominican_republic text(can:be:found:in) caribbean -dominican_republic text(was:situated:in) americas -dominican_republic text(was:a:neighboring:state:to) haiti -denmark text(borders:with) germany -bermuda text(is:situated:in) northern_america -bermuda text(is:located:in) americas -chile text(borders) argentina -chile text(is:butted:against) bolivia -chile text(was:butted:against) peru -kosovo text(was:located:in) eastern_europe -kosovo text(can:be:found:in) europe -kosovo text(was:adjacent:to) serbia -kosovo text(is:adjacent:to) albania +chad text(was:a:neighbor:of) nigeria +vanuatu text(is:positioned:in) melanesia +vanuatu text(was:sited:in) oceania +cape_verde text(is:sited:in) western_africa +cape_verde text(is:placed:in) africa +falkland_islands text(was:placed:in) south_america +falkland_islands text(was:localized:in) americas +liberia text(is:localized:in) western_africa +liberia text(was:present:in) africa +liberia text(is:a:neighbor:of) ivory_coast +liberia text(is:a:neighboring:state:to) sierra_leone +liberia text(was:a:neighboring:state:to) guinea +cambodia text(is:present:in) south-eastern_asia +cambodia text(is:still:in) asia +cambodia text(borders:with) vietnam +cambodia text(neighbors:withborders) thailand +cambodia text(neighbors) laos +zimbabwe text(is:butted:against) zambia +zimbabwe text(was:butted:against) south_africa +zimbabwe text(is:a:neighboring:country:of) botswana +zimbabwe text(was:a:neighboring:country:of) mozambique +comoros text(was:still:in) eastern_africa +comoros text(was:currently:in) africa +guam text(is:currently:in) micronesia +guam text(was:situated:in) oceania +bahamas text(is:situated:in) caribbean +bahamas text(is:located:in) americas +lebanon text(was:located:in) western_asia +lebanon text(could:be:found:in) asia +lebanon text(was:adjacent:to) israel +lebanon text(is:adjacent:to) syria +sint_maarten text(can:be:found:in) caribbean +sint_maarten text(was:positioned:in) americas +sint_maarten text(was:a:neighbor:of) saint_martin +ethiopia text(is:positioned:in) eastern_africa +ethiopia text(was:sited:in) africa +ethiopia text(is:a:neighbor:of) somalia +ethiopia text(is:a:neighboring:state:to) kenya +ethiopia text(was:a:neighboring:state:to) eritrea +ethiopia text(borders:with) south_sudan +ethiopia text(neighbors:withborders) djibouti +ethiopia text(neighbors) sudan +united_states_virgin_islands text(is:sited:in) caribbean +united_states_virgin_islands text(is:placed:in) americas +guinea-bissau text(was:placed:in) western_africa +guinea-bissau text(was:localized:in) africa +guinea-bissau text(is:butted:against) guinea +guinea-bissau text(was:butted:against) senegal +libya text(is:localized:in) northern_africa +libya text(was:present:in) africa +libya text(is:a:neighboring:country:of) chad +libya text(was:a:neighboring:country:of) tunisia +libya text(was:adjacent:to) niger +libya text(is:adjacent:to) algeria +libya text(was:a:neighbor:of) egypt +libya text(is:a:neighbor:of) sudan +bhutan text(is:present:in) southern_asia +bhutan text(is:still:in) asia +bhutan text(is:a:neighboring:state:to) china +bhutan text(was:a:neighboring:state:to) india +macau text(was:still:in) eastern_asia +macau text(was:currently:in) asia +macau text(borders:with) china +french_polynesia text(is:currently:in) polynesia +french_polynesia text(was:situated:in) oceania +somalia text(is:situated:in) eastern_africa +somalia text(is:located:in) africa +somalia text(neighbors:withborders) djibouti +somalia text(neighbors) kenya +somalia text(is:butted:against) ethiopia +saint_barthélemy text(was:located:in) caribbean +saint_barthélemy text(could:be:found:in) americas +russia text(can:be:found:in) eastern_europe +russia text(was:positioned:in) europe +russia text(was:butted:against) ukraine +russia text(is:a:neighboring:country:of) belarus +russia text(was:a:neighboring:country:of) china +russia text(was:adjacent:to) kazakhstan +russia text(is:adjacent:to) norway +russia text(was:a:neighbor:of) poland +russia text(is:a:neighbor:of) azerbaijan +russia text(is:a:neighboring:state:to) lithuania +russia text(was:a:neighboring:state:to) estonia +russia text(borders:with) north_korea +russia text(neighbors:withborders) finland +russia text(neighbors) mongolia +russia text(is:butted:against) latvia +russia text(was:butted:against) georgia +new_zealand text(is:positioned:in) australia_and_new_zealand +new_zealand text(was:sited:in) oceania +panama text(is:sited:in) central_america +panama text(is:placed:in) americas +panama text(is:a:neighboring:country:of) costa_rica +panama text(was:a:neighboring:country:of) colombia +papua_new_guinea text(was:placed:in) melanesia +papua_new_guinea text(was:localized:in) oceania +papua_new_guinea text(was:adjacent:to) indonesia +north_korea text(is:adjacent:to) china +north_korea text(was:a:neighbor:of) south_korea +north_korea text(is:a:neighbor:of) russia +latvia text(is:localized:in) northern_europe +latvia text(was:present:in) europe +latvia text(is:a:neighboring:state:to) lithuania +latvia text(was:a:neighboring:state:to) belarus +latvia text(borders:with) russia +latvia text(neighbors:withborders) estonia +oman text(is:present:in) western_asia +oman text(is:still:in) asia +oman text(neighbors) saudi_arabia +oman text(is:butted:against) yemen +oman text(was:butted:against) united_arab_emirates +saint_pierre_and_miquelon text(was:still:in) northern_america +saint_pierre_and_miquelon text(was:currently:in) americas +martinique text(is:currently:in) caribbean +martinique text(was:situated:in) americas +united_kingdom text(is:situated:in) northern_europe +united_kingdom text(is:located:in) europe +united_kingdom text(is:a:neighboring:country:of) ireland +israel text(was:located:in) western_asia +israel text(could:be:found:in) asia +israel text(was:a:neighboring:country:of) lebanon +israel text(was:adjacent:to) egypt +israel text(is:adjacent:to) jordan +israel text(was:a:neighbor:of) syria +jersey text(can:be:found:in) northern_europe +jersey text(was:positioned:in) europe +pitcairn_islands text(is:positioned:in) polynesia +pitcairn_islands text(was:sited:in) oceania +togo text(is:sited:in) western_africa +togo text(is:placed:in) africa +togo text(is:a:neighbor:of) burkina_faso +togo text(is:a:neighboring:state:to) ghana +togo text(was:a:neighboring:state:to) benin +kiribati text(was:placed:in) micronesia +kiribati text(was:localized:in) oceania +iran text(is:localized:in) southern_asia +iran text(was:present:in) asia +iran text(borders:with) afghanistan +iran text(neighbors:withborders) turkmenistan +iran text(neighbors) turkey +iran text(is:butted:against) armenia +iran text(was:butted:against) azerbaijan +iran text(is:a:neighboring:country:of) pakistan +iran text(was:a:neighboring:country:of) iraq +saint_martin text(is:present:in) caribbean +saint_martin text(is:still:in) americas +saint_martin text(was:adjacent:to) sint_maarten +dominican_republic text(was:still:in) caribbean +dominican_republic text(was:currently:in) americas +dominican_republic text(is:adjacent:to) haiti +denmark text(was:a:neighbor:of) germany +bermuda text(is:currently:in) northern_america +bermuda text(was:situated:in) americas +chile text(is:a:neighbor:of) argentina +chile text(is:a:neighboring:state:to) bolivia +chile text(was:a:neighboring:state:to) peru +kosovo text(is:situated:in) eastern_europe +kosovo text(is:located:in) europe +kosovo text(borders:with) serbia +kosovo text(neighbors:withborders) albania kosovo text(neighbors) macedonia -kosovo text(is:a:neighboring:country:of) montenegro -saint_kitts_and_nevis text(was:positioned:in) caribbean -saint_kitts_and_nevis text(is:positioned:in) americas -eritrea text(was:a:neighboring:country:of) djibouti -eritrea text(neighbors:with) sudan -eritrea text(was:a:neighbor:of) ethiopia -equatorial_guinea text(was:sited:in) middle_africa -equatorial_guinea text(is:sited:in) africa -equatorial_guinea text(is:a:neighbor:of) gabon -equatorial_guinea text(is:a:neighboring:state:to) cameroon -niger text(was:localized:in) western_africa -niger text(is:localized:in) africa -niger text(was:a:neighboring:state:to) chad -niger text(borders:with) libya -niger text(borders) burkina_faso -niger text(is:butted:against) benin -niger text(was:butted:against) mali -niger text(was:adjacent:to) algeria -niger text(is:adjacent:to) nigeria -anguilla text(was:present:in) caribbean -anguilla text(is:present:in) americas -rwanda text(is:still:in) eastern_africa -rwanda text(was:still:in) africa -rwanda text(neighbors) burundi -rwanda text(is:a:neighboring:country:of) tanzania -rwanda text(was:a:neighboring:country:of) uganda -rwanda text(neighbors:with) dr_congo -united_arab_emirates text(was:currently:in) western_asia -united_arab_emirates text(is:currently:in) asia -united_arab_emirates text(was:a:neighbor:of) oman -united_arab_emirates text(is:a:neighbor:of) saudi_arabia -estonia text(is:placed:in) northern_europe -estonia text(was:placed:in) europe -estonia text(is:a:neighboring:state:to) latvia -estonia text(was:a:neighboring:state:to) russia -greece text(can:be:found:in) southern_europe -greece text(was:situated:in) europe -greece text(borders:with) bulgaria -greece text(borders) albania -greece text(is:butted:against) macedonia -greece text(was:butted:against) turkey -senegal text(is:situated:in) western_africa -senegal text(is:located:in) africa -senegal text(was:adjacent:to) guinea-bissau -senegal text(is:adjacent:to) mauritania -senegal text(neighbors) mali +kosovo text(is:butted:against) montenegro +saint_kitts_and_nevis text(was:located:in) caribbean +saint_kitts_and_nevis text(could:be:found:in) americas +eritrea text(was:butted:against) djibouti +eritrea text(is:a:neighboring:country:of) sudan +eritrea text(was:a:neighboring:country:of) ethiopia +equatorial_guinea text(can:be:found:in) middle_africa +equatorial_guinea text(was:positioned:in) africa +equatorial_guinea text(was:adjacent:to) gabon +equatorial_guinea text(is:adjacent:to) cameroon +niger text(is:positioned:in) western_africa +niger text(was:sited:in) africa +niger text(was:a:neighbor:of) chad +niger text(is:a:neighbor:of) libya +niger text(is:a:neighboring:state:to) burkina_faso +niger text(was:a:neighboring:state:to) benin +niger text(borders:with) mali +niger text(neighbors:withborders) algeria +niger text(neighbors) nigeria +anguilla text(is:sited:in) caribbean +anguilla text(is:placed:in) americas +rwanda text(was:placed:in) eastern_africa +rwanda text(was:localized:in) africa +rwanda text(is:butted:against) burundi +rwanda text(was:butted:against) tanzania +rwanda text(is:a:neighboring:country:of) uganda +rwanda text(was:a:neighboring:country:of) dr_congo +united_arab_emirates text(is:localized:in) western_asia +united_arab_emirates text(was:present:in) asia +united_arab_emirates text(was:adjacent:to) oman +united_arab_emirates text(is:adjacent:to) saudi_arabia +estonia text(is:present:in) northern_europe +estonia text(is:still:in) europe +estonia text(was:a:neighbor:of) latvia +estonia text(is:a:neighbor:of) russia +greece text(was:still:in) southern_europe +greece text(was:currently:in) europe +greece text(is:a:neighboring:state:to) bulgaria +greece text(was:a:neighboring:state:to) albania +greece text(borders:with) macedonia +greece text(neighbors:withborders) turkey +senegal text(is:currently:in) western_africa +senegal text(was:situated:in) africa +senegal text(neighbors) guinea-bissau +senegal text(is:butted:against) mauritania +senegal text(was:butted:against) mali senegal text(is:a:neighboring:country:of) gambia senegal text(was:a:neighboring:country:of) guinea -guadeloupe text(was:located:in) caribbean -guadeloupe text(can:be:found:in) americas -monaco text(neighbors:with) france -djibouti text(was:a:neighbor:of) eritrea -djibouti text(is:a:neighbor:of) somalia -djibouti text(is:a:neighboring:state:to) ethiopia -indonesia text(was:a:neighboring:state:to) papua_new_guinea -indonesia text(borders:with) timor-leste -indonesia text(borders) malaysia -british_virgin_islands text(was:positioned:in) caribbean -british_virgin_islands text(is:positioned:in) americas -cook_islands text(was:sited:in) polynesia -cook_islands text(is:sited:in) oceania -uganda text(was:localized:in) eastern_africa -uganda text(is:localized:in) africa -uganda text(is:butted:against) tanzania -uganda text(was:butted:against) dr_congo -uganda text(was:adjacent:to) kenya -uganda text(is:adjacent:to) south_sudan -uganda text(neighbors) rwanda -macedonia text(was:present:in) southern_europe -macedonia text(is:present:in) europe -macedonia text(is:a:neighboring:country:of) kosovo -macedonia text(was:a:neighboring:country:of) greece -macedonia text(neighbors:with) albania +guadeloupe text(is:situated:in) caribbean +guadeloupe text(is:located:in) americas +monaco text(was:adjacent:to) france +djibouti text(is:adjacent:to) eritrea +djibouti text(was:a:neighbor:of) somalia +djibouti text(is:a:neighbor:of) ethiopia +indonesia text(is:a:neighboring:state:to) papua_new_guinea +indonesia text(was:a:neighboring:state:to) timor-leste +indonesia text(borders:with) malaysia +british_virgin_islands text(was:located:in) caribbean +british_virgin_islands text(could:be:found:in) americas +cook_islands text(can:be:found:in) polynesia +cook_islands text(was:positioned:in) oceania +uganda text(is:positioned:in) eastern_africa +uganda text(was:sited:in) africa +uganda text(neighbors:withborders) tanzania +uganda text(neighbors) dr_congo +uganda text(is:butted:against) kenya +uganda text(was:butted:against) south_sudan +uganda text(is:a:neighboring:country:of) rwanda +macedonia text(is:sited:in) southern_europe +macedonia text(is:placed:in) europe +macedonia text(was:a:neighboring:country:of) kosovo +macedonia text(was:adjacent:to) greece +macedonia text(is:adjacent:to) albania macedonia text(was:a:neighbor:of) serbia macedonia text(is:a:neighbor:of) bulgaria -tunisia text(is:still:in) northern_africa -tunisia text(was:still:in) africa +tunisia text(was:placed:in) northern_africa +tunisia text(was:localized:in) africa tunisia text(is:a:neighboring:state:to) libya tunisia text(was:a:neighboring:state:to) algeria ecuador text(borders:with) peru -ecuador text(borders) colombia -brazil text(was:currently:in) south_america -brazil text(is:currently:in) americas -brazil text(is:butted:against) bolivia -brazil text(was:butted:against) colombia -brazil text(was:adjacent:to) paraguay -brazil text(is:adjacent:to) uruguay -brazil text(neighbors) french_guiana -brazil text(is:a:neighboring:country:of) suriname -brazil text(was:a:neighboring:country:of) venezuela -brazil text(neighbors:with) argentina -brazil text(was:a:neighbor:of) guyana -brazil text(is:a:neighbor:of) peru -paraguay text(is:placed:in) south_america -paraguay text(was:placed:in) americas -paraguay text(is:a:neighboring:state:to) argentina -paraguay text(was:a:neighboring:state:to) brazil -paraguay text(borders:with) bolivia -finland text(can:be:found:in) northern_europe -finland text(was:situated:in) europe -finland text(borders) norway +ecuador text(neighbors:withborders) colombia +brazil text(is:localized:in) south_america +brazil text(was:present:in) americas +brazil text(neighbors) bolivia +brazil text(is:butted:against) colombia +brazil text(was:butted:against) paraguay +brazil text(is:a:neighboring:country:of) uruguay +brazil text(was:a:neighboring:country:of) french_guiana +brazil text(was:adjacent:to) suriname +brazil text(is:adjacent:to) venezuela +brazil text(was:a:neighbor:of) argentina +brazil text(is:a:neighbor:of) guyana +brazil text(is:a:neighboring:state:to) peru +paraguay text(is:present:in) south_america +paraguay text(is:still:in) americas +paraguay text(was:a:neighboring:state:to) argentina +paraguay text(borders:with) brazil +paraguay text(neighbors:withborders) bolivia +finland text(was:still:in) northern_europe +finland text(was:currently:in) europe +finland text(neighbors) norway finland text(is:butted:against) sweden finland text(was:butted:against) russia -jordan text(was:adjacent:to) saudi_arabia -jordan text(is:adjacent:to) israel -jordan text(neighbors) iraq -jordan text(is:a:neighboring:country:of) syria -timor-leste text(was:a:neighboring:country:of) indonesia -montenegro text(is:situated:in) southern_europe -montenegro text(is:located:in) europe -montenegro text(neighbors:with) kosovo -montenegro text(was:a:neighbor:of) bosnia_and_herzegovina -montenegro text(is:a:neighbor:of) croatia -montenegro text(is:a:neighboring:state:to) serbia -montenegro text(was:a:neighboring:state:to) albania -peru text(was:located:in) south_america -peru text(can:be:found:in) americas -peru text(borders:with) ecuador -peru text(borders) bolivia -peru text(is:butted:against) chile -peru text(was:butted:against) brazil -peru text(was:adjacent:to) colombia -montserrat text(was:positioned:in) caribbean -montserrat text(is:positioned:in) americas -ukraine text(was:sited:in) eastern_europe -ukraine text(is:sited:in) europe -ukraine text(is:adjacent:to) slovakia -ukraine text(neighbors) belarus -ukraine text(is:a:neighboring:country:of) poland -ukraine text(was:a:neighboring:country:of) russia -ukraine text(neighbors:with) hungary -ukraine text(was:a:neighbor:of) moldova -ukraine text(is:a:neighbor:of) romania -dominica text(was:localized:in) caribbean -dominica text(is:localized:in) americas -turkmenistan text(is:a:neighboring:state:to) kazakhstan -turkmenistan text(was:a:neighboring:state:to) afghanistan -turkmenistan text(borders:with) uzbekistan -turkmenistan text(borders) iran -guernsey text(was:present:in) northern_europe -guernsey text(is:present:in) europe -gibraltar text(is:still:in) southern_europe -gibraltar text(was:still:in) europe -gibraltar text(is:butted:against) spain -switzerland text(was:currently:in) western_europe -switzerland text(is:currently:in) europe -switzerland text(was:butted:against) germany +jordan text(is:a:neighboring:country:of) saudi_arabia +jordan text(was:a:neighboring:country:of) israel +jordan text(was:adjacent:to) iraq +jordan text(is:adjacent:to) syria +timor-leste text(was:a:neighbor:of) indonesia +montenegro text(is:currently:in) southern_europe +montenegro text(was:situated:in) europe +montenegro text(is:a:neighbor:of) kosovo +montenegro text(is:a:neighboring:state:to) bosnia_and_herzegovina +montenegro text(was:a:neighboring:state:to) croatia +montenegro text(borders:with) serbia +montenegro text(neighbors:withborders) albania +peru text(is:situated:in) south_america +peru text(is:located:in) americas +peru text(neighbors) ecuador +peru text(is:butted:against) bolivia +peru text(was:butted:against) chile +peru text(is:a:neighboring:country:of) brazil +peru text(was:a:neighboring:country:of) colombia +montserrat text(was:located:in) caribbean +montserrat text(could:be:found:in) americas +ukraine text(can:be:found:in) eastern_europe +ukraine text(was:positioned:in) europe +ukraine text(was:adjacent:to) slovakia +ukraine text(is:adjacent:to) belarus +ukraine text(was:a:neighbor:of) poland +ukraine text(is:a:neighbor:of) russia +ukraine text(is:a:neighboring:state:to) hungary +ukraine text(was:a:neighboring:state:to) moldova +ukraine text(borders:with) romania +dominica text(is:positioned:in) caribbean +dominica text(was:sited:in) americas +turkmenistan text(neighbors:withborders) kazakhstan +turkmenistan text(neighbors) afghanistan +turkmenistan text(is:butted:against) uzbekistan +turkmenistan text(was:butted:against) iran +guernsey text(is:sited:in) northern_europe +guernsey text(is:placed:in) europe +gibraltar text(was:placed:in) southern_europe +gibraltar text(was:localized:in) europe +gibraltar text(is:a:neighboring:country:of) spain +switzerland text(is:localized:in) western_europe +switzerland text(was:present:in) europe +switzerland text(was:a:neighboring:country:of) germany switzerland text(was:adjacent:to) italy switzerland text(is:adjacent:to) austria -switzerland text(neighbors) france -switzerland text(is:a:neighboring:country:of) liechtenstein -austria text(is:placed:in) western_europe -austria text(was:placed:in) europe -austria text(was:a:neighboring:country:of) germany -austria text(neighbors:with) slovakia -austria text(was:a:neighbor:of) slovenia -austria text(is:a:neighbor:of) italy -austria text(is:a:neighboring:state:to) switzerland -austria text(was:a:neighboring:state:to) hungary -austria text(borders:with) liechtenstein -austria text(borders) czechia -hungary text(is:butted:against) ukraine -hungary text(was:butted:against) slovakia -hungary text(was:adjacent:to) slovenia -hungary text(is:adjacent:to) croatia -hungary text(neighbors) austria -hungary text(is:a:neighboring:country:of) serbia -hungary text(was:a:neighboring:country:of) romania -malawi text(can:be:found:in) eastern_africa -malawi text(was:situated:in) africa -malawi text(neighbors:with) zambia -malawi text(was:a:neighbor:of) tanzania -malawi text(is:a:neighbor:of) mozambique -hong_kong text(is:a:neighboring:state:to) china -liechtenstein text(is:situated:in) western_europe -liechtenstein text(is:located:in) europe -liechtenstein text(was:a:neighboring:state:to) switzerland -liechtenstein text(borders:with) austria -barbados text(was:located:in) caribbean -barbados text(can:be:found:in) americas -georgia text(was:positioned:in) western_asia -georgia text(is:positioned:in) asia -georgia text(borders) armenia -georgia text(is:butted:against) azerbaijan -georgia text(was:butted:against) russia -georgia text(was:adjacent:to) turkey -albania text(was:sited:in) southern_europe -albania text(is:sited:in) europe -albania text(is:adjacent:to) montenegro -albania text(neighbors) macedonia -albania text(is:a:neighboring:country:of) kosovo -albania text(was:a:neighboring:country:of) greece -kuwait text(was:localized:in) western_asia -kuwait text(is:localized:in) asia -kuwait text(neighbors:with) saudi_arabia -kuwait text(was:a:neighbor:of) iraq -south_africa text(was:present:in) southern_africa -south_africa text(is:present:in) africa -south_africa text(is:a:neighbor:of) mozambique -south_africa text(is:a:neighboring:state:to) botswana -south_africa text(was:a:neighboring:state:to) swaziland -south_africa text(borders:with) zimbabwe -south_africa text(borders) namibia -south_africa text(is:butted:against) lesotho -haiti text(is:still:in) caribbean -haiti text(was:still:in) americas -haiti text(was:butted:against) dominican_republic -afghanistan text(was:currently:in) southern_asia -afghanistan text(is:currently:in) asia -afghanistan text(was:adjacent:to) turkmenistan -afghanistan text(is:adjacent:to) china -afghanistan text(neighbors) tajikistan -afghanistan text(is:a:neighboring:country:of) uzbekistan -afghanistan text(was:a:neighboring:country:of) iran -afghanistan text(neighbors:with) pakistan -singapore text(is:placed:in) south-eastern_asia -singapore text(was:placed:in) asia -benin text(can:be:found:in) western_africa -benin text(was:situated:in) africa -benin text(was:a:neighbor:of) niger -benin text(is:a:neighbor:of) burkina_faso -benin text(is:a:neighboring:state:to) togo -benin text(was:a:neighboring:state:to) nigeria -åland_islands text(is:situated:in) northern_europe -åland_islands text(is:located:in) europe -croatia text(was:located:in) southern_europe -croatia text(can:be:found:in) europe -croatia text(borders:with) slovenia -croatia text(borders) bosnia_and_herzegovina -croatia text(is:butted:against) hungary -croatia text(was:butted:against) serbia -croatia text(was:adjacent:to) montenegro -sweden text(was:positioned:in) northern_europe -sweden text(is:positioned:in) europe -sweden text(is:adjacent:to) norway -sweden text(neighbors) finland -mexico text(is:a:neighboring:country:of) belize -mexico text(was:a:neighboring:country:of) united_states -mexico text(neighbors:with) guatemala -greenland text(was:sited:in) northern_america -greenland text(is:sited:in) americas -norfolk_island text(was:localized:in) australia_and_new_zealand -norfolk_island text(is:localized:in) oceania -nepal text(was:present:in) southern_asia -nepal text(is:present:in) asia -nepal text(was:a:neighbor:of) china -nepal text(is:a:neighbor:of) india -guatemala text(is:a:neighboring:state:to) belize -guatemala text(was:a:neighboring:state:to) el_salvador -guatemala text(borders:with) mexico -guatemala text(borders) honduras -south_korea text(is:still:in) eastern_asia -south_korea text(was:still:in) asia -south_korea text(is:butted:against) north_korea -moldova text(was:currently:in) eastern_europe -moldova text(is:currently:in) europe -moldova text(was:butted:against) ukraine -moldova text(was:adjacent:to) romania -mauritius text(is:placed:in) eastern_africa -mauritius text(was:placed:in) africa -belarus text(is:adjacent:to) ukraine -belarus text(neighbors) poland -belarus text(is:a:neighboring:country:of) lithuania -belarus text(was:a:neighboring:country:of) russia -belarus text(neighbors:with) latvia -bangladesh text(was:a:neighbor:of) myanmar -bangladesh text(is:a:neighbor:of) india -malaysia text(can:be:found:in) south-eastern_asia -malaysia text(was:situated:in) asia -malaysia text(is:a:neighboring:state:to) thailand -malaysia text(was:a:neighboring:state:to) indonesia -malaysia text(borders:with) brunei -bosnia_and_herzegovina text(is:situated:in) southern_europe -bosnia_and_herzegovina text(is:located:in) europe -bosnia_and_herzegovina text(borders) serbia -bosnia_and_herzegovina text(is:butted:against) croatia -bosnia_and_herzegovina text(was:butted:against) montenegro -luxembourg text(was:located:in) western_europe -luxembourg text(can:be:found:in) europe -luxembourg text(was:adjacent:to) germany -luxembourg text(is:adjacent:to) belgium +switzerland text(was:a:neighbor:of) france +switzerland text(is:a:neighbor:of) liechtenstein +austria text(is:present:in) western_europe +austria text(is:still:in) europe +austria text(is:a:neighboring:state:to) germany +austria text(was:a:neighboring:state:to) slovakia +austria text(borders:with) slovenia +austria text(neighbors:withborders) italy +austria text(neighbors) switzerland +austria text(is:butted:against) hungary +austria text(was:butted:against) liechtenstein +austria text(is:a:neighboring:country:of) czechia +hungary text(was:a:neighboring:country:of) ukraine +hungary text(was:adjacent:to) slovakia +hungary text(is:adjacent:to) slovenia +hungary text(was:a:neighbor:of) croatia +hungary text(is:a:neighbor:of) austria +hungary text(is:a:neighboring:state:to) serbia +hungary text(was:a:neighboring:state:to) romania +malawi text(was:still:in) eastern_africa +malawi text(was:currently:in) africa +malawi text(borders:with) zambia +malawi text(neighbors:withborders) tanzania +malawi text(neighbors) mozambique +hong_kong text(is:butted:against) china +liechtenstein text(is:currently:in) western_europe +liechtenstein text(was:situated:in) europe +liechtenstein text(was:butted:against) switzerland +liechtenstein text(is:a:neighboring:country:of) austria +barbados text(is:situated:in) caribbean +barbados text(is:located:in) americas +georgia text(was:located:in) western_asia +georgia text(could:be:found:in) asia +georgia text(was:a:neighboring:country:of) armenia +georgia text(was:adjacent:to) azerbaijan +georgia text(is:adjacent:to) russia +georgia text(was:a:neighbor:of) turkey +albania text(can:be:found:in) southern_europe +albania text(was:positioned:in) europe +albania text(is:a:neighbor:of) montenegro +albania text(is:a:neighboring:state:to) macedonia +albania text(was:a:neighboring:state:to) kosovo +albania text(borders:with) greece +kuwait text(is:positioned:in) western_asia +kuwait text(was:sited:in) asia +kuwait text(neighbors:withborders) saudi_arabia +kuwait text(neighbors) iraq +south_africa text(is:sited:in) southern_africa +south_africa text(is:placed:in) africa +south_africa text(is:butted:against) mozambique +south_africa text(was:butted:against) botswana +south_africa text(is:a:neighboring:country:of) swaziland +south_africa text(was:a:neighboring:country:of) zimbabwe +south_africa text(was:adjacent:to) namibia +south_africa text(is:adjacent:to) lesotho +haiti text(was:placed:in) caribbean +haiti text(was:localized:in) americas +haiti text(was:a:neighbor:of) dominican_republic +afghanistan text(is:localized:in) southern_asia +afghanistan text(was:present:in) asia +afghanistan text(is:a:neighbor:of) turkmenistan +afghanistan text(is:a:neighboring:state:to) china +afghanistan text(was:a:neighboring:state:to) tajikistan +afghanistan text(borders:with) uzbekistan +afghanistan text(neighbors:withborders) iran +afghanistan text(neighbors) pakistan +singapore text(is:present:in) south-eastern_asia +singapore text(is:still:in) asia +benin text(was:still:in) western_africa +benin text(was:currently:in) africa +benin text(is:butted:against) niger +benin text(was:butted:against) burkina_faso +benin text(is:a:neighboring:country:of) togo +benin text(was:a:neighboring:country:of) nigeria +åland_islands text(is:currently:in) northern_europe +åland_islands text(was:situated:in) europe +croatia text(is:situated:in) southern_europe +croatia text(is:located:in) europe +croatia text(was:adjacent:to) slovenia +croatia text(is:adjacent:to) bosnia_and_herzegovina +croatia text(was:a:neighbor:of) hungary +croatia text(is:a:neighbor:of) serbia +croatia text(is:a:neighboring:state:to) montenegro +sweden text(was:located:in) northern_europe +sweden text(could:be:found:in) europe +sweden text(was:a:neighboring:state:to) norway +sweden text(borders:with) finland +mexico text(neighbors:withborders) belize +mexico text(neighbors) united_states +mexico text(is:butted:against) guatemala +greenland text(can:be:found:in) northern_america +greenland text(was:positioned:in) americas +norfolk_island text(is:positioned:in) australia_and_new_zealand +norfolk_island text(was:sited:in) oceania +nepal text(is:sited:in) southern_asia +nepal text(is:placed:in) asia +nepal text(was:butted:against) china +nepal text(is:a:neighboring:country:of) india +guatemala text(was:a:neighboring:country:of) belize +guatemala text(was:adjacent:to) el_salvador +guatemala text(is:adjacent:to) mexico +guatemala text(was:a:neighbor:of) honduras +south_korea text(was:placed:in) eastern_asia +south_korea text(was:localized:in) asia +south_korea text(is:a:neighbor:of) north_korea +moldova text(is:localized:in) eastern_europe +moldova text(was:present:in) europe +moldova text(is:a:neighboring:state:to) ukraine +moldova text(was:a:neighboring:state:to) romania +mauritius text(is:present:in) eastern_africa +mauritius text(is:still:in) africa +belarus text(borders:with) ukraine +belarus text(neighbors:withborders) poland +belarus text(neighbors) lithuania +belarus text(is:butted:against) russia +belarus text(was:butted:against) latvia +bangladesh text(is:a:neighboring:country:of) myanmar +bangladesh text(was:a:neighboring:country:of) india +malaysia text(was:still:in) south-eastern_asia +malaysia text(was:currently:in) asia +malaysia text(was:adjacent:to) thailand +malaysia text(is:adjacent:to) indonesia +malaysia text(was:a:neighbor:of) brunei +bosnia_and_herzegovina text(is:currently:in) southern_europe +bosnia_and_herzegovina text(was:situated:in) europe +bosnia_and_herzegovina text(is:a:neighbor:of) serbia +bosnia_and_herzegovina text(is:a:neighboring:state:to) croatia +bosnia_and_herzegovina text(was:a:neighboring:state:to) montenegro +luxembourg text(is:situated:in) western_europe +luxembourg text(is:located:in) europe +luxembourg text(borders:with) germany +luxembourg text(neighbors:withborders) belgium luxembourg text(neighbors) france -italy text(was:positioned:in) southern_europe -italy text(is:positioned:in) europe -italy text(is:a:neighboring:country:of) slovenia -italy text(was:a:neighboring:country:of) switzerland -italy text(neighbors:with) austria -italy text(was:a:neighbor:of) france -italy text(is:a:neighbor:of) vatican_city -italy text(is:a:neighboring:state:to) san_marino -azerbaijan text(was:sited:in) western_asia -azerbaijan text(is:sited:in) asia -azerbaijan text(was:a:neighboring:state:to) turkey -azerbaijan text(borders:with) armenia -azerbaijan text(borders) russia -azerbaijan text(is:butted:against) iran -azerbaijan text(was:butted:against) georgia -honduras text(was:localized:in) central_america -honduras text(is:localized:in) americas -honduras text(was:adjacent:to) guatemala -honduras text(is:adjacent:to) nicaragua -honduras text(neighbors) el_salvador -mali text(was:present:in) western_africa -mali text(is:present:in) africa -mali text(is:a:neighboring:country:of) burkina_faso -mali text(was:a:neighboring:country:of) guinea -mali text(neighbors:with) mauritania -mali text(was:a:neighbor:of) niger -mali text(is:a:neighbor:of) senegal -mali text(is:a:neighboring:state:to) algeria -mali text(was:a:neighboring:state:to) ivory_coast -taiwan text(is:still:in) eastern_asia -taiwan text(was:still:in) asia -algeria text(was:currently:in) northern_africa -algeria text(is:currently:in) africa -algeria text(borders:with) libya -algeria text(borders) tunisia -algeria text(is:butted:against) mauritania -algeria text(was:butted:against) morocco -algeria text(was:adjacent:to) niger -algeria text(is:adjacent:to) mali -algeria text(neighbors) western_sahara +italy text(was:located:in) southern_europe +italy text(could:be:found:in) europe +italy text(is:butted:against) slovenia +italy text(was:butted:against) switzerland +italy text(is:a:neighboring:country:of) austria +italy text(was:a:neighboring:country:of) france +italy text(was:adjacent:to) vatican_city +italy text(is:adjacent:to) san_marino +azerbaijan text(can:be:found:in) western_asia +azerbaijan text(was:positioned:in) asia +azerbaijan text(was:a:neighbor:of) turkey +azerbaijan text(is:a:neighbor:of) armenia +azerbaijan text(is:a:neighboring:state:to) russia +azerbaijan text(was:a:neighboring:state:to) iran +azerbaijan text(borders:with) georgia +honduras text(is:positioned:in) central_america +honduras text(was:sited:in) americas +honduras text(neighbors:withborders) guatemala +honduras text(neighbors) nicaragua +honduras text(is:butted:against) el_salvador +mali text(is:sited:in) western_africa +mali text(is:placed:in) africa +mali text(was:butted:against) burkina_faso +mali text(is:a:neighboring:country:of) guinea +mali text(was:a:neighboring:country:of) mauritania +mali text(was:adjacent:to) niger +mali text(is:adjacent:to) senegal +mali text(was:a:neighbor:of) algeria +mali text(is:a:neighbor:of) ivory_coast +taiwan text(was:placed:in) eastern_asia +taiwan text(was:localized:in) asia +algeria text(is:localized:in) northern_africa +algeria text(was:present:in) africa +algeria text(is:a:neighboring:state:to) libya +algeria text(was:a:neighboring:state:to) tunisia +algeria text(borders:with) mauritania +algeria text(neighbors:withborders) morocco +algeria text(neighbors) niger +algeria text(is:butted:against) mali +algeria text(was:butted:against) western_sahara french_guiana text(is:a:neighboring:country:of) brazil french_guiana text(was:a:neighboring:country:of) suriname -yemen text(is:placed:in) western_asia -yemen text(was:placed:in) asia -yemen text(neighbors:with) oman -yemen text(was:a:neighbor:of) saudi_arabia -puerto_rico text(can:be:found:in) caribbean -puerto_rico text(was:situated:in) americas -saint_vincent_and_the_grenadines text(is:situated:in) caribbean -saint_vincent_and_the_grenadines text(is:located:in) americas -venezuela text(is:a:neighbor:of) brazil -venezuela text(is:a:neighboring:state:to) guyana -venezuela text(was:a:neighboring:state:to) colombia -grenada text(was:located:in) caribbean -grenada text(can:be:found:in) americas -united_states text(borders:with) canada -united_states text(borders) mexico -tokelau text(was:positioned:in) polynesia -tokelau text(is:positioned:in) oceania -slovenia text(was:sited:in) southern_europe -slovenia text(is:sited:in) europe -slovenia text(is:butted:against) austria -slovenia text(was:butted:against) croatia -slovenia text(was:adjacent:to) italy -slovenia text(is:adjacent:to) hungary -philippines text(was:localized:in) south-eastern_asia -philippines text(is:localized:in) asia -micronesia text(was:present:in) micronesia -micronesia text(is:present:in) oceania -china text(is:still:in) eastern_asia -china text(was:still:in) asia -china text(neighbors) afghanistan -china text(is:a:neighboring:country:of) bhutan -china text(was:a:neighboring:country:of) macau -china text(neighbors:with) india +yemen text(is:present:in) western_asia +yemen text(is:still:in) asia +yemen text(was:adjacent:to) oman +yemen text(is:adjacent:to) saudi_arabia +puerto_rico text(was:still:in) caribbean +puerto_rico text(was:currently:in) americas +saint_vincent_and_the_grenadines text(is:currently:in) caribbean +saint_vincent_and_the_grenadines text(was:situated:in) americas +venezuela text(was:a:neighbor:of) brazil +venezuela text(is:a:neighbor:of) guyana +venezuela text(is:a:neighboring:state:to) colombia +grenada text(is:situated:in) caribbean +grenada text(is:located:in) americas +united_states text(was:a:neighboring:state:to) canada +united_states text(borders:with) mexico +tokelau text(was:located:in) polynesia +tokelau text(could:be:found:in) oceania +slovenia text(can:be:found:in) southern_europe +slovenia text(was:positioned:in) europe +slovenia text(neighbors:withborders) austria +slovenia text(neighbors) croatia +slovenia text(is:butted:against) italy +slovenia text(was:butted:against) hungary +philippines text(is:positioned:in) south-eastern_asia +philippines text(was:sited:in) asia +micronesia text(is:sited:in) micronesia +micronesia text(is:placed:in) oceania +china text(was:placed:in) eastern_asia +china text(was:localized:in) asia +china text(is:a:neighboring:country:of) afghanistan +china text(was:a:neighboring:country:of) bhutan +china text(was:adjacent:to) macau +china text(is:adjacent:to) india china text(was:a:neighbor:of) kazakhstan china text(is:a:neighbor:of) kyrgyzstan china text(is:a:neighboring:state:to) tajikistan china text(was:a:neighboring:state:to) laos china text(borders:with) russia -china text(borders) north_korea -china text(is:butted:against) myanmar -china text(was:butted:against) pakistan -china text(was:adjacent:to) mongolia -china text(is:adjacent:to) hong_kong -china text(neighbors) vietnam -gabon text(was:currently:in) middle_africa -gabon text(is:currently:in) africa -gabon text(is:a:neighboring:country:of) equatorial_guinea -gabon text(was:a:neighboring:country:of) republic_of_the_congo -gabon text(neighbors:with) cameroon -united_states_minor_outlying_islands text(is:placed:in) northern_america -united_states_minor_outlying_islands text(was:placed:in) americas -andorra text(can:be:found:in) southern_europe -andorra text(was:situated:in) europe -andorra text(was:a:neighbor:of) spain -andorra text(is:a:neighbor:of) france -samoa text(is:situated:in) polynesia -samoa text(is:located:in) oceania -gambia text(was:located:in) western_africa -gambia text(can:be:found:in) africa -gambia text(is:a:neighboring:state:to) senegal -palestine text(was:positioned:in) western_asia -palestine text(is:positioned:in) asia -palestine text(was:a:neighboring:state:to) jordan -palestine text(borders:with) egypt -palestine text(borders) israel -réunion text(was:sited:in) eastern_africa -réunion text(is:sited:in) africa -france text(was:localized:in) western_europe -france text(is:localized:in) europe +china text(neighbors:withborders) north_korea +china text(neighbors) myanmar +china text(is:butted:against) pakistan +china text(was:butted:against) mongolia +china text(is:a:neighboring:country:of) hong_kong +china text(was:a:neighboring:country:of) vietnam +gabon text(is:localized:in) middle_africa +gabon text(was:present:in) africa +gabon text(was:adjacent:to) equatorial_guinea +gabon text(is:adjacent:to) republic_of_the_congo +gabon text(was:a:neighbor:of) cameroon +united_states_minor_outlying_islands text(is:present:in) northern_america +united_states_minor_outlying_islands text(is:still:in) americas +andorra text(was:still:in) southern_europe +andorra text(was:currently:in) europe +andorra text(is:a:neighbor:of) spain +andorra text(is:a:neighboring:state:to) france +samoa text(is:currently:in) polynesia +samoa text(was:situated:in) oceania +gambia text(is:situated:in) western_africa +gambia text(is:located:in) africa +gambia text(was:a:neighboring:state:to) senegal +palestine text(was:located:in) western_asia +palestine text(could:be:found:in) asia +palestine text(borders:with) jordan +palestine text(neighbors:withborders) egypt +palestine text(neighbors) israel +réunion text(can:be:found:in) eastern_africa +réunion text(was:positioned:in) africa +france text(is:positioned:in) western_europe +france text(was:sited:in) europe france text(is:butted:against) germany france text(was:butted:against) luxembourg -france text(was:adjacent:to) italy -france text(is:adjacent:to) andorra -france text(neighbors) switzerland -france text(is:a:neighboring:country:of) monaco -france text(was:a:neighboring:country:of) belgium -france text(neighbors:with) spain -mongolia text(was:present:in) eastern_asia -mongolia text(is:present:in) asia -mongolia text(was:a:neighbor:of) china -mongolia text(is:a:neighbor:of) russia -lithuania text(is:still:in) northern_europe -lithuania text(was:still:in) europe -lithuania text(is:a:neighboring:state:to) poland -lithuania text(was:a:neighboring:state:to) latvia -lithuania text(borders:with) belarus -lithuania text(borders) russia -cayman_islands text(was:currently:in) caribbean -cayman_islands text(is:currently:in) americas -saint_lucia text(is:placed:in) caribbean -saint_lucia text(was:placed:in) americas -curaçao text(can:be:found:in) caribbean -curaçao text(was:situated:in) americas -caribbean text(is:situated:in) americas -southern_asia text(is:located:in) asia -middle_africa text(was:located:in) africa -northern_europe text(can:be:found:in) europe -southern_europe text(was:positioned:in) europe -western_asia text(is:positioned:in) asia -south_america text(was:sited:in) americas -polynesia text(is:sited:in) oceania -australia_and_new_zealand text(was:localized:in) oceania -western_europe text(is:localized:in) europe -eastern_africa text(was:present:in) africa -western_africa text(is:present:in) africa -eastern_europe text(is:still:in) europe -central_america text(was:still:in) americas -northern_america text(was:currently:in) americas -south-eastern_asia text(is:currently:in) asia -southern_africa text(is:placed:in) africa -eastern_asia text(was:placed:in) asia -northern_africa text(can:be:found:in) africa -melanesia text(was:situated:in) oceania -micronesia text(is:situated:in) oceania -central_asia text(is:located:in) asia -central_europe text(was:located:in) europe \ No newline at end of file +france text(is:a:neighboring:country:of) italy +france text(was:a:neighboring:country:of) andorra +france text(was:adjacent:to) switzerland +france text(is:adjacent:to) monaco +france text(was:a:neighbor:of) belgium +france text(is:a:neighbor:of) spain +mongolia text(is:sited:in) eastern_asia +mongolia text(is:placed:in) asia +mongolia text(is:a:neighboring:state:to) china +mongolia text(was:a:neighboring:state:to) russia +lithuania text(was:placed:in) northern_europe +lithuania text(was:localized:in) europe +lithuania text(borders:with) poland +lithuania text(neighbors:withborders) latvia +lithuania text(neighbors) belarus +lithuania text(is:butted:against) russia +cayman_islands text(is:localized:in) caribbean +cayman_islands text(was:present:in) americas +saint_lucia text(is:present:in) caribbean +saint_lucia text(is:still:in) americas +curaçao text(was:still:in) caribbean +curaçao text(was:currently:in) americas +caribbean text(is:currently:in) americas +southern_asia text(was:situated:in) asia +middle_africa text(is:situated:in) africa +northern_europe text(is:located:in) europe +southern_europe text(was:located:in) europe +western_asia text(could:be:found:in) asia +south_america text(can:be:found:in) americas +polynesia text(was:positioned:in) oceania +australia_and_new_zealand text(is:positioned:in) oceania +western_europe text(was:sited:in) europe +eastern_africa text(is:sited:in) africa +western_africa text(is:placed:in) africa +eastern_europe text(was:placed:in) europe +central_america text(was:localized:in) americas +northern_america text(is:localized:in) americas +south-eastern_asia text(was:present:in) asia +southern_africa text(is:present:in) africa +eastern_asia text(is:still:in) asia +northern_africa text(was:still:in) africa +melanesia text(was:currently:in) oceania +micronesia text(is:currently:in) oceania +central_asia text(was:situated:in) asia +central_europe text(is:situated:in) europe \ No newline at end of file diff --git a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_relation2text_traintest.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_relation2text_traintest.tsv new file mode 100644 index 0000000..b5a2883 --- /dev/null +++ b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_relation2text_traintest.tsv @@ -0,0 +1,1063 @@ +palau text(is:positioned:in) micronesia +palau text(was:localized:in) oceania +maldives text(is:localized:in) southern_asia +maldives text(was:present:in) asia +brunei text(is:present:in) south-eastern_asia +brunei text(is:still:in) asia +brunei text(was:a:neighboring:country:of) malaysia +japan text(was:still:in) eastern_asia +japan text(was:currently:in) asia +netherlands text(was:a:neighbor:of) belgium +turkey text(is:a:neighbor:of) armenia +turkey text(is:a:neighboring:state:to) azerbaijan +turkey text(was:a:neighboring:state:to) iran +turkey text(borders:with) greece +turkey text(neighbors:withborders) georgia +angola text(is:currently:in) middle_africa +angola text(was:situated:in) africa +angola text(neighbors) dr_congo +angola text(is:butted:against) namibia +angola text(was:butted:against) republic_of_the_congo +armenia text(is:situated:in) western_asia +armenia text(is:located:in) asia +armenia text(is:a:neighboring:country:of) georgia +armenia text(was:a:neighboring:country:of) azerbaijan +armenia text(was:a:neighbor:of) iran +armenia text(is:a:neighbor:of) turkey +antigua_and_barbuda text(was:located:in) caribbean +antigua_and_barbuda text(could:be:found:in) americas +swaziland text(can:be:found:in) southern_africa +swaziland text(was:positioned:in) africa +swaziland text(is:a:neighboring:state:to) south_africa +swaziland text(was:a:neighboring:state:to) mozambique +wallis_and_futuna text(is:positioned:in) polynesia +wallis_and_futuna text(was:localized:in) oceania +uruguay text(is:localized:in) south_america +uruguay text(was:present:in) americas +uruguay text(borders:with) argentina +uruguay text(neighbors:withborders) brazil +cyprus text(is:present:in) eastern_europe +cyprus text(is:still:in) europe +cyprus text(neighbors) united_kingdom +ireland text(was:still:in) northern_europe +ireland text(was:currently:in) europe +ireland text(is:butted:against) united_kingdom +burundi text(is:currently:in) eastern_africa +burundi text(was:situated:in) africa +burundi text(was:butted:against) dr_congo +burundi text(is:a:neighboring:country:of) rwanda +central_african_republic text(is:situated:in) middle_africa +central_african_republic text(is:located:in) africa +central_african_republic text(was:a:neighboring:country:of) chad +central_african_republic text(was:a:neighbor:of) republic_of_the_congo +central_african_republic text(is:a:neighbor:of) dr_congo +central_african_republic text(is:a:neighboring:state:to) south_sudan +central_african_republic text(was:a:neighboring:state:to) cameroon +tonga text(was:located:in) polynesia +tonga text(could:be:found:in) oceania +ivory_coast text(can:be:found:in) western_africa +ivory_coast text(was:positioned:in) africa +ivory_coast text(borders:with) liberia +ivory_coast text(neighbors:withborders) mali +ivory_coast text(neighbors) guinea +sierra_leone text(is:butted:against) liberia +sierra_leone text(was:butted:against) guinea +mayotte text(is:positioned:in) eastern_africa +mayotte text(was:localized:in) africa +poland text(is:a:neighboring:country:of) ukraine +poland text(was:a:neighboring:country:of) slovakia +poland text(was:a:neighbor:of) belarus +poland text(is:a:neighbor:of) russia +poland text(is:a:neighboring:state:to) lithuania +uzbekistan text(is:localized:in) central_asia +uzbekistan text(was:present:in) asia +uzbekistan text(was:a:neighboring:state:to) afghanistan +uzbekistan text(borders:with) turkmenistan +uzbekistan text(neighbors:withborders) kyrgyzstan +uzbekistan text(neighbors) tajikistan +turks_and_caicos_islands text(is:present:in) caribbean +turks_and_caicos_islands text(is:still:in) americas +new_caledonia text(was:still:in) melanesia +new_caledonia text(was:currently:in) oceania +pakistan text(is:butted:against) china +pakistan text(was:butted:against) afghanistan +pakistan text(is:a:neighboring:country:of) iran +pakistan text(was:a:neighboring:country:of) india +argentina text(is:currently:in) south_america +argentina text(was:situated:in) americas +argentina text(was:a:neighbor:of) bolivia +argentina text(is:a:neighbor:of) chile +argentina text(is:a:neighboring:state:to) brazil +argentina text(was:a:neighboring:state:to) paraguay +argentina text(borders:with) uruguay +cuba text(is:situated:in) caribbean +cuba text(is:located:in) americas +serbia text(neighbors:withborders) macedonia +serbia text(neighbors) montenegro +serbia text(is:butted:against) bosnia_and_herzegovina +serbia text(was:butted:against) croatia +serbia text(is:a:neighboring:country:of) romania +vietnam text(was:located:in) south-eastern_asia +vietnam text(could:be:found:in) asia +vietnam text(was:a:neighboring:country:of) cambodia +vietnam text(was:a:neighbor:of) laos +vietnam text(is:a:neighbor:of) china +niue text(can:be:found:in) polynesia +niue text(was:positioned:in) oceania +canada text(is:positioned:in) northern_america +canada text(was:localized:in) americas +slovakia text(is:a:neighboring:state:to) ukraine +slovakia text(was:a:neighboring:state:to) poland +slovakia text(borders:with) austria +mozambique text(neighbors:withborders) swaziland +mozambique text(neighbors) malawi +mozambique text(is:butted:against) south_africa +aruba text(is:localized:in) caribbean +aruba text(was:present:in) americas +bolivia text(is:present:in) south_america +bolivia text(is:still:in) americas +bolivia text(was:butted:against) chile +bolivia text(is:a:neighboring:country:of) brazil +bolivia text(was:a:neighboring:country:of) paraguay +bolivia text(was:a:neighbor:of) argentina +bolivia text(is:a:neighbor:of) peru +colombia text(was:still:in) south_america +colombia text(was:currently:in) americas +colombia text(is:a:neighboring:state:to) brazil +colombia text(was:a:neighboring:state:to) peru +fiji text(is:currently:in) melanesia +fiji text(was:situated:in) oceania +republic_of_the_congo text(borders:with) gabon +republic_of_the_congo text(neighbors:withborders) dr_congo +republic_of_the_congo text(neighbors) angola +republic_of_the_congo text(is:butted:against) cameroon +republic_of_the_congo text(was:butted:against) central_african_republic +el_salvador text(is:situated:in) central_america +el_salvador text(is:located:in) americas +el_salvador text(is:a:neighboring:country:of) guatemala +el_salvador text(was:a:neighboring:country:of) honduras +madagascar text(was:located:in) eastern_africa +madagascar text(could:be:found:in) africa +australia text(can:be:found:in) australia_and_new_zealand +australia text(was:positioned:in) oceania +namibia text(is:positioned:in) southern_africa +namibia text(was:localized:in) africa +namibia text(was:a:neighbor:of) angola +namibia text(is:a:neighbor:of) south_africa +tuvalu text(is:localized:in) polynesia +tuvalu text(was:present:in) oceania +svalbard_and_jan_mayen text(is:present:in) northern_europe +svalbard_and_jan_mayen text(is:still:in) europe +isle_of_man text(was:still:in) northern_europe +isle_of_man text(was:currently:in) europe +vatican_city text(is:currently:in) southern_europe +vatican_city text(was:situated:in) europe +vatican_city text(is:a:neighboring:state:to) italy +british_indian_ocean_territory text(is:situated:in) eastern_africa +british_indian_ocean_territory text(is:located:in) africa +nigeria text(was:located:in) western_africa +nigeria text(could:be:found:in) africa +nigeria text(was:a:neighboring:state:to) chad +nigeria text(borders:with) niger +nigeria text(neighbors:withborders) cameroon +nigeria text(neighbors) benin +northern_mariana_islands text(can:be:found:in) micronesia +northern_mariana_islands text(was:positioned:in) oceania +belize text(is:positioned:in) central_america +belize text(was:localized:in) americas +belize text(is:butted:against) guatemala +belize text(was:butted:against) mexico +cocos_keeling_islands text(is:localized:in) australia_and_new_zealand +cocos_keeling_islands text(was:present:in) oceania +laos text(is:present:in) south-eastern_asia +laos text(is:still:in) asia +laos text(is:a:neighboring:country:of) china +laos text(was:a:neighboring:country:of) cambodia +laos text(was:a:neighbor:of) vietnam +western_sahara text(was:still:in) northern_africa +western_sahara text(was:currently:in) africa +western_sahara text(is:a:neighbor:of) algeria +western_sahara text(is:a:neighboring:state:to) mauritania +western_sahara text(was:a:neighboring:state:to) morocco +christmas_island text(is:currently:in) australia_and_new_zealand +christmas_island text(was:situated:in) oceania +são_tomé_and_príncipe text(is:situated:in) middle_africa +são_tomé_and_príncipe text(is:located:in) africa +guinea text(was:located:in) western_africa +guinea text(could:be:found:in) africa +guinea text(borders:with) sierra_leone +guinea text(neighbors:withborders) mali +guinea text(neighbors) liberia +guinea text(is:butted:against) senegal +guinea text(was:butted:against) ivory_coast +costa_rica text(can:be:found:in) central_america +costa_rica text(was:positioned:in) americas +malta text(is:positioned:in) southern_europe +malta text(was:localized:in) europe +portugal text(is:localized:in) southern_europe +portugal text(was:present:in) europe +romania text(is:present:in) eastern_europe +romania text(is:still:in) europe +romania text(is:a:neighboring:country:of) ukraine +romania text(was:a:neighboring:country:of) moldova +romania text(was:a:neighbor:of) serbia +san_marino text(was:still:in) southern_europe +san_marino text(was:currently:in) europe +san_marino text(is:a:neighbor:of) italy +mauritania text(is:currently:in) western_africa +mauritania text(was:situated:in) africa +mauritania text(is:a:neighboring:state:to) algeria +mauritania text(was:a:neighboring:state:to) mali +mauritania text(borders:with) western_sahara +mauritania text(neighbors:withborders) senegal +trinidad_and_tobago text(is:situated:in) caribbean +trinidad_and_tobago text(is:located:in) americas +bahrain text(was:located:in) western_asia +bahrain text(could:be:found:in) asia +south_georgia text(can:be:found:in) south_america +south_georgia text(was:positioned:in) americas +iceland text(is:positioned:in) northern_europe +iceland text(was:localized:in) europe +dr_congo text(is:localized:in) middle_africa +dr_congo text(was:present:in) africa +dr_congo text(neighbors) uganda +dr_congo text(is:butted:against) republic_of_the_congo +dr_congo text(was:butted:against) central_african_republic +dr_congo text(is:a:neighboring:country:of) angola +dr_congo text(was:a:neighboring:country:of) rwanda +dr_congo text(was:a:neighbor:of) south_sudan +dr_congo text(is:a:neighbor:of) burundi +seychelles text(is:present:in) eastern_africa +seychelles text(is:still:in) africa +kyrgyzstan text(is:a:neighboring:state:to) china +kyrgyzstan text(was:a:neighboring:state:to) tajikistan +kyrgyzstan text(borders:with) uzbekistan +faroe_islands text(was:still:in) northern_europe +faroe_islands text(was:currently:in) europe +jamaica text(is:currently:in) caribbean +jamaica text(was:situated:in) americas +american_samoa text(is:situated:in) polynesia +american_samoa text(is:located:in) oceania +lesotho text(was:located:in) southern_africa +lesotho text(could:be:found:in) africa +lesotho text(neighbors:withborders) south_africa +sri_lanka text(neighbors) india +belgium text(can:be:found:in) western_europe +belgium text(was:positioned:in) europe +belgium text(is:butted:against) luxembourg +belgium text(was:butted:against) france +belgium text(is:a:neighboring:country:of) netherlands +qatar text(is:positioned:in) western_asia +qatar text(was:localized:in) asia +solomon_islands text(is:localized:in) melanesia +solomon_islands text(was:present:in) oceania +india text(is:present:in) southern_asia +india text(is:still:in) asia +india text(was:a:neighboring:country:of) afghanistan +india text(was:a:neighbor:of) bangladesh +india text(is:a:neighbor:of) china +india text(is:a:neighboring:state:to) nepal +india text(was:a:neighboring:state:to) pakistan +india text(borders:with) sri_lanka +morocco text(neighbors:withborders) algeria +morocco text(neighbors) western_sahara +kenya text(was:still:in) eastern_africa +kenya text(was:currently:in) africa +kenya text(is:butted:against) uganda +kenya text(was:butted:against) somalia +kenya text(is:a:neighboring:country:of) south_sudan +kenya text(was:a:neighboring:country:of) ethiopia +south_sudan text(is:currently:in) middle_africa +south_sudan text(was:situated:in) africa +south_sudan text(was:a:neighbor:of) uganda +south_sudan text(is:a:neighbor:of) dr_congo +south_sudan text(is:a:neighboring:state:to) kenya +south_sudan text(was:a:neighboring:state:to) central_african_republic +south_sudan text(borders:with) ethiopia +tajikistan text(is:situated:in) central_asia +tajikistan text(is:located:in) asia +tajikistan text(neighbors:withborders) china +tajikistan text(neighbors) kyrgyzstan +tajikistan text(is:butted:against) afghanistan +tajikistan text(was:butted:against) uzbekistan +marshall_islands text(was:located:in) micronesia +marshall_islands text(could:be:found:in) oceania +cameroon text(can:be:found:in) middle_africa +cameroon text(was:positioned:in) africa +cameroon text(is:a:neighboring:country:of) chad +cameroon text(was:a:neighboring:country:of) republic_of_the_congo +cameroon text(was:a:neighbor:of) gabon +cameroon text(is:a:neighbor:of) equatorial_guinea +cameroon text(is:a:neighboring:state:to) central_african_republic +cameroon text(was:a:neighboring:state:to) nigeria +nauru text(is:positioned:in) micronesia +nauru text(was:localized:in) oceania +chad text(is:localized:in) middle_africa +chad text(was:present:in) africa +chad text(borders:with) libya +chad text(neighbors:withborders) niger +chad text(neighbors) south_sudan +chad text(is:butted:against) cameroon +chad text(was:butted:against) central_african_republic +chad text(is:a:neighboring:country:of) nigeria +vanuatu text(is:present:in) melanesia +vanuatu text(is:still:in) oceania +cape_verde text(was:still:in) western_africa +cape_verde text(was:currently:in) africa +falkland_islands text(is:currently:in) south_america +falkland_islands text(was:situated:in) americas +liberia text(is:situated:in) western_africa +liberia text(is:located:in) africa +liberia text(was:a:neighboring:country:of) ivory_coast +liberia text(was:a:neighbor:of) sierra_leone +liberia text(is:a:neighbor:of) guinea +cambodia text(was:located:in) south-eastern_asia +cambodia text(could:be:found:in) asia +cambodia text(is:a:neighboring:state:to) vietnam +cambodia text(was:a:neighboring:state:to) laos +comoros text(can:be:found:in) eastern_africa +comoros text(was:positioned:in) africa +guam text(is:positioned:in) micronesia +guam text(was:localized:in) oceania +bahamas text(is:localized:in) caribbean +bahamas text(was:present:in) americas +lebanon text(is:present:in) western_asia +lebanon text(is:still:in) asia +lebanon text(borders:with) israel +sint_maarten text(was:still:in) caribbean +sint_maarten text(was:currently:in) americas +ethiopia text(is:currently:in) eastern_africa +ethiopia text(was:situated:in) africa +ethiopia text(neighbors:withborders) somalia +ethiopia text(neighbors) kenya +ethiopia text(is:butted:against) south_sudan +united_states_virgin_islands text(is:situated:in) caribbean +united_states_virgin_islands text(is:located:in) americas +libya text(was:located:in) northern_africa +libya text(could:be:found:in) africa +libya text(was:butted:against) chad +libya text(is:a:neighboring:country:of) tunisia +libya text(was:a:neighboring:country:of) niger +libya text(was:a:neighbor:of) algeria +french_polynesia text(can:be:found:in) polynesia +french_polynesia text(was:positioned:in) oceania +somalia text(is:positioned:in) eastern_africa +somalia text(was:localized:in) africa +somalia text(is:a:neighbor:of) kenya +somalia text(is:a:neighboring:state:to) ethiopia +saint_barthélemy text(is:localized:in) caribbean +saint_barthélemy text(was:present:in) americas +russia text(is:present:in) eastern_europe +russia text(is:still:in) europe +russia text(was:a:neighboring:state:to) ukraine +russia text(borders:with) belarus +russia text(neighbors:withborders) china +russia text(neighbors) poland +russia text(is:butted:against) azerbaijan +russia text(was:butted:against) lithuania +russia text(is:a:neighboring:country:of) estonia +russia text(was:a:neighboring:country:of) north_korea +russia text(was:a:neighbor:of) finland +russia text(is:a:neighbor:of) latvia +russia text(is:a:neighboring:state:to) georgia +new_zealand text(was:still:in) australia_and_new_zealand +new_zealand text(was:currently:in) oceania +papua_new_guinea text(is:currently:in) melanesia +papua_new_guinea text(was:situated:in) oceania +north_korea text(was:a:neighboring:state:to) china +north_korea text(borders:with) south_korea +north_korea text(neighbors:withborders) russia +latvia text(is:situated:in) northern_europe +latvia text(is:located:in) europe +latvia text(neighbors) lithuania +latvia text(is:butted:against) belarus +latvia text(was:butted:against) russia +latvia text(is:a:neighboring:country:of) estonia +oman text(was:located:in) western_asia +oman text(could:be:found:in) asia +oman text(was:a:neighboring:country:of) yemen +oman text(was:a:neighbor:of) united_arab_emirates +saint_pierre_and_miquelon text(can:be:found:in) northern_america +saint_pierre_and_miquelon text(was:positioned:in) americas +martinique text(is:positioned:in) caribbean +martinique text(was:localized:in) americas +united_kingdom text(is:localized:in) northern_europe +united_kingdom text(was:present:in) europe +united_kingdom text(is:a:neighbor:of) ireland +israel text(is:present:in) western_asia +israel text(is:still:in) asia +israel text(is:a:neighboring:state:to) lebanon +jersey text(was:still:in) northern_europe +jersey text(was:currently:in) europe +pitcairn_islands text(is:currently:in) polynesia +pitcairn_islands text(was:situated:in) oceania +togo text(is:situated:in) western_africa +togo text(is:located:in) africa +togo text(was:a:neighboring:state:to) benin +kiribati text(was:located:in) micronesia +kiribati text(could:be:found:in) oceania +iran text(can:be:found:in) southern_asia +iran text(was:positioned:in) asia +iran text(borders:with) afghanistan +iran text(neighbors:withborders) turkmenistan +iran text(neighbors) turkey +iran text(is:butted:against) armenia +iran text(was:butted:against) azerbaijan +iran text(is:a:neighboring:country:of) pakistan +dominican_republic text(is:positioned:in) caribbean +dominican_republic text(was:localized:in) americas +dominican_republic text(was:a:neighboring:country:of) haiti +bermuda text(is:localized:in) northern_america +bermuda text(was:present:in) americas +chile text(was:a:neighbor:of) argentina +chile text(is:a:neighbor:of) bolivia +chile text(is:a:neighboring:state:to) peru +saint_kitts_and_nevis text(is:present:in) caribbean +saint_kitts_and_nevis text(is:still:in) americas +equatorial_guinea text(was:still:in) middle_africa +equatorial_guinea text(was:currently:in) africa +equatorial_guinea text(was:a:neighboring:state:to) gabon +equatorial_guinea text(borders:with) cameroon +niger text(is:currently:in) western_africa +niger text(was:situated:in) africa +niger text(neighbors:withborders) chad +niger text(neighbors) libya +niger text(is:butted:against) benin +niger text(was:butted:against) mali +niger text(is:a:neighboring:country:of) algeria +niger text(was:a:neighboring:country:of) nigeria +anguilla text(is:situated:in) caribbean +anguilla text(is:located:in) americas +rwanda text(was:located:in) eastern_africa +rwanda text(could:be:found:in) africa +rwanda text(was:a:neighbor:of) burundi +rwanda text(is:a:neighbor:of) uganda +rwanda text(is:a:neighboring:state:to) dr_congo +united_arab_emirates text(can:be:found:in) western_asia +united_arab_emirates text(was:positioned:in) asia +united_arab_emirates text(was:a:neighboring:state:to) oman +estonia text(is:positioned:in) northern_europe +estonia text(was:localized:in) europe +estonia text(borders:with) latvia +estonia text(neighbors:withborders) russia +greece text(is:localized:in) southern_europe +greece text(was:present:in) europe +greece text(neighbors) albania +greece text(is:butted:against) macedonia +greece text(was:butted:against) turkey +senegal text(is:present:in) western_africa +senegal text(is:still:in) africa +senegal text(is:a:neighboring:country:of) mauritania +senegal text(was:a:neighboring:country:of) mali +senegal text(was:a:neighbor:of) gambia +senegal text(is:a:neighbor:of) guinea +guadeloupe text(was:still:in) caribbean +guadeloupe text(was:currently:in) americas +british_virgin_islands text(is:currently:in) caribbean +british_virgin_islands text(was:situated:in) americas +cook_islands text(is:situated:in) polynesia +cook_islands text(is:located:in) oceania +uganda text(was:located:in) eastern_africa +uganda text(could:be:found:in) africa +uganda text(is:a:neighboring:state:to) dr_congo +uganda text(was:a:neighboring:state:to) kenya +uganda text(borders:with) south_sudan +uganda text(neighbors:withborders) rwanda +macedonia text(can:be:found:in) southern_europe +macedonia text(was:positioned:in) europe +macedonia text(neighbors) greece +macedonia text(is:butted:against) albania +macedonia text(was:butted:against) serbia +tunisia text(is:positioned:in) northern_africa +tunisia text(was:localized:in) africa +tunisia text(is:a:neighboring:country:of) libya +tunisia text(was:a:neighboring:country:of) algeria +brazil text(is:localized:in) south_america +brazil text(was:present:in) americas +brazil text(was:a:neighbor:of) bolivia +brazil text(is:a:neighbor:of) colombia +brazil text(is:a:neighboring:state:to) paraguay +brazil text(was:a:neighboring:state:to) uruguay +brazil text(borders:with) argentina +brazil text(neighbors:withborders) peru +paraguay text(is:present:in) south_america +paraguay text(is:still:in) americas +paraguay text(neighbors) argentina +paraguay text(is:butted:against) brazil +paraguay text(was:butted:against) bolivia +finland text(was:still:in) northern_europe +finland text(was:currently:in) europe +finland text(is:a:neighboring:country:of) sweden +finland text(was:a:neighboring:country:of) russia +montenegro text(is:currently:in) southern_europe +montenegro text(was:situated:in) europe +montenegro text(was:a:neighbor:of) bosnia_and_herzegovina +montenegro text(is:a:neighbor:of) croatia +montenegro text(is:a:neighboring:state:to) serbia +montenegro text(was:a:neighboring:state:to) albania +peru text(is:situated:in) south_america +peru text(is:located:in) americas +peru text(borders:with) bolivia +peru text(neighbors:withborders) chile +peru text(neighbors) brazil +peru text(is:butted:against) colombia +montserrat text(was:located:in) caribbean +montserrat text(could:be:found:in) americas +ukraine text(can:be:found:in) eastern_europe +ukraine text(was:positioned:in) europe +ukraine text(was:butted:against) slovakia +ukraine text(is:a:neighboring:country:of) belarus +ukraine text(was:a:neighboring:country:of) poland +ukraine text(was:a:neighbor:of) russia +ukraine text(is:a:neighbor:of) moldova +ukraine text(is:a:neighboring:state:to) romania +dominica text(is:positioned:in) caribbean +dominica text(was:localized:in) americas +turkmenistan text(was:a:neighboring:state:to) afghanistan +turkmenistan text(borders:with) uzbekistan +turkmenistan text(neighbors:withborders) iran +guernsey text(is:localized:in) northern_europe +guernsey text(was:present:in) europe +gibraltar text(is:present:in) southern_europe +gibraltar text(is:still:in) europe +switzerland text(was:still:in) western_europe +switzerland text(was:currently:in) europe +switzerland text(neighbors) italy +switzerland text(is:butted:against) austria +switzerland text(was:butted:against) france +switzerland text(is:a:neighboring:country:of) liechtenstein +austria text(is:currently:in) western_europe +austria text(was:situated:in) europe +austria text(was:a:neighboring:country:of) slovakia +austria text(was:a:neighbor:of) slovenia +austria text(is:a:neighbor:of) italy +austria text(is:a:neighboring:state:to) switzerland +austria text(was:a:neighboring:state:to) liechtenstein +malawi text(is:situated:in) eastern_africa +malawi text(is:located:in) africa +malawi text(borders:with) mozambique +hong_kong text(neighbors:withborders) china +liechtenstein text(was:located:in) western_europe +liechtenstein text(could:be:found:in) europe +liechtenstein text(neighbors) switzerland +liechtenstein text(is:butted:against) austria +barbados text(can:be:found:in) caribbean +barbados text(was:positioned:in) americas +georgia text(is:positioned:in) western_asia +georgia text(was:localized:in) asia +georgia text(was:butted:against) armenia +georgia text(is:a:neighboring:country:of) azerbaijan +georgia text(was:a:neighboring:country:of) russia +georgia text(was:a:neighbor:of) turkey +albania text(is:localized:in) southern_europe +albania text(was:present:in) europe +albania text(is:a:neighbor:of) montenegro +albania text(is:a:neighboring:state:to) macedonia +albania text(was:a:neighboring:state:to) greece +kuwait text(is:present:in) western_asia +kuwait text(is:still:in) asia +south_africa text(was:still:in) southern_africa +south_africa text(was:currently:in) africa +south_africa text(borders:with) mozambique +south_africa text(neighbors:withborders) swaziland +south_africa text(neighbors) namibia +south_africa text(is:butted:against) lesotho +haiti text(is:currently:in) caribbean +haiti text(was:situated:in) americas +haiti text(was:butted:against) dominican_republic +afghanistan text(is:situated:in) southern_asia +afghanistan text(is:located:in) asia +afghanistan text(is:a:neighboring:country:of) turkmenistan +afghanistan text(was:a:neighboring:country:of) china +afghanistan text(was:a:neighbor:of) tajikistan +afghanistan text(is:a:neighbor:of) uzbekistan +afghanistan text(is:a:neighboring:state:to) iran +afghanistan text(was:a:neighboring:state:to) pakistan +singapore text(was:located:in) south-eastern_asia +singapore text(could:be:found:in) asia +benin text(can:be:found:in) western_africa +benin text(was:positioned:in) africa +benin text(borders:with) niger +benin text(neighbors:withborders) togo +benin text(neighbors) nigeria +åland_islands text(is:positioned:in) northern_europe +åland_islands text(was:localized:in) europe +croatia text(is:localized:in) southern_europe +croatia text(was:present:in) europe +croatia text(is:butted:against) slovenia +croatia text(was:butted:against) bosnia_and_herzegovina +croatia text(is:a:neighboring:country:of) serbia +croatia text(was:a:neighboring:country:of) montenegro +sweden text(is:present:in) northern_europe +sweden text(is:still:in) europe +sweden text(was:a:neighbor:of) finland +mexico text(is:a:neighbor:of) belize +mexico text(is:a:neighboring:state:to) guatemala +greenland text(was:still:in) northern_america +greenland text(was:currently:in) americas +norfolk_island text(is:currently:in) australia_and_new_zealand +norfolk_island text(was:situated:in) oceania +nepal text(is:situated:in) southern_asia +nepal text(is:located:in) asia +nepal text(was:a:neighboring:state:to) china +nepal text(borders:with) india +guatemala text(neighbors:withborders) belize +guatemala text(neighbors) el_salvador +guatemala text(is:butted:against) mexico +guatemala text(was:butted:against) honduras +south_korea text(was:located:in) eastern_asia +south_korea text(could:be:found:in) asia +south_korea text(is:a:neighboring:country:of) north_korea +moldova text(can:be:found:in) eastern_europe +moldova text(was:positioned:in) europe +moldova text(was:a:neighboring:country:of) ukraine +moldova text(was:a:neighbor:of) romania +mauritius text(is:positioned:in) eastern_africa +mauritius text(was:localized:in) africa +belarus text(is:a:neighbor:of) ukraine +belarus text(is:a:neighboring:state:to) poland +belarus text(was:a:neighboring:state:to) lithuania +belarus text(borders:with) russia +belarus text(neighbors:withborders) latvia +bangladesh text(neighbors) india +malaysia text(is:localized:in) south-eastern_asia +malaysia text(was:present:in) asia +malaysia text(is:butted:against) brunei +bosnia_and_herzegovina text(is:present:in) southern_europe +bosnia_and_herzegovina text(is:still:in) europe +bosnia_and_herzegovina text(was:butted:against) serbia +bosnia_and_herzegovina text(is:a:neighboring:country:of) croatia +bosnia_and_herzegovina text(was:a:neighboring:country:of) montenegro +luxembourg text(was:still:in) western_europe +luxembourg text(was:currently:in) europe +luxembourg text(was:a:neighbor:of) belgium +luxembourg text(is:a:neighbor:of) france +italy text(is:currently:in) southern_europe +italy text(was:situated:in) europe +italy text(is:a:neighboring:state:to) slovenia +italy text(was:a:neighboring:state:to) switzerland +italy text(borders:with) austria +italy text(neighbors:withborders) france +italy text(neighbors) vatican_city +italy text(is:butted:against) san_marino +azerbaijan text(is:situated:in) western_asia +azerbaijan text(is:located:in) asia +azerbaijan text(was:butted:against) turkey +azerbaijan text(is:a:neighboring:country:of) armenia +azerbaijan text(was:a:neighboring:country:of) russia +azerbaijan text(was:a:neighbor:of) iran +azerbaijan text(is:a:neighbor:of) georgia +honduras text(was:located:in) central_america +honduras text(could:be:found:in) americas +honduras text(is:a:neighboring:state:to) guatemala +honduras text(was:a:neighboring:state:to) el_salvador +mali text(can:be:found:in) western_africa +mali text(was:positioned:in) africa +mali text(borders:with) guinea +mali text(neighbors:withborders) mauritania +mali text(neighbors) niger +mali text(is:butted:against) senegal +mali text(was:butted:against) algeria +mali text(is:a:neighboring:country:of) ivory_coast +taiwan text(is:positioned:in) eastern_asia +taiwan text(was:localized:in) asia +algeria text(is:localized:in) northern_africa +algeria text(was:present:in) africa +algeria text(was:a:neighboring:country:of) libya +algeria text(was:a:neighbor:of) tunisia +algeria text(is:a:neighbor:of) mauritania +algeria text(is:a:neighboring:state:to) morocco +algeria text(was:a:neighboring:state:to) niger +algeria text(borders:with) mali +algeria text(neighbors:withborders) western_sahara +yemen text(is:present:in) western_asia +yemen text(is:still:in) asia +yemen text(neighbors) oman +puerto_rico text(was:still:in) caribbean +puerto_rico text(was:currently:in) americas +saint_vincent_and_the_grenadines text(is:currently:in) caribbean +saint_vincent_and_the_grenadines text(was:situated:in) americas +grenada text(is:situated:in) caribbean +grenada text(is:located:in) americas +tokelau text(was:located:in) polynesia +tokelau text(could:be:found:in) oceania +slovenia text(can:be:found:in) southern_europe +slovenia text(was:positioned:in) europe +slovenia text(is:butted:against) austria +slovenia text(was:butted:against) croatia +slovenia text(is:a:neighboring:country:of) italy +philippines text(is:positioned:in) south-eastern_asia +philippines text(was:localized:in) asia +micronesia text(is:localized:in) micronesia +micronesia text(was:present:in) oceania +china text(is:present:in) eastern_asia +china text(is:still:in) asia +china text(was:a:neighboring:country:of) afghanistan +china text(was:a:neighbor:of) india +china text(is:a:neighbor:of) kyrgyzstan +china text(is:a:neighboring:state:to) tajikistan +china text(was:a:neighboring:state:to) laos +china text(borders:with) russia +china text(neighbors:withborders) north_korea +china text(neighbors) pakistan +china text(is:butted:against) hong_kong +china text(was:butted:against) vietnam +gabon text(was:still:in) middle_africa +gabon text(was:currently:in) africa +gabon text(is:a:neighboring:country:of) equatorial_guinea +gabon text(was:a:neighboring:country:of) republic_of_the_congo +gabon text(was:a:neighbor:of) cameroon +united_states_minor_outlying_islands text(is:currently:in) northern_america +united_states_minor_outlying_islands text(was:situated:in) americas +andorra text(is:situated:in) southern_europe +andorra text(is:located:in) europe +andorra text(is:a:neighbor:of) france +samoa text(was:located:in) polynesia +samoa text(could:be:found:in) oceania +gambia text(can:be:found:in) western_africa +gambia text(was:positioned:in) africa +gambia text(is:a:neighboring:state:to) senegal +palestine text(is:positioned:in) western_asia +palestine text(was:localized:in) asia +palestine text(was:a:neighboring:state:to) israel +réunion text(is:localized:in) eastern_africa +réunion text(was:present:in) africa +france text(is:present:in) western_europe +france text(is:still:in) europe +france text(borders:with) luxembourg +france text(neighbors:withborders) italy +france text(neighbors) andorra +france text(is:butted:against) switzerland +france text(was:butted:against) belgium +lithuania text(was:still:in) northern_europe +lithuania text(was:currently:in) europe +lithuania text(is:a:neighboring:country:of) poland +lithuania text(was:a:neighboring:country:of) latvia +lithuania text(was:a:neighbor:of) belarus +lithuania text(is:a:neighbor:of) russia +cayman_islands text(is:currently:in) caribbean +cayman_islands text(was:situated:in) americas +saint_lucia text(is:situated:in) caribbean +saint_lucia text(is:located:in) americas +curaçao text(was:located:in) caribbean +curaçao text(could:be:found:in) americas +caribbean text(can:be:found:in) americas +southern_asia text(was:positioned:in) asia +middle_africa text(is:positioned:in) africa +northern_europe text(was:localized:in) europe +southern_europe text(is:localized:in) europe +western_asia text(was:present:in) asia +south_america text(is:present:in) americas +polynesia text(is:still:in) oceania +australia_and_new_zealand text(was:still:in) oceania +western_europe text(was:currently:in) europe +eastern_africa text(is:currently:in) africa +western_africa text(was:situated:in) africa +eastern_europe text(is:situated:in) europe +central_america text(is:located:in) americas +northern_america text(was:located:in) americas +south-eastern_asia text(could:be:found:in) asia +southern_africa text(can:be:found:in) africa +eastern_asia text(was:positioned:in) asia +northern_africa text(is:positioned:in) africa +melanesia text(was:localized:in) oceania +micronesia text(is:localized:in) oceania +central_asia text(was:present:in) asia +central_europe text(is:present:in) europe +netherlands text(was:a:neighboring:country:of) germany +turkey text(was:a:neighbor:of) bulgaria +turkey text(is:a:neighbor:of) iraq +turkey text(is:a:neighboring:state:to) syria +angola text(was:a:neighboring:state:to) zambia +zambia text(is:positioned:in) eastern_africa +zambia text(was:localized:in) africa +zambia text(borders:with) tanzania +zambia text(neighbors:withborders) mozambique +zambia text(neighbors) dr_congo +zambia text(is:butted:against) angola +zambia text(was:butted:against) botswana +zambia text(is:a:neighboring:country:of) zimbabwe +zambia text(was:a:neighboring:country:of) namibia +zambia text(was:a:neighbor:of) malawi +burundi text(is:a:neighbor:of) tanzania +central_african_republic text(is:a:neighboring:state:to) sudan +ivory_coast text(was:a:neighboring:state:to) burkina_faso +ivory_coast text(borders:with) ghana +poland text(neighbors:withborders) germany +poland text(neighbors) czechia +kazakhstan text(is:localized:in) central_asia +kazakhstan text(was:present:in) asia +kazakhstan text(is:butted:against) turkmenistan +kazakhstan text(was:butted:against) china +kazakhstan text(is:a:neighboring:country:of) kyrgyzstan +kazakhstan text(was:a:neighboring:country:of) uzbekistan +kazakhstan text(was:a:neighbor:of) russia +uzbekistan text(is:a:neighbor:of) kazakhstan +serbia text(is:a:neighboring:state:to) kosovo +serbia text(was:a:neighboring:state:to) hungary +serbia text(borders:with) bulgaria +czechia text(is:present:in) eastern_europe +czechia text(is:still:in) europe +czechia text(neighbors:withborders) germany +czechia text(neighbors) austria +czechia text(is:butted:against) poland +czechia text(was:butted:against) slovakia +nicaragua text(is:a:neighboring:country:of) honduras +nicaragua text(was:a:neighboring:country:of) costa_rica +canada text(was:a:neighbor:of) united_states +slovakia text(is:a:neighbor:of) hungary +slovakia text(is:a:neighboring:state:to) czechia +mozambique text(was:a:neighboring:state:to) tanzania +mozambique text(borders:with) zimbabwe +mozambique text(neighbors:withborders) zambia +colombia text(neighbors) ecuador +colombia text(is:butted:against) panama +colombia text(was:butted:against) venezuela +saudi_arabia text(is:a:neighboring:country:of) qatar +saudi_arabia text(was:a:neighboring:country:of) united_arab_emirates +saudi_arabia text(was:a:neighbor:of) jordan +saudi_arabia text(is:a:neighbor:of) yemen +saudi_arabia text(is:a:neighboring:state:to) oman +saudi_arabia text(was:a:neighboring:state:to) kuwait +saudi_arabia text(borders:with) iraq +namibia text(neighbors:withborders) zambia +namibia text(neighbors) botswana +guyana text(is:butted:against) brazil +guyana text(was:butted:against) suriname +guyana text(is:a:neighboring:country:of) venezuela +germany text(was:a:neighboring:country:of) denmark +germany text(was:a:neighbor:of) netherlands +germany text(is:a:neighbor:of) poland +germany text(is:a:neighboring:state:to) luxembourg +germany text(was:a:neighboring:state:to) belgium +germany text(borders:with) switzerland +germany text(neighbors:withborders) austria +germany text(neighbors) france +germany text(is:butted:against) czechia +burkina_faso text(was:butted:against) togo +burkina_faso text(is:a:neighboring:country:of) benin +burkina_faso text(was:a:neighboring:country:of) niger +burkina_faso text(was:a:neighbor:of) ghana +burkina_faso text(is:a:neighbor:of) mali +burkina_faso text(is:a:neighboring:state:to) ivory_coast +tanzania text(was:a:neighboring:state:to) uganda +tanzania text(borders:with) mozambique +tanzania text(neighbors:withborders) dr_congo +tanzania text(neighbors) kenya +tanzania text(is:butted:against) rwanda +tanzania text(was:butted:against) zambia +tanzania text(is:a:neighboring:country:of) malawi +tanzania text(was:a:neighboring:country:of) burundi +norway text(was:a:neighbor:of) sweden +norway text(is:a:neighbor:of) finland +norway text(is:a:neighboring:state:to) russia +laos text(was:a:neighboring:state:to) myanmar +laos text(borders:with) thailand +suriname text(was:still:in) south_america +suriname text(was:currently:in) americas +suriname text(neighbors:withborders) brazil +suriname text(neighbors) french_guiana +suriname text(is:butted:against) guyana +egypt text(was:butted:against) libya +egypt text(is:a:neighboring:country:of) israel +egypt text(was:a:neighboring:country:of) sudan +bulgaria text(was:a:neighbor:of) macedonia +bulgaria text(is:a:neighbor:of) turkey +bulgaria text(is:a:neighboring:state:to) greece +bulgaria text(was:a:neighboring:state:to) serbia +bulgaria text(borders:with) romania +guinea text(neighbors:withborders) guinea-bissau +spain text(neighbors) morocco +spain text(is:butted:against) gibraltar +spain text(was:butted:against) andorra +spain text(is:a:neighboring:country:of) france +spain text(was:a:neighboring:country:of) portugal +costa_rica text(was:a:neighbor:of) panama +costa_rica text(is:a:neighbor:of) nicaragua +portugal text(is:a:neighboring:state:to) spain +romania text(was:a:neighboring:state:to) hungary +romania text(borders:with) bulgaria +myanmar text(neighbors:withborders) india +myanmar text(neighbors) bangladesh +myanmar text(is:butted:against) china +myanmar text(was:butted:against) laos +myanmar text(is:a:neighboring:country:of) thailand +iraq text(was:a:neighboring:country:of) turkey +iraq text(was:a:neighbor:of) saudi_arabia +iraq text(is:a:neighbor:of) iran +iraq text(is:a:neighboring:state:to) jordan +iraq text(was:a:neighboring:state:to) kuwait +iraq text(borders:with) syria +dr_congo text(neighbors:withborders) tanzania +dr_congo text(neighbors) zambia +kyrgyzstan text(is:butted:against) kazakhstan +botswana text(is:currently:in) southern_africa +botswana text(was:situated:in) africa +botswana text(was:butted:against) zimbabwe +botswana text(is:a:neighboring:country:of) namibia +botswana text(was:a:neighboring:country:of) zambia +botswana text(was:a:neighbor:of) south_africa +belgium text(is:a:neighbor:of) germany +qatar text(is:a:neighboring:state:to) saudi_arabia +syria text(is:situated:in) western_asia +syria text(is:located:in) asia +syria text(was:a:neighboring:state:to) israel +syria text(borders:with) turkey +syria text(neighbors:withborders) jordan +syria text(neighbors) lebanon +syria text(is:butted:against) iraq +india text(was:butted:against) bhutan +india text(is:a:neighboring:country:of) myanmar +morocco text(was:a:neighboring:country:of) spain +kenya text(was:a:neighbor:of) tanzania +south_sudan text(is:a:neighbor:of) sudan +ghana text(is:a:neighboring:state:to) burkina_faso +ghana text(was:a:neighboring:state:to) ivory_coast +ghana text(borders:with) togo +thailand text(neighbors:withborders) cambodia +thailand text(neighbors) myanmar +thailand text(is:butted:against) laos +thailand text(was:butted:against) malaysia +sudan text(is:a:neighboring:country:of) chad +sudan text(was:a:neighboring:country:of) libya +sudan text(was:a:neighbor:of) south_sudan +sudan text(is:a:neighbor:of) eritrea +sudan text(is:a:neighboring:state:to) central_african_republic +sudan text(was:a:neighboring:state:to) egypt +sudan text(borders:with) ethiopia +cambodia text(neighbors:withborders) thailand +zimbabwe text(neighbors) zambia +zimbabwe text(is:butted:against) south_africa +zimbabwe text(was:butted:against) botswana +zimbabwe text(is:a:neighboring:country:of) mozambique +lebanon text(was:a:neighboring:country:of) syria +sint_maarten text(was:a:neighbor:of) saint_martin +ethiopia text(is:a:neighbor:of) eritrea +ethiopia text(is:a:neighboring:state:to) djibouti +ethiopia text(was:a:neighboring:state:to) sudan +guinea-bissau text(was:located:in) western_africa +guinea-bissau text(could:be:found:in) africa +guinea-bissau text(borders:with) guinea +guinea-bissau text(neighbors:withborders) senegal +libya text(neighbors) egypt +libya text(is:butted:against) sudan +bhutan text(can:be:found:in) southern_asia +bhutan text(was:positioned:in) asia +bhutan text(was:butted:against) china +bhutan text(is:a:neighboring:country:of) india +macau text(is:positioned:in) eastern_asia +macau text(was:localized:in) asia +macau text(was:a:neighboring:country:of) china +somalia text(was:a:neighbor:of) djibouti +russia text(is:a:neighbor:of) kazakhstan +russia text(is:a:neighboring:state:to) norway +russia text(was:a:neighboring:state:to) mongolia +panama text(is:localized:in) central_america +panama text(was:present:in) americas +panama text(borders:with) costa_rica +panama text(neighbors:withborders) colombia +papua_new_guinea text(neighbors) indonesia +oman text(is:butted:against) saudi_arabia +israel text(was:butted:against) egypt +israel text(is:a:neighboring:country:of) jordan +israel text(was:a:neighboring:country:of) syria +togo text(was:a:neighbor:of) burkina_faso +togo text(is:a:neighbor:of) ghana +iran text(is:a:neighboring:state:to) iraq +saint_martin text(is:present:in) caribbean +saint_martin text(is:still:in) americas +saint_martin text(was:a:neighboring:state:to) sint_maarten +denmark text(borders:with) germany +kosovo text(was:still:in) eastern_europe +kosovo text(was:currently:in) europe +kosovo text(neighbors:withborders) serbia +kosovo text(neighbors) albania +kosovo text(is:butted:against) macedonia +kosovo text(was:butted:against) montenegro +eritrea text(is:a:neighboring:country:of) djibouti +eritrea text(was:a:neighboring:country:of) sudan +eritrea text(was:a:neighbor:of) ethiopia +niger text(is:a:neighbor:of) burkina_faso +rwanda text(is:a:neighboring:state:to) tanzania +united_arab_emirates text(was:a:neighboring:state:to) saudi_arabia +greece text(borders:with) bulgaria +senegal text(neighbors:withborders) guinea-bissau +monaco text(neighbors) france +djibouti text(is:butted:against) eritrea +djibouti text(was:butted:against) somalia +djibouti text(is:a:neighboring:country:of) ethiopia +indonesia text(was:a:neighboring:country:of) papua_new_guinea +indonesia text(was:a:neighbor:of) timor-leste +indonesia text(is:a:neighbor:of) malaysia +uganda text(is:a:neighboring:state:to) tanzania +macedonia text(was:a:neighboring:state:to) kosovo +macedonia text(borders:with) bulgaria +ecuador text(neighbors:withborders) peru +ecuador text(neighbors) colombia +brazil text(is:butted:against) french_guiana +brazil text(was:butted:against) suriname +brazil text(is:a:neighboring:country:of) venezuela +brazil text(was:a:neighboring:country:of) guyana +finland text(was:a:neighbor:of) norway +jordan text(is:a:neighbor:of) saudi_arabia +jordan text(is:a:neighboring:state:to) israel +jordan text(was:a:neighboring:state:to) iraq +jordan text(borders:with) syria +timor-leste text(neighbors:withborders) indonesia +montenegro text(neighbors) kosovo +peru text(is:butted:against) ecuador +ukraine text(was:butted:against) hungary +turkmenistan text(is:a:neighboring:country:of) kazakhstan +gibraltar text(was:a:neighboring:country:of) spain +switzerland text(was:a:neighbor:of) germany +austria text(is:a:neighbor:of) germany +austria text(is:a:neighboring:state:to) hungary +austria text(was:a:neighboring:state:to) czechia +hungary text(borders:with) ukraine +hungary text(neighbors:withborders) slovakia +hungary text(neighbors) slovenia +hungary text(is:butted:against) croatia +hungary text(was:butted:against) austria +hungary text(is:a:neighboring:country:of) serbia +hungary text(was:a:neighboring:country:of) romania +malawi text(was:a:neighbor:of) zambia +malawi text(is:a:neighbor:of) tanzania +albania text(is:a:neighboring:state:to) kosovo +kuwait text(was:a:neighboring:state:to) saudi_arabia +kuwait text(borders:with) iraq +south_africa text(neighbors:withborders) botswana +south_africa text(neighbors) zimbabwe +benin text(is:butted:against) burkina_faso +croatia text(was:butted:against) hungary +sweden text(is:a:neighboring:country:of) norway +mexico text(was:a:neighboring:country:of) united_states +bangladesh text(was:a:neighbor:of) myanmar +malaysia text(is:a:neighbor:of) thailand +malaysia text(is:a:neighboring:state:to) indonesia +luxembourg text(was:a:neighboring:state:to) germany +honduras text(borders:with) nicaragua +mali text(neighbors:withborders) burkina_faso +french_guiana text(neighbors) brazil +french_guiana text(is:butted:against) suriname +yemen text(was:butted:against) saudi_arabia +venezuela text(is:a:neighboring:country:of) brazil +venezuela text(was:a:neighboring:country:of) guyana +venezuela text(was:a:neighbor:of) colombia +united_states text(is:a:neighbor:of) canada +united_states text(is:a:neighboring:state:to) mexico +slovenia text(was:a:neighboring:state:to) hungary +china text(borders:with) bhutan +china text(neighbors:withborders) macau +china text(neighbors) kazakhstan +china text(is:butted:against) myanmar +china text(was:butted:against) mongolia +andorra text(is:a:neighboring:country:of) spain +palestine text(was:a:neighboring:country:of) jordan +palestine text(was:a:neighbor:of) egypt +france text(is:a:neighbor:of) germany +france text(is:a:neighboring:state:to) monaco +france text(was:a:neighboring:state:to) spain +mongolia text(is:currently:in) eastern_asia +mongolia text(was:situated:in) asia +mongolia text(borders:with) china +mongolia text(neighbors:withborders) russia \ No newline at end of file diff --git a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_country2text.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_country2text.tsv deleted file mode 100644 index b37c3b8..0000000 --- a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_country2text.tsv +++ /dev/null @@ -1,979 +0,0 @@ -text(بالاو) locatedIn text(Micronesia) -text(Palau) locatedIn text(大洋洲) -text(मालदीव) locatedIn text(南亚) -text(Maldivas) locatedIn text(آسيا) -text(ब्रुनेई) locatedIn text(Zuidoost-Azië) -text(Brunéi) locatedIn text(एशिया) -text(Brunei) neighborOf text(Maleisië) -text(日本) locatedIn text(شرق:آسيا) -text(Japan) locatedIn text(Azië) -text(Nederland) neighborOf text(ألمانيا) -text(नीदरलैण्ड) neighborOf text(बेल्जियम) -text(Turkije) neighborOf text(أرمينيا) -text(土耳其) neighborOf text(أذربيجان) -text(تركيا) neighborOf text(伊朗) -text(Turquía) neighborOf text(Greece) -text(Turkey) neighborOf text(جورجيا) -text(तुर्की) neighborOf text(保加利亚) -text(Turkije) neighborOf text(Irak) -text(土耳其) neighborOf text(Syrië) -text(अंगोला) locatedIn text(Centraal-Afrika) -text(Angola) neighborOf text(刚果民主共和国) -text(Angola) neighborOf text(Namibia) -text(安哥拉) neighborOf text(贊比亞) -text(أنغولا) neighborOf text(कांगो:गणराज्य) -text(Armenië) locatedIn text(Asia:Occidental) -text(Armenia) neighborOf text(Georgië) -text(आर्मीनिया) neighborOf text(Azerbeidzjan) -text(亞美尼亞) neighborOf text(Iran) -text(Armenia) neighborOf text(تركيا) -text(أنتيغوا:وباربودا) locatedIn text(加勒比地区) -text(Antigua:and:Barbuda) locatedIn text(美洲) -text(Esuatini) locatedIn text(إفريقيا:الجنوبية) -text(Swaziland) neighborOf text(南非) -text(एस्वातीनी) neighborOf text(موزمبيق) -text(واليس:وفوتونا) locatedIn text(Polynesia) -text(瓦利斯和富圖納) locatedIn text(أوقيانوسيا) -text(उरुग्वे) locatedIn text(South:America) -text(Uruguay) locatedIn text(महाअमेरिका) -text(Uruguay) neighborOf text(阿根廷) -text(Uruguay) neighborOf text(Brasil) -text(Zambia) locatedIn text(África:Oriental) -text(Zambia) neighborOf text(तंज़ानिया) -text(زامبيا) neighborOf text(Mozambique) -text(ज़ाम्बिया) neighborOf text(جمهورية:الكونغو:الديمقراطية) -text(Zambia) neighborOf text(Angola) -text(贊比亞) neighborOf text(波札那) -text(Zambia) neighborOf text(Zimbabue) -text(Zambia) neighborOf text(ناميبيا) -text(زامبيا) neighborOf text(मलावी) -text(塞浦路斯) locatedIn text(Eastern:Europe) -text(Chipre) locatedIn text(Europa) -text(Cyprus) neighborOf text(المملكة:المتحدة) -text(Verenigd:Koninkrijk) locatedIn text(Noord-Europa) -text(यूनाइटेड:किंगडम) locatedIn text(यूरोप) -text(المملكة:المتحدة) neighborOf text(United:Kingdom) -text(Burundi) locatedIn text(पूर्वी:अफ्रीका) -text(بوروندي) neighborOf text(कांगो:लोकतान्त्रिक:गणराज्य) -text(蒲隆地) neighborOf text(रवाण्डा) -text(Burundi) neighborOf text(坦桑尼亞) -text(Central:African:Republic) locatedIn text(África:Central) -text(Centraal-Afrikaanse:Republiek) neighborOf text(चाड) -text(República:Centroafricana) neighborOf text(República:del:Congo) -text(मध्य:अफ़्रीकी:गणराज्य) neighborOf text(República:Democrática:del:Congo) -text(中非共和國) neighborOf text(दक्षिण:सूडान) -text(جمهورية:إفريقيا:الوسطى) neighborOf text(喀麦隆) -text(Central:African:Republic) neighborOf text(السودان) -text(تونغا) locatedIn text(بولنيزيا) -text(Tonga) locatedIn text(Oceanía) -text(कोत:दिव्वार) locatedIn text(पश्चिमी:अफ्रीका) -text(科特迪瓦) neighborOf text(Burkina:Faso) -text(Ivoorkust) neighborOf text(घाना) -text(Costa:de:Marfil) neighborOf text(ليبيريا) -text(Ivory:Coast) neighborOf text(مالي) -text(ساحل:العاج) neighborOf text(غينيا) -text(Sierra:Leona) neighborOf text(Liberia) -text(塞拉利昂) neighborOf text(Guinea) -text(Mayotte) locatedIn text(East:Africa) -text(मेयोट) locatedIn text(अफ्रीका) -text(Polen) neighborOf text(德國) -text(波蘭) neighborOf text(युक्रेन) -text(Poland) neighborOf text(Slovakia) -text(पोलैंड) neighborOf text(白俄羅斯) -text(بولندا) neighborOf text(Russia) -text(Polonia) neighborOf text(Lituania) -text(Polen) neighborOf text(Czech:Republic) -text(कज़ाख़िस्तान) locatedIn text(آسيا:الوسطى) -text(Kazachstan) neighborOf text(Turkmenistan) -text(Kazajistán) neighborOf text(República:Popular:China) -text(哈萨克斯坦) neighborOf text(قرغيزستان) -text(Kazakhstan) neighborOf text(उज़्बेकिस्तान) -text(كازاخستان) neighborOf text(रूस) -text(Uzbekistan) locatedIn text(Central:Asia) -text(أوزبكستان) neighborOf text(أفغانستان) -text(乌兹别克斯坦) neighborOf text(तुर्कमेनिस्तान) -text(Uzbekistán) neighborOf text(कज़ाख़िस्तान) -text(Oezbekistan) neighborOf text(Kyrgyzstan) -text(उज़्बेकिस्तान) neighborOf text(Tadzjikistan) -text(جزر:توركس:وكايكوس) locatedIn text(कैरिबिया) -text(特克斯和凯科斯群岛) locatedIn text(Amerika) -text(新喀里多尼亞) locatedIn text(Melanesia) -text(Nieuw-Caledonië) locatedIn text(ओशिआनिया) -text(Pakistán) neighborOf text(चीनी:जनवादी:गणराज्य) -text(पाकिस्तान) neighborOf text(阿富汗) -text(Pakistan) neighborOf text(إيران) -text(باكستان) neighborOf text(الهند) -text(अर्जेण्टीना) locatedIn text(أمريكا:الجنوبية) -text(Argentinië) neighborOf text(Bolivia) -text(الأرجنتين) neighborOf text(Chili) -text(Argentina) neighborOf text(Brazil) -text(Argentina) neighborOf text(Paraguay) -text(阿根廷) neighborOf text(烏拉圭) -text(Cuba) locatedIn text(Caribbean) -text(क्यूबा) locatedIn text(América) -text(صربيا) neighborOf text(Macedonia:del:Norte) -text(Serbia) neighborOf text(मॉन्टेनीग्रो) -text(塞爾維亞) neighborOf text(科索沃) -text(Servië) neighborOf text(波斯尼亚和黑塞哥维那) -text(सर्बिया) neighborOf text(क्रोएशिया) -text(Serbia) neighborOf text(Hungría) -text(صربيا) neighborOf text(Bulgaria) -text(Serbia) neighborOf text(Romania) -text(Tsjechië) locatedIn text(东欧) -text(جمهورية:التشيك) neighborOf text(जर्मनी) -text(República:Checa) neighborOf text(ऑस्ट्रिया) -text(चेक:गणराज्य) neighborOf text(波蘭) -text(捷克) neighborOf text(Eslovaquia) -text(نيكاراغوا) neighborOf text(Honduras) -text(Nicaragua) neighborOf text(Costa:Rica) -text(Vietnam) locatedIn text(东南亚) -text(越南) locatedIn text(Asia) -text(فيتنام) neighborOf text(Camboya) -text(वियतनाम) neighborOf text(Laos) -text(Vietnam) neighborOf text(Volksrepubliek:China) -text(Niue) locatedIn text(पोलीनेशिया) -text(Niue) locatedIn text(Oceania) -text(कनाडा) locatedIn text(北美洲) -text(كندا) neighborOf text(Verenigde:Staten) -text(斯洛伐克) neighborOf text(أوكرانيا) -text(स्लोवाकिया) neighborOf text(Poland) -text(سلوفاكيا) neighborOf text(奧地利) -text(Slowakije) neighborOf text(المجر) -text(Slovakia) neighborOf text(Czech:Republic) -text(Mozambique) neighborOf text(Tanzania) -text(मोज़ाम्बीक) neighborOf text(Eswatini) -text(莫桑比克) neighborOf text(زيمبابوي) -text(Mozambique) neighborOf text(ज़ाम्बिया) -text(موزمبيق) neighborOf text(Malaui) -text(Mozambique) neighborOf text(दक्षिण:अफ़्रीका) -text(أروبا) locatedIn text(Caraïben) -text(अरूबा) locatedIn text(Americas) -text(Bolivia) locatedIn text(南美洲) -text(Bolivia) neighborOf text(智利) -text(बोलिविया) neighborOf text(巴西) -text(بوليفيا) neighborOf text(Paraguay) -text(玻利維亞) neighborOf text(अर्जेण्टीना) -text(Bolivia) neighborOf text(Perú) -text(Colombia) locatedIn text(América:del:Sur) -text(哥伦比亚) neighborOf text(厄瓜多尔) -text(Colombia) neighborOf text(Brazilië) -text(कोलम्बिया) neighborOf text(Panama) -text(كولومبيا) neighborOf text(فنزويلا) -text(Colombia) neighborOf text(بيرو) -text(斐濟) locatedIn text(Melanesia) -text(फ़िजी) locatedIn text(Oceanië) -text(جمهورية:الكونغو) neighborOf text(الغابون) -text(剛果共和國) neighborOf text(Congo-Kinshasa) -text(Congo-Brazzaville) neighborOf text(अंगोला) -text(Republic:of:the:Congo) neighborOf text(الكاميرون) -text(कांगो:गणराज्य) neighborOf text(Centraal-Afrikaanse:Republiek) -text(السعودية) neighborOf text(Catar) -text(सउदी:अरब) neighborOf text(संयुक्त:अरब:अमीरात) -text(Saudi:Arabia) neighborOf text(Jordan) -text(Saoedi-Arabië) neighborOf text(اليمن) -text(Arabia:Saudí) neighborOf text(Oman) -text(沙特阿拉伯) neighborOf text(科威特) -text(السعودية) neighborOf text(العراق) -text(El:Salvador) locatedIn text(Central:America) -text(अल:साल्वाडोर) neighborOf text(Guatemala) -text(السلفادور) neighborOf text(Honduras) -text(Madagascar) locatedIn text(شرق:إفريقيا) -text(Madagaskar) locatedIn text(非洲) -text(Australië) locatedIn text(nan) -text(澳大利亚) locatedIn text(大洋洲) -text(नामीबिया) locatedIn text(Zuidelijk:Afrika) -text(Namibië) locatedIn text(إفريقيا) -text(纳米比亚) neighborOf text(Zambia) -text(Namibia) neighborOf text(Angola) -text(Namibia) neighborOf text(Zuid-Afrika) -text(ناميبيا) neighborOf text(Botsuana) -text(吐瓦魯) locatedIn text(玻里尼西亞) -text(Tuvalu) locatedIn text(أوقيانوسيا) -text(سفالبارد:ويان:ماين) locatedIn text(Europa:del:Norte) -text(Svalbard:and:Jan:Mayen) locatedIn text(Europe) -text(马恩岛) locatedIn text(北歐) -text(आइल:ऑफ़:मैन) locatedIn text(Europa) -text(圭亚那) neighborOf text(ब्राज़ील) -text(Guyana) neighborOf text(سورينام) -text(غيانا) neighborOf text(委內瑞拉) -text(الفاتيكان) locatedIn text(أوروبا:الجنوبية) -text(Vatican:City) locatedIn text(أوروبا) -text(वैटिकन:नगर) neighborOf text(Italia) -text(ब्रिटिश:हिंद:महासागर:क्षेत्र) locatedIn text(Oost-Afrika) -text(إقليم:المحيط:الهندي:البريطاني) locatedIn text(Africa) -text(Nigeria) locatedIn text(West:Africa) -text(Nigeria) locatedIn text(África) -text(नाइजीरिया) neighborOf text(Chad) -text(奈及利亞) neighborOf text(尼日尔) -text(نيجيريا) neighborOf text(Kameroen) -text(Nigeria) neighborOf text(बेनिन) -text(Duitsland) neighborOf text(Dinamarca) -text(Alemania) neighborOf text(Países:Bajos) -text(Germany) neighborOf text(पोलैंड) -text(ألمانيا) neighborOf text(Luxemburgo) -text(德國) neighborOf text(Bélgica) -text(जर्मनी) neighborOf text(Suiza) -text(Duitsland) neighborOf text(Austria) -text(Alemania) neighborOf text(France) -text(Germany) neighborOf text(Tsjechië) -text(Burkina:Faso) neighborOf text(Togo) -text(بوركينا:فاسو) neighborOf text(Benin) -text(Burkina:Faso) neighborOf text(नाइजर) -text(बुर्किना:फासो) neighborOf text(Ghana) -text(布吉納法索) neighborOf text(Mali) -text(Burkina:Faso) neighborOf text(कोत:दिव्वार) -text(تنزانيا) neighborOf text(Uganda) -text(Tanzania) neighborOf text(Mozambique) -text(Tanzania) neighborOf text(Democratic:Republic:of:the:Congo) -text(तंज़ानिया) neighborOf text(Kenia) -text(坦桑尼亞) neighborOf text(Ruanda) -text(Tanzania) neighborOf text(贊比亞) -text(تنزانيا) neighborOf text(馬拉威) -text(Tanzania) neighborOf text(बुरुण्डी) -text(Northern:Mariana:Islands) locatedIn text(Micronesia) -text(北马里亚纳群岛) locatedIn text(Oceanía) -text(Belize) locatedIn text(أمريكا:الوسطى) -text(बेलीज़) neighborOf text(Guatemala) -text(Belice) neighborOf text(墨西哥) -text(नॉर्वे) neighborOf text(Zweden) -text(النرويج) neighborOf text(Finlandia) -text(Noorwegen) neighborOf text(俄罗斯) -text(islas:Cocos) locatedIn text(nan) -text(科科斯(基林)群島) locatedIn text(ओशिआनिया) -text(Laos) locatedIn text(Southeast:Asia) -text(लाओस) neighborOf text(People's:Republic:of:China) -text(Laos) neighborOf text(कम्बोडिया) -text(لاوس) neighborOf text(ميانمار) -text(老撾) neighborOf text(Vietnam) -text(Laos) neighborOf text(Thailand) -text(Sahrawi:Arab:Democratic:Republic) locatedIn text(उत्तर:अफ़्रीका) -text(República:Árabe:Saharaui:Democrática) neighborOf text(Argelia) -text(सहरावी:अरब:जनतांत्रिक:गणराज्य) neighborOf text(मॉरीतानिया) -text(撒拉威阿拉伯民主共和國) neighborOf text(Marruecos) -text(Suriname) locatedIn text(दक्षिण:अमेरिका) -text(सूरीनाम) neighborOf text(البرازيل) -text(Suriname) neighborOf text(غويانا:الفرنسية) -text(Surinam) neighborOf text(Guyana) -text(جزيرة:عيد:الميلاد) locatedIn text(Australië:en:Nieuw-Zeeland) -text(क्रिसमस:द्वीप) locatedIn text(Oceania) -text(圣多美和普林西比) locatedIn text(وسط:إفريقيا) -text(Sao:Tomé:en:Principe) locatedIn text(Afrika) -text(Egipto) neighborOf text(Libië) -text(Egypte) neighborOf text(Israël) -text(埃及) neighborOf text(Sudan) -text(Bulgaria) neighborOf text(北马其顿) -text(Bulgarije) neighborOf text(Turquía) -text(बुल्गारिया) neighborOf text(यूनान) -text(بلغاريا) neighborOf text(塞爾維亞) -text(保加利亚) neighborOf text(羅馬尼亞) -text(गिनी) locatedIn text(西非) -text(Guinee) neighborOf text(غينيا:بيساو) -text(几内亚) neighborOf text(सिएरा:लियोन) -text(Guinea) neighborOf text(马里) -text(غينيا) neighborOf text(Liberia) -text(Guinea) neighborOf text(Senegal) -text(गिनी) neighborOf text(科特迪瓦) -text(Spanje) neighborOf text(Morocco) -text(إسبانيا) neighborOf text(Gibraltar) -text(España) neighborOf text(Andorra) -text(स्पेन) neighborOf text(Francia) -text(西班牙) neighborOf text(Portugal) -text(كوستاريكا) locatedIn text(Centraal-Amerika) -text(Costa:Rica) neighborOf text(بنما) -text(哥斯达黎加) neighborOf text(Nicaragua) -text(馬耳他) locatedIn text(दक्षिणी:यूरोप) -text(Malta) locatedIn text(欧洲) -text(Portugal) locatedIn text(Southern:Europe) -text(पुर्तगाल) neighborOf text(Spain) -text(Roemenië) locatedIn text(أوروبا:الشرقية) -text(رومانيا) neighborOf text(Oekraïne) -text(रोमानिया) neighborOf text(Hungary) -text(Rumania) neighborOf text(मोल्डोवा) -text(Romania) neighborOf text(Bulgaria) -text(羅馬尼亞) neighborOf text(Servië) -text(San:Marino) locatedIn text(Zuid-Europa) -text(San:Marino) locatedIn text(Europa) -text(सान:मारिनो) neighborOf text(इटली) -text(Mauritanië) locatedIn text(África:Occidental) -text(毛里塔尼亞) locatedIn text(अफ्रीका) -text(Mauritania) neighborOf text(الجزائر) -text(Mauritania) neighborOf text(माली) -text(موريتانيا) neighborOf text(Sahrawi:Arabische:Democratische:Republiek) -text(मॉरीतानिया) neighborOf text(Senegal) -text(千里達及托巴哥) locatedIn text(Caribe) -text(Trinidad:and:Tobago) locatedIn text(أمريكتان) -text(Bahrein) locatedIn text(西亚) -text(البحرين) locatedIn text(Asia) -text(緬甸) neighborOf text(India) -text(Birmania) neighborOf text(Bangladés) -text(Myanmar) neighborOf text(中华人民共和国) -text(म्यान्मार) neighborOf text(Laos) -text(Myanmar) neighborOf text(تايلاند) -text(इराक) neighborOf text(Turkey) -text(Irak) neighborOf text(सउदी:अरब) -text(伊拉克) neighborOf text(Iran) -text(Iraq) neighborOf text(Jordania) -text(Irak) neighborOf text(Kuwait) -text(العراق) neighborOf text(Syria) -text(Islas:Georgias:del:Sur:y:Sandwich:del:Sur) locatedIn text(Zuid-Amerika) -text(दक्षिण:जॉर्जिया:एवं:दक्षिण:सैंडविच:द्वीप:समूह) locatedIn text(美洲) -text(आइसलैण्ड) locatedIn text(أوروبا:الشمالية) -text(Iceland) locatedIn text(यूरोप) -text(刚果民主共和国) locatedIn text(Central:Africa) -text(جمهورية:الكونغو:الديمقراطية) neighborOf text(Uganda) -text(कांगो:लोकतान्त्रिक:गणराज्य) neighborOf text(Tanzania) -text(República:Democrática:del:Congo) neighborOf text(República:del:Congo) -text(Congo-Kinshasa) neighborOf text(República:Centroafricana) -text(Democratic:Republic:of:the:Congo) neighborOf text(Angola) -text(刚果民主共和国) neighborOf text(Rwanda) -text(جمهورية:الكونغو:الديمقراطية) neighborOf text(Sudán:del:Sur) -text(कांगो:लोकतान्त्रिक:गणराज्य) neighborOf text(Zambia) -text(República:Democrática:del:Congo) neighborOf text(Burundi) -text(Seychelles) locatedIn text(东部非洲) -text(سيشل) locatedIn text(非洲) -text(किर्गिज़स्तान) neighborOf text(الصين) -text(Kirgizië) neighborOf text(Kazachstan) -text(Kirguistán) neighborOf text(طاجيكستان) -text(吉尔吉斯斯坦) neighborOf text(Uzbekistan) -text(Botswana) locatedIn text(Southern:Africa) -text(बोत्सवाना) neighborOf text(津巴布韦) -text(بوتسوانا) neighborOf text(नामीबिया) -text(Botswana) neighborOf text(Zambia) -text(波札那) neighborOf text(South:Africa) -text(Islas:Feroe) locatedIn text(Northern:Europe) -text(Faroe:Islands) locatedIn text(Europe) -text(جامايكا) locatedIn text(الكاريبي) -text(牙買加) locatedIn text(महाअमेरिका) -text(美屬薩摩亞) locatedIn text(Polynesië) -text(American:Samoa) locatedIn text(Oceanië) -text(ليسوتو) locatedIn text(दक्षिणी:अफ्रीका) -text(Lesotho) locatedIn text(إفريقيا) -text(莱索托) neighborOf text(Sudáfrica) -text(Sri:Lanka) neighborOf text(भारत) -text(بلجيكا) locatedIn text(Western:Europe) -text(België) neighborOf text(ألمانيا) -text(Belgium) neighborOf text(Luxemburg) -text(比利時) neighborOf text(فرنسا) -text(बेल्जियम) neighborOf text(荷蘭) -text(क़तर) locatedIn text(West:Asia) -text(Qatar) neighborOf text(Saudi:Arabia) -text(सोलोमन:द्वीपसमूह) locatedIn text(ميلانيزيا) -text(Salomonseilanden) locatedIn text(大洋洲) -text(敘利亞) locatedIn text(غرب:آسيا) -text(سوريا) neighborOf text(إسرائيل) -text(सीरिया) neighborOf text(तुर्की) -text(Siria) neighborOf text(الأردن) -text(Syrië) neighborOf text(黎巴嫩) -text(Syria) neighborOf text(इराक) -text(印度) locatedIn text(Asia:del:Sur) -text(India) neighborOf text(अफ़्ग़ानिस्तान) -text(India) neighborOf text(Bhutan) -text(الهند) neighborOf text(孟加拉國) -text(India) neighborOf text(República:Popular:China) -text(भारत) neighborOf text(نيبال) -text(印度) neighborOf text(ميانمار) -text(India) neighborOf text(巴基斯坦) -text(India) neighborOf text(سريلانكا) -text(المغرب) neighborOf text(अल्जीरिया) -text(मोरक्को) neighborOf text(Spanje) -text(摩洛哥) neighborOf text(الجمهورية:العربية:الصحراوية:الديمقراطية) -text(Kenia) locatedIn text(África:Oriental) -text(Kenya) neighborOf text(أوغندا) -text(कीनिया) neighborOf text(तंज़ानिया) -text(肯尼亚) neighborOf text(Somalië) -text(كينيا) neighborOf text(南蘇丹) -text(Kenia) neighborOf text(Etiopía) -text(Zuid-Soedan) locatedIn text(मध्य:अफ्रीका) -text(جنوب:السودان) neighborOf text(Oeganda) -text(South:Sudan) neighborOf text(Congo-Kinshasa) -text(दक्षिण:सूडान) neighborOf text(Kenia) -text(Sudán:del:Sur) neighborOf text(मध्य:अफ़्रीकी:गणराज्य) -text(南蘇丹) neighborOf text(Sudán) -text(Zuid-Soedan) neighborOf text(إثيوبيا) -text(Ghana) neighborOf text(Burkina:Faso) -text(迦納) neighborOf text(Ivoorkust) -text(غانا) neighborOf text(多哥) -text(ताजीकिस्तान) locatedIn text(Centraal-Azië) -text(Tayikistán) neighborOf text(चीनी:जनवादी:गणराज्य) -text(塔吉克斯坦) neighborOf text(قرغيزستان) -text(Tajikistan) neighborOf text(Afghanistan) -text(Tadzjikistan) neighborOf text(أوزبكستان) -text(馬紹爾群島) locatedIn text(ميكرونيسيا) -text(मार्शल:द्वीपसमूह) locatedIn text(أوقيانوسيا) -text(Cameroon) locatedIn text(中部非洲) -text(Camerún) neighborOf text(Tsjaad) -text(कैमरुन) neighborOf text(جمهورية:الكونغو) -text(喀麦隆) neighborOf text(गबॉन) -text(الكاميرون) neighborOf text(赤道几内亚) -text(Kameroen) neighborOf text(中非共和國) -text(Cameroon) neighborOf text(Nigeria) -text(Nauru) locatedIn text(माइक्रोनीशिया) -text(Nauru) locatedIn text(Oceanía) -text(Thailand) neighborOf text(Cambodja) -text(थाईलैंड) neighborOf text(緬甸) -text(泰國) neighborOf text(लाओस) -text(Tailandia) neighborOf text(Malaysia) -text(सूडान) neighborOf text(Chad) -text(苏丹) neighborOf text(ليبيا) -text(Soedan) neighborOf text(جنوب:السودان) -text(السودان) neighborOf text(Eritrea) -text(Sudan) neighborOf text(جمهورية:إفريقيا:الوسطى) -text(Sudán) neighborOf text(مصر) -text(सूडान) neighborOf text(埃塞俄比亚) -text(تشاد) locatedIn text(Centraal-Afrika) -text(乍得) neighborOf text(利比亞) -text(चाड) neighborOf text(Níger) -text(Chad) neighborOf text(South:Sudan) -text(Tsjaad) neighborOf text(Camerún) -text(Chad) neighborOf text(Central:African:Republic) -text(تشاد) neighborOf text(Nigeria) -text(Vanuatu) locatedIn text(मॅलानिशिया) -text(Vanuatu) locatedIn text(ओशिआनिया) -text(केप:वर्दे) locatedIn text(West-Afrika) -text(Cabo:Verde) locatedIn text(Africa) -text(Falkland:Islands) locatedIn text(South:America) -text(Falklandeilanden) locatedIn text(Amerika) -text(Liberia) locatedIn text(غرب:إفريقيا) -text(लाइबेरिया) neighborOf text(Costa:de:Marfil) -text(利比里亞) neighborOf text(سيراليون) -text(ليبيريا) neighborOf text(Guinee) -text(كمبوديا) locatedIn text(جنوب:شرق:آسيا) -text(柬埔寨) neighborOf text(Vietnam) -text(Cambodia) neighborOf text(Thailand) -text(Camboya) neighborOf text(Laos) -text(ज़िम्बाब्वे) neighborOf text(زامبيا) -text(Zimbabwe) neighborOf text(جنوب:إفريقيا) -text(Zimbabwe) neighborOf text(Botsuana) -text(Zimbabue) neighborOf text(मोज़ाम्बीक) -text(Comoren) locatedIn text(पूर्वी:अफ्रीका) -text(葛摩) locatedIn text(África) -text(Guam) locatedIn text(Micronesië) -text(Guam) locatedIn text(Oceania) -text(Bahama's) locatedIn text(加勒比地区) -text(Bahamas) locatedIn text(América) -text(लेबनॉन) locatedIn text(पश्चिमी:एशिया) -text(Libanon) locatedIn text(亞洲) -text(Líbano) neighborOf text(以色列) -text(Lebanon) neighborOf text(敘利亞) -text(سانت:مارتن) locatedIn text(कैरिबिया) -text(San:Martín) locatedIn text(Americas) -text(Sint:Maarten) neighborOf text(San:Martín) -text(इथियोपिया) locatedIn text(East:Africa) -text(Ethiopië) neighborOf text(Somalia) -text(Ethiopia) neighborOf text(Kenya) -text(Etiopía) neighborOf text(Eritrea) -text(إثيوبيا) neighborOf text(दक्षिण:सूडान) -text(埃塞俄比亚) neighborOf text(जिबूती) -text(इथियोपिया) neighborOf text(苏丹) -text(United:States:Virgin:Islands) locatedIn text(Caribbean) -text(Amerikaanse:Maagdeneilanden) locatedIn text(أمريكتان) -text(Guinea-Bisáu) locatedIn text(पश्चिमी:अफ्रीका) -text(Guinea-Bissau) locatedIn text(Afrika) -text(畿內亞比紹) neighborOf text(几内亚) -text(Guinee-Bissau) neighborOf text(塞内加尔) -text(Libya) locatedIn text(Norte:de:África) -text(Libia) neighborOf text(乍得) -text(लीबिया) neighborOf text(تونس) -text(Libië) neighborOf text(النيجر) -text(ليبيا) neighborOf text(Algerije) -text(利比亞) neighborOf text(Egypt) -text(Libya) neighborOf text(Soedan) -text(Bhutan) locatedIn text(Zuid-Azië) -text(भूटान) locatedIn text(آسيا) -text(不丹) neighborOf text(Volksrepubliek:China) -text(بوتان) neighborOf text(الهند) -text(Macau) locatedIn text(East:Asia) -text(Macao) locatedIn text(एशिया) -text(澳門) neighborOf text(People's:Republic:of:China) -text(Polinesia:Francesa) locatedIn text(Polinesia) -text(بولنيزيا:الفرنسية) locatedIn text(Oceanië) -text(الصومال) locatedIn text(شرق:إفريقيا) -text(सोमालिया) neighborOf text(吉布提) -text(Somalia) neighborOf text(कीनिया) -text(索馬里) neighborOf text(Ethiopië) -text(聖巴泰勒米) locatedIn text(Caraïben) -text(San:Bartolomé) locatedIn text(美洲) -text(روسيا) locatedIn text(Europa:Oriental) -text(Rusia) neighborOf text(Ukraine) -text(Rusland) neighborOf text(बेलारूस) -text(Russia) neighborOf text(中华人民共和国) -text(रूस) neighborOf text(Kazajistán) -text(俄罗斯) neighborOf text(挪威) -text(روسيا) neighborOf text(بولندا) -text(Rusia) neighborOf text(Azerbaiyán) -text(Rusland) neighborOf text(Litouwen) -text(Russia) neighborOf text(إستونيا) -text(रूस) neighborOf text(Corea:del:Norte) -text(俄罗斯) neighborOf text(Finland) -text(روسيا) neighborOf text(Mongolia) -text(Rusia) neighborOf text(拉脫維亞) -text(Rusland) neighborOf text(Georgia) -text(न्यूज़ीलैंड) locatedIn text(nan) -text(Nueva:Zelanda) locatedIn text(大洋洲) -text(Panamá) locatedIn text(América:Central) -text(Panama) locatedIn text(महाअमेरिका) -text(巴拿馬) neighborOf text(Costa:Rica) -text(पनामा) neighborOf text(Colombia) -text(بابوا:غينيا:الجديدة) locatedIn text(美拉尼西亞) -text(Papoea-Nieuw-Guinea) neighborOf text(Indonesië) -text(उत्तर:कोरिया) neighborOf text(الصين) -text(كوريا:الشمالية) neighborOf text(South:Korea) -text(朝鮮民主主義人民共和國) neighborOf text(Russia) -text(Letonia) locatedIn text(उत्तरी:यूरोप) -text(लातविया) neighborOf text(लिथुआनिया) -text(Letland) neighborOf text(Bielorrusia) -text(لاتفيا) neighborOf text(रूस) -text(Latvia) neighborOf text(Estonia) -text(سلطنة:عمان) locatedIn text(Zuidwest-Azië) -text(ओमान) neighborOf text(Saoedi-Arabië) -text(阿曼) neighborOf text(Yemen) -text(Oman) neighborOf text(阿拉伯联合酋长国) -text(Saint-Pierre:en:Miquelon) locatedIn text(أمريكا:الشمالية) -text(Saint:Pierre:and:Miquelon) locatedIn text(Amerika) -text(Martinica) locatedIn text(Caribe) -text(Martinique) locatedIn text(América) -text(英国) locatedIn text(Noord-Europa) -text(Verenigd:Koninkrijk) locatedIn text(Europa) -text(यूनाइटेड:किंगडम) neighborOf text(United:Kingdom) -text(Israel) locatedIn text(Asia:Occidental) -text(Israel) neighborOf text(لبنان) -text(इज़राइल) neighborOf text(मिस्र) -text(Israël) neighborOf text(約旦) -text(إسرائيل) neighborOf text(سوريا) -text(جيرزي) locatedIn text(Europa:del:Norte) -text(जर्सी) locatedIn text(أوروبا) -text(Pitcairn:Islands) locatedIn text(Polynesia) -text(皮特凯恩群岛) locatedIn text(أوقيانوسيا) -text(टोगो) locatedIn text(West:Africa) -text(توغو) neighborOf text(بوركينا:فاسو) -text(Togo) neighborOf text(Ghana) -text(Togo) neighborOf text(貝南) -text(किरिबाती) locatedIn text(密克羅尼西亞群島) -text(吉里巴斯) locatedIn text(Oceanía) -text(ईरान) locatedIn text(جنوب:آسيا) -text(Irán) neighborOf text(Afghanistan) -text(伊朗) neighborOf text(Turkmenistán) -text(Iran) neighborOf text(Turkije) -text(إيران) neighborOf text(أرمينيا) -text(Iran) neighborOf text(Azerbaijan) -text(ईरान) neighborOf text(Pakistan) -text(Irán) neighborOf text(Irak) -text(Sint-Maarten) locatedIn text(الكاريبي) -text(सेंट:मार्टिन:की:सामूहिकता) locatedIn text(Americas) -text(تجمع:سان:مارتين) neighborOf text(सेंट:मार्टिन) -text(Dominicaanse:Republiek) locatedIn text(加勒比地区) -text(डोमिनिकन:गणराज्य) locatedIn text(أمريكتان) -text(República:Dominicana) neighborOf text(Haiti) -text(डेनमार्क) neighborOf text(德國) -text(Bermuda) locatedIn text(América:del:Norte) -text(Bermudas) locatedIn text(美洲) -text(تشيلي) neighborOf text(Argentinië) -text(चिली) neighborOf text(Bolivia) -text(Chile) neighborOf text(Peru) -text(Kosovo) locatedIn text(पूर्वी:यूरोप) -text(कोसोवो:गणराज्य) neighborOf text(सर्बिया) -text(Kosovo) neighborOf text(Albanië) -text(Kosovo) neighborOf text(Noord-Macedonië) -text(كوسوفو) neighborOf text(Montenegro) -text(Saint:Kitts:and:Nevis) locatedIn text(कैरिबिया) -text(سانت:كيتس:ونيفيس) locatedIn text(महाअमेरिका) -text(इरित्रिया) neighborOf text(Djibouti) -text(厄立特里亞) neighborOf text(السودان) -text(Eritrea) neighborOf text(Ethiopia) -text(भूमध्यरेखीय:गिनी) locatedIn text(África:Central) -text(Guinea:Ecuatorial) locatedIn text(अफ्रीका) -text(Equatorial:Guinea) neighborOf text(Gabon) -text(غينيا:الاستوائية) neighborOf text(कैमरुन) -text(Niger) locatedIn text(西非) -text(Niger) neighborOf text(चाड) -text(尼日尔) neighborOf text(Libia) -text(नाइजर) neighborOf text(Burkina:Faso) -text(Níger) neighborOf text(بنين) -text(النيجر) neighborOf text(Mali) -text(Niger) neighborOf text(Algeria) -text(Niger) neighborOf text(नाइजीरिया) -text(安圭拉) locatedIn text(Caribbean) -text(Anguilla) locatedIn text(Amerika) -text(رواندا) locatedIn text(Oost-Afrika) -text(卢旺达) neighborOf text(Burundi) -text(Rwanda) neighborOf text(坦桑尼亞) -text(रवाण्डा) neighborOf text(烏干達) -text(Ruanda) neighborOf text(Democratic:Republic:of:the:Congo) -text(الإمارات:العربية:المتحدة) locatedIn text(西亚) -text(Verenigde:Arabische:Emiraten) neighborOf text(Omán) -text(United:Arab:Emirates) neighborOf text(Arabia:Saudí) -text(Estland) locatedIn text(北歐) -text(एस्टोनिया) locatedIn text(欧洲) -text(Estonia) neighborOf text(拉脫維亞) -text(愛沙尼亞) neighborOf text(俄罗斯) -text(Griekenland) locatedIn text(Europa:del:Sur) -text(Grecia) neighborOf text(Bulgaria) -text(希腊) neighborOf text(Albania) -text(اليونان) neighborOf text(North:Macedonia) -text(Greece) neighborOf text(土耳其) -text(Senegal) locatedIn text(África:Occidental) -text(सेनेगल) locatedIn text(非洲) -text(السنغال) neighborOf text(गिनी-बिसाऊ) -text(Senegal) neighborOf text(Mauritanië) -text(Senegal) neighborOf text(Mali) -text(塞内加尔) neighborOf text(Gambia) -text(Senegal) neighborOf text(Guinea) -text(غوادلوب) locatedIn text(Caraïben) -text(瓜德羅普) locatedIn text(América) -text(Monaco) neighborOf text(फ़्रान्स) -text(Djibouti) neighborOf text(إرتريا) -text(Yibuti) neighborOf text(Somalië) -text(جيبوتي) neighborOf text(Etiopía) -text(इंडोनेशिया) neighborOf text(Papua:New:Guinea) -text(Indonesia) neighborOf text(Oost-Timor) -text(印度尼西亚) neighborOf text(Malasia) -text(Islas:Vírgenes:Británicas) locatedIn text(Caribe) -text(ब्रिटिश:वर्जिन:द्वीपसमूह) locatedIn text(Americas) -text(库克群岛) locatedIn text(بولنيزيا) -text(Cookeilanden) locatedIn text(ओशिआनिया) -text(युगाण्डा) locatedIn text(东部非洲) -text(Uganda) neighborOf text(Tanzania) -text(Uganda) neighborOf text(刚果民主共和国) -text(أوغندا) neighborOf text(肯尼亚) -text(Oeganda) neighborOf text(Sudán:del:Sur) -text(烏干達) neighborOf text(Rwanda) -text(مقدونيا:الشمالية) locatedIn text(南欧) -text(उत्तर:मैसिडोनिया) neighborOf text(科索沃) -text(Macedonia:del:Norte) neighborOf text(यूनान) -text(北马其顿) neighborOf text(Albania) -text(Noord-Macedonië) neighborOf text(Serbia) -text(North:Macedonia) neighborOf text(Bulgarije) -text(Túnez) locatedIn text(شمال:إفريقيا) -text(突尼西亞) locatedIn text(إفريقيا) -text(Tunisia) neighborOf text(लीबिया) -text(ट्यूनिशिया) neighborOf text(阿爾及利亞) -text(Ecuador) neighborOf text(पेरू) -text(ईक्वाडोर) neighborOf text(哥伦比亚) -text(Brasil) locatedIn text(أمريكا:الجنوبية) -text(Brazil) neighborOf text(Bolivia) -text(巴西) neighborOf text(Colombia) -text(Brazilië) neighborOf text(巴拉圭) -text(ब्राज़ील) neighborOf text(الأوروغواي) -text(البرازيل) neighborOf text(法屬圭亞那) -text(Brasil) neighborOf text(蘇利南) -text(Brazil) neighborOf text(Venezuela) -text(巴西) neighborOf text(الأرجنتين) -text(Brazilië) neighborOf text(Guyana) -text(ब्राज़ील) neighborOf text(秘鲁) -text(पैराग्वे) locatedIn text(南美洲) -text(Paraguay) locatedIn text(أمريكتان) -text(باراغواي) neighborOf text(Argentina) -text(Paraguay) neighborOf text(البرازيل) -text(Paraguay) neighborOf text(बोलिविया) -text(芬蘭) locatedIn text(أوروبا:الشمالية) -text(فنلندا) neighborOf text(Norway) -text(Finland) neighborOf text(स्वीडन) -text(फ़िनलैण्ड) neighborOf text(روسيا) -text(Jordanië) neighborOf text(沙特阿拉伯) -text(जॉर्डन) neighborOf text(以色列) -text(Jordan) neighborOf text(伊拉克) -text(Jordania) neighborOf text(सीरिया) -text(تيمور:الشرقية) neighborOf text(إندونيسيا) -text(الجبل:الأسود) locatedIn text(أوروبا:الجنوبية) -text(蒙特內哥羅) neighborOf text(Kosovo) -text(Montenegro) neighborOf text(Bosnia:and:Herzegovina) -text(Montenegro) neighborOf text(Kroatië) -text(मॉन्टेनीग्रो) neighborOf text(صربيا) -text(Montenegro) neighborOf text(ألبانيا) -text(Peru) locatedIn text(América:del:Sur) -text(Perú) neighborOf text(الإكوادور) -text(بيرو) neighborOf text(بوليفيا) -text(Peru) neighborOf text(Chile) -text(पेरू) neighborOf text(Brasil) -text(秘鲁) neighborOf text(कोलम्बिया) -text(Montserrat) locatedIn text(الكاريبي) -text(蒙塞拉特島) locatedIn text(美洲) -text(Ucrania) locatedIn text(Oost-Europa) -text(烏克蘭) neighborOf text(Eslovaquia) -text(युक्रेन) neighborOf text(Belarus) -text(أوكرانيا) neighborOf text(Polonia) -text(Oekraïne) neighborOf text(Rusia) -text(Ukraine) neighborOf text(匈牙利) -text(Ucrania) neighborOf text(Moldova) -text(烏克蘭) neighborOf text(Roemenië) -text(Dominica) locatedIn text(加勒比地区) -text(多米尼克) locatedIn text(महाअमेरिका) -text(Turkmenistan) neighborOf text(哈萨克斯坦) -text(تركمانستان) neighborOf text(Afganistán) -text(土庫曼斯坦) neighborOf text(乌兹别克斯坦) -text(Turkmenistan) neighborOf text(伊朗) -text(Guernsey) locatedIn text(Northern:Europe) -text(Guernsey) locatedIn text(Europa) -text(直布羅陀) locatedIn text(दक्षिणी:यूरोप) -text(جبل:طارق) neighborOf text(إسبانيا) -text(स्विट्ज़रलैण्ड) locatedIn text(西欧) -text(瑞士) neighborOf text(जर्मनी) -text(سويسرا) neighborOf text(Italy) -text(Zwitserland) neighborOf text(Austria) -text(Switzerland) neighborOf text(法國) -text(Suiza) neighborOf text(लिक्टेन्स्टाइन) -text(Oostenrijk) locatedIn text(पश्चिमी:यूरोप) -text(النمسا) neighborOf text(Duitsland) -text(ऑस्ट्रिया) neighborOf text(斯洛伐克) -text(奧地利) neighborOf text(斯洛文尼亞) -text(Austria) neighborOf text(إيطاليا) -text(Austria) neighborOf text(स्विट्ज़रलैण्ड) -text(Oostenrijk) neighborOf text(Hongarije) -text(النمسا) neighborOf text(Liechtenstein) -text(ऑस्ट्रिया) neighborOf text(جمهورية:التشيك) -text(हंगरी) neighborOf text(युक्रेन) -text(Hungría) neighborOf text(स्लोवाकिया) -text(المجر) neighborOf text(Eslovenia) -text(Hungary) neighborOf text(Croatia) -text(匈牙利) neighborOf text(奧地利) -text(Hongarije) neighborOf text(Serbia) -text(हंगरी) neighborOf text(رومانيا) -text(مالاوي) locatedIn text(África:Oriental) -text(Malawi) neighborOf text(ज़ाम्बिया) -text(Malawi) neighborOf text(تنزانيا) -text(मलावी) neighborOf text(莫桑比克) -text(هونغ:كونغ) neighborOf text(República:Popular:China) -text(ليختنشتاين) locatedIn text(West-Europa) -text(Liechtenstein) locatedIn text(यूरोप) -text(列支敦斯登) neighborOf text(瑞士) -text(Liechtenstein) neighborOf text(Austria) -text(Barbados) locatedIn text(कैरिबिया) -text(باربادوس) locatedIn text(Amerika) -text(जॉर्जिया) locatedIn text(West:Asia) -text(格鲁吉亚) neighborOf text(Armenië) -text(Georgia) neighborOf text(阿塞拜疆) -text(جورجيا) neighborOf text(Rusland) -text(Georgië) neighborOf text(تركيا) -text(阿爾巴尼亞) locatedIn text(Southern:Europe) -text(अल्बानिया) locatedIn text(Europe) -text(Albanië) neighborOf text(الجبل:الأسود) -text(Albania) neighborOf text(مقدونيا:الشمالية) -text(Albania) neighborOf text(कोसोवो:गणराज्य) -text(ألبانيا) neighborOf text(Griekenland) -text(Kuwait) locatedIn text(غرب:آسيا) -text(कुवैत) neighborOf text(السعودية) -text(Koeweit) neighborOf text(Iraq) -text(南非) locatedIn text(南部非洲) -text(दक्षिण:अफ़्रीका) neighborOf text(Mozambique) -text(Zuid-Afrika) neighborOf text(Botswana) -text(South:Africa) neighborOf text(斯威士兰) -text(Sudáfrica) neighborOf text(زيمبابوي) -text(جنوب:إفريقيا) neighborOf text(Namibië) -text(南非) neighborOf text(Lesoto) -text(हैती) locatedIn text(Caribbean) -text(هايتي) locatedIn text(América) -text(海地) neighborOf text(Dominican:Republic) -text(أفغانستان) locatedIn text(दक्षिण:एशिया) -text(阿富汗) neighborOf text(तुर्कमेनिस्तान) -text(अफ़्ग़ानिस्तान) neighborOf text(चीनी:जनवादी:गणराज्य) -text(Afghanistan) neighborOf text(طاجيكستان) -text(Afghanistan) neighborOf text(Uzbekistán) -text(Afganistán) neighborOf text(Iran) -text(أفغانستان) neighborOf text(Pakistán) -text(新加坡) locatedIn text(Sudeste:Asiático) -text(Singapore) locatedIn text(Azië) -text(Benin) locatedIn text(West-Afrika) -text(Benín) neighborOf text(尼日尔) -text(बेनिन) neighborOf text(बुर्किना:फासो) -text(Benin) neighborOf text(Togo) -text(貝南) neighborOf text(奈及利亞) -text(Åland) locatedIn text(उत्तरी:यूरोप) -text(جزر:أولاند) locatedIn text(Europa) -text(Croacia) locatedIn text(Zuid-Europa) -text(克羅地亞) neighborOf text(Slovenië) -text(كرواتيا) neighborOf text(Bosnië:en:Herzegovina) -text(क्रोएशिया) neighborOf text(Hungría) -text(Kroatië) neighborOf text(塞爾維亞) -text(Croatia) neighborOf text(蒙特內哥羅) -text(Sweden) locatedIn text(Noord-Europa) -text(السويد) neighborOf text(Noruega) -text(瑞典) neighborOf text(Finlandia) -text(México) neighborOf text(بليز) -text(Mexico) neighborOf text(美國) -text(Mexico) neighborOf text(危地马拉) -text(Groenlandia) locatedIn text(उत्तर:अमेरिका) -text(ग्रीनलैण्ड) locatedIn text(Americas) -text(皮特凯恩群岛) locatedIn text(Australia:and:New:Zealand) -text(Islas:Pitcairn) locatedIn text(Oceania) -text(नेपाल) locatedIn text(South:Asia) -text(尼泊爾) locatedIn text(Asia) -text(Nepal) neighborOf text(Volksrepubliek:China) -text(Nepal) neighborOf text(India) -text(ग्वाटेमाला) neighborOf text(伯利兹) -text(غواتيمالا) neighborOf text(薩爾瓦多) -text(Guatemala) neighborOf text(मेक्सिको) -text(Guatemala) neighborOf text(Honduras) -text(كوريا:الجنوبية) locatedIn text(Oost-Azië) -text(Zuid-Korea) neighborOf text(North:Korea) -text(Moldavië) locatedIn text(Eastern:Europe) -text(摩爾多瓦) locatedIn text(أوروبا) -text(مولدوفا) neighborOf text(أوكرانيا) -text(Moldavia) neighborOf text(रोमानिया) -text(Mauricio) locatedIn text(पूर्वी:अफ्रीका) -text(मॉरिशस) locatedIn text(Africa) -text(Wit-Rusland) neighborOf text(Oekraïne) -text(بيلاروس) neighborOf text(Polen) -text(白俄羅斯) neighborOf text(ليتوانيا) -text(बेलारूस) neighborOf text(Russia) -text(Bielorrusia) neighborOf text(Letonia) -text(Bangladesh) neighborOf text(Birmania) -text(Bangladesh) neighborOf text(भारत) -text(मलेशिया) locatedIn text(दक्षिण:पूर्व:एशिया) -text(ماليزيا) neighborOf text(تايلاند) -text(馬來西亞) neighborOf text(Indonesia) -text(Maleisië) neighborOf text(بروناي) -text(Bosnia:y:Herzegovina) locatedIn text(Europa:del:Sur) -text(बोस्निया:और:हर्ज़ेगोविना) neighborOf text(Servië) -text(البوسنة:والهرسك) neighborOf text(Croacia) -text(波斯尼亚和黑塞哥维那) neighborOf text(Montenegro) -text(लक्ज़मबर्ग) locatedIn text(Europa:Occidental) -text(卢森堡) neighborOf text(Alemania) -text(لوكسمبورغ) neighborOf text(Bélgica) -text(Luxembourg) neighborOf text(Frankrijk) -text(意大利) locatedIn text(南欧) -text(Italië) locatedIn text(欧洲) -text(Italia) neighborOf text(سلوفينيا) -text(इटली) neighborOf text(سويسرا) -text(Italy) neighborOf text(Austria) -text(إيطاليا) neighborOf text(France) -text(意大利) neighborOf text(梵蒂岡城國) -text(Italië) neighborOf text(San:Marino) -text(अज़रबैजान) locatedIn text(पश्चिमी:एशिया) -text(أذربيجان) neighborOf text(Turquía) -text(Azerbeidzjan) neighborOf text(Armenia) -text(Azerbaiyán) neighborOf text(रूस) -text(Azerbaijan) neighborOf text(إيران) -text(阿塞拜疆) neighborOf text(Georgia) -text(हॉण्डुरस) locatedIn text(中美洲) -text(هندوراس) neighborOf text(Guatemala) -text(洪都拉斯) neighborOf text(निकारागुआ) -text(Honduras) neighborOf text(El:Salvador) -text(مالي) locatedIn text(غرب:إفريقيا) -text(Mali) neighborOf text(布吉納法索) -text(马里) neighborOf text(غينيا) -text(माली) neighborOf text(毛里塔尼亞) -text(Mali) neighborOf text(नाइजर) -text(Mali) neighborOf text(सेनेगल) -text(مالي) neighborOf text(Argelia) -text(Mali) neighborOf text(Ivory:Coast) -text(República:de:China) locatedIn text(पूर्वी:एशिया) -text(Taiwan) locatedIn text(Asia) -text(الجزائر) locatedIn text(北部非洲) -text(अल्जीरिया) neighborOf text(Libië) -text(Algerije) neighborOf text(Tunesië) -text(Algeria) neighborOf text(Mauritania) -text(阿爾及利亞) neighborOf text(Marokko) -text(Argelia) neighborOf text(Níger) -text(الجزائر) neighborOf text(马里) -text(अल्जीरिया) neighborOf text(Sahrawi:Arab:Democratic:Republic) -text(Guayana:Francesa) neighborOf text(Brazil) -text(Frans-Guyana) neighborOf text(سورينام) -text(Jemen) locatedIn text(Zuidwest-Azië) -text(也门) neighborOf text(Oman) -text(Yemen) neighborOf text(सउदी:अरब) -text(Puerto:Rico) locatedIn text(Caraïben) -text(Puerto:Rico) locatedIn text(أمريكتان) -text(Saint:Vincent:en:de:Grenadines) locatedIn text(Caribe) -text(Saint:Vincent:and:the:Grenadines) locatedIn text(美洲) -text(वेनेज़ुएला) neighborOf text(巴西) -text(Venezuela) neighborOf text(गयाना) -text(Venezuela) neighborOf text(كولومبيا) -text(格瑞那達) locatedIn text(الكاريبي) -text(Grenada) locatedIn text(महाअमेरिका) -text(United:States) neighborOf text(加拿大) -text(संयुक्त:राज्य:अमेरिका) neighborOf text(المكسيك) -text(Tokelau) locatedIn text(पोलीनेशिया) -text(टोकेलाऊ) locatedIn text(Oceanië) -text(Slovenia) locatedIn text(أوروبا:الجنوبية) -text(स्लोवेनिया) neighborOf text(Oostenrijk) -text(斯洛文尼亞) neighborOf text(克羅地亞) -text(Eslovenia) neighborOf text(Italia) -text(Slovenië) neighborOf text(المجر) -text(फ़िलीपीन्स) locatedIn text(Zuidoost-Azië) -text(菲律賓) locatedIn text(亞洲) -text(Micronesia) locatedIn text(Micronesia) -text(ميكرونيسيا) locatedIn text(大洋洲) -text(People's:Republic:of:China) locatedIn text(Asia:Oriental) -text(中华人民共和国) neighborOf text(阿富汗) -text(الصين) neighborOf text(Bután) -text(República:Popular:China) neighborOf text(Macau) -text(चीनी:जनवादी:गणराज्य) neighborOf text(印度) -text(Volksrepubliek:China) neighborOf text(Kazakhstan) -text(People's:Republic:of:China) neighborOf text(Kyrgyzstan) -text(中华人民共和国) neighborOf text(ताजीकिस्तान) -text(الصين) neighborOf text(لاوس) -text(República:Popular:China) neighborOf text(俄罗斯) -text(चीनी:जनवादी:गणराज्य) neighborOf text(Noord-Korea) -text(Volksrepubliek:China) neighborOf text(Myanmar) -text(People's:Republic:of:China) neighborOf text(पाकिस्तान) -text(中华人民共和国) neighborOf text(Mongolia) -text(الصين) neighborOf text(香港) -text(República:Popular:China) neighborOf text(越南) -text(Gabón) locatedIn text(وسط:إفريقيا) -text(加蓬) neighborOf text(Equatoriaal-Guinea) -text(Gabon) neighborOf text(剛果共和國) -text(الغابون) neighborOf text(喀麦隆) -text(Islas:ultramarinas:de:Estados:Unidos) locatedIn text(North:America) -text(美国本土外小岛屿) locatedIn text(Amerika) -text(Andorra) locatedIn text(दक्षिणी:यूरोप) -text(安道尔) neighborOf text(España) -text(Andorra) neighborOf text(Francia) -text(समोआ) locatedIn text(玻里尼西亞) -text(Samoa) locatedIn text(أوقيانوسيا) -text(Gambia) locatedIn text(पश्चिमी:अफ्रीका) -text(岡比亞) locatedIn text(África) -text(The:Gambia) neighborOf text(السنغال) -text(Pedro:Miguel) locatedIn text(Asia:Occidental) -text(nan) locatedIn text(آسيا) -text(Pedro:Miguel) neighborOf text(الأردن) -text(Pedro:Miguel) neighborOf text(Egipto) -text(nan) neighborOf text(Israel) -text(ريونيون) locatedIn text(East:Africa) -text(Réunion) locatedIn text(Afrika) -text(فرنسا) locatedIn text(أوروبا:الغربية) -text(फ़्रान्स) neighborOf text(Germany) -text(法國) neighborOf text(Luxemburgo) -text(Frankrijk) neighborOf text(इटली) -text(France) neighborOf text(अण्डोरा) -text(Francia) neighborOf text(Zwitserland) -text(فرنسا) neighborOf text(Mónaco) -text(फ़्रान्स) neighborOf text(بلجيكا) -text(法國) neighborOf text(स्पेन) -text(منغوليا) locatedIn text(東亞) -text(蒙古國) locatedIn text(एशिया) -text(Mongolië) neighborOf text(चीनी:जनवादी:गणराज्य) -text(मंगोलिया) neighborOf text(روسيا) -text(立陶宛) locatedIn text(Europa:del:Norte) -text(Lithuania) neighborOf text(波蘭) -text(Lituania) neighborOf text(लातविया) -text(Litouwen) neighborOf text(Belarus) -text(लिथुआनिया) neighborOf text(Rusia) -text(Cayman:Islands) locatedIn text(加勒比地区) -text(केमन:द्वीपसमूह) locatedIn text(América) -text(Saint:Lucia) locatedIn text(कैरिबिया) -text(Saint:Lucia) locatedIn text(Americas) -text(Curazao) locatedIn text(Caribbean) -text(Curaçao) locatedIn text(أمريكتان) -text(Caraïben) locatedIn text(美洲) -text(南亚) locatedIn text(Azië) -text(Central:Africa) locatedIn text(अफ्रीका) -text(北歐) locatedIn text(Europa) -text(Southern:Europe) locatedIn text(यूरोप) -text(西亚) locatedIn text(Asia) -text(दक्षिण:अमेरिका) locatedIn text(महाअमेरिका) -text(Polynesië) locatedIn text(Oceanía) -text(nan) locatedIn text(ओशिआनिया) -text(Western:Europe) locatedIn text(Europe) -text(شرق:إفريقيا) locatedIn text(非洲) -text(West:Africa) locatedIn text(إفريقيا) -text(东欧) locatedIn text(Europa) -text(केंद्रीय:अमेरिका) locatedIn text(Amerika) -text(Noord-Amerika) locatedIn text(América) -text(东南亚) locatedIn text(Asia) -text(África:austral) locatedIn text(Africa) -text(شرق:آسيا) locatedIn text(亞洲) -text(Noord-Afrika) locatedIn text(África) -text(Melanesië) locatedIn text(Oceania) -text(माइक्रोनीशिया) locatedIn text(Oceanië) -text(中亚) locatedIn text(آسيا) -text(中欧) locatedIn text(أوروبا) \ No newline at end of file diff --git a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_country2text_relation2text.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_country2text_relation2text.tsv deleted file mode 100644 index 7741b5d..0000000 --- a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_country2text_relation2text.tsv +++ /dev/null @@ -1,979 +0,0 @@ -text(Palaos) text(can:be:found:in) text(ميكرونيسيا) -text(بالاو) text(was:positioned:in) text(Oceanía) -text(المالديف) text(is:positioned:in) text(South:Asia) -text(Maldives) text(was:sited:in) text(آسيا) -text(بروناي) text(is:sited:in) text(东南亚) -text(ब्रुनेई) text(was:localized:in) text(एशिया) -text(Brunei) text(is:butted:against) text(Malasia) -text(Japan) text(is:localized:in) text(شرق:آسيا) -text(Japón) text(was:present:in) text(Asia) -text(هولندا) text(was:butted:against) text(जर्मनी) -text(Netherlands) text(was:adjacent:to) text(België) -text(土耳其) text(is:adjacent:to) text(Armenië) -text(Turkije) text(neighbors) text(अज़रबैजान) -text(Turkey) text(is:a:neighboring:country:of) text(伊朗) -text(تركيا) text(was:a:neighboring:country:of) text(Griekenland) -text(तुर्की) text(neighbors:with) text(Georgia) -text(Turquía) text(was:a:neighbor:of) text(Bulgarije) -text(土耳其) text(is:a:neighbor:of) text(Irak) -text(Turkije) text(is:a:neighboring:state:to) text(Syria) -text(安哥拉) text(is:present:in) text(وسط:إفريقيا) -text(أنغولا) text(was:a:neighboring:state:to) text(Democratic:Republic:of:the:Congo) -text(अंगोला) text(borders:with) text(नामीबिया) -text(Angola) text(borders) text(Zambia) -text(Angola) text(is:butted:against) text(جمهورية:الكونغو) -text(आर्मीनिया) text(is:still:in) text(Zuidwest-Azië) -text(Armenia) text(was:butted:against) text(格鲁吉亚) -text(亞美尼亞) text(was:adjacent:to) text(阿塞拜疆) -text(أرمينيا) text(is:adjacent:to) text(إيران) -text(Armenia) text(neighbors) text(Turkey) -text(安提瓜和巴布达) text(was:still:in) text(कैरिबिया) -text(Antigua:y:Barbuda) text(was:currently:in) text(महाअमेरिका) -text(एस्वातीनी) text(is:currently:in) text(南部非洲) -text(斯威士兰) text(is:a:neighboring:country:of) text(Sudáfrica) -text(Eswatini) text(was:a:neighboring:country:of) text(Mozambique) -text(瓦利斯和富圖納) text(is:placed:in) text(بولنيزيا) -text(واليس:وفوتونا) text(was:placed:in) text(大洋洲) -text(उरुग्वे) text(can:be:found:in) text(दक्षिण:अमेरिका) -text(الأوروغواي) text(was:situated:in) text(Amerika) -text(烏拉圭) text(neighbors:with) text(Argentina) -text(Uruguay) text(was:a:neighbor:of) text(البرازيل) -text(Zambia) text(is:situated:in) text(Oost-Afrika) -text(زامبيا) text(is:a:neighbor:of) text(तंज़ानिया) -text(Zambia) text(is:a:neighboring:state:to) text(موزمبيق) -text(ज़ाम्बिया) text(was:a:neighboring:state:to) text(República:Democrática:del:Congo) -text(贊比亞) text(borders:with) text(Angola) -text(Zambia) text(borders) text(波札那) -text(Zambia) text(is:butted:against) text(津巴布韦) -text(زامبيا) text(was:butted:against) text(Namibia) -text(Zambia) text(was:adjacent:to) text(Malawi) -text(قبرص) text(is:located:in) text(पूर्वी:यूरोप) -text(Chipre) text(was:located:in) text(यूरोप) -text(Cyprus) text(is:adjacent:to) text(यूनाइटेड:किंगडम) -text(यूनाइटेड:किंगडम) text(can:be:found:in) text(उत्तरी:यूरोप) -text(英国) text(was:positioned:in) text(أوروبا) -text(Verenigd:Koninkrijk) text(neighbors) text(Reino:Unido) -text(بوروندي) text(is:positioned:in) text(पूर्वी:अफ्रीका) -text(Burundi) text(is:a:neighboring:country:of) text(刚果民主共和国) -text(Burundi) text(was:a:neighboring:country:of) text(Rwanda) -text(蒲隆地) text(neighbors:with) text(Tanzania) -text(中非共和國) text(was:sited:in) text(África:Central) -text(Central:African:Republic) text(was:a:neighbor:of) text(تشاد) -text(جمهورية:إفريقيا:الوسطى) text(is:a:neighbor:of) text(剛果共和國) -text(República:Centroafricana) text(is:a:neighboring:state:to) text(جمهورية:الكونغو:الديمقراطية) -text(Centraal-Afrikaanse:Republiek) text(was:a:neighboring:state:to) text(South:Sudan) -text(मध्य:अफ़्रीकी:गणराज्य) text(borders:with) text(Camerún) -text(中非共和國) text(borders) text(苏丹) -text(تونغا) text(is:sited:in) text(पोलीनेशिया) -text(टोंगा) text(was:localized:in) text(Oceanië) -text(Ivoorkust) text(is:localized:in) text(غرب:إفريقيا) -text(ساحل:العاج) text(is:butted:against) text(Burkina:Faso) -text(Ivory:Coast) text(was:butted:against) text(Ghana) -text(Costa:de:Marfil) text(was:adjacent:to) text(Liberia) -text(कोत:दिव्वार) text(is:adjacent:to) text(माली) -text(科特迪瓦) text(neighbors) text(Guinee) -text(سيراليون) text(is:a:neighboring:country:of) text(利比里亞) -text(Sierra:Leona) text(was:a:neighboring:country:of) text(几内亚) -text(مايوت) text(was:present:in) text(东部非洲) -text(Mayotte) text(is:present:in) text(África) -text(بولندا) text(neighbors:with) text(Germany) -text(Polonia) text(was:a:neighbor:of) text(Oekraïne) -text(पोलैंड) text(is:a:neighbor:of) text(斯洛伐克) -text(Polen) text(is:a:neighboring:state:to) text(白俄羅斯) -text(波蘭) text(was:a:neighboring:state:to) text(रूस) -text(Poland) text(borders:with) text(लिथुआनिया) -text(بولندا) text(borders) text(捷克) -text(कज़ाख़िस्तान) text(is:still:in) text(Centraal-Azië) -text(Kazajistán) text(is:butted:against) text(Turkmenistán) -text(Kazachstan) text(was:butted:against) text(الصين) -text(哈萨克斯坦) text(was:adjacent:to) text(吉尔吉斯斯坦) -text(كازاخستان) text(is:adjacent:to) text(Uzbekistán) -text(Kazakhstan) text(neighbors) text(روسيا) -text(उज़्बेकिस्तान) text(was:still:in) text(मध्य:एशिया) -text(乌兹别克斯坦) text(is:a:neighboring:country:of) text(أفغانستان) -text(Uzbekistan) text(was:a:neighboring:country:of) text(تركمانستان) -text(أوزبكستان) text(neighbors:with) text(कज़ाख़िस्तान) -text(Oezbekistan) text(was:a:neighbor:of) text(Kyrgyzstan) -text(Uzbekistán) text(is:a:neighbor:of) text(塔吉克斯坦) -text(तुर्क:और:केकोस:द्वीपसमूह) text(was:currently:in) text(Caribe) -text(جزر:توركس:وكايكوس) text(is:currently:in) text(América) -text(Nueva:Caledonia) text(is:placed:in) text(ميلانيزيا) -text(كاليدونيا:الجديدة) text(was:placed:in) text(Oceania) -text(Pakistán) text(is:a:neighboring:state:to) text(People's:Republic:of:China) -text(巴基斯坦) text(was:a:neighboring:state:to) text(Afghanistan) -text(باكستان) text(borders:with) text(Irán) -text(पाकिस्तान) text(borders) text(India) -text(Argentina) text(can:be:found:in) text(Zuid-Amerika) -text(阿根廷) text(is:butted:against) text(Bolivia) -text(Argentinië) text(was:butted:against) text(智利) -text(अर्जेण्टीना) text(was:adjacent:to) text(巴西) -text(الأرجنتين) text(is:adjacent:to) text(巴拉圭) -text(Argentina) text(neighbors) text(Uruguay) -text(क्यूबा) text(was:situated:in) text(Caribbean) -text(Cuba) text(is:situated:in) text(أمريكتان) -text(塞爾維亞) text(is:a:neighboring:country:of) text(Macedonia:del:Norte) -text(Servië) text(was:a:neighboring:country:of) text(蒙特內哥羅) -text(Serbia) text(neighbors:with) text(Kosovo) -text(सर्बिया) text(was:a:neighbor:of) text(Bosnia:y:Herzegovina) -text(صربيا) text(is:a:neighbor:of) text(كرواتيا) -text(Serbia) text(is:a:neighboring:state:to) text(Hungría) -text(塞爾維亞) text(was:a:neighboring:state:to) text(بلغاريا) -text(Servië) text(borders:with) text(羅馬尼亞) -text(Czech:Republic) text(is:located:in) text(Europa:Oriental) -text(चेक:गणराज्य) text(borders) text(Duitsland) -text(جمهورية:التشيك) text(is:butted:against) text(Austria) -text(Tsjechië) text(was:butted:against) text(Polonia) -text(República:Checa) text(was:adjacent:to) text(سلوفاكيا) -text(Nicaragua) text(is:adjacent:to) text(洪都拉斯) -text(نيكاراغوا) text(neighbors) text(Costa:Rica) -text(Vietnam) text(was:located:in) text(दक्षिण:पूर्व:एशिया) -text(Vietnam) text(can:be:found:in) text(Azië) -text(वियतनाम) text(is:a:neighboring:country:of) text(كمبوديا) -text(فيتنام) text(was:a:neighboring:country:of) text(لاوس) -text(Vietnam) text(neighbors:with) text(Volksrepubliek:China) -text(निउए) text(was:positioned:in) text(Polynesia) -text(Niue) text(is:positioned:in) text(ओशिआनिया) -text(कनाडा) text(was:sited:in) text(उत्तर:अमेरिका) -text(Canada) text(was:a:neighbor:of) text(Verenigde:Staten) -text(Slowakije) text(is:a:neighbor:of) text(أوكرانيا) -text(स्लोवाकिया) text(is:a:neighboring:state:to) text(पोलैंड) -text(Eslovaquia) text(was:a:neighboring:state:to) text(奧地利) -text(Slovakia) text(borders:with) text(المجر) -text(斯洛伐克) text(borders) text(捷克) -text(मोज़ाम्बीक) text(is:butted:against) text(تنزانيا) -text(莫桑比克) text(was:butted:against) text(Swaziland) -text(Mozambique) text(was:adjacent:to) text(Zimbabwe) -text(Mozambique) text(is:adjacent:to) text(ज़ाम्बिया) -text(Mozambique) text(neighbors) text(馬拉威) -text(موزمبيق) text(is:a:neighboring:country:of) text(Zuid-Afrika) -text(أروبا) text(is:sited:in) text(الكاريبي) -text(अरूबा) text(was:localized:in) text(Americas) -text(Bolivia) text(is:localized:in) text(南美洲) -text(Bolivia) text(was:a:neighboring:country:of) text(Chili) -text(玻利維亞) text(neighbors:with) text(Brasil) -text(बोलिविया) text(was:a:neighbor:of) text(Paraguay) -text(بوليفيا) text(is:a:neighbor:of) text(Argentina) -text(Bolivia) text(is:a:neighboring:state:to) text(بيرو) -text(Colombia) text(was:present:in) text(América:del:Sur) -text(كولومبيا) text(was:a:neighboring:state:to) text(厄瓜多尔) -text(Colombia) text(borders:with) text(Brazilië) -text(कोलम्बिया) text(borders) text(Panama) -text(哥伦比亚) text(is:butted:against) text(Venezuela) -text(Colombia) text(was:butted:against) text(Peru) -text(फ़िजी) text(is:present:in) text(美拉尼西亞) -text(Fiyi) text(is:still:in) text(أوقيانوسيا) -text(कांगो:गणराज्य) text(was:adjacent:to) text(加蓬) -text(República:del:Congo) text(is:adjacent:to) text(कांगो:लोकतान्त्रिक:गणराज्य) -text(Congo-Brazzaville) text(neighbors) text(安哥拉) -text(Republic:of:the:Congo) text(is:a:neighboring:country:of) text(Cameroon) -text(جمهورية:الكونغو) text(was:a:neighboring:country:of) text(Central:African:Republic) -text(Saoedi-Arabië) text(neighbors:with) text(卡塔尔) -text(السعودية) text(was:a:neighbor:of) text(United:Arab:Emirates) -text(沙特阿拉伯) text(is:a:neighbor:of) text(Jordan) -text(Saudi:Arabia) text(is:a:neighboring:state:to) text(也门) -text(सउदी:अरब) text(was:a:neighboring:state:to) text(ओमान) -text(Arabia:Saudí) text(borders:with) text(कुवैत) -text(Saoedi-Arabië) text(borders) text(伊拉克) -text(السلفادور) text(was:still:in) text(أمريكا:الوسطى) -text(अल:साल्वाडोर) text(is:butted:against) text(غواتيمالا) -text(El:Salvador) text(was:butted:against) text(हॉण्डुरस) -text(Madagaskar) text(was:currently:in) text(East:Africa) -text(مدغشقر) text(is:currently:in) text(अफ्रीका) -text(Australië) text(is:placed:in) text(Australia:and:New:Zealand) -text(أستراليا) text(was:placed:in) text(Oceanía) -text(ناميبيا) text(can:be:found:in) text(दक्षिणी:अफ्रीका) -text(Namibia) text(was:situated:in) text(إفريقيا) -text(纳米比亚) text(was:adjacent:to) text(贊比亞) -text(Namibië) text(is:adjacent:to) text(أنغولا) -text(नामीबिया) text(neighbors) text(جنوب:إفريقيا) -text(Namibia) text(is:a:neighboring:country:of) text(बोत्सवाना) -text(توفالو) text(is:situated:in) text(Polynesië) -text(吐瓦魯) text(is:located:in) text(大洋洲) -text(Svalbard:and:Jan:Mayen) text(was:located:in) text(أوروبا:الشمالية) -text(Svalbard:y:Jan:Mayen) text(can:be:found:in) text(Europe) -text(Isla:de:Man) text(was:positioned:in) text(北歐) -text(جزيرة:مان) text(is:positioned:in) text(Europa) -text(Guyana) text(was:a:neighboring:country:of) text(Brazil) -text(Guyana) text(neighbors:with) text(सूरीनाम) -text(圭亚那) text(was:a:neighbor:of) text(委內瑞拉) -text(Vaticaanstad) text(was:sited:in) text(Europa:del:Sur) -text(Vatican:City) text(is:sited:in) text(欧洲) -text(الفاتيكان) text(is:a:neighbor:of) text(Italië) -text(British:Indian:Ocean:Territory) text(was:localized:in) text(África:Oriental) -text(ब्रिटिश:हिंद:महासागर:क्षेत्र) text(is:localized:in) text(非洲) -text(نيجيريا) text(was:present:in) text(West-Afrika) -text(Nigeria) text(is:present:in) text(Africa) -text(Nigeria) text(is:a:neighboring:state:to) text(चाड) -text(奈及利亞) text(was:a:neighboring:state:to) text(Níger) -text(नाइजीरिया) text(borders:with) text(الكاميرون) -text(Nigeria) text(borders) text(貝南) -text(Alemania) text(is:butted:against) text(丹麥) -text(德國) text(was:butted:against) text(Nederland) -text(ألمانيا) text(was:adjacent:to) text(Polen) -text(जर्मनी) text(is:adjacent:to) text(卢森堡) -text(Germany) text(neighbors) text(比利時) -text(Duitsland) text(is:a:neighboring:country:of) text(Switzerland) -text(Alemania) text(was:a:neighboring:country:of) text(Austria) -text(德國) text(neighbors:with) text(Frankrijk) -text(ألمانيا) text(was:a:neighbor:of) text(Czech:Republic) -text(Burkina:Faso) text(is:a:neighbor:of) text(Togo) -text(布吉納法索) text(is:a:neighboring:state:to) text(Benin) -text(बुर्किना:फासो) text(was:a:neighboring:state:to) text(Niger) -text(بوركينا:فاسو) text(borders:with) text(Ghana) -text(Burkina:Faso) text(borders) text(Mali) -text(Burkina:Faso) text(is:butted:against) text(Ivoorkust) -text(Tanzania) text(was:butted:against) text(Uganda) -text(Tanzania) text(was:adjacent:to) text(मोज़ाम्बीक) -text(坦桑尼亞) text(is:adjacent:to) text(Congo-Kinshasa) -text(तंज़ानिया) text(neighbors) text(Kenia) -text(Tanzania) text(is:a:neighboring:country:of) text(रवाण्डा) -text(تنزانيا) text(was:a:neighboring:country:of) text(Zambia) -text(Tanzania) text(neighbors:with) text(Malaui) -text(Tanzania) text(was:a:neighbor:of) text(Burundi) -text(Northern:Mariana:Islands) text(is:still:in) text(Micronesia) -text(جزر:ماريانا:الشمالية) text(was:still:in) text(Oceanië) -text(Belize) text(was:currently:in) text(América:Central) -text(伯利兹) text(is:a:neighbor:of) text(Guatemala) -text(بليز) text(is:a:neighboring:state:to) text(México) -text(Norway) text(was:a:neighboring:state:to) text(Suecia) -text(挪威) text(borders:with) text(فنلندا) -text(النرويج) text(borders) text(俄罗斯) -text(Cocos:(Keeling):Islands) text(is:currently:in) text(nan) -text(جزر:كوكوس) text(is:placed:in) text(Oceania) -text(Laos) text(was:placed:in) text(Southeast:Asia) -text(लाओस) text(is:butted:against) text(中华人民共和国) -text(老撾) text(was:butted:against) text(कम्बोडिया) -text(Laos) text(was:adjacent:to) text(म्यान्मार) -text(Laos) text(is:adjacent:to) text(越南) -text(لاوس) text(neighbors) text(泰國) -text(الجمهورية:العربية:الصحراوية:الديمقراطية) text(can:be:found:in) text(شمال:إفريقيا) -text(Sahrawi:Arabische:Democratische:Republiek) text(is:a:neighboring:country:of) text(阿爾及利亞) -text(撒拉威阿拉伯民主共和國) text(was:a:neighboring:country:of) text(Mauritania) -text(सहरावी:अरब:जनतांत्रिक:गणराज्य) text(neighbors:with) text(Morocco) -text(Suriname) text(was:situated:in) text(South:America) -text(Surinam) text(was:a:neighbor:of) text(ब्राज़ील) -text(蘇利南) text(is:a:neighbor:of) text(法屬圭亞那) -text(Suriname) text(is:a:neighboring:state:to) text(गयाना) -text(क्रिसमस:द्वीप) text(is:situated:in) text(Australië:en:Nieuw-Zeeland) -text(جزيرة:عيد:الميلاد) text(is:located:in) text(ओशिआनिया) -text(São:Tomé:and:Príncipe) text(was:located:in) text(Centraal-Afrika) -text(साओ:तोमे:और:प्रिन्सिपी) text(can:be:found:in) text(Afrika) -text(埃及) text(was:a:neighboring:state:to) text(Libië) -text(Egypte) text(borders:with) text(Israel) -text(مصر) text(borders) text(Sudán) -text(Bulgaria) text(is:butted:against) text(North:Macedonia) -text(保加利亚) text(was:butted:against) text(تركيا) -text(बुल्गारिया) text(was:adjacent:to) text(Grecia) -text(Bulgaria) text(is:adjacent:to) text(Serbia) -text(Bulgarije) text(neighbors) text(Rumania) -text(Guinea) text(was:positioned:in) text(पश्चिमी:अफ्रीका) -text(غينيا) text(is:a:neighboring:country:of) text(Guinea-Bissau) -text(Guinea) text(was:a:neighboring:country:of) text(सिएरा:लियोन) -text(गिनी) text(neighbors:with) text(Mali) -text(Guinee) text(was:a:neighbor:of) text(Liberia) -text(几内亚) text(is:a:neighbor:of) text(Senegal) -text(Guinea) text(is:a:neighboring:state:to) text(ساحل:العاج) -text(स्पेन) text(was:a:neighboring:state:to) text(मोरक्को) -text(España) text(borders:with) text(जिब्राल्टर) -text(إسبانيا) text(borders) text(أندورا) -text(Spanje) text(is:butted:against) text(فرنسا) -text(西班牙) text(was:butted:against) text(Portugal) -text(कोस्टा:रीका) text(is:positioned:in) text(中美洲) -text(哥斯达黎加) text(was:adjacent:to) text(Panama) -text(Costa:Rica) text(is:adjacent:to) text(निकारागुआ) -text(Malta) text(was:sited:in) text(दक्षिणी:यूरोप) -text(Malta) text(is:sited:in) text(Europa) -text(البرتغال) text(was:localized:in) text(南欧) -text(葡萄牙) text(neighbors) text(Spain) -text(Romania) text(is:localized:in) text(Oost-Europa) -text(रोमानिया) text(is:a:neighboring:country:of) text(烏克蘭) -text(Roemenië) text(was:a:neighboring:country:of) text(Hungary) -text(رومانيا) text(neighbors:with) text(Moldova) -text(羅馬尼亞) text(was:a:neighbor:of) text(بلغاريا) -text(Rumania) text(is:a:neighbor:of) text(सर्बिया) -text(سان:مارينو) text(was:present:in) text(Southern:Europe) -text(सान:मारिनो) text(is:present:in) text(यूरोप) -text(San:Marino) text(is:a:neighboring:state:to) text(Italia) -text(موريتانيا) text(is:still:in) text(西非) -text(Mauritanië) text(was:still:in) text(África) -text(Mauritania) text(was:a:neighboring:state:to) text(Algerije) -text(मॉरीतानिया) text(borders:with) text(马里) -text(毛里塔尼亞) text(borders) text(República:Árabe:Saharaui:Democrática) -text(Mauritania) text(is:butted:against) text(塞内加尔) -text(Trinidad:y:Tobago) text(was:currently:in) text(加勒比地区) -text(त्रिनिदाद:और:टोबैगो) text(is:currently:in) text(美洲) -text(बहरीन) text(is:placed:in) text(Asia:Occidental) -text(البحرين) text(was:placed:in) text(Asia) -text(Myanmar) text(was:butted:against) text(India) -text(ميانمار) text(was:adjacent:to) text(Bangladés) -text(緬甸) text(is:adjacent:to) text(चीनी:जनवादी:गणराज्य) -text(Birmania) text(neighbors) text(Laos) -text(Myanmar) text(is:a:neighboring:country:of) text(थाईलैंड) -text(العراق) text(was:a:neighboring:country:of) text(तुर्की) -text(इराक) text(neighbors:with) text(السعودية) -text(Iraq) text(was:a:neighbor:of) text(Iran) -text(Irak) text(is:a:neighbor:of) text(Jordanië) -text(Irak) text(is:a:neighboring:state:to) text(Kuwait) -text(伊拉克) text(was:a:neighboring:state:to) text(Siria) -text(Zuid-Georgia:en:de:Zuidelijke:Sandwicheilanden) text(can:be:found:in) text(أمريكا:الجنوبية) -text(جورجيا:الجنوبية:وجزر:ساندويتش:الجنوبية) text(was:situated:in) text(महाअमेरिका) -text(冰島) text(is:situated:in) text(Northern:Europe) -text(आइसलैण्ड) text(is:located:in) text(أوروبا) -text(Democratic:Republic:of:the:Congo) text(was:located:in) text(中部非洲) -text(República:Democrática:del:Congo) text(borders:with) text(Oeganda) -text(刚果民主共和国) text(borders) text(坦桑尼亞) -text(جمهورية:الكونغو:الديمقراطية) text(is:butted:against) text(剛果共和國) -text(कांगो:लोकतान्त्रिक:गणराज्य) text(was:butted:against) text(جمهورية:إفريقيا:الوسطى) -text(Congo-Kinshasa) text(was:adjacent:to) text(अंगोला) -text(Democratic:Republic:of:the:Congo) text(is:adjacent:to) text(رواندا) -text(República:Democrática:del:Congo) text(neighbors) text(Sudán:del:Sur) -text(刚果民主共和国) text(is:a:neighboring:country:of) text(Zambia) -text(جمهورية:الكونغو:الديمقراطية) text(was:a:neighboring:country:of) text(बुरुण्डी) -text(Seychellen) text(can:be:found:in) text(شرق:إفريقيا) -text(Seychelles) text(was:positioned:in) text(अफ्रीका) -text(قرغيزستان) text(neighbors:with) text(República:Popular:China) -text(किर्गिज़स्तान) text(was:a:neighbor:of) text(Kazajistán) -text(Kirgizië) text(is:a:neighbor:of) text(Tadzjikistan) -text(Kirguistán) text(is:a:neighboring:state:to) text(उज़्बेकिस्तान) -text(Botsuana) text(is:positioned:in) text(Zuidelijk:Afrika) -text(بوتسوانا) text(was:a:neighboring:state:to) text(ज़िम्बाब्वे) -text(Botswana) text(borders:with) text(ناميبيا) -text(Botswana) text(borders) text(زامبيا) -text(波札那) text(is:butted:against) text(दक्षिण:अफ़्रीका) -text(جزر:فارو) text(was:sited:in) text(Europa:del:Norte) -text(Faeröer) text(is:sited:in) text(Europe) -text(जमैका) text(was:localized:in) text(Caraïben) -text(牙買加) text(is:localized:in) text(Amerika) -text(Amerikaans-Samoa) text(was:present:in) text(Polinesia) -text(Samoa:Americana) text(is:present:in) text(أوقيانوسيا) -text(लेसोथो) text(is:still:in) text(África:austral) -text(Lesoto) text(was:still:in) text(إفريقيا) -text(莱索托) text(was:butted:against) text(南非) -text(श्रीलंका) text(was:adjacent:to) text(الهند) -text(बेल्जियम) text(was:currently:in) text(西欧) -text(Bélgica) text(is:adjacent:to) text(जर्मनी) -text(بلجيكا) text(neighbors) text(Luxemburgo) -text(Belgium) text(is:a:neighboring:country:of) text(Francia) -text(België) text(was:a:neighboring:country:of) text(荷蘭) -text(Qatar) text(is:currently:in) text(West:Asia) -text(Qatar) text(neighbors:with) text(沙特阿拉伯) -text(所罗门群岛) text(is:placed:in) text(Melanesië) -text(جزر:سليمان) text(was:placed:in) text(Oceanía) -text(सीरिया) text(can:be:found:in) text(غرب:آسيا) -text(敘利亞) text(was:a:neighbor:of) text(Israel) -text(Syrië) text(is:a:neighbor:of) text(Turquía) -text(سوريا) text(is:a:neighboring:state:to) text(जॉर्डन) -text(Syria) text(was:a:neighboring:state:to) text(लेबनॉन) -text(Siria) text(borders:with) text(العراق) -text(India) text(was:situated:in) text(جنوب:آسيا) -text(भारत) text(borders) text(阿富汗) -text(印度) text(is:butted:against) text(Bután) -text(India) text(was:butted:against) text(بنغلاديش) -text(India) text(was:adjacent:to) text(الصين) -text(الهند) text(is:adjacent:to) text(尼泊爾) -text(India) text(neighbors) text(म्यान्मार) -text(भारत) text(is:a:neighboring:country:of) text(Pakistan) -text(印度) text(was:a:neighboring:country:of) text(سريلانكا) -text(Marruecos) text(neighbors:with) text(Algeria) -text(المغرب) text(was:a:neighbor:of) text(स्पेन) -text(摩洛哥) text(is:a:neighbor:of) text(Sahrawi:Arab:Democratic:Republic) -text(Kenya) text(is:situated:in) text(Oost-Afrika) -text(肯尼亚) text(is:a:neighboring:state:to) text(युगाण्डा) -text(كينيا) text(was:a:neighboring:state:to) text(तंज़ानिया) -text(Kenia) text(borders:with) text(Somalië) -text(कीनिया) text(borders) text(جنوب:السودان) -text(Kenia) text(is:butted:against) text(Etiopía) -text(दक्षिण:सूडान) text(is:located:in) text(Central:Africa) -text(Zuid-Soedan) text(was:butted:against) text(Uganda) -text(南蘇丹) text(was:adjacent:to) text(कांगो:लोकतान्त्रिक:गणराज्य) -text(South:Sudan) text(is:adjacent:to) text(Kenya) -text(Sudán:del:Sur) text(neighbors) text(República:Centroafricana) -text(جنوب:السودان) text(is:a:neighboring:country:of) text(Sudan) -text(दक्षिण:सूडान) text(was:a:neighboring:country:of) text(Ethiopia) -text(घाना) text(neighbors:with) text(Burkina:Faso) -text(Ghana) text(was:a:neighbor:of) text(Ivory:Coast) -text(迦納) text(is:a:neighbor:of) text(توغو) -text(Tajikistan) text(was:located:in) text(آسيا:الوسطى) -text(Tayikistán) text(is:a:neighboring:state:to) text(People's:Republic:of:China) -text(طاجيكستان) text(was:a:neighboring:state:to) text(吉尔吉斯斯坦) -text(ताजीकिस्तान) text(borders:with) text(Afganistán) -text(塔吉克斯坦) text(borders) text(乌兹别克斯坦) -text(Marshall:Islands) text(can:be:found:in) text(Micronesia) -text(جزر:مارشال) text(was:positioned:in) text(大洋洲) -text(喀麦隆) text(is:positioned:in) text(मध्य:अफ्रीका) -text(Kameroen) text(is:butted:against) text(乍得) -text(कैमरुन) text(was:butted:against) text(कांगो:गणराज्य) -text(Camerún) text(was:adjacent:to) text(الغابون) -text(Cameroon) text(is:adjacent:to) text(भूमध्यरेखीय:गिनी) -text(الكاميرون) text(neighbors) text(Centraal-Afrikaanse:Republiek) -text(喀麦隆) text(is:a:neighboring:country:of) text(نيجيريا) -text(नौरु) text(was:sited:in) text(Micronesië) -text(Nauru) text(is:sited:in) text(Oceanië) -text(Thailand) text(was:a:neighboring:country:of) text(Camboya) -text(تايلاند) text(neighbors:with) text(Myanmar) -text(Thailand) text(was:a:neighbor:of) text(लाओस) -text(Tailandia) text(is:a:neighbor:of) text(Maleisië) -text(Soedan) text(is:a:neighboring:state:to) text(Chad) -text(السودان) text(was:a:neighboring:state:to) text(Libya) -text(सूडान) text(borders:with) text(Zuid-Soedan) -text(苏丹) text(borders) text(Eritrea) -text(Sudán) text(is:butted:against) text(मध्य:अफ़्रीकी:गणराज्य) -text(Sudan) text(was:butted:against) text(Egypt) -text(Soedan) text(was:adjacent:to) text(إثيوبيا) -text(Chad) text(was:localized:in) text(وسط:إفريقيا) -text(Tsjaad) text(is:adjacent:to) text(利比亞) -text(تشاد) text(neighbors) text(Niger) -text(चाड) text(is:a:neighboring:country:of) text(南蘇丹) -text(乍得) text(was:a:neighboring:country:of) text(Kameroen) -text(Chad) text(neighbors:with) text(中非共和國) -text(Chad) text(was:a:neighbor:of) text(Nigeria) -text(वानूआटू) text(is:localized:in) text(Melanesia) -text(Vanuatu) text(was:present:in) text(Oceania) -text(केप:वर्दे) text(is:present:in) text(West:Africa) -text(Cape:Verde) text(is:still:in) text(非洲) -text(Falkland:Islands) text(was:still:in) text(दक्षिण:अमेरिका) -text(جزر:فوكلاند) text(was:currently:in) text(América) -text(लाइबेरिया) text(is:currently:in) text(África:Occidental) -text(ليبيريا) text(is:a:neighbor:of) text(Costa:de:Marfil) -text(Liberia) text(is:a:neighboring:state:to) text(Sierra:Leone) -text(Liberia) text(was:a:neighboring:state:to) text(غينيا) -text(Cambodja) text(is:placed:in) text(Zuidoost-Azië) -text(Cambodia) text(borders:with) text(Vietnam) -text(柬埔寨) text(borders) text(泰國) -text(كمبوديا) text(is:butted:against) text(老撾) -text(Zimbabue) text(was:butted:against) text(Zambia) -text(Zimbabwe) text(was:adjacent:to) text(South:Africa) -text(زيمبابوي) text(is:adjacent:to) text(बोत्सवाना) -text(津巴布韦) text(neighbors) text(莫桑比克) -text(جزر:القمر) text(was:placed:in) text(पूर्वी:अफ्रीका) -text(葛摩) text(can:be:found:in) text(Africa) -text(Guam) text(was:situated:in) text(密克羅尼西亞群島) -text(Guam) text(is:situated:in) text(ओशिआनिया) -text(巴哈馬) text(is:located:in) text(कैरिबिया) -text(Bahamas) text(was:located:in) text(أمريكتان) -text(Lebanon) text(can:be:found:in) text(पश्चिमी:एशिया) -text(Líbano) text(was:positioned:in) text(亞洲) -text(لبنان) text(is:a:neighboring:country:of) text(以色列) -text(Libanon) text(was:a:neighboring:country:of) text(सीरिया) -text(سانت:مارتن) text(is:positioned:in) text(Caribe) -text(Sint:Maarten) text(was:sited:in) text(Americas) -text(Saint:Martin) text(neighbors:with) text(Saint-Martin) -text(Ethiopië) text(is:sited:in) text(东部非洲) -text(इथियोपिया) text(was:a:neighbor:of) text(索馬里) -text(埃塞俄比亚) text(is:a:neighbor:of) text(肯尼亚) -text(Etiopía) text(is:a:neighboring:state:to) text(Eritrea) -text(Ethiopia) text(was:a:neighboring:state:to) text(South:Sudan) -text(إثيوبيا) text(borders:with) text(Djibouti) -text(Ethiopië) text(borders) text(السودان) -text(Islas:Vírgenes:de:los:Estados:Unidos) text(was:localized:in) text(Caribbean) -text(جزر:العذراء:التابعة:الولايات:المتحدة) text(is:localized:in) text(美洲) -text(गिनी-बिसाऊ) text(was:present:in) text(غرب:إفريقيا) -text(Guinee-Bissau) text(is:present:in) text(Afrika) -text(畿內亞比紹) text(is:butted:against) text(Guinea) -text(غينيا:بيساو) text(was:butted:against) text(السنغال) -text(Libia) text(is:still:in) text(उत्तर:अफ़्रीका) -text(ليبيا) text(was:adjacent:to) text(Tsjaad) -text(लीबिया) text(is:adjacent:to) text(Túnez) -text(Libië) text(neighbors) text(尼日尔) -text(Libya) text(is:a:neighboring:country:of) text(Argelia) -text(利比亞) text(was:a:neighboring:country:of) text(मिस्र) -text(Libia) text(neighbors:with) text(सूडान) -text(भूटान) text(was:still:in) text(南亚) -text(بوتان) text(was:currently:in) text(آسيا) -text(Bhutan) text(was:a:neighbor:of) text(Volksrepubliek:China) -text(不丹) text(is:a:neighbor:of) text(India) -text(Macau) text(is:currently:in) text(Oost-Azië) -text(मकाउ) text(is:placed:in) text(एशिया) -text(ماكاو) text(is:a:neighboring:state:to) text(中华人民共和国) -text(फ़्रान्सीसी:पॉलिनेशिया) text(was:placed:in) text(玻里尼西亞) -text(Frans-Polynesië) text(can:be:found:in) text(أوقيانوسيا) -text(Somalia) text(was:situated:in) text(East:Africa) -text(सोमालिया) text(was:a:neighboring:state:to) text(Yibuti) -text(الصومال) text(borders:with) text(كينيا) -text(Somalia) text(borders) text(इथियोपिया) -text(सेंट:बार्थेलेमी) text(is:situated:in) text(الكاريبي) -text(San:Bartolomé) text(is:located:in) text(महाअमेरिका) -text(Rusia) text(was:located:in) text(أوروبا:الشرقية) -text(Russia) text(is:butted:against) text(Ucrania) -text(Rusland) text(was:butted:against) text(Belarus) -text(रूस) text(was:adjacent:to) text(चीनी:जनवादी:गणराज्य) -text(روسيا) text(is:adjacent:to) text(Kazachstan) -text(俄罗斯) text(neighbors) text(Noruega) -text(Rusia) text(is:a:neighboring:country:of) text(波蘭) -text(Russia) text(was:a:neighboring:country:of) text(Azerbaiyán) -text(Rusland) text(neighbors:with) text(ليتوانيا) -text(रूस) text(was:a:neighbor:of) text(إستونيا) -text(روسيا) text(is:a:neighbor:of) text(North:Korea) -text(俄罗斯) text(is:a:neighboring:state:to) text(Finlandia) -text(Rusia) text(was:a:neighboring:state:to) text(Mongolië) -text(Russia) text(borders:with) text(लातविया) -text(Rusland) text(borders) text(Georgië) -text(نيوزيلندا) text(can:be:found:in) text(nan) -text(New:Zealand) text(was:positioned:in) text(Oceanía) -text(पनामा) text(is:positioned:in) text(Centraal-Amerika) -text(بنما) text(was:sited:in) text(Amerika) -text(Panamá) text(is:butted:against) text(Costa:Rica) -text(巴拿馬) text(was:butted:against) text(Colombia) -text(巴布亚新几内亚) text(is:sited:in) text(Melanesia) -text(Papua:New:Guinea) text(was:adjacent:to) text(Indonesia) -text(朝鮮民主主義人民共和國) text(is:adjacent:to) text(República:Popular:China) -text(उत्तर:कोरिया) text(neighbors) text(Corea:del:Sur) -text(Noord-Korea) text(is:a:neighboring:country:of) text(रूस) -text(Latvia) text(was:localized:in) text(Noord-Europa) -text(Letonia) text(was:a:neighboring:country:of) text(立陶宛) -text(拉脫維亞) text(neighbors:with) text(Bielorrusia) -text(لاتفيا) text(was:a:neighbor:of) text(روسيا) -text(Letland) text(is:a:neighbor:of) text(愛沙尼亞) -text(سلطنة:عمان) text(is:localized:in) text(西亚) -text(阿曼) text(is:a:neighboring:state:to) text(Saudi:Arabia) -text(Oman) text(was:a:neighboring:state:to) text(اليمن) -text(Omán) text(borders:with) text(Emiratos:Árabes:Unidos) -text(San:Pedro:y:Miquelón) text(was:present:in) text(North:America) -text(Saint:Pierre:and:Miquelon) text(is:present:in) text(América) -text(Martinique) text(is:still:in) text(加勒比地区) -text(Martinica) text(was:still:in) text(أمريكتان) -text(Verenigd:Koninkrijk) text(was:currently:in) text(उत्तरी:यूरोप) -text(المملكة:المتحدة) text(is:currently:in) text(Europa) -text(United:Kingdom) text(borders) text(المملكة:المتحدة) -text(Israël) text(is:placed:in) text(Zuidwest-Azië) -text(इज़राइल) text(is:butted:against) text(黎巴嫩) -text(إسرائيل) text(was:butted:against) text(Egipto) -text(Israel) text(was:adjacent:to) text(約旦) -text(Israel) text(is:adjacent:to) text(敘利亞) -text(Jersey) text(was:placed:in) text(أوروبا:الشمالية) -text(जर्सी) text(can:be:found:in) text(欧洲) -text(Pitcairn:Islands) text(was:situated:in) text(بولنيزيا) -text(Pitcairneilanden) text(is:situated:in) text(大洋洲) -text(Togo) text(is:located:in) text(West-Afrika) -text(टोगो) text(neighbors) text(布吉納法索) -text(多哥) text(is:a:neighboring:country:of) text(غانا) -text(Togo) text(was:a:neighboring:country:of) text(بنين) -text(Kiribati) text(was:located:in) text(माइक्रोनीशिया) -text(Kiribati) text(can:be:found:in) text(Oceanië) -text(ईरान) text(was:positioned:in) text(दक्षिण:एशिया) -text(Iran) text(neighbors:with) text(Afghanistan) -text(伊朗) text(was:a:neighbor:of) text(तुर्कमेनिस्तान) -text(إيران) text(is:a:neighbor:of) text(土耳其) -text(Irán) text(is:a:neighboring:state:to) text(Armenië) -text(Iran) text(was:a:neighboring:state:to) text(Azerbaijan) -text(ईरान) text(borders:with) text(Pakistan) -text(Iran) text(borders) text(इराक) -text(تجمع:سان:مارتين) text(is:positioned:in) text(Caraïben) -text(San:Martín) text(was:sited:in) text(Americas) -text(सेंट:मार्टिन:की:सामूहिकता) text(is:butted:against) text(सेंट:मार्टिन) -text(República:Dominicana) text(is:sited:in) text(कैरिबिया) -text(डोमिनिकन:गणराज्य) text(was:localized:in) text(美洲) -text(多明尼加) text(was:butted:against) text(Haití) -text(Denmark) text(was:adjacent:to) text(Germany) -text(Bermuda) text(is:localized:in) text(北美洲) -text(برمودا) text(was:present:in) text(महाअमेरिका) -text(Chile) text(is:adjacent:to) text(阿根廷) -text(تشيلي) text(neighbors) text(Bolivia) -text(Chile) text(is:a:neighboring:country:of) text(Perú) -text(कोसोवो:गणराज्य) text(is:present:in) text(东欧) -text(Kosovo) text(was:a:neighboring:country:of) text(صربيا) -text(كوسوفو) text(neighbors:with) text(Albanië) -text(Kosovo) text(was:a:neighbor:of) text(مقدونيا:الشمالية) -text(科索沃) text(is:a:neighbor:of) text(मॉन्टेनीग्रो) -text(聖克里斯多福及尼維斯) text(is:still:in) text(Caribe) -text(Saint:Kitts:en:Nevis) text(was:still:in) text(Amerika) -text(Eritrea) text(is:a:neighboring:state:to) text(جيبوتي) -text(इरित्रिया) text(was:a:neighboring:state:to) text(苏丹) -text(إرتريا) text(borders:with) text(埃塞俄比亚) -text(赤道几内亚) text(was:currently:in) text(África:Central) -text(غينيا:الاستوائية) text(is:currently:in) text(África) -text(Equatorial:Guinea) text(borders) text(गबॉन) -text(Equatoriaal-Guinea) text(is:butted:against) text(कैमरुन) -text(नाइजर) text(is:placed:in) text(पश्चिमी:अफ्रीका) -text(النيجر) text(was:butted:against) text(تشاد) -text(Níger) text(was:adjacent:to) text(ليبيا) -text(Niger) text(is:adjacent:to) text(बुर्किना:फासो) -text(Niger) text(neighbors) text(Benín) -text(尼日尔) text(is:a:neighboring:country:of) text(Mali) -text(नाइजर) text(was:a:neighboring:country:of) text(अल्जीरिया) -text(النيجر) text(neighbors:with) text(Nigeria) -text(अंगुइला) text(was:placed:in) text(Caribbean) -text(أنغويلا) text(can:be:found:in) text(América) -text(Ruanda) text(was:situated:in) text(África:Oriental) -text(卢旺达) text(was:a:neighbor:of) text(بوروندي) -text(Rwanda) text(is:a:neighbor:of) text(Tanzania) -text(Rwanda) text(is:a:neighboring:state:to) text(烏干達) -text(रवाण्डा) text(was:a:neighboring:state:to) text(Congo-Kinshasa) -text(الإمارات:العربية:المتحدة) text(is:situated:in) text(Asia:Occidental) -text(阿拉伯联合酋长国) text(borders:with) text(Oman) -text(संयुक्त:अरब:अमीरात) text(borders) text(सउदी:अरब) -text(Estonia) text(is:located:in) text(北歐) -text(एस्टोनिया) text(was:located:in) text(Europa) -text(Estonia) text(is:butted:against) text(लातविया) -text(Estland) text(was:butted:against) text(俄罗斯) -text(اليونان) text(can:be:found:in) text(أوروبا:الجنوبية) -text(यूनान) text(was:adjacent:to) text(Bulgaria) -text(Greece) text(is:adjacent:to) text(阿爾巴尼亞) -text(希腊) text(neighbors) text(उत्तर:मैसिडोनिया) -text(Griekenland) text(is:a:neighboring:country:of) text(Turkije) -text(Senegal) text(was:positioned:in) text(西非) -text(Senegal) text(is:positioned:in) text(अफ्रीका) -text(सेनेगल) text(was:a:neighboring:country:of) text(Guinea-Bisáu) -text(Senegal) text(neighbors:with) text(موريتانيا) -text(塞内加尔) text(was:a:neighbor:of) text(مالي) -text(السنغال) text(is:a:neighbor:of) text(Gambia) -text(Senegal) text(is:a:neighboring:state:to) text(गिनी) -text(Guadeloupe) text(was:sited:in) text(الكاريبي) -text(غوادلوب) text(is:sited:in) text(أمريكتان) -text(मोनाको) text(was:a:neighboring:state:to) text(法國) -text(Djibouti) text(borders:with) text(厄立特里亞) -text(जिबूती) text(borders) text(Somalië) -text(吉布提) text(is:butted:against) text(Etiopía) -text(इंडोनेशिया) text(was:butted:against) text(Papúa:Nueva:Guinea) -text(إندونيسيا) text(was:adjacent:to) text(Oost-Timor) -text(Indonesië) text(is:adjacent:to) text(ماليزيا) -text(ब्रिटिश:वर्जिन:द्वीपसमूह) text(was:localized:in) text(加勒比地区) -text(英屬維爾京群島) text(is:localized:in) text(Americas) -text(جزر:كوك) text(was:present:in) text(पोलीनेशिया) -text(Islas:Cook) text(is:present:in) text(Oceania) -text(أوغندا) text(is:still:in) text(شرق:إفريقيا) -text(Uganda) text(neighbors) text(تنزانيا) -text(Oeganda) text(is:a:neighboring:country:of) text(Democratic:Republic:of:the:Congo) -text(युगाण्डा) text(was:a:neighboring:country:of) text(Kenia) -text(Uganda) text(neighbors:with) text(Sudán:del:Sur) -text(烏干達) text(was:a:neighbor:of) text(رواندا) -text(Noord-Macedonië) text(was:still:in) text(Zuid-Europa) -text(北马其顿) text(is:a:neighbor:of) text(Kosovo) -text(Macedonia:del:Norte) text(is:a:neighboring:state:to) text(Grecia) -text(North:Macedonia) text(was:a:neighboring:state:to) text(Albania) -text(مقدونيا:الشمالية) text(borders:with) text(Serbia) -text(उत्तर:मैसिडोनिया) text(borders) text(保加利亚) -text(ट्यूनिशिया) text(was:currently:in) text(North:Africa) -text(突尼西亞) text(is:currently:in) text(إفريقيا) -text(Tunesië) text(is:butted:against) text(लीबिया) -text(Tunisia) text(was:butted:against) text(الجزائر) -text(Ecuador) text(was:adjacent:to) text(पेरू) -text(ईक्वाडोर) text(is:adjacent:to) text(كولومبيا) -text(البرازيل) text(is:placed:in) text(Zuid-Amerika) -text(巴西) text(neighbors) text(Bolivia) -text(Brasil) text(is:a:neighboring:country:of) text(Colombia) -text(Brazilië) text(was:a:neighboring:country:of) text(पैराग्वे) -text(Brazil) text(neighbors:with) text(Uruguay) -text(ब्राज़ील) text(was:a:neighbor:of) text(French:Guiana) -text(البرازيل) text(is:a:neighbor:of) text(سورينام) -text(巴西) text(is:a:neighboring:state:to) text(वेनेज़ुएला) -text(Brasil) text(was:a:neighboring:state:to) text(Argentinië) -text(Brazilië) text(borders:with) text(غيانا) -text(Brazil) text(borders) text(Peru) -text(Paraguay) text(was:placed:in) text(南美洲) -text(Paraguay) text(can:be:found:in) text(美洲) -text(باراغواي) text(is:butted:against) text(अर्जेण्टीना) -text(巴拉圭) text(was:butted:against) text(ब्राज़ील) -text(Paraguay) text(was:adjacent:to) text(玻利維亞) -text(Finland) text(was:situated:in) text(Northern:Europe) -text(芬蘭) text(is:adjacent:to) text(Noorwegen) -text(Finland) text(neighbors) text(स्वीडन) -text(फ़िनलैण्ड) text(is:a:neighboring:country:of) text(Rusia) -text(Jordania) text(was:a:neighboring:country:of) text(Arabia:Saudí) -text(الأردن) text(neighbors:with) text(以色列) -text(Jordan) text(was:a:neighbor:of) text(Iraq) -text(Jordanië) text(is:a:neighbor:of) text(Syrië) -text(Timor:Oriental) text(is:a:neighboring:state:to) text(印度尼西亚) -text(Montenegro) text(is:situated:in) text(Europa:del:Sur) -text(Montenegro) text(was:a:neighboring:state:to) text(कोसोवो:गणराज्य) -text(الجبل:الأسود) text(borders:with) text(波斯尼亚和黑塞哥维那) -text(Montenegro) text(borders) text(Kroatië) -text(蒙特內哥羅) text(is:butted:against) text(塞爾維亞) -text(मॉन्टेनीग्रो) text(was:butted:against) text(Albania) -text(秘鲁) text(is:located:in) text(América:del:Sur) -text(بيرو) text(was:adjacent:to) text(الإكوادور) -text(Peru) text(is:adjacent:to) text(बोलिविया) -text(Perú) text(neighbors) text(चिली) -text(पेरू) text(is:a:neighboring:country:of) text(البرازيل) -text(Peru) text(was:a:neighboring:country:of) text(कोलम्बिया) -text(Montserrat) text(was:located:in) text(Caraïben) -text(Montserrat) text(can:be:found:in) text(महाअमेरिका) -text(Ukraine) text(was:positioned:in) text(Eastern:Europe) -text(युक्रेन) text(neighbors:with) text(سلوفاكيا) -text(Oekraïne) text(was:a:neighbor:of) text(Wit-Rusland) -text(أوكرانيا) text(is:a:neighbor:of) text(Poland) -text(烏克蘭) text(is:a:neighboring:state:to) text(Russia) -text(Ucrania) text(was:a:neighboring:state:to) text(匈牙利) -text(Ukraine) text(borders:with) text(摩爾多瓦) -text(युक्रेन) text(borders) text(Romania) -text(Dominica) text(is:positioned:in) text(कैरिबिया) -text(دومينيكا) text(was:sited:in) text(Amerika) -text(土庫曼斯坦) text(is:butted:against) text(哈萨克斯坦) -text(Turkmenistan) text(was:butted:against) text(अफ़्ग़ानिस्तान) -text(Turkmenistan) text(was:adjacent:to) text(Uzbekistan) -text(Turkmenistán) text(is:adjacent:to) text(伊朗) -text(根西) text(is:sited:in) text(Europa:del:Norte) -text(Guernsey) text(was:localized:in) text(यूरोप) -text(Gibraltar) text(is:localized:in) text(दक्षिणी:यूरोप) -text(جبل:طارق) text(neighbors) text(España) -text(स्विट्ज़रलैण्ड) text(was:present:in) text(Europa:Occidental) -text(瑞士) text(is:a:neighboring:country:of) text(Duitsland) -text(Zwitserland) text(was:a:neighboring:country:of) text(意大利) -text(سويسرا) text(neighbors:with) text(النمسا) -text(Suiza) text(was:a:neighbor:of) text(फ़्रान्स) -text(Switzerland) text(is:a:neighbor:of) text(列支敦斯登) -text(ऑस्ट्रिया) text(is:present:in) text(पश्चिमी:यूरोप) -text(Oostenrijk) text(is:a:neighboring:state:to) text(Alemania) -text(Austria) text(was:a:neighboring:state:to) text(Slowakije) -text(奧地利) text(borders:with) text(Slovenië) -text(Austria) text(borders) text(इटली) -text(النمسا) text(is:butted:against) text(स्विट्ज़रलैण्ड) -text(ऑस्ट्रिया) text(was:butted:against) text(हंगरी) -text(Oostenrijk) text(was:adjacent:to) text(Liechtenstein) -text(Austria) text(is:adjacent:to) text(चेक:गणराज्य) -text(Hongarije) text(neighbors) text(Oekraïne) -text(Hungría) text(is:a:neighboring:country:of) text(स्लोवाकिया) -text(المجر) text(was:a:neighboring:country:of) text(Slovenia) -text(Hungary) text(neighbors:with) text(Croatia) -text(匈牙利) text(was:a:neighbor:of) text(奧地利) -text(हंगरी) text(is:a:neighbor:of) text(Servië) -text(Hongarije) text(is:a:neighboring:state:to) text(रोमानिया) -text(Malawi) text(is:still:in) text(Oost-Afrika) -text(مالاوي) text(was:a:neighboring:state:to) text(ज़ाम्बिया) -text(मलावी) text(borders:with) text(Tanzania) -text(Malawi) text(borders) text(Mozambique) -text(Hongkong) text(is:butted:against) text(الصين) -text(Liechtenstein) text(was:still:in) text(Western:Europe) -text(Liechtenstein) text(was:currently:in) text(أوروبا) -text(ليختنشتاين) text(was:butted:against) text(瑞士) -text(लिक्टेन्स्टाइन) text(was:adjacent:to) text(Austria) -text(巴巴多斯) text(is:currently:in) text(Caribe) -text(Barbados) text(is:placed:in) text(América) -text(Georgia) text(was:placed:in) text(West:Asia) -text(جورجيا) text(is:adjacent:to) text(आर्मीनिया) -text(जॉर्जिया) text(neighbors) text(Azerbeidzjan) -text(Georgia) text(is:a:neighboring:country:of) text(Rusland) -text(格鲁吉亚) text(was:a:neighboring:country:of) text(Turkey) -text(अल्बानिया) text(can:be:found:in) text(南欧) -text(ألبانيا) text(was:situated:in) text(Europe) -text(Albanië) text(neighbors:with) text(Montenegro) -text(阿爾巴尼亞) text(was:a:neighbor:of) text(Noord-Macedonië) -text(Albania) text(is:a:neighbor:of) text(Kosovo) -text(Albania) text(is:a:neighboring:state:to) text(اليونان) -text(科威特) text(is:situated:in) text(غرب:آسيا) -text(الكويت) text(was:a:neighboring:state:to) text(Saoedi-Arabië) -text(Koeweit) text(borders:with) text(Irak) -text(Sudáfrica) text(is:located:in) text(إفريقيا:الجنوبية) -text(Zuid-Afrika) text(borders) text(Mozambique) -text(جنوب:إفريقيا) text(is:butted:against) text(Botsuana) -text(दक्षिण:अफ़्रीका) text(was:butted:against) text(Esuatini) -text(南非) text(was:adjacent:to) text(Zimbabwe) -text(South:Africa) text(is:adjacent:to) text(Namibia) -text(Sudáfrica) text(neighbors) text(Lesotho) -text(海地) text(was:located:in) text(Caribbean) -text(Haiti) text(can:be:found:in) text(أمريكتان) -text(هايتي) text(is:a:neighboring:country:of) text(Dominicaanse:Republiek) -text(أفغانستان) text(was:positioned:in) text(Asia:del:Sur) -text(Afghanistan) text(was:a:neighboring:country:of) text(تركمانستان) -text(阿富汗) text(neighbors:with) text(People's:Republic:of:China) -text(Afganistán) text(was:a:neighbor:of) text(Tadzjikistan) -text(Afghanistan) text(is:a:neighbor:of) text(أوزبكستان) -text(अफ़्ग़ानिस्तान) text(is:a:neighboring:state:to) text(إيران) -text(أفغانستان) text(was:a:neighboring:state:to) text(Pakistán) -text(Singapur) text(is:positioned:in) text(Sudeste:Asiático) -text(Singapore) text(was:sited:in) text(Asia) -text(Benin) text(is:sited:in) text(West:Africa) -text(बेनिन) text(borders:with) text(Níger) -text(貝南) text(borders) text(بوركينا:فاسو) -text(Benin) text(is:butted:against) text(Togo) -text(بنين) text(was:butted:against) text(奈及利亞) -text(Åland) text(was:localized:in) text(Noord-Europa) -text(جزر:أولاند) text(is:localized:in) text(Europa) -text(Croacia) text(was:present:in) text(Southern:Europe) -text(克羅地亞) text(was:adjacent:to) text(سلوفينيا) -text(क्रोएशिया) text(is:adjacent:to) text(Bosnië:en:Herzegovina) -text(كرواتيا) text(neighbors) text(Hungría) -text(Kroatië) text(is:a:neighboring:country:of) text(Serbia) -text(Croatia) text(was:a:neighboring:country:of) text(Montenegro) -text(Zweden) text(is:present:in) text(उत्तरी:यूरोप) -text(Sweden) text(neighbors:with) text(नॉर्वे) -text(السويد) text(was:a:neighbor:of) text(فنلندا) -text(मेक्सिको) text(is:a:neighbor:of) text(Belice) -text(墨西哥) text(is:a:neighboring:state:to) text(United:States) -text(المكسيك) text(was:a:neighboring:state:to) text(危地马拉) -text(Groenland) text(is:still:in) text(Noord-Amerika) -text(Groenlandia) text(was:still:in) text(Americas) -text(Pitcairn:Islands) text(was:currently:in) text(nan) -text(Pitcairneilanden) text(is:currently:in) text(ओशिआनिया) -text(Nepal) text(is:placed:in) text(Zuid-Azië) -text(Nepal) text(was:placed:in) text(Azië) -text(नेपाल) text(borders:with) text(Volksrepubliek:China) -text(نيبال) text(borders) text(India) -text(Guatemala) text(is:butted:against) text(Belize) -text(Guatemala) text(was:butted:against) text(El:Salvador) -text(ग्वाटेमाला) text(was:adjacent:to) text(Mexico) -text(غواتيمالا) text(is:adjacent:to) text(Honduras) -text(दक्षिण:कोरिया) text(can:be:found:in) text(पूर्वी:एशिया) -text(Zuid-Korea) text(neighbors) text(كوريا:الشمالية) -text(Moldavië) text(was:situated:in) text(पूर्वी:यूरोप) -text(Moldavia) text(is:situated:in) text(欧洲) -text(مولدوفا) text(is:a:neighboring:country:of) text(أوكرانيا) -text(मोल्डोवा) text(was:a:neighboring:country:of) text(Roemenië) -text(毛里求斯) text(is:located:in) text(पूर्वी:अफ्रीका) -text(मॉरिशस) text(was:located:in) text(非洲) -text(بيلاروس) text(neighbors:with) text(烏克蘭) -text(बेलारूस) text(was:a:neighbor:of) text(بولندا) -text(白俄羅斯) text(is:a:neighbor:of) text(Lithuania) -text(Belarus) text(is:a:neighboring:state:to) text(रूस) -text(Bielorrusia) text(was:a:neighboring:state:to) text(Latvia) -text(बांग्लादेश) text(borders:with) text(ميانمار) -text(Bangladesh) text(borders) text(الهند) -text(馬來西亞) text(can:be:found:in) text(جنوب:شرق:آسيا) -text(मलेशिया) text(is:butted:against) text(थाईलैंड) -text(Malaysia) text(was:butted:against) text(Indonesia) -text(Malasia) text(was:adjacent:to) text(Brunéi) -text(बोस्निया:और:हर्ज़ेगोविना) text(was:positioned:in) text(أوروبا:الجنوبية) -text(Bosnia:and:Herzegovina) text(is:adjacent:to) text(सर्बिया) -text(البوسنة:والهرسك) text(neighbors) text(Croacia) -text(Bosnia:y:Herzegovina) text(is:a:neighboring:country:of) text(الجبل:الأسود) -text(لوكسمبورغ) text(is:positioned:in) text(أوروبا:الغربية) -text(लक्ज़मबर्ग) text(was:a:neighboring:country:of) text(德國) -text(Luxembourg) text(neighbors:with) text(比利時) -text(Luxemburg) text(was:a:neighbor:of) text(France) -text(إيطاليا) text(was:sited:in) text(Zuid-Europa) -text(Italy) text(is:sited:in) text(Europa) -text(Italië) text(is:a:neighbor:of) text(斯洛文尼亞) -text(Italia) text(is:a:neighboring:state:to) text(Zwitserland) -text(意大利) text(was:a:neighboring:state:to) text(النمسا) -text(इटली) text(borders:with) text(Frankrijk) -text(إيطاليا) text(borders) text(梵蒂岡城國) -text(Italy) text(is:butted:against) text(San:Marino) -text(أذربيجان) text(was:localized:in) text(पश्चिमी:एशिया) -text(अज़रबैजान) text(was:butted:against) text(تركيا) -text(阿塞拜疆) text(was:adjacent:to) text(Armenia) -text(Azerbaiyán) text(is:adjacent:to) text(روسيا) -text(Azerbaijan) text(neighbors) text(Irán) -text(Azerbeidzjan) text(is:a:neighboring:country:of) text(Georgië) -text(هندوراس) text(is:localized:in) text(Central:America) -text(Honduras) text(was:a:neighboring:country:of) text(Guatemala) -text(Honduras) text(neighbors:with) text(Nicaragua) -text(洪都拉斯) text(was:a:neighbor:of) text(薩爾瓦多) -text(माली) text(was:present:in) text(África:Occidental) -text(Mali) text(is:a:neighbor:of) text(Burkina:Faso) -text(Mali) text(is:a:neighboring:state:to) text(Guinee) -text(马里) text(was:a:neighboring:state:to) text(Mauritanië) -text(Mali) text(borders:with) text(Niger) -text(مالي) text(borders) text(Senegal) -text(माली) text(is:butted:against) text(阿爾及利亞) -text(Mali) text(was:butted:against) text(कोत:दिव्वार) -text(تايوان) text(is:present:in) text(Asia:Oriental) -text(Taiwan) text(is:still:in) text(Asia) -text(Algerije) text(was:still:in) text(Noord-Afrika) -text(Algeria) text(was:adjacent:to) text(Libië) -text(Argelia) text(is:adjacent:to) text(تونس) -text(अल्जीरिया) text(neighbors) text(Mauritania) -text(الجزائر) text(is:a:neighboring:country:of) text(Marokko) -text(阿爾及利亞) text(was:a:neighboring:country:of) text(Niger) -text(Algerije) text(neighbors:with) text(Mali) -text(Algeria) text(was:a:neighbor:of) text(الجمهورية:العربية:الصحراوية:الديمقراطية) -text(Guayana:Francesa) text(is:a:neighbor:of) text(巴西) -text(غويانا:الفرنسية) text(is:a:neighboring:state:to) text(सूरीनाम) -text(Jemen) text(was:currently:in) text(西亚) -text(Yemen) text(was:a:neighboring:state:to) text(ओमान) -text(Yemen) text(borders:with) text(السعودية) -text(بورتوريكو) text(is:currently:in) text(الكاريبي) -text(Puerto:Rico) text(is:placed:in) text(美洲) -text(San:Vicente:y:las:Granadinas) text(was:placed:in) text(加勒比地区) -text(圣文森特和格林纳丁斯) text(can:be:found:in) text(महाअमेरिका) -text(Venezuela) text(borders) text(Brasil) -text(Venezuela) text(is:butted:against) text(Guyana) -text(فنزويلا) text(was:butted:against) text(哥伦比亚) -text(Grenada) text(was:situated:in) text(Caraïben) -text(غرينادا) text(is:situated:in) text(Amerika) -text(संयुक्त:राज्य:अमेरिका) text(was:adjacent:to) text(Canada) -text(Estados:Unidos) text(is:adjacent:to) text(Mexico) -text(托克劳) text(is:located:in) text(Polynesia) -text(Tokelau) text(was:located:in) text(أوقيانوسيا) -text(स्लोवेनिया) text(can:be:found:in) text(Europa:del:Sur) -text(Eslovenia) text(neighbors) text(ऑस्ट्रिया) -text(Slovenië) text(is:a:neighboring:country:of) text(克羅地亞) -text(Slovenia) text(was:a:neighboring:country:of) text(Italië) -text(سلوفينيا) text(neighbors:with) text(المجر) -text(Philippines) text(was:positioned:in) text(东南亚) -text(Filipijnen) text(is:positioned:in) text(亞洲) -text(ميكرونيسيا) text(was:sited:in) text(Micronesia) -text(Micronesia) text(is:sited:in) text(Oceanía) -text(中华人民共和国) text(was:localized:in) text(東亞) -text(चीनी:जनवादी:गणराज्य) text(was:a:neighbor:of) text(Afghanistan) -text(República:Popular:China) text(is:a:neighbor:of) text(Bhutan) -text(الصين) text(is:a:neighboring:state:to) text(Macao) -text(People's:Republic:of:China) text(was:a:neighboring:state:to) text(India) -text(Volksrepubliek:China) text(borders:with) text(كازاخستان) -text(中华人民共和国) text(borders) text(Kyrgyzstan) -text(चीनी:जनवादी:गणराज्य) text(is:butted:against) text(Tajikistan) -text(República:Popular:China) text(was:butted:against) text(Laos) -text(الصين) text(was:adjacent:to) text(俄罗斯) -text(People's:Republic:of:China) text(is:adjacent:to) text(Corea:del:Norte) -text(Volksrepubliek:China) text(neighbors) text(緬甸) -text(中华人民共和国) text(is:a:neighboring:country:of) text(巴基斯坦) -text(चीनी:जनवादी:गणराज्य) text(was:a:neighboring:country:of) text(मंगोलिया) -text(República:Popular:China) text(neighbors:with) text(香港) -text(الصين) text(was:a:neighbor:of) text(Vietnam) -text(Gabón) text(is:localized:in) text(Centraal-Afrika) -text(Gabon) text(is:a:neighbor:of) text(Guinea:Ecuatorial) -text(Gabon) text(is:a:neighboring:state:to) text(República:del:Congo) -text(加蓬) text(was:a:neighboring:state:to) text(Camerún) -text(Amerikaanse:Kleinere:Afgelegen:Eilanden) text(was:present:in) text(أمريكا:الشمالية) -text(美国本土外小岛屿) text(is:present:in) text(América) -text(Andorra) text(is:still:in) text(दक्षिणी:यूरोप) -text(Andorra) text(borders:with) text(إسبانيا) -text(安道尔) text(borders) text(فرنسا) -text(萨摩亚) text(was:still:in) text(Polynesië) -text(Samoa) text(was:currently:in) text(大洋洲) -text(Gambia) text(is:currently:in) text(غرب:إفريقيا) -text(岡比亞) text(is:placed:in) text(Africa) -text(The:Gambia) text(is:butted:against) text(सेनेगल) -text(nan) text(was:placed:in) text(Zuidwest-Azië) -text(Pedro:Miguel) text(can:be:found:in) text(آسيا) -text(nan) text(was:butted:against) text(जॉर्डन) -text(Pedro:Miguel) text(was:adjacent:to) text(埃及) -text(nan) text(is:adjacent:to) text(Israël) -text(留尼汪) text(was:situated:in) text(东部非洲) -text(Réunion) text(is:situated:in) text(Afrika) -text(Francia) text(is:located:in) text(West-Europa) -text(法國) text(neighbors) text(ألمانيا) -text(फ़्रान्स) text(is:a:neighboring:country:of) text(卢森堡) -text(France) text(was:a:neighboring:country:of) text(Italia) -text(Frankrijk) text(neighbors:with) text(Andorra) -text(فرنسا) text(was:a:neighbor:of) text(سويسرا) -text(Francia) text(is:a:neighbor:of) text(Mónaco) -text(法國) text(is:a:neighboring:state:to) text(बेल्जियम) -text(फ़्रान्स) text(was:a:neighboring:state:to) text(Spanje) -text(منغوليا) text(was:located:in) text(East:Asia) -text(Mongolia) text(can:be:found:in) text(एशिया) -text(蒙古國) text(borders:with) text(People's:Republic:of:China) -text(Mongolia) text(borders) text(Rusia) -text(Lituania) text(was:positioned:in) text(أوروبا:الشمالية) -text(Litouwen) text(is:butted:against) text(Polonia) -text(लिथुआनिया) text(was:butted:against) text(Letonia) -text(ليتوانيا) text(was:adjacent:to) text(Wit-Rusland) -text(立陶宛) text(is:adjacent:to) text(Russia) -text(Cayman:Islands) text(is:positioned:in) text(कैरिबिया) -text(केमन:द्वीपसमूह) text(was:sited:in) text(أمريكتان) -text(Saint:Lucia) text(is:sited:in) text(Caribe) -text(سانت:لوسيا) text(was:localized:in) text(Americas) -text(Curazao) text(is:localized:in) text(Caribbean) -text(Curaçao) text(was:present:in) text(美洲) -text(الكاريبي) text(is:present:in) text(महाअमेरिका) -text(South:Asia) text(is:still:in) text(Asia) -text(中部非洲) text(was:still:in) text(África) -text(北歐) text(was:currently:in) text(यूरोप) -text(南欧) text(is:currently:in) text(أوروبا) -text(Asia:Occidental) text(is:placed:in) text(Azië) -text(South:America) text(was:placed:in) text(Amerika) -text(Polinesia) text(can:be:found:in) text(Oceanië) -text(nan) text(was:situated:in) text(Oceania) -text(西欧) text(is:situated:in) text(Europe) -text(East:Africa) text(is:located:in) text(अफ्रीका) -text(West-Afrika) text(was:located:in) text(إفريقيا) -text(Europa:Oriental) text(can:be:found:in) text(Europa) -text(केंद्रीय:अमेरिका) text(was:positioned:in) text(América) -text(América:del:Norte) text(is:positioned:in) text(أمريكتان) -text(दक्षिण:पूर्व:एशिया) text(was:sited:in) text(Asia) -text(Southern:Africa) text(is:sited:in) text(非洲) -text(شرق:آسيا) text(was:localized:in) text(亞洲) -text(Norte:de:África) text(is:localized:in) text(Africa) -text(मॅलानिशिया) text(was:present:in) text(ओशिआनिया) -text(Micronesië) text(is:present:in) text(أوقيانوسيا) -text(Central:Asia) text(is:still:in) text(آسيا) -text(中欧) text(was:still:in) text(欧洲) \ No newline at end of file diff --git a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_relation2text.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_relation2text.tsv index 4b29673..119b9d7 100644 --- a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_relation2text.tsv +++ b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_relation2text.tsv @@ -1,431 +1,431 @@ -palau text(can:be:found:in) micronesia -palau text(was:positioned:in) oceania -maldives text(is:positioned:in) southern_asia -maldives text(was:sited:in) asia -brunei text(is:sited:in) south-eastern_asia +palau text(is:positioned:in) micronesia +palau text(was:sited:in) oceania +maldives text(is:sited:in) southern_asia +maldives text(is:placed:in) asia +brunei text(was:placed:in) south-eastern_asia brunei text(was:localized:in) asia -brunei text(is:butted:against) malaysia +brunei text(was:a:neighboring:country:of) malaysia japan text(is:localized:in) eastern_asia japan text(was:present:in) asia -netherlands text(was:butted:against) germany -netherlands text(was:adjacent:to) belgium -turkey text(is:adjacent:to) armenia -turkey text(neighbors) azerbaijan -turkey text(is:a:neighboring:country:of) iran -turkey text(was:a:neighboring:country:of) greece -turkey text(neighbors:with) georgia -turkey text(was:a:neighbor:of) bulgaria -turkey text(is:a:neighbor:of) iraq -turkey text(is:a:neighboring:state:to) syria +netherlands text(was:adjacent:to) germany +netherlands text(is:adjacent:to) belgium +turkey text(was:a:neighbor:of) armenia +turkey text(is:a:neighbor:of) azerbaijan +turkey text(is:a:neighboring:state:to) iran +turkey text(was:a:neighboring:state:to) greece +turkey text(borders:with) georgia +turkey text(neighbors:withborders) bulgaria +turkey text(neighbors) iraq +turkey text(is:butted:against) syria angola text(is:present:in) middle_africa -angola text(was:a:neighboring:state:to) dr_congo -angola text(borders:with) namibia -angola text(borders) zambia -angola text(is:butted:against) republic_of_the_congo +angola text(was:butted:against) dr_congo +angola text(is:a:neighboring:country:of) namibia +angola text(was:a:neighboring:country:of) zambia +angola text(was:adjacent:to) republic_of_the_congo armenia text(is:still:in) western_asia -armenia text(was:butted:against) georgia -armenia text(was:adjacent:to) azerbaijan -armenia text(is:adjacent:to) iran -armenia text(neighbors) turkey +armenia text(is:adjacent:to) georgia +armenia text(was:a:neighbor:of) azerbaijan +armenia text(is:a:neighbor:of) iran +armenia text(is:a:neighboring:state:to) turkey antigua_and_barbuda text(was:still:in) caribbean antigua_and_barbuda text(was:currently:in) americas swaziland text(is:currently:in) southern_africa -swaziland text(is:a:neighboring:country:of) south_africa -swaziland text(was:a:neighboring:country:of) mozambique -wallis_and_futuna text(is:placed:in) polynesia -wallis_and_futuna text(was:placed:in) oceania -uruguay text(can:be:found:in) south_america -uruguay text(was:situated:in) americas -uruguay text(neighbors:with) argentina -uruguay text(was:a:neighbor:of) brazil -zambia text(is:situated:in) eastern_africa -zambia text(is:a:neighbor:of) tanzania -zambia text(is:a:neighboring:state:to) mozambique -zambia text(was:a:neighboring:state:to) dr_congo -zambia text(borders:with) angola -zambia text(borders) botswana -zambia text(is:butted:against) zimbabwe -zambia text(was:butted:against) namibia -zambia text(was:adjacent:to) malawi -cyprus text(is:located:in) eastern_europe -cyprus text(was:located:in) europe -cyprus text(is:adjacent:to) united_kingdom -ireland text(can:be:found:in) northern_europe -ireland text(was:positioned:in) europe -ireland text(neighbors) united_kingdom -burundi text(is:positioned:in) eastern_africa -burundi text(is:a:neighboring:country:of) dr_congo -burundi text(was:a:neighboring:country:of) rwanda -burundi text(neighbors:with) tanzania -central_african_republic text(was:sited:in) middle_africa -central_african_republic text(was:a:neighbor:of) chad -central_african_republic text(is:a:neighbor:of) republic_of_the_congo -central_african_republic text(is:a:neighboring:state:to) dr_congo -central_african_republic text(was:a:neighboring:state:to) south_sudan -central_african_republic text(borders:with) cameroon -central_african_republic text(borders) sudan -tonga text(is:sited:in) polynesia +swaziland text(was:a:neighboring:state:to) south_africa +swaziland text(borders:with) mozambique +wallis_and_futuna text(was:situated:in) polynesia +wallis_and_futuna text(is:situated:in) oceania +uruguay text(is:located:in) south_america +uruguay text(was:located:in) americas +uruguay text(neighbors:withborders) argentina +uruguay text(neighbors) brazil +zambia text(could:be:found:in) eastern_africa +zambia text(is:butted:against) tanzania +zambia text(was:butted:against) mozambique +zambia text(is:a:neighboring:country:of) dr_congo +zambia text(was:a:neighboring:country:of) angola +zambia text(was:adjacent:to) botswana +zambia text(is:adjacent:to) zimbabwe +zambia text(was:a:neighbor:of) namibia +zambia text(is:a:neighbor:of) malawi +cyprus text(can:be:found:in) eastern_europe +cyprus text(was:positioned:in) europe +cyprus text(is:a:neighboring:state:to) united_kingdom +ireland text(is:positioned:in) northern_europe +ireland text(was:sited:in) europe +ireland text(was:a:neighboring:state:to) united_kingdom +burundi text(is:sited:in) eastern_africa +burundi text(borders:with) dr_congo +burundi text(neighbors:withborders) rwanda +burundi text(neighbors) tanzania +central_african_republic text(is:placed:in) middle_africa +central_african_republic text(is:butted:against) chad +central_african_republic text(was:butted:against) republic_of_the_congo +central_african_republic text(is:a:neighboring:country:of) dr_congo +central_african_republic text(was:a:neighboring:country:of) south_sudan +central_african_republic text(was:adjacent:to) cameroon +central_african_republic text(is:adjacent:to) sudan +tonga text(was:placed:in) polynesia tonga text(was:localized:in) oceania ivory_coast text(is:localized:in) western_africa -ivory_coast text(is:butted:against) burkina_faso -ivory_coast text(was:butted:against) ghana -ivory_coast text(was:adjacent:to) liberia -ivory_coast text(is:adjacent:to) mali -ivory_coast text(neighbors) guinea -sierra_leone text(is:a:neighboring:country:of) liberia -sierra_leone text(was:a:neighboring:country:of) guinea +ivory_coast text(was:a:neighbor:of) burkina_faso +ivory_coast text(is:a:neighbor:of) ghana +ivory_coast text(is:a:neighboring:state:to) liberia +ivory_coast text(was:a:neighboring:state:to) mali +ivory_coast text(borders:with) guinea +sierra_leone text(neighbors:withborders) liberia +sierra_leone text(neighbors) guinea mayotte text(was:present:in) eastern_africa mayotte text(is:present:in) africa -poland text(neighbors:with) germany -poland text(was:a:neighbor:of) ukraine -poland text(is:a:neighbor:of) slovakia -poland text(is:a:neighboring:state:to) belarus -poland text(was:a:neighboring:state:to) russia -poland text(borders:with) lithuania -poland text(borders) czechia +poland text(is:butted:against) germany +poland text(was:butted:against) ukraine +poland text(is:a:neighboring:country:of) slovakia +poland text(was:a:neighboring:country:of) belarus +poland text(was:adjacent:to) russia +poland text(is:adjacent:to) lithuania +poland text(was:a:neighbor:of) czechia kazakhstan text(is:still:in) central_asia -kazakhstan text(is:butted:against) turkmenistan -kazakhstan text(was:butted:against) china -kazakhstan text(was:adjacent:to) kyrgyzstan -kazakhstan text(is:adjacent:to) uzbekistan -kazakhstan text(neighbors) russia +kazakhstan text(is:a:neighbor:of) turkmenistan +kazakhstan text(is:a:neighboring:state:to) china +kazakhstan text(was:a:neighboring:state:to) kyrgyzstan +kazakhstan text(borders:with) uzbekistan +kazakhstan text(neighbors:withborders) russia uzbekistan text(was:still:in) central_asia -uzbekistan text(is:a:neighboring:country:of) afghanistan -uzbekistan text(was:a:neighboring:country:of) turkmenistan -uzbekistan text(neighbors:with) kazakhstan -uzbekistan text(was:a:neighbor:of) kyrgyzstan -uzbekistan text(is:a:neighbor:of) tajikistan +uzbekistan text(neighbors) afghanistan +uzbekistan text(is:butted:against) turkmenistan +uzbekistan text(was:butted:against) kazakhstan +uzbekistan text(is:a:neighboring:country:of) kyrgyzstan +uzbekistan text(was:a:neighboring:country:of) tajikistan turks_and_caicos_islands text(was:currently:in) caribbean turks_and_caicos_islands text(is:currently:in) americas -new_caledonia text(is:placed:in) melanesia -new_caledonia text(was:placed:in) oceania -pakistan text(is:a:neighboring:state:to) china -pakistan text(was:a:neighboring:state:to) afghanistan -pakistan text(borders:with) iran -pakistan text(borders) india -argentina text(can:be:found:in) south_america -argentina text(is:butted:against) bolivia -argentina text(was:butted:against) chile -argentina text(was:adjacent:to) brazil -argentina text(is:adjacent:to) paraguay +new_caledonia text(was:situated:in) melanesia +new_caledonia text(is:situated:in) oceania +pakistan text(was:adjacent:to) china +pakistan text(is:adjacent:to) afghanistan +pakistan text(was:a:neighbor:of) iran +pakistan text(is:a:neighbor:of) india +argentina text(is:located:in) south_america +argentina text(is:a:neighboring:state:to) bolivia +argentina text(was:a:neighboring:state:to) chile +argentina text(borders:with) brazil +argentina text(neighbors:withborders) paraguay argentina text(neighbors) uruguay -cuba text(was:situated:in) caribbean -cuba text(is:situated:in) americas -serbia text(is:a:neighboring:country:of) macedonia -serbia text(was:a:neighboring:country:of) montenegro -serbia text(neighbors:with) kosovo -serbia text(was:a:neighbor:of) bosnia_and_herzegovina -serbia text(is:a:neighbor:of) croatia -serbia text(is:a:neighboring:state:to) hungary -serbia text(was:a:neighboring:state:to) bulgaria -serbia text(borders:with) romania -czechia text(is:located:in) eastern_europe -czechia text(borders) germany -czechia text(is:butted:against) austria -czechia text(was:butted:against) poland -czechia text(was:adjacent:to) slovakia -nicaragua text(is:adjacent:to) honduras -nicaragua text(neighbors) costa_rica -vietnam text(was:located:in) south-eastern_asia -vietnam text(can:be:found:in) asia -vietnam text(is:a:neighboring:country:of) cambodia -vietnam text(was:a:neighboring:country:of) laos -vietnam text(neighbors:with) china -niue text(was:positioned:in) polynesia -niue text(is:positioned:in) oceania -canada text(was:sited:in) northern_america -canada text(was:a:neighbor:of) united_states -slovakia text(is:a:neighbor:of) ukraine -slovakia text(is:a:neighboring:state:to) poland -slovakia text(was:a:neighboring:state:to) austria -slovakia text(borders:with) hungary -slovakia text(borders) czechia -mozambique text(is:butted:against) tanzania -mozambique text(was:butted:against) swaziland -mozambique text(was:adjacent:to) zimbabwe -mozambique text(is:adjacent:to) zambia -mozambique text(neighbors) malawi +cuba text(was:located:in) caribbean +cuba text(could:be:found:in) americas +serbia text(is:butted:against) macedonia +serbia text(was:butted:against) montenegro +serbia text(is:a:neighboring:country:of) kosovo +serbia text(was:a:neighboring:country:of) bosnia_and_herzegovina +serbia text(was:adjacent:to) croatia +serbia text(is:adjacent:to) hungary +serbia text(was:a:neighbor:of) bulgaria +serbia text(is:a:neighbor:of) romania +czechia text(can:be:found:in) eastern_europe +czechia text(is:a:neighboring:state:to) germany +czechia text(was:a:neighboring:state:to) austria +czechia text(borders:with) poland +czechia text(neighbors:withborders) slovakia +nicaragua text(neighbors) honduras +nicaragua text(is:butted:against) costa_rica +vietnam text(was:positioned:in) south-eastern_asia +vietnam text(is:positioned:in) asia +vietnam text(was:butted:against) cambodia +vietnam text(is:a:neighboring:country:of) laos +vietnam text(was:a:neighboring:country:of) china +niue text(was:sited:in) polynesia +niue text(is:sited:in) oceania +canada text(is:placed:in) northern_america +canada text(was:adjacent:to) united_states +slovakia text(is:adjacent:to) ukraine +slovakia text(was:a:neighbor:of) poland +slovakia text(is:a:neighbor:of) austria +slovakia text(is:a:neighboring:state:to) hungary +slovakia text(was:a:neighboring:state:to) czechia +mozambique text(borders:with) tanzania +mozambique text(neighbors:withborders) swaziland +mozambique text(neighbors) zimbabwe +mozambique text(is:butted:against) zambia +mozambique text(was:butted:against) malawi mozambique text(is:a:neighboring:country:of) south_africa -aruba text(is:sited:in) caribbean +aruba text(was:placed:in) caribbean aruba text(was:localized:in) americas bolivia text(is:localized:in) south_america bolivia text(was:a:neighboring:country:of) chile -bolivia text(neighbors:with) brazil -bolivia text(was:a:neighbor:of) paraguay -bolivia text(is:a:neighbor:of) argentina -bolivia text(is:a:neighboring:state:to) peru +bolivia text(was:adjacent:to) brazil +bolivia text(is:adjacent:to) paraguay +bolivia text(was:a:neighbor:of) argentina +bolivia text(is:a:neighbor:of) peru colombia text(was:present:in) south_america -colombia text(was:a:neighboring:state:to) ecuador -colombia text(borders:with) brazil -colombia text(borders) panama -colombia text(is:butted:against) venezuela -colombia text(was:butted:against) peru +colombia text(is:a:neighboring:state:to) ecuador +colombia text(was:a:neighboring:state:to) brazil +colombia text(borders:with) panama +colombia text(neighbors:withborders) venezuela +colombia text(neighbors) peru fiji text(is:present:in) melanesia fiji text(is:still:in) oceania -republic_of_the_congo text(was:adjacent:to) gabon -republic_of_the_congo text(is:adjacent:to) dr_congo -republic_of_the_congo text(neighbors) angola -republic_of_the_congo text(is:a:neighboring:country:of) cameroon -republic_of_the_congo text(was:a:neighboring:country:of) central_african_republic -saudi_arabia text(neighbors:with) qatar +republic_of_the_congo text(is:butted:against) gabon +republic_of_the_congo text(was:butted:against) dr_congo +republic_of_the_congo text(is:a:neighboring:country:of) angola +republic_of_the_congo text(was:a:neighboring:country:of) cameroon +republic_of_the_congo text(was:adjacent:to) central_african_republic +saudi_arabia text(is:adjacent:to) qatar saudi_arabia text(was:a:neighbor:of) united_arab_emirates saudi_arabia text(is:a:neighbor:of) jordan saudi_arabia text(is:a:neighboring:state:to) yemen saudi_arabia text(was:a:neighboring:state:to) oman saudi_arabia text(borders:with) kuwait -saudi_arabia text(borders) iraq +saudi_arabia text(neighbors:withborders) iraq el_salvador text(was:still:in) central_america -el_salvador text(is:butted:against) guatemala -el_salvador text(was:butted:against) honduras +el_salvador text(neighbors) guatemala +el_salvador text(is:butted:against) honduras madagascar text(was:currently:in) eastern_africa madagascar text(is:currently:in) africa -australia text(is:placed:in) australia_and_new_zealand -australia text(was:placed:in) oceania -namibia text(can:be:found:in) southern_africa -namibia text(was:situated:in) africa -namibia text(was:adjacent:to) zambia -namibia text(is:adjacent:to) angola -namibia text(neighbors) south_africa -namibia text(is:a:neighboring:country:of) botswana -tuvalu text(is:situated:in) polynesia -tuvalu text(is:located:in) oceania -svalbard_and_jan_mayen text(was:located:in) northern_europe -svalbard_and_jan_mayen text(can:be:found:in) europe -isle_of_man text(was:positioned:in) northern_europe -isle_of_man text(is:positioned:in) europe -guyana text(was:a:neighboring:country:of) brazil -guyana text(neighbors:with) suriname -guyana text(was:a:neighbor:of) venezuela -vatican_city text(was:sited:in) southern_europe -vatican_city text(is:sited:in) europe -vatican_city text(is:a:neighbor:of) italy +australia text(was:situated:in) australia_and_new_zealand +australia text(is:situated:in) oceania +namibia text(is:located:in) southern_africa +namibia text(was:located:in) africa +namibia text(was:butted:against) zambia +namibia text(is:a:neighboring:country:of) angola +namibia text(was:a:neighboring:country:of) south_africa +namibia text(was:adjacent:to) botswana +tuvalu text(could:be:found:in) polynesia +tuvalu text(can:be:found:in) oceania +svalbard_and_jan_mayen text(was:positioned:in) northern_europe +svalbard_and_jan_mayen text(is:positioned:in) europe +isle_of_man text(was:sited:in) northern_europe +isle_of_man text(is:sited:in) europe +guyana text(is:adjacent:to) brazil +guyana text(was:a:neighbor:of) suriname +guyana text(is:a:neighbor:of) venezuela +vatican_city text(is:placed:in) southern_europe +vatican_city text(was:placed:in) europe +vatican_city text(is:a:neighboring:state:to) italy british_indian_ocean_territory text(was:localized:in) eastern_africa british_indian_ocean_territory text(is:localized:in) africa nigeria text(was:present:in) western_africa nigeria text(is:present:in) africa -nigeria text(is:a:neighboring:state:to) chad -nigeria text(was:a:neighboring:state:to) niger -nigeria text(borders:with) cameroon -nigeria text(borders) benin +nigeria text(was:a:neighboring:state:to) chad +nigeria text(borders:with) niger +nigeria text(neighbors:withborders) cameroon +nigeria text(neighbors) benin germany text(is:butted:against) denmark germany text(was:butted:against) netherlands -germany text(was:adjacent:to) poland -germany text(is:adjacent:to) luxembourg -germany text(neighbors) belgium -germany text(is:a:neighboring:country:of) switzerland -germany text(was:a:neighboring:country:of) austria -germany text(neighbors:with) france -germany text(was:a:neighbor:of) czechia -burkina_faso text(is:a:neighbor:of) togo -burkina_faso text(is:a:neighboring:state:to) benin -burkina_faso text(was:a:neighboring:state:to) niger -burkina_faso text(borders:with) ghana -burkina_faso text(borders) mali -burkina_faso text(is:butted:against) ivory_coast -tanzania text(was:butted:against) uganda -tanzania text(was:adjacent:to) mozambique -tanzania text(is:adjacent:to) dr_congo -tanzania text(neighbors) kenya -tanzania text(is:a:neighboring:country:of) rwanda -tanzania text(was:a:neighboring:country:of) zambia -tanzania text(neighbors:with) malawi -tanzania text(was:a:neighbor:of) burundi +germany text(is:a:neighboring:country:of) poland +germany text(was:a:neighboring:country:of) luxembourg +germany text(was:adjacent:to) belgium +germany text(is:adjacent:to) switzerland +germany text(was:a:neighbor:of) austria +germany text(is:a:neighbor:of) france +germany text(is:a:neighboring:state:to) czechia +burkina_faso text(was:a:neighboring:state:to) togo +burkina_faso text(borders:with) benin +burkina_faso text(neighbors:withborders) niger +burkina_faso text(neighbors) ghana +burkina_faso text(is:butted:against) mali +burkina_faso text(was:butted:against) ivory_coast +tanzania text(is:a:neighboring:country:of) uganda +tanzania text(was:a:neighboring:country:of) mozambique +tanzania text(was:adjacent:to) dr_congo +tanzania text(is:adjacent:to) kenya +tanzania text(was:a:neighbor:of) rwanda +tanzania text(is:a:neighbor:of) zambia +tanzania text(is:a:neighboring:state:to) malawi +tanzania text(was:a:neighboring:state:to) burundi northern_mariana_islands text(is:still:in) micronesia northern_mariana_islands text(was:still:in) oceania belize text(was:currently:in) central_america -belize text(is:a:neighbor:of) guatemala -belize text(is:a:neighboring:state:to) mexico -norway text(was:a:neighboring:state:to) sweden -norway text(borders:with) finland -norway text(borders) russia +belize text(borders:with) guatemala +belize text(neighbors:withborders) mexico +norway text(neighbors) sweden +norway text(is:butted:against) finland +norway text(was:butted:against) russia cocos_keeling_islands text(is:currently:in) australia_and_new_zealand -cocos_keeling_islands text(is:placed:in) oceania -laos text(was:placed:in) south-eastern_asia -laos text(is:butted:against) china -laos text(was:butted:against) cambodia +cocos_keeling_islands text(was:situated:in) oceania +laos text(is:situated:in) south-eastern_asia +laos text(is:a:neighboring:country:of) china +laos text(was:a:neighboring:country:of) cambodia laos text(was:adjacent:to) myanmar laos text(is:adjacent:to) vietnam -laos text(neighbors) thailand -western_sahara text(can:be:found:in) northern_africa -western_sahara text(is:a:neighboring:country:of) algeria -western_sahara text(was:a:neighboring:country:of) mauritania -western_sahara text(neighbors:with) morocco -suriname text(was:situated:in) south_america -suriname text(was:a:neighbor:of) brazil -suriname text(is:a:neighbor:of) french_guiana -suriname text(is:a:neighboring:state:to) guyana -christmas_island text(is:situated:in) australia_and_new_zealand -christmas_island text(is:located:in) oceania -são_tomé_and_príncipe text(was:located:in) middle_africa -são_tomé_and_príncipe text(can:be:found:in) africa -egypt text(was:a:neighboring:state:to) libya -egypt text(borders:with) israel -egypt text(borders) sudan -bulgaria text(is:butted:against) macedonia -bulgaria text(was:butted:against) turkey -bulgaria text(was:adjacent:to) greece -bulgaria text(is:adjacent:to) serbia -bulgaria text(neighbors) romania -guinea text(was:positioned:in) western_africa -guinea text(is:a:neighboring:country:of) guinea-bissau -guinea text(was:a:neighboring:country:of) sierra_leone -guinea text(neighbors:with) mali -guinea text(was:a:neighbor:of) liberia -guinea text(is:a:neighbor:of) senegal -guinea text(is:a:neighboring:state:to) ivory_coast -spain text(was:a:neighboring:state:to) morocco -spain text(borders:with) gibraltar -spain text(borders) andorra -spain text(is:butted:against) france -spain text(was:butted:against) portugal -costa_rica text(is:positioned:in) central_america -costa_rica text(was:adjacent:to) panama -costa_rica text(is:adjacent:to) nicaragua -malta text(was:sited:in) southern_europe -malta text(is:sited:in) europe +laos text(was:a:neighbor:of) thailand +western_sahara text(is:located:in) northern_africa +western_sahara text(is:a:neighbor:of) algeria +western_sahara text(is:a:neighboring:state:to) mauritania +western_sahara text(was:a:neighboring:state:to) morocco +suriname text(was:located:in) south_america +suriname text(borders:with) brazil +suriname text(neighbors:withborders) french_guiana +suriname text(neighbors) guyana +christmas_island text(could:be:found:in) australia_and_new_zealand +christmas_island text(can:be:found:in) oceania +são_tomé_and_príncipe text(was:positioned:in) middle_africa +são_tomé_and_príncipe text(is:positioned:in) africa +egypt text(is:butted:against) libya +egypt text(was:butted:against) israel +egypt text(is:a:neighboring:country:of) sudan +bulgaria text(was:a:neighboring:country:of) macedonia +bulgaria text(was:adjacent:to) turkey +bulgaria text(is:adjacent:to) greece +bulgaria text(was:a:neighbor:of) serbia +bulgaria text(is:a:neighbor:of) romania +guinea text(was:sited:in) western_africa +guinea text(is:a:neighboring:state:to) guinea-bissau +guinea text(was:a:neighboring:state:to) sierra_leone +guinea text(borders:with) mali +guinea text(neighbors:withborders) liberia +guinea text(neighbors) senegal +guinea text(is:butted:against) ivory_coast +spain text(was:butted:against) morocco +spain text(is:a:neighboring:country:of) gibraltar +spain text(was:a:neighboring:country:of) andorra +spain text(was:adjacent:to) france +spain text(is:adjacent:to) portugal +costa_rica text(is:sited:in) central_america +costa_rica text(was:a:neighbor:of) panama +costa_rica text(is:a:neighbor:of) nicaragua +malta text(is:placed:in) southern_europe +malta text(was:placed:in) europe portugal text(was:localized:in) southern_europe -portugal text(neighbors) spain +portugal text(is:a:neighboring:state:to) spain romania text(is:localized:in) eastern_europe -romania text(is:a:neighboring:country:of) ukraine -romania text(was:a:neighboring:country:of) hungary -romania text(neighbors:with) moldova -romania text(was:a:neighbor:of) bulgaria -romania text(is:a:neighbor:of) serbia +romania text(was:a:neighboring:state:to) ukraine +romania text(borders:with) hungary +romania text(neighbors:withborders) moldova +romania text(neighbors) bulgaria +romania text(is:butted:against) serbia san_marino text(was:present:in) southern_europe san_marino text(is:present:in) europe -san_marino text(is:a:neighboring:state:to) italy +san_marino text(was:butted:against) italy mauritania text(is:still:in) western_africa mauritania text(was:still:in) africa -mauritania text(was:a:neighboring:state:to) algeria -mauritania text(borders:with) mali -mauritania text(borders) western_sahara -mauritania text(is:butted:against) senegal +mauritania text(is:a:neighboring:country:of) algeria +mauritania text(was:a:neighboring:country:of) mali +mauritania text(was:adjacent:to) western_sahara +mauritania text(is:adjacent:to) senegal trinidad_and_tobago text(was:currently:in) caribbean trinidad_and_tobago text(is:currently:in) americas -bahrain text(is:placed:in) western_asia -bahrain text(was:placed:in) asia -myanmar text(was:butted:against) india -myanmar text(was:adjacent:to) bangladesh -myanmar text(is:adjacent:to) china -myanmar text(neighbors) laos -myanmar text(is:a:neighboring:country:of) thailand -iraq text(was:a:neighboring:country:of) turkey -iraq text(neighbors:with) saudi_arabia -iraq text(was:a:neighbor:of) iran -iraq text(is:a:neighbor:of) jordan -iraq text(is:a:neighboring:state:to) kuwait -iraq text(was:a:neighboring:state:to) syria -south_georgia text(can:be:found:in) south_america -south_georgia text(was:situated:in) americas -iceland text(is:situated:in) northern_europe -iceland text(is:located:in) europe -dr_congo text(was:located:in) middle_africa -dr_congo text(borders:with) uganda -dr_congo text(borders) tanzania -dr_congo text(is:butted:against) republic_of_the_congo -dr_congo text(was:butted:against) central_african_republic -dr_congo text(was:adjacent:to) angola -dr_congo text(is:adjacent:to) rwanda -dr_congo text(neighbors) south_sudan -dr_congo text(is:a:neighboring:country:of) zambia -dr_congo text(was:a:neighboring:country:of) burundi -seychelles text(can:be:found:in) eastern_africa -seychelles text(was:positioned:in) africa -kyrgyzstan text(neighbors:with) china -kyrgyzstan text(was:a:neighbor:of) kazakhstan -kyrgyzstan text(is:a:neighbor:of) tajikistan -kyrgyzstan text(is:a:neighboring:state:to) uzbekistan -botswana text(is:positioned:in) southern_africa -botswana text(was:a:neighboring:state:to) zimbabwe -botswana text(borders:with) namibia -botswana text(borders) zambia -botswana text(is:butted:against) south_africa -faroe_islands text(was:sited:in) northern_europe -faroe_islands text(is:sited:in) europe +bahrain text(was:situated:in) western_asia +bahrain text(is:situated:in) asia +myanmar text(was:a:neighbor:of) india +myanmar text(is:a:neighbor:of) bangladesh +myanmar text(is:a:neighboring:state:to) china +myanmar text(was:a:neighboring:state:to) laos +myanmar text(borders:with) thailand +iraq text(neighbors:withborders) turkey +iraq text(neighbors) saudi_arabia +iraq text(is:butted:against) iran +iraq text(was:butted:against) jordan +iraq text(is:a:neighboring:country:of) kuwait +iraq text(was:a:neighboring:country:of) syria +south_georgia text(is:located:in) south_america +south_georgia text(was:located:in) americas +iceland text(could:be:found:in) northern_europe +iceland text(can:be:found:in) europe +dr_congo text(was:positioned:in) middle_africa +dr_congo text(was:adjacent:to) uganda +dr_congo text(is:adjacent:to) tanzania +dr_congo text(was:a:neighbor:of) republic_of_the_congo +dr_congo text(is:a:neighbor:of) central_african_republic +dr_congo text(is:a:neighboring:state:to) angola +dr_congo text(was:a:neighboring:state:to) rwanda +dr_congo text(borders:with) south_sudan +dr_congo text(neighbors:withborders) zambia +dr_congo text(neighbors) burundi +seychelles text(is:positioned:in) eastern_africa +seychelles text(was:sited:in) africa +kyrgyzstan text(is:butted:against) china +kyrgyzstan text(was:butted:against) kazakhstan +kyrgyzstan text(is:a:neighboring:country:of) tajikistan +kyrgyzstan text(was:a:neighboring:country:of) uzbekistan +botswana text(is:sited:in) southern_africa +botswana text(was:adjacent:to) zimbabwe +botswana text(is:adjacent:to) namibia +botswana text(was:a:neighbor:of) zambia +botswana text(is:a:neighbor:of) south_africa +faroe_islands text(is:placed:in) northern_europe +faroe_islands text(was:placed:in) europe jamaica text(was:localized:in) caribbean jamaica text(is:localized:in) americas american_samoa text(was:present:in) polynesia american_samoa text(is:present:in) oceania lesotho text(is:still:in) southern_africa lesotho text(was:still:in) africa -lesotho text(was:butted:against) south_africa -sri_lanka text(was:adjacent:to) india +lesotho text(is:a:neighboring:state:to) south_africa +sri_lanka text(was:a:neighboring:state:to) india belgium text(was:currently:in) western_europe -belgium text(is:adjacent:to) germany -belgium text(neighbors) luxembourg -belgium text(is:a:neighboring:country:of) france -belgium text(was:a:neighboring:country:of) netherlands +belgium text(borders:with) germany +belgium text(neighbors:withborders) luxembourg +belgium text(neighbors) france +belgium text(is:butted:against) netherlands qatar text(is:currently:in) western_asia -qatar text(neighbors:with) saudi_arabia -solomon_islands text(is:placed:in) melanesia -solomon_islands text(was:placed:in) oceania -syria text(can:be:found:in) western_asia -syria text(was:a:neighbor:of) israel -syria text(is:a:neighbor:of) turkey -syria text(is:a:neighboring:state:to) jordan -syria text(was:a:neighboring:state:to) lebanon -syria text(borders:with) iraq -india text(was:situated:in) southern_asia -india text(borders) afghanistan -india text(is:butted:against) bhutan -india text(was:butted:against) bangladesh -india text(was:adjacent:to) china -india text(is:adjacent:to) nepal +qatar text(was:butted:against) saudi_arabia +solomon_islands text(was:situated:in) melanesia +solomon_islands text(is:situated:in) oceania +syria text(is:located:in) western_asia +syria text(is:a:neighboring:country:of) israel +syria text(was:a:neighboring:country:of) turkey +syria text(was:adjacent:to) jordan +syria text(is:adjacent:to) lebanon +syria text(was:a:neighbor:of) iraq +india text(was:located:in) southern_asia +india text(is:a:neighbor:of) afghanistan +india text(is:a:neighboring:state:to) bhutan +india text(was:a:neighboring:state:to) bangladesh +india text(borders:with) china +india text(neighbors:withborders) nepal india text(neighbors) myanmar -india text(is:a:neighboring:country:of) pakistan -india text(was:a:neighboring:country:of) sri_lanka -morocco text(neighbors:with) algeria -morocco text(was:a:neighbor:of) spain -morocco text(is:a:neighbor:of) western_sahara -kenya text(is:situated:in) eastern_africa -kenya text(is:a:neighboring:state:to) uganda -kenya text(was:a:neighboring:state:to) tanzania -kenya text(borders:with) somalia -kenya text(borders) south_sudan -kenya text(is:butted:against) ethiopia -south_sudan text(is:located:in) middle_africa -south_sudan text(was:butted:against) uganda -south_sudan text(was:adjacent:to) dr_congo -south_sudan text(is:adjacent:to) kenya -south_sudan text(neighbors) central_african_republic -south_sudan text(is:a:neighboring:country:of) sudan -south_sudan text(was:a:neighboring:country:of) ethiopia -ghana text(neighbors:with) burkina_faso -ghana text(was:a:neighbor:of) ivory_coast -ghana text(is:a:neighbor:of) togo -tajikistan text(was:located:in) central_asia -tajikistan text(is:a:neighboring:state:to) china -tajikistan text(was:a:neighboring:state:to) kyrgyzstan -tajikistan text(borders:with) afghanistan -tajikistan text(borders) uzbekistan -marshall_islands text(can:be:found:in) micronesia -marshall_islands text(was:positioned:in) oceania -cameroon text(is:positioned:in) middle_africa -cameroon text(is:butted:against) chad -cameroon text(was:butted:against) republic_of_the_congo -cameroon text(was:adjacent:to) gabon -cameroon text(is:adjacent:to) equatorial_guinea -cameroon text(neighbors) central_african_republic +india text(is:butted:against) pakistan +india text(was:butted:against) sri_lanka +morocco text(is:a:neighboring:country:of) algeria +morocco text(was:a:neighboring:country:of) spain +morocco text(was:adjacent:to) western_sahara +kenya text(could:be:found:in) eastern_africa +kenya text(is:adjacent:to) uganda +kenya text(was:a:neighbor:of) tanzania +kenya text(is:a:neighbor:of) somalia +kenya text(is:a:neighboring:state:to) south_sudan +kenya text(was:a:neighboring:state:to) ethiopia +south_sudan text(can:be:found:in) middle_africa +south_sudan text(borders:with) uganda +south_sudan text(neighbors:withborders) dr_congo +south_sudan text(neighbors) kenya +south_sudan text(is:butted:against) central_african_republic +south_sudan text(was:butted:against) sudan +south_sudan text(is:a:neighboring:country:of) ethiopia +ghana text(was:a:neighboring:country:of) burkina_faso +ghana text(was:adjacent:to) ivory_coast +ghana text(is:adjacent:to) togo +tajikistan text(was:positioned:in) central_asia +tajikistan text(was:a:neighbor:of) china +tajikistan text(is:a:neighbor:of) kyrgyzstan +tajikistan text(is:a:neighboring:state:to) afghanistan +tajikistan text(was:a:neighboring:state:to) uzbekistan +marshall_islands text(is:positioned:in) micronesia +marshall_islands text(was:sited:in) oceania +cameroon text(is:sited:in) middle_africa +cameroon text(borders:with) chad +cameroon text(neighbors:withborders) republic_of_the_congo +cameroon text(neighbors) gabon +cameroon text(is:butted:against) equatorial_guinea +cameroon text(was:butted:against) central_african_republic cameroon text(is:a:neighboring:country:of) nigeria -nauru text(was:sited:in) micronesia -nauru text(is:sited:in) oceania +nauru text(is:placed:in) micronesia +nauru text(was:placed:in) oceania thailand text(was:a:neighboring:country:of) cambodia -thailand text(neighbors:with) myanmar -thailand text(was:a:neighbor:of) laos -thailand text(is:a:neighbor:of) malaysia -sudan text(is:a:neighboring:state:to) chad -sudan text(was:a:neighboring:state:to) libya -sudan text(borders:with) south_sudan -sudan text(borders) eritrea -sudan text(is:butted:against) central_african_republic -sudan text(was:butted:against) egypt -sudan text(was:adjacent:to) ethiopia +thailand text(was:adjacent:to) myanmar +thailand text(is:adjacent:to) laos +thailand text(was:a:neighbor:of) malaysia +sudan text(is:a:neighbor:of) chad +sudan text(is:a:neighboring:state:to) libya +sudan text(was:a:neighboring:state:to) south_sudan +sudan text(borders:with) eritrea +sudan text(neighbors:withborders) central_african_republic +sudan text(neighbors) egypt +sudan text(is:butted:against) ethiopia chad text(was:localized:in) middle_africa -chad text(is:adjacent:to) libya -chad text(neighbors) niger -chad text(is:a:neighboring:country:of) south_sudan -chad text(was:a:neighboring:country:of) cameroon -chad text(neighbors:with) central_african_republic +chad text(was:butted:against) libya +chad text(is:a:neighboring:country:of) niger +chad text(was:a:neighboring:country:of) south_sudan +chad text(was:adjacent:to) cameroon +chad text(is:adjacent:to) central_african_republic chad text(was:a:neighbor:of) nigeria vanuatu text(is:localized:in) melanesia vanuatu text(was:present:in) oceania @@ -437,34 +437,34 @@ liberia text(is:currently:in) western_africa liberia text(is:a:neighbor:of) ivory_coast liberia text(is:a:neighboring:state:to) sierra_leone liberia text(was:a:neighboring:state:to) guinea -cambodia text(is:placed:in) south-eastern_asia +cambodia text(was:situated:in) south-eastern_asia cambodia text(borders:with) vietnam -cambodia text(borders) thailand -cambodia text(is:butted:against) laos -zimbabwe text(was:butted:against) zambia -zimbabwe text(was:adjacent:to) south_africa -zimbabwe text(is:adjacent:to) botswana -zimbabwe text(neighbors) mozambique -comoros text(was:placed:in) eastern_africa -comoros text(can:be:found:in) africa -guam text(was:situated:in) micronesia -guam text(is:situated:in) oceania -bahamas text(is:located:in) caribbean -bahamas text(was:located:in) americas -lebanon text(can:be:found:in) western_asia -lebanon text(was:positioned:in) asia -lebanon text(is:a:neighboring:country:of) israel -lebanon text(was:a:neighboring:country:of) syria -sint_maarten text(is:positioned:in) caribbean -sint_maarten text(was:sited:in) americas -sint_maarten text(neighbors:with) saint_martin -ethiopia text(is:sited:in) eastern_africa -ethiopia text(was:a:neighbor:of) somalia -ethiopia text(is:a:neighbor:of) kenya -ethiopia text(is:a:neighboring:state:to) eritrea -ethiopia text(was:a:neighboring:state:to) south_sudan -ethiopia text(borders:with) djibouti -ethiopia text(borders) sudan +cambodia text(neighbors:withborders) thailand +cambodia text(neighbors) laos +zimbabwe text(is:butted:against) zambia +zimbabwe text(was:butted:against) south_africa +zimbabwe text(is:a:neighboring:country:of) botswana +zimbabwe text(was:a:neighboring:country:of) mozambique +comoros text(is:situated:in) eastern_africa +comoros text(is:located:in) africa +guam text(was:located:in) micronesia +guam text(could:be:found:in) oceania +bahamas text(can:be:found:in) caribbean +bahamas text(was:positioned:in) americas +lebanon text(is:positioned:in) western_asia +lebanon text(was:sited:in) asia +lebanon text(was:adjacent:to) israel +lebanon text(is:adjacent:to) syria +sint_maarten text(is:sited:in) caribbean +sint_maarten text(is:placed:in) americas +sint_maarten text(was:a:neighbor:of) saint_martin +ethiopia text(was:placed:in) eastern_africa +ethiopia text(is:a:neighbor:of) somalia +ethiopia text(is:a:neighboring:state:to) kenya +ethiopia text(was:a:neighboring:state:to) eritrea +ethiopia text(borders:with) south_sudan +ethiopia text(neighbors:withborders) djibouti +ethiopia text(neighbors) sudan united_states_virgin_islands text(was:localized:in) caribbean united_states_virgin_islands text(is:localized:in) americas guinea-bissau text(was:present:in) western_africa @@ -472,485 +472,485 @@ guinea-bissau text(is:present:in) africa guinea-bissau text(is:butted:against) guinea guinea-bissau text(was:butted:against) senegal libya text(is:still:in) northern_africa -libya text(was:adjacent:to) chad -libya text(is:adjacent:to) tunisia -libya text(neighbors) niger -libya text(is:a:neighboring:country:of) algeria -libya text(was:a:neighboring:country:of) egypt -libya text(neighbors:with) sudan +libya text(is:a:neighboring:country:of) chad +libya text(was:a:neighboring:country:of) tunisia +libya text(was:adjacent:to) niger +libya text(is:adjacent:to) algeria +libya text(was:a:neighbor:of) egypt +libya text(is:a:neighbor:of) sudan bhutan text(was:still:in) southern_asia bhutan text(was:currently:in) asia -bhutan text(was:a:neighbor:of) china -bhutan text(is:a:neighbor:of) india +bhutan text(is:a:neighboring:state:to) china +bhutan text(was:a:neighboring:state:to) india macau text(is:currently:in) eastern_asia -macau text(is:placed:in) asia -macau text(is:a:neighboring:state:to) china -french_polynesia text(was:placed:in) polynesia -french_polynesia text(can:be:found:in) oceania -somalia text(was:situated:in) eastern_africa -somalia text(was:a:neighboring:state:to) djibouti -somalia text(borders:with) kenya -somalia text(borders) ethiopia -saint_barthélemy text(is:situated:in) caribbean -saint_barthélemy text(is:located:in) americas -russia text(was:located:in) eastern_europe -russia text(is:butted:against) ukraine -russia text(was:butted:against) belarus -russia text(was:adjacent:to) china -russia text(is:adjacent:to) kazakhstan -russia text(neighbors) norway -russia text(is:a:neighboring:country:of) poland -russia text(was:a:neighboring:country:of) azerbaijan -russia text(neighbors:with) lithuania -russia text(was:a:neighbor:of) estonia -russia text(is:a:neighbor:of) north_korea -russia text(is:a:neighboring:state:to) finland -russia text(was:a:neighboring:state:to) mongolia -russia text(borders:with) latvia -russia text(borders) georgia -new_zealand text(can:be:found:in) australia_and_new_zealand -new_zealand text(was:positioned:in) oceania -panama text(is:positioned:in) central_america -panama text(was:sited:in) americas -panama text(is:butted:against) costa_rica -panama text(was:butted:against) colombia -papua_new_guinea text(is:sited:in) melanesia +macau text(was:situated:in) asia +macau text(borders:with) china +french_polynesia text(is:situated:in) polynesia +french_polynesia text(is:located:in) oceania +somalia text(was:located:in) eastern_africa +somalia text(neighbors:withborders) djibouti +somalia text(neighbors) kenya +somalia text(is:butted:against) ethiopia +saint_barthélemy text(could:be:found:in) caribbean +saint_barthélemy text(can:be:found:in) americas +russia text(was:positioned:in) eastern_europe +russia text(was:butted:against) ukraine +russia text(is:a:neighboring:country:of) belarus +russia text(was:a:neighboring:country:of) china +russia text(was:adjacent:to) kazakhstan +russia text(is:adjacent:to) norway +russia text(was:a:neighbor:of) poland +russia text(is:a:neighbor:of) azerbaijan +russia text(is:a:neighboring:state:to) lithuania +russia text(was:a:neighboring:state:to) estonia +russia text(borders:with) north_korea +russia text(neighbors:withborders) finland +russia text(neighbors) mongolia +russia text(is:butted:against) latvia +russia text(was:butted:against) georgia +new_zealand text(is:positioned:in) australia_and_new_zealand +new_zealand text(was:sited:in) oceania +panama text(is:sited:in) central_america +panama text(is:placed:in) americas +panama text(is:a:neighboring:country:of) costa_rica +panama text(was:a:neighboring:country:of) colombia +papua_new_guinea text(was:placed:in) melanesia papua_new_guinea text(was:adjacent:to) indonesia north_korea text(is:adjacent:to) china -north_korea text(neighbors) south_korea -north_korea text(is:a:neighboring:country:of) russia +north_korea text(was:a:neighbor:of) south_korea +north_korea text(is:a:neighbor:of) russia latvia text(was:localized:in) northern_europe -latvia text(was:a:neighboring:country:of) lithuania -latvia text(neighbors:with) belarus -latvia text(was:a:neighbor:of) russia -latvia text(is:a:neighbor:of) estonia +latvia text(is:a:neighboring:state:to) lithuania +latvia text(was:a:neighboring:state:to) belarus +latvia text(borders:with) russia +latvia text(neighbors:withborders) estonia oman text(is:localized:in) western_asia -oman text(is:a:neighboring:state:to) saudi_arabia -oman text(was:a:neighboring:state:to) yemen -oman text(borders:with) united_arab_emirates +oman text(neighbors) saudi_arabia +oman text(is:butted:against) yemen +oman text(was:butted:against) united_arab_emirates saint_pierre_and_miquelon text(was:present:in) northern_america saint_pierre_and_miquelon text(is:present:in) americas martinique text(is:still:in) caribbean martinique text(was:still:in) americas united_kingdom text(was:currently:in) northern_europe united_kingdom text(is:currently:in) europe -united_kingdom text(borders) ireland -israel text(is:placed:in) western_asia -israel text(is:butted:against) lebanon -israel text(was:butted:against) egypt -israel text(was:adjacent:to) jordan -israel text(is:adjacent:to) syria -jersey text(was:placed:in) northern_europe -jersey text(can:be:found:in) europe -pitcairn_islands text(was:situated:in) polynesia -pitcairn_islands text(is:situated:in) oceania -togo text(is:located:in) western_africa -togo text(neighbors) burkina_faso -togo text(is:a:neighboring:country:of) ghana -togo text(was:a:neighboring:country:of) benin -kiribati text(was:located:in) micronesia -kiribati text(can:be:found:in) oceania -iran text(was:positioned:in) southern_asia -iran text(neighbors:with) afghanistan -iran text(was:a:neighbor:of) turkmenistan -iran text(is:a:neighbor:of) turkey -iran text(is:a:neighboring:state:to) armenia -iran text(was:a:neighboring:state:to) azerbaijan -iran text(borders:with) pakistan -iran text(borders) iraq -saint_martin text(is:positioned:in) caribbean -saint_martin text(was:sited:in) americas -saint_martin text(is:butted:against) sint_maarten -dominican_republic text(is:sited:in) caribbean +united_kingdom text(is:a:neighboring:country:of) ireland +israel text(was:situated:in) western_asia +israel text(was:a:neighboring:country:of) lebanon +israel text(was:adjacent:to) egypt +israel text(is:adjacent:to) jordan +israel text(was:a:neighbor:of) syria +jersey text(is:situated:in) northern_europe +jersey text(is:located:in) europe +pitcairn_islands text(was:located:in) polynesia +pitcairn_islands text(could:be:found:in) oceania +togo text(can:be:found:in) western_africa +togo text(is:a:neighbor:of) burkina_faso +togo text(is:a:neighboring:state:to) ghana +togo text(was:a:neighboring:state:to) benin +kiribati text(was:positioned:in) micronesia +kiribati text(is:positioned:in) oceania +iran text(was:sited:in) southern_asia +iran text(borders:with) afghanistan +iran text(neighbors:withborders) turkmenistan +iran text(neighbors) turkey +iran text(is:butted:against) armenia +iran text(was:butted:against) azerbaijan +iran text(is:a:neighboring:country:of) pakistan +iran text(was:a:neighboring:country:of) iraq +saint_martin text(is:sited:in) caribbean +saint_martin text(is:placed:in) americas +saint_martin text(was:adjacent:to) sint_maarten +dominican_republic text(was:placed:in) caribbean dominican_republic text(was:localized:in) americas -dominican_republic text(was:butted:against) haiti -denmark text(was:adjacent:to) germany +dominican_republic text(is:adjacent:to) haiti +denmark text(was:a:neighbor:of) germany bermuda text(is:localized:in) northern_america bermuda text(was:present:in) americas -chile text(is:adjacent:to) argentina -chile text(neighbors) bolivia -chile text(is:a:neighboring:country:of) peru +chile text(is:a:neighbor:of) argentina +chile text(is:a:neighboring:state:to) bolivia +chile text(was:a:neighboring:state:to) peru kosovo text(is:present:in) eastern_europe -kosovo text(was:a:neighboring:country:of) serbia -kosovo text(neighbors:with) albania -kosovo text(was:a:neighbor:of) macedonia -kosovo text(is:a:neighbor:of) montenegro +kosovo text(borders:with) serbia +kosovo text(neighbors:withborders) albania +kosovo text(neighbors) macedonia +kosovo text(is:butted:against) montenegro saint_kitts_and_nevis text(is:still:in) caribbean saint_kitts_and_nevis text(was:still:in) americas -eritrea text(is:a:neighboring:state:to) djibouti -eritrea text(was:a:neighboring:state:to) sudan -eritrea text(borders:with) ethiopia +eritrea text(was:butted:against) djibouti +eritrea text(is:a:neighboring:country:of) sudan +eritrea text(was:a:neighboring:country:of) ethiopia equatorial_guinea text(was:currently:in) middle_africa equatorial_guinea text(is:currently:in) africa -equatorial_guinea text(borders) gabon -equatorial_guinea text(is:butted:against) cameroon -niger text(is:placed:in) western_africa -niger text(was:butted:against) chad -niger text(was:adjacent:to) libya -niger text(is:adjacent:to) burkina_faso -niger text(neighbors) benin -niger text(is:a:neighboring:country:of) mali -niger text(was:a:neighboring:country:of) algeria -niger text(neighbors:with) nigeria -anguilla text(was:placed:in) caribbean -anguilla text(can:be:found:in) americas -rwanda text(was:situated:in) eastern_africa -rwanda text(was:a:neighbor:of) burundi -rwanda text(is:a:neighbor:of) tanzania -rwanda text(is:a:neighboring:state:to) uganda -rwanda text(was:a:neighboring:state:to) dr_congo -united_arab_emirates text(is:situated:in) western_asia -united_arab_emirates text(borders:with) oman -united_arab_emirates text(borders) saudi_arabia -estonia text(is:located:in) northern_europe -estonia text(was:located:in) europe -estonia text(is:butted:against) latvia -estonia text(was:butted:against) russia -greece text(can:be:found:in) southern_europe -greece text(was:adjacent:to) bulgaria -greece text(is:adjacent:to) albania -greece text(neighbors) macedonia -greece text(is:a:neighboring:country:of) turkey -senegal text(was:positioned:in) western_africa -senegal text(is:positioned:in) africa -senegal text(was:a:neighboring:country:of) guinea-bissau -senegal text(neighbors:with) mauritania -senegal text(was:a:neighbor:of) mali -senegal text(is:a:neighbor:of) gambia -senegal text(is:a:neighboring:state:to) guinea -guadeloupe text(was:sited:in) caribbean -guadeloupe text(is:sited:in) americas -monaco text(was:a:neighboring:state:to) france -djibouti text(borders:with) eritrea -djibouti text(borders) somalia -djibouti text(is:butted:against) ethiopia -indonesia text(was:butted:against) papua_new_guinea -indonesia text(was:adjacent:to) timor-leste -indonesia text(is:adjacent:to) malaysia +equatorial_guinea text(was:adjacent:to) gabon +equatorial_guinea text(is:adjacent:to) cameroon +niger text(was:situated:in) western_africa +niger text(was:a:neighbor:of) chad +niger text(is:a:neighbor:of) libya +niger text(is:a:neighboring:state:to) burkina_faso +niger text(was:a:neighboring:state:to) benin +niger text(borders:with) mali +niger text(neighbors:withborders) algeria +niger text(neighbors) nigeria +anguilla text(is:situated:in) caribbean +anguilla text(is:located:in) americas +rwanda text(was:located:in) eastern_africa +rwanda text(is:butted:against) burundi +rwanda text(was:butted:against) tanzania +rwanda text(is:a:neighboring:country:of) uganda +rwanda text(was:a:neighboring:country:of) dr_congo +united_arab_emirates text(could:be:found:in) western_asia +united_arab_emirates text(was:adjacent:to) oman +united_arab_emirates text(is:adjacent:to) saudi_arabia +estonia text(can:be:found:in) northern_europe +estonia text(was:positioned:in) europe +estonia text(was:a:neighbor:of) latvia +estonia text(is:a:neighbor:of) russia +greece text(is:positioned:in) southern_europe +greece text(is:a:neighboring:state:to) bulgaria +greece text(was:a:neighboring:state:to) albania +greece text(borders:with) macedonia +greece text(neighbors:withborders) turkey +senegal text(was:sited:in) western_africa +senegal text(is:sited:in) africa +senegal text(neighbors) guinea-bissau +senegal text(is:butted:against) mauritania +senegal text(was:butted:against) mali +senegal text(is:a:neighboring:country:of) gambia +senegal text(was:a:neighboring:country:of) guinea +guadeloupe text(is:placed:in) caribbean +guadeloupe text(was:placed:in) americas +monaco text(was:adjacent:to) france +djibouti text(is:adjacent:to) eritrea +djibouti text(was:a:neighbor:of) somalia +djibouti text(is:a:neighbor:of) ethiopia +indonesia text(is:a:neighboring:state:to) papua_new_guinea +indonesia text(was:a:neighboring:state:to) timor-leste +indonesia text(borders:with) malaysia british_virgin_islands text(was:localized:in) caribbean british_virgin_islands text(is:localized:in) americas cook_islands text(was:present:in) polynesia cook_islands text(is:present:in) oceania uganda text(is:still:in) eastern_africa -uganda text(neighbors) tanzania -uganda text(is:a:neighboring:country:of) dr_congo -uganda text(was:a:neighboring:country:of) kenya -uganda text(neighbors:with) south_sudan -uganda text(was:a:neighbor:of) rwanda +uganda text(neighbors:withborders) tanzania +uganda text(neighbors) dr_congo +uganda text(is:butted:against) kenya +uganda text(was:butted:against) south_sudan +uganda text(is:a:neighboring:country:of) rwanda macedonia text(was:still:in) southern_europe -macedonia text(is:a:neighbor:of) kosovo -macedonia text(is:a:neighboring:state:to) greece -macedonia text(was:a:neighboring:state:to) albania -macedonia text(borders:with) serbia -macedonia text(borders) bulgaria +macedonia text(was:a:neighboring:country:of) kosovo +macedonia text(was:adjacent:to) greece +macedonia text(is:adjacent:to) albania +macedonia text(was:a:neighbor:of) serbia +macedonia text(is:a:neighbor:of) bulgaria tunisia text(was:currently:in) northern_africa tunisia text(is:currently:in) africa -tunisia text(is:butted:against) libya -tunisia text(was:butted:against) algeria -ecuador text(was:adjacent:to) peru -ecuador text(is:adjacent:to) colombia -brazil text(is:placed:in) south_america +tunisia text(is:a:neighboring:state:to) libya +tunisia text(was:a:neighboring:state:to) algeria +ecuador text(borders:with) peru +ecuador text(neighbors:withborders) colombia +brazil text(was:situated:in) south_america brazil text(neighbors) bolivia -brazil text(is:a:neighboring:country:of) colombia -brazil text(was:a:neighboring:country:of) paraguay -brazil text(neighbors:with) uruguay -brazil text(was:a:neighbor:of) french_guiana -brazil text(is:a:neighbor:of) suriname -brazil text(is:a:neighboring:state:to) venezuela -brazil text(was:a:neighboring:state:to) argentina -brazil text(borders:with) guyana -brazil text(borders) peru -paraguay text(was:placed:in) south_america -paraguay text(can:be:found:in) americas -paraguay text(is:butted:against) argentina -paraguay text(was:butted:against) brazil -paraguay text(was:adjacent:to) bolivia -finland text(was:situated:in) northern_europe -finland text(is:adjacent:to) norway -finland text(neighbors) sweden -finland text(is:a:neighboring:country:of) russia -jordan text(was:a:neighboring:country:of) saudi_arabia -jordan text(neighbors:with) israel -jordan text(was:a:neighbor:of) iraq -jordan text(is:a:neighbor:of) syria -timor-leste text(is:a:neighboring:state:to) indonesia -montenegro text(is:situated:in) southern_europe -montenegro text(was:a:neighboring:state:to) kosovo -montenegro text(borders:with) bosnia_and_herzegovina -montenegro text(borders) croatia -montenegro text(is:butted:against) serbia -montenegro text(was:butted:against) albania -peru text(is:located:in) south_america -peru text(was:adjacent:to) ecuador -peru text(is:adjacent:to) bolivia -peru text(neighbors) chile +brazil text(is:butted:against) colombia +brazil text(was:butted:against) paraguay +brazil text(is:a:neighboring:country:of) uruguay +brazil text(was:a:neighboring:country:of) french_guiana +brazil text(was:adjacent:to) suriname +brazil text(is:adjacent:to) venezuela +brazil text(was:a:neighbor:of) argentina +brazil text(is:a:neighbor:of) guyana +brazil text(is:a:neighboring:state:to) peru +paraguay text(is:situated:in) south_america +paraguay text(is:located:in) americas +paraguay text(was:a:neighboring:state:to) argentina +paraguay text(borders:with) brazil +paraguay text(neighbors:withborders) bolivia +finland text(was:located:in) northern_europe +finland text(neighbors) norway +finland text(is:butted:against) sweden +finland text(was:butted:against) russia +jordan text(is:a:neighboring:country:of) saudi_arabia +jordan text(was:a:neighboring:country:of) israel +jordan text(was:adjacent:to) iraq +jordan text(is:adjacent:to) syria +timor-leste text(was:a:neighbor:of) indonesia +montenegro text(could:be:found:in) southern_europe +montenegro text(is:a:neighbor:of) kosovo +montenegro text(is:a:neighboring:state:to) bosnia_and_herzegovina +montenegro text(was:a:neighboring:state:to) croatia +montenegro text(borders:with) serbia +montenegro text(neighbors:withborders) albania +peru text(can:be:found:in) south_america +peru text(neighbors) ecuador +peru text(is:butted:against) bolivia +peru text(was:butted:against) chile peru text(is:a:neighboring:country:of) brazil peru text(was:a:neighboring:country:of) colombia -montserrat text(was:located:in) caribbean -montserrat text(can:be:found:in) americas -ukraine text(was:positioned:in) eastern_europe -ukraine text(neighbors:with) slovakia -ukraine text(was:a:neighbor:of) belarus -ukraine text(is:a:neighbor:of) poland -ukraine text(is:a:neighboring:state:to) russia -ukraine text(was:a:neighboring:state:to) hungary -ukraine text(borders:with) moldova -ukraine text(borders) romania -dominica text(is:positioned:in) caribbean -dominica text(was:sited:in) americas -turkmenistan text(is:butted:against) kazakhstan -turkmenistan text(was:butted:against) afghanistan -turkmenistan text(was:adjacent:to) uzbekistan -turkmenistan text(is:adjacent:to) iran -guernsey text(is:sited:in) northern_europe +montserrat text(was:positioned:in) caribbean +montserrat text(is:positioned:in) americas +ukraine text(was:sited:in) eastern_europe +ukraine text(was:adjacent:to) slovakia +ukraine text(is:adjacent:to) belarus +ukraine text(was:a:neighbor:of) poland +ukraine text(is:a:neighbor:of) russia +ukraine text(is:a:neighboring:state:to) hungary +ukraine text(was:a:neighboring:state:to) moldova +ukraine text(borders:with) romania +dominica text(is:sited:in) caribbean +dominica text(is:placed:in) americas +turkmenistan text(neighbors:withborders) kazakhstan +turkmenistan text(neighbors) afghanistan +turkmenistan text(is:butted:against) uzbekistan +turkmenistan text(was:butted:against) iran +guernsey text(was:placed:in) northern_europe guernsey text(was:localized:in) europe gibraltar text(is:localized:in) southern_europe -gibraltar text(neighbors) spain +gibraltar text(is:a:neighboring:country:of) spain switzerland text(was:present:in) western_europe -switzerland text(is:a:neighboring:country:of) germany -switzerland text(was:a:neighboring:country:of) italy -switzerland text(neighbors:with) austria +switzerland text(was:a:neighboring:country:of) germany +switzerland text(was:adjacent:to) italy +switzerland text(is:adjacent:to) austria switzerland text(was:a:neighbor:of) france switzerland text(is:a:neighbor:of) liechtenstein austria text(is:present:in) western_europe austria text(is:a:neighboring:state:to) germany austria text(was:a:neighboring:state:to) slovakia austria text(borders:with) slovenia -austria text(borders) italy -austria text(is:butted:against) switzerland -austria text(was:butted:against) hungary -austria text(was:adjacent:to) liechtenstein -austria text(is:adjacent:to) czechia -hungary text(neighbors) ukraine -hungary text(is:a:neighboring:country:of) slovakia -hungary text(was:a:neighboring:country:of) slovenia -hungary text(neighbors:with) croatia -hungary text(was:a:neighbor:of) austria -hungary text(is:a:neighbor:of) serbia -hungary text(is:a:neighboring:state:to) romania +austria text(neighbors:withborders) italy +austria text(neighbors) switzerland +austria text(is:butted:against) hungary +austria text(was:butted:against) liechtenstein +austria text(is:a:neighboring:country:of) czechia +hungary text(was:a:neighboring:country:of) ukraine +hungary text(was:adjacent:to) slovakia +hungary text(is:adjacent:to) slovenia +hungary text(was:a:neighbor:of) croatia +hungary text(is:a:neighbor:of) austria +hungary text(is:a:neighboring:state:to) serbia +hungary text(was:a:neighboring:state:to) romania malawi text(is:still:in) eastern_africa -malawi text(was:a:neighboring:state:to) zambia -malawi text(borders:with) tanzania -malawi text(borders) mozambique +malawi text(borders:with) zambia +malawi text(neighbors:withborders) tanzania +malawi text(neighbors) mozambique hong_kong text(is:butted:against) china liechtenstein text(was:still:in) western_europe liechtenstein text(was:currently:in) europe liechtenstein text(was:butted:against) switzerland -liechtenstein text(was:adjacent:to) austria +liechtenstein text(is:a:neighboring:country:of) austria barbados text(is:currently:in) caribbean -barbados text(is:placed:in) americas -georgia text(was:placed:in) western_asia -georgia text(is:adjacent:to) armenia -georgia text(neighbors) azerbaijan -georgia text(is:a:neighboring:country:of) russia -georgia text(was:a:neighboring:country:of) turkey -albania text(can:be:found:in) southern_europe -albania text(was:situated:in) europe -albania text(neighbors:with) montenegro -albania text(was:a:neighbor:of) macedonia -albania text(is:a:neighbor:of) kosovo -albania text(is:a:neighboring:state:to) greece -kuwait text(is:situated:in) western_asia -kuwait text(was:a:neighboring:state:to) saudi_arabia -kuwait text(borders:with) iraq -south_africa text(is:located:in) southern_africa -south_africa text(borders) mozambique -south_africa text(is:butted:against) botswana -south_africa text(was:butted:against) swaziland -south_africa text(was:adjacent:to) zimbabwe -south_africa text(is:adjacent:to) namibia -south_africa text(neighbors) lesotho -haiti text(was:located:in) caribbean -haiti text(can:be:found:in) americas -haiti text(is:a:neighboring:country:of) dominican_republic -afghanistan text(was:positioned:in) southern_asia -afghanistan text(was:a:neighboring:country:of) turkmenistan -afghanistan text(neighbors:with) china -afghanistan text(was:a:neighbor:of) tajikistan -afghanistan text(is:a:neighbor:of) uzbekistan -afghanistan text(is:a:neighboring:state:to) iran -afghanistan text(was:a:neighboring:state:to) pakistan -singapore text(is:positioned:in) south-eastern_asia -singapore text(was:sited:in) asia -benin text(is:sited:in) western_africa -benin text(borders:with) niger -benin text(borders) burkina_faso -benin text(is:butted:against) togo -benin text(was:butted:against) nigeria +barbados text(was:situated:in) americas +georgia text(is:situated:in) western_asia +georgia text(was:a:neighboring:country:of) armenia +georgia text(was:adjacent:to) azerbaijan +georgia text(is:adjacent:to) russia +georgia text(was:a:neighbor:of) turkey +albania text(is:located:in) southern_europe +albania text(was:located:in) europe +albania text(is:a:neighbor:of) montenegro +albania text(is:a:neighboring:state:to) macedonia +albania text(was:a:neighboring:state:to) kosovo +albania text(borders:with) greece +kuwait text(could:be:found:in) western_asia +kuwait text(neighbors:withborders) saudi_arabia +kuwait text(neighbors) iraq +south_africa text(can:be:found:in) southern_africa +south_africa text(is:butted:against) mozambique +south_africa text(was:butted:against) botswana +south_africa text(is:a:neighboring:country:of) swaziland +south_africa text(was:a:neighboring:country:of) zimbabwe +south_africa text(was:adjacent:to) namibia +south_africa text(is:adjacent:to) lesotho +haiti text(was:positioned:in) caribbean +haiti text(is:positioned:in) americas +haiti text(was:a:neighbor:of) dominican_republic +afghanistan text(was:sited:in) southern_asia +afghanistan text(is:a:neighbor:of) turkmenistan +afghanistan text(is:a:neighboring:state:to) china +afghanistan text(was:a:neighboring:state:to) tajikistan +afghanistan text(borders:with) uzbekistan +afghanistan text(neighbors:withborders) iran +afghanistan text(neighbors) pakistan +singapore text(is:sited:in) south-eastern_asia +singapore text(is:placed:in) asia +benin text(was:placed:in) western_africa +benin text(is:butted:against) niger +benin text(was:butted:against) burkina_faso +benin text(is:a:neighboring:country:of) togo +benin text(was:a:neighboring:country:of) nigeria åland_islands text(was:localized:in) northern_europe åland_islands text(is:localized:in) europe croatia text(was:present:in) southern_europe croatia text(was:adjacent:to) slovenia croatia text(is:adjacent:to) bosnia_and_herzegovina -croatia text(neighbors) hungary -croatia text(is:a:neighboring:country:of) serbia -croatia text(was:a:neighboring:country:of) montenegro +croatia text(was:a:neighbor:of) hungary +croatia text(is:a:neighbor:of) serbia +croatia text(is:a:neighboring:state:to) montenegro sweden text(is:present:in) northern_europe -sweden text(neighbors:with) norway -sweden text(was:a:neighbor:of) finland -mexico text(is:a:neighbor:of) belize -mexico text(is:a:neighboring:state:to) united_states -mexico text(was:a:neighboring:state:to) guatemala +sweden text(was:a:neighboring:state:to) norway +sweden text(borders:with) finland +mexico text(neighbors:withborders) belize +mexico text(neighbors) united_states +mexico text(is:butted:against) guatemala greenland text(is:still:in) northern_america greenland text(was:still:in) americas norfolk_island text(was:currently:in) australia_and_new_zealand norfolk_island text(is:currently:in) oceania -nepal text(is:placed:in) southern_asia -nepal text(was:placed:in) asia -nepal text(borders:with) china -nepal text(borders) india -guatemala text(is:butted:against) belize -guatemala text(was:butted:against) el_salvador -guatemala text(was:adjacent:to) mexico -guatemala text(is:adjacent:to) honduras -south_korea text(can:be:found:in) eastern_asia -south_korea text(neighbors) north_korea -moldova text(was:situated:in) eastern_europe -moldova text(is:situated:in) europe -moldova text(is:a:neighboring:country:of) ukraine -moldova text(was:a:neighboring:country:of) romania -mauritius text(is:located:in) eastern_africa -mauritius text(was:located:in) africa -belarus text(neighbors:with) ukraine -belarus text(was:a:neighbor:of) poland -belarus text(is:a:neighbor:of) lithuania -belarus text(is:a:neighboring:state:to) russia -belarus text(was:a:neighboring:state:to) latvia -bangladesh text(borders:with) myanmar -bangladesh text(borders) india -malaysia text(can:be:found:in) south-eastern_asia -malaysia text(is:butted:against) thailand -malaysia text(was:butted:against) indonesia -malaysia text(was:adjacent:to) brunei -bosnia_and_herzegovina text(was:positioned:in) southern_europe -bosnia_and_herzegovina text(is:adjacent:to) serbia -bosnia_and_herzegovina text(neighbors) croatia -bosnia_and_herzegovina text(is:a:neighboring:country:of) montenegro -luxembourg text(is:positioned:in) western_europe -luxembourg text(was:a:neighboring:country:of) germany -luxembourg text(neighbors:with) belgium -luxembourg text(was:a:neighbor:of) france -italy text(was:sited:in) southern_europe -italy text(is:sited:in) europe -italy text(is:a:neighbor:of) slovenia -italy text(is:a:neighboring:state:to) switzerland -italy text(was:a:neighboring:state:to) austria -italy text(borders:with) france -italy text(borders) vatican_city -italy text(is:butted:against) san_marino +nepal text(was:situated:in) southern_asia +nepal text(is:situated:in) asia +nepal text(was:butted:against) china +nepal text(is:a:neighboring:country:of) india +guatemala text(was:a:neighboring:country:of) belize +guatemala text(was:adjacent:to) el_salvador +guatemala text(is:adjacent:to) mexico +guatemala text(was:a:neighbor:of) honduras +south_korea text(is:located:in) eastern_asia +south_korea text(is:a:neighbor:of) north_korea +moldova text(was:located:in) eastern_europe +moldova text(could:be:found:in) europe +moldova text(is:a:neighboring:state:to) ukraine +moldova text(was:a:neighboring:state:to) romania +mauritius text(can:be:found:in) eastern_africa +mauritius text(was:positioned:in) africa +belarus text(borders:with) ukraine +belarus text(neighbors:withborders) poland +belarus text(neighbors) lithuania +belarus text(is:butted:against) russia +belarus text(was:butted:against) latvia +bangladesh text(is:a:neighboring:country:of) myanmar +bangladesh text(was:a:neighboring:country:of) india +malaysia text(is:positioned:in) south-eastern_asia +malaysia text(was:adjacent:to) thailand +malaysia text(is:adjacent:to) indonesia +malaysia text(was:a:neighbor:of) brunei +bosnia_and_herzegovina text(was:sited:in) southern_europe +bosnia_and_herzegovina text(is:a:neighbor:of) serbia +bosnia_and_herzegovina text(is:a:neighboring:state:to) croatia +bosnia_and_herzegovina text(was:a:neighboring:state:to) montenegro +luxembourg text(is:sited:in) western_europe +luxembourg text(borders:with) germany +luxembourg text(neighbors:withborders) belgium +luxembourg text(neighbors) france +italy text(is:placed:in) southern_europe +italy text(was:placed:in) europe +italy text(is:butted:against) slovenia +italy text(was:butted:against) switzerland +italy text(is:a:neighboring:country:of) austria +italy text(was:a:neighboring:country:of) france +italy text(was:adjacent:to) vatican_city +italy text(is:adjacent:to) san_marino azerbaijan text(was:localized:in) western_asia -azerbaijan text(was:butted:against) turkey -azerbaijan text(was:adjacent:to) armenia -azerbaijan text(is:adjacent:to) russia -azerbaijan text(neighbors) iran -azerbaijan text(is:a:neighboring:country:of) georgia +azerbaijan text(was:a:neighbor:of) turkey +azerbaijan text(is:a:neighbor:of) armenia +azerbaijan text(is:a:neighboring:state:to) russia +azerbaijan text(was:a:neighboring:state:to) iran +azerbaijan text(borders:with) georgia honduras text(is:localized:in) central_america -honduras text(was:a:neighboring:country:of) guatemala -honduras text(neighbors:with) nicaragua -honduras text(was:a:neighbor:of) el_salvador +honduras text(neighbors:withborders) guatemala +honduras text(neighbors) nicaragua +honduras text(is:butted:against) el_salvador mali text(was:present:in) western_africa -mali text(is:a:neighbor:of) burkina_faso -mali text(is:a:neighboring:state:to) guinea -mali text(was:a:neighboring:state:to) mauritania -mali text(borders:with) niger -mali text(borders) senegal -mali text(is:butted:against) algeria -mali text(was:butted:against) ivory_coast +mali text(was:butted:against) burkina_faso +mali text(is:a:neighboring:country:of) guinea +mali text(was:a:neighboring:country:of) mauritania +mali text(was:adjacent:to) niger +mali text(is:adjacent:to) senegal +mali text(was:a:neighbor:of) algeria +mali text(is:a:neighbor:of) ivory_coast taiwan text(is:present:in) eastern_asia taiwan text(is:still:in) asia algeria text(was:still:in) northern_africa -algeria text(was:adjacent:to) libya -algeria text(is:adjacent:to) tunisia -algeria text(neighbors) mauritania -algeria text(is:a:neighboring:country:of) morocco -algeria text(was:a:neighboring:country:of) niger -algeria text(neighbors:with) mali -algeria text(was:a:neighbor:of) western_sahara -french_guiana text(is:a:neighbor:of) brazil -french_guiana text(is:a:neighboring:state:to) suriname +algeria text(is:a:neighboring:state:to) libya +algeria text(was:a:neighboring:state:to) tunisia +algeria text(borders:with) mauritania +algeria text(neighbors:withborders) morocco +algeria text(neighbors) niger +algeria text(is:butted:against) mali +algeria text(was:butted:against) western_sahara +french_guiana text(is:a:neighboring:country:of) brazil +french_guiana text(was:a:neighboring:country:of) suriname yemen text(was:currently:in) western_asia -yemen text(was:a:neighboring:state:to) oman -yemen text(borders:with) saudi_arabia +yemen text(was:adjacent:to) oman +yemen text(is:adjacent:to) saudi_arabia puerto_rico text(is:currently:in) caribbean -puerto_rico text(is:placed:in) americas -saint_vincent_and_the_grenadines text(was:placed:in) caribbean -saint_vincent_and_the_grenadines text(can:be:found:in) americas -venezuela text(borders) brazil -venezuela text(is:butted:against) guyana -venezuela text(was:butted:against) colombia -grenada text(was:situated:in) caribbean -grenada text(is:situated:in) americas -united_states text(was:adjacent:to) canada -united_states text(is:adjacent:to) mexico -tokelau text(is:located:in) polynesia -tokelau text(was:located:in) oceania -slovenia text(can:be:found:in) southern_europe -slovenia text(neighbors) austria -slovenia text(is:a:neighboring:country:of) croatia -slovenia text(was:a:neighboring:country:of) italy -slovenia text(neighbors:with) hungary -philippines text(was:positioned:in) south-eastern_asia -philippines text(is:positioned:in) asia -micronesia text(was:sited:in) micronesia -micronesia text(is:sited:in) oceania +puerto_rico text(was:situated:in) americas +saint_vincent_and_the_grenadines text(is:situated:in) caribbean +saint_vincent_and_the_grenadines text(is:located:in) americas +venezuela text(was:a:neighbor:of) brazil +venezuela text(is:a:neighbor:of) guyana +venezuela text(is:a:neighboring:state:to) colombia +grenada text(was:located:in) caribbean +grenada text(could:be:found:in) americas +united_states text(was:a:neighboring:state:to) canada +united_states text(borders:with) mexico +tokelau text(can:be:found:in) polynesia +tokelau text(was:positioned:in) oceania +slovenia text(is:positioned:in) southern_europe +slovenia text(neighbors:withborders) austria +slovenia text(neighbors) croatia +slovenia text(is:butted:against) italy +slovenia text(was:butted:against) hungary +philippines text(was:sited:in) south-eastern_asia +philippines text(is:sited:in) asia +micronesia text(is:placed:in) micronesia +micronesia text(was:placed:in) oceania china text(was:localized:in) eastern_asia -china text(was:a:neighbor:of) afghanistan -china text(is:a:neighbor:of) bhutan -china text(is:a:neighboring:state:to) macau -china text(was:a:neighboring:state:to) india -china text(borders:with) kazakhstan -china text(borders) kyrgyzstan -china text(is:butted:against) tajikistan -china text(was:butted:against) laos -china text(was:adjacent:to) russia -china text(is:adjacent:to) north_korea +china text(is:a:neighboring:country:of) afghanistan +china text(was:a:neighboring:country:of) bhutan +china text(was:adjacent:to) macau +china text(is:adjacent:to) india +china text(was:a:neighbor:of) kazakhstan +china text(is:a:neighbor:of) kyrgyzstan +china text(is:a:neighboring:state:to) tajikistan +china text(was:a:neighboring:state:to) laos +china text(borders:with) russia +china text(neighbors:withborders) north_korea china text(neighbors) myanmar -china text(is:a:neighboring:country:of) pakistan -china text(was:a:neighboring:country:of) mongolia -china text(neighbors:with) hong_kong -china text(was:a:neighbor:of) vietnam +china text(is:butted:against) pakistan +china text(was:butted:against) mongolia +china text(is:a:neighboring:country:of) hong_kong +china text(was:a:neighboring:country:of) vietnam gabon text(is:localized:in) middle_africa -gabon text(is:a:neighbor:of) equatorial_guinea -gabon text(is:a:neighboring:state:to) republic_of_the_congo -gabon text(was:a:neighboring:state:to) cameroon +gabon text(was:adjacent:to) equatorial_guinea +gabon text(is:adjacent:to) republic_of_the_congo +gabon text(was:a:neighbor:of) cameroon united_states_minor_outlying_islands text(was:present:in) northern_america united_states_minor_outlying_islands text(is:present:in) americas andorra text(is:still:in) southern_europe -andorra text(borders:with) spain -andorra text(borders) france +andorra text(is:a:neighbor:of) spain +andorra text(is:a:neighboring:state:to) france samoa text(was:still:in) polynesia samoa text(was:currently:in) oceania gambia text(is:currently:in) western_africa -gambia text(is:placed:in) africa -gambia text(is:butted:against) senegal -palestine text(was:placed:in) western_asia -palestine text(can:be:found:in) asia -palestine text(was:butted:against) jordan -palestine text(was:adjacent:to) egypt -palestine text(is:adjacent:to) israel -réunion text(was:situated:in) eastern_africa -réunion text(is:situated:in) africa -france text(is:located:in) western_europe -france text(neighbors) germany -france text(is:a:neighboring:country:of) luxembourg -france text(was:a:neighboring:country:of) italy -france text(neighbors:with) andorra -france text(was:a:neighbor:of) switzerland -france text(is:a:neighbor:of) monaco -france text(is:a:neighboring:state:to) belgium -france text(was:a:neighboring:state:to) spain -mongolia text(was:located:in) eastern_asia -mongolia text(can:be:found:in) asia -mongolia text(borders:with) china -mongolia text(borders) russia -lithuania text(was:positioned:in) northern_europe -lithuania text(is:butted:against) poland -lithuania text(was:butted:against) latvia -lithuania text(was:adjacent:to) belarus -lithuania text(is:adjacent:to) russia -cayman_islands text(is:positioned:in) caribbean -cayman_islands text(was:sited:in) americas -saint_lucia text(is:sited:in) caribbean +gambia text(was:situated:in) africa +gambia text(was:a:neighboring:state:to) senegal +palestine text(is:situated:in) western_asia +palestine text(is:located:in) asia +palestine text(borders:with) jordan +palestine text(neighbors:withborders) egypt +palestine text(neighbors) israel +réunion text(was:located:in) eastern_africa +réunion text(could:be:found:in) africa +france text(can:be:found:in) western_europe +france text(is:butted:against) germany +france text(was:butted:against) luxembourg +france text(is:a:neighboring:country:of) italy +france text(was:a:neighboring:country:of) andorra +france text(was:adjacent:to) switzerland +france text(is:adjacent:to) monaco +france text(was:a:neighbor:of) belgium +france text(is:a:neighbor:of) spain +mongolia text(was:positioned:in) eastern_asia +mongolia text(is:positioned:in) asia +mongolia text(is:a:neighboring:state:to) china +mongolia text(was:a:neighboring:state:to) russia +lithuania text(was:sited:in) northern_europe +lithuania text(borders:with) poland +lithuania text(neighbors:withborders) latvia +lithuania text(neighbors) belarus +lithuania text(is:butted:against) russia +cayman_islands text(is:sited:in) caribbean +cayman_islands text(is:placed:in) americas +saint_lucia text(was:placed:in) caribbean saint_lucia text(was:localized:in) americas curaçao text(is:localized:in) caribbean curaçao text(was:present:in) americas @@ -959,18 +959,18 @@ southern_asia text(is:still:in) asia middle_africa text(was:still:in) africa northern_europe text(was:currently:in) europe southern_europe text(is:currently:in) europe -western_asia text(is:placed:in) asia -south_america text(was:placed:in) americas -polynesia text(can:be:found:in) oceania -australia_and_new_zealand text(was:situated:in) oceania -western_europe text(is:situated:in) europe -eastern_africa text(is:located:in) africa -western_africa text(was:located:in) africa -eastern_europe text(can:be:found:in) europe -central_america text(was:positioned:in) americas -northern_america text(is:positioned:in) americas -south-eastern_asia text(was:sited:in) asia -southern_africa text(is:sited:in) africa +western_asia text(was:situated:in) asia +south_america text(is:situated:in) americas +polynesia text(is:located:in) oceania +australia_and_new_zealand text(was:located:in) oceania +western_europe text(could:be:found:in) europe +eastern_africa text(can:be:found:in) africa +western_africa text(was:positioned:in) africa +eastern_europe text(is:positioned:in) europe +central_america text(was:sited:in) americas +northern_america text(is:sited:in) americas +south-eastern_asia text(is:placed:in) asia +southern_africa text(was:placed:in) africa eastern_asia text(was:localized:in) asia northern_africa text(is:localized:in) africa melanesia text(was:present:in) oceania diff --git a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_relation2text_traintest.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_relation2text_traintest.tsv new file mode 100644 index 0000000..8b93d13 --- /dev/null +++ b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_relation2text_traintest.tsv @@ -0,0 +1,979 @@ +palau text(is:positioned:in) micronesia +palau text(was:localized:in) oceania +maldives text(is:localized:in) southern_asia +maldives text(was:present:in) asia +brunei text(is:present:in) south-eastern_asia +brunei text(is:still:in) asia +brunei text(was:a:neighboring:country:of) malaysia +japan text(was:still:in) eastern_asia +japan text(was:currently:in) asia +netherlands text(was:a:neighbor:of) belgium +turkey text(is:a:neighbor:of) armenia +turkey text(is:a:neighboring:state:to) azerbaijan +turkey text(was:a:neighboring:state:to) iran +turkey text(borders:with) greece +turkey text(neighbors:withborders) georgia +angola text(is:currently:in) middle_africa +angola text(neighbors) dr_congo +angola text(is:butted:against) namibia +angola text(was:butted:against) republic_of_the_congo +armenia text(was:situated:in) western_asia +armenia text(is:a:neighboring:country:of) georgia +armenia text(was:a:neighboring:country:of) azerbaijan +armenia text(was:a:neighbor:of) iran +armenia text(is:a:neighbor:of) turkey +antigua_and_barbuda text(is:situated:in) caribbean +antigua_and_barbuda text(is:located:in) americas +swaziland text(was:located:in) southern_africa +swaziland text(is:a:neighboring:state:to) south_africa +swaziland text(was:a:neighboring:state:to) mozambique +wallis_and_futuna text(could:be:found:in) polynesia +wallis_and_futuna text(can:be:found:in) oceania +uruguay text(was:positioned:in) south_america +uruguay text(is:positioned:in) americas +uruguay text(borders:with) argentina +uruguay text(neighbors:withborders) brazil +cyprus text(was:localized:in) eastern_europe +cyprus text(is:localized:in) europe +cyprus text(neighbors) united_kingdom +ireland text(was:present:in) northern_europe +ireland text(is:present:in) europe +ireland text(is:butted:against) united_kingdom +burundi text(is:still:in) eastern_africa +burundi text(was:butted:against) dr_congo +burundi text(is:a:neighboring:country:of) rwanda +central_african_republic text(was:still:in) middle_africa +central_african_republic text(was:a:neighboring:country:of) chad +central_african_republic text(was:a:neighbor:of) republic_of_the_congo +central_african_republic text(is:a:neighbor:of) dr_congo +central_african_republic text(is:a:neighboring:state:to) south_sudan +central_african_republic text(was:a:neighboring:state:to) cameroon +tonga text(was:currently:in) polynesia +tonga text(is:currently:in) oceania +ivory_coast text(was:situated:in) western_africa +ivory_coast text(borders:with) liberia +ivory_coast text(neighbors:withborders) mali +ivory_coast text(neighbors) guinea +sierra_leone text(is:butted:against) liberia +sierra_leone text(was:butted:against) guinea +mayotte text(is:situated:in) eastern_africa +mayotte text(is:located:in) africa +poland text(is:a:neighboring:country:of) ukraine +poland text(was:a:neighboring:country:of) slovakia +poland text(was:a:neighbor:of) belarus +poland text(is:a:neighbor:of) russia +poland text(is:a:neighboring:state:to) lithuania +uzbekistan text(was:located:in) central_asia +uzbekistan text(was:a:neighboring:state:to) afghanistan +uzbekistan text(borders:with) turkmenistan +uzbekistan text(neighbors:withborders) kyrgyzstan +uzbekistan text(neighbors) tajikistan +turks_and_caicos_islands text(could:be:found:in) caribbean +turks_and_caicos_islands text(can:be:found:in) americas +new_caledonia text(was:positioned:in) melanesia +new_caledonia text(is:positioned:in) oceania +pakistan text(is:butted:against) china +pakistan text(was:butted:against) afghanistan +pakistan text(is:a:neighboring:country:of) iran +pakistan text(was:a:neighboring:country:of) india +argentina text(was:localized:in) south_america +argentina text(was:a:neighbor:of) bolivia +argentina text(is:a:neighbor:of) chile +argentina text(is:a:neighboring:state:to) brazil +argentina text(was:a:neighboring:state:to) paraguay +argentina text(borders:with) uruguay +cuba text(is:localized:in) caribbean +cuba text(was:present:in) americas +serbia text(neighbors:withborders) macedonia +serbia text(neighbors) montenegro +serbia text(is:butted:against) bosnia_and_herzegovina +serbia text(was:butted:against) croatia +serbia text(is:a:neighboring:country:of) romania +vietnam text(is:present:in) south-eastern_asia +vietnam text(is:still:in) asia +vietnam text(was:a:neighboring:country:of) cambodia +vietnam text(was:a:neighbor:of) laos +vietnam text(is:a:neighbor:of) china +niue text(was:still:in) polynesia +niue text(was:currently:in) oceania +canada text(is:currently:in) northern_america +slovakia text(is:a:neighboring:state:to) ukraine +slovakia text(was:a:neighboring:state:to) poland +slovakia text(borders:with) austria +mozambique text(neighbors:withborders) swaziland +mozambique text(neighbors) malawi +mozambique text(is:butted:against) south_africa +aruba text(was:situated:in) caribbean +aruba text(is:situated:in) americas +bolivia text(is:located:in) south_america +bolivia text(was:butted:against) chile +bolivia text(is:a:neighboring:country:of) brazil +bolivia text(was:a:neighboring:country:of) paraguay +bolivia text(was:a:neighbor:of) argentina +bolivia text(is:a:neighbor:of) peru +colombia text(was:located:in) south_america +colombia text(is:a:neighboring:state:to) brazil +colombia text(was:a:neighboring:state:to) peru +fiji text(could:be:found:in) melanesia +fiji text(can:be:found:in) oceania +republic_of_the_congo text(borders:with) gabon +republic_of_the_congo text(neighbors:withborders) dr_congo +republic_of_the_congo text(neighbors) angola +republic_of_the_congo text(is:butted:against) cameroon +republic_of_the_congo text(was:butted:against) central_african_republic +el_salvador text(was:positioned:in) central_america +el_salvador text(is:a:neighboring:country:of) guatemala +el_salvador text(was:a:neighboring:country:of) honduras +madagascar text(is:positioned:in) eastern_africa +madagascar text(was:localized:in) africa +australia text(is:localized:in) australia_and_new_zealand +australia text(was:present:in) oceania +namibia text(is:present:in) southern_africa +namibia text(is:still:in) africa +namibia text(was:a:neighbor:of) angola +namibia text(is:a:neighbor:of) south_africa +tuvalu text(was:still:in) polynesia +tuvalu text(was:currently:in) oceania +svalbard_and_jan_mayen text(is:currently:in) northern_europe +svalbard_and_jan_mayen text(was:situated:in) europe +isle_of_man text(is:situated:in) northern_europe +isle_of_man text(is:located:in) europe +vatican_city text(was:located:in) southern_europe +vatican_city text(could:be:found:in) europe +vatican_city text(is:a:neighboring:state:to) italy +british_indian_ocean_territory text(can:be:found:in) eastern_africa +british_indian_ocean_territory text(was:positioned:in) africa +nigeria text(is:positioned:in) western_africa +nigeria text(was:localized:in) africa +nigeria text(was:a:neighboring:state:to) chad +nigeria text(borders:with) niger +nigeria text(neighbors:withborders) cameroon +nigeria text(neighbors) benin +northern_mariana_islands text(is:localized:in) micronesia +northern_mariana_islands text(was:present:in) oceania +belize text(is:present:in) central_america +belize text(is:butted:against) guatemala +belize text(was:butted:against) mexico +cocos_keeling_islands text(is:still:in) australia_and_new_zealand +cocos_keeling_islands text(was:still:in) oceania +laos text(was:currently:in) south-eastern_asia +laos text(is:a:neighboring:country:of) china +laos text(was:a:neighboring:country:of) cambodia +laos text(was:a:neighbor:of) vietnam +western_sahara text(is:currently:in) northern_africa +western_sahara text(is:a:neighbor:of) algeria +western_sahara text(is:a:neighboring:state:to) mauritania +western_sahara text(was:a:neighboring:state:to) morocco +christmas_island text(was:situated:in) australia_and_new_zealand +christmas_island text(is:situated:in) oceania +são_tomé_and_príncipe text(is:located:in) middle_africa +são_tomé_and_príncipe text(was:located:in) africa +guinea text(could:be:found:in) western_africa +guinea text(borders:with) sierra_leone +guinea text(neighbors:withborders) mali +guinea text(neighbors) liberia +guinea text(is:butted:against) senegal +guinea text(was:butted:against) ivory_coast +costa_rica text(can:be:found:in) central_america +malta text(was:positioned:in) southern_europe +malta text(is:positioned:in) europe +portugal text(was:localized:in) southern_europe +romania text(is:localized:in) eastern_europe +romania text(is:a:neighboring:country:of) ukraine +romania text(was:a:neighboring:country:of) moldova +romania text(was:a:neighbor:of) serbia +san_marino text(was:present:in) southern_europe +san_marino text(is:present:in) europe +san_marino text(is:a:neighbor:of) italy +mauritania text(is:still:in) western_africa +mauritania text(was:still:in) africa +mauritania text(is:a:neighboring:state:to) algeria +mauritania text(was:a:neighboring:state:to) mali +mauritania text(borders:with) western_sahara +mauritania text(neighbors:withborders) senegal +trinidad_and_tobago text(was:currently:in) caribbean +trinidad_and_tobago text(is:currently:in) americas +bahrain text(was:situated:in) western_asia +bahrain text(is:situated:in) asia +south_georgia text(is:located:in) south_america +south_georgia text(was:located:in) americas +iceland text(could:be:found:in) northern_europe +iceland text(can:be:found:in) europe +dr_congo text(was:positioned:in) middle_africa +dr_congo text(neighbors) uganda +dr_congo text(is:butted:against) republic_of_the_congo +dr_congo text(was:butted:against) central_african_republic +dr_congo text(is:a:neighboring:country:of) angola +dr_congo text(was:a:neighboring:country:of) rwanda +dr_congo text(was:a:neighbor:of) south_sudan +dr_congo text(is:a:neighbor:of) burundi +seychelles text(is:positioned:in) eastern_africa +seychelles text(was:localized:in) africa +kyrgyzstan text(is:a:neighboring:state:to) china +kyrgyzstan text(was:a:neighboring:state:to) tajikistan +kyrgyzstan text(borders:with) uzbekistan +faroe_islands text(is:localized:in) northern_europe +faroe_islands text(was:present:in) europe +jamaica text(is:present:in) caribbean +jamaica text(is:still:in) americas +american_samoa text(was:still:in) polynesia +american_samoa text(was:currently:in) oceania +lesotho text(is:currently:in) southern_africa +lesotho text(was:situated:in) africa +lesotho text(neighbors:withborders) south_africa +sri_lanka text(neighbors) india +belgium text(is:situated:in) western_europe +belgium text(is:butted:against) luxembourg +belgium text(was:butted:against) france +belgium text(is:a:neighboring:country:of) netherlands +qatar text(is:located:in) western_asia +solomon_islands text(was:located:in) melanesia +solomon_islands text(could:be:found:in) oceania +india text(can:be:found:in) southern_asia +india text(was:a:neighboring:country:of) afghanistan +india text(was:a:neighbor:of) bangladesh +india text(is:a:neighbor:of) china +india text(is:a:neighboring:state:to) nepal +india text(was:a:neighboring:state:to) pakistan +india text(borders:with) sri_lanka +morocco text(neighbors:withborders) algeria +morocco text(neighbors) western_sahara +kenya text(was:positioned:in) eastern_africa +kenya text(is:butted:against) uganda +kenya text(was:butted:against) somalia +kenya text(is:a:neighboring:country:of) south_sudan +kenya text(was:a:neighboring:country:of) ethiopia +south_sudan text(is:positioned:in) middle_africa +south_sudan text(was:a:neighbor:of) uganda +south_sudan text(is:a:neighbor:of) dr_congo +south_sudan text(is:a:neighboring:state:to) kenya +south_sudan text(was:a:neighboring:state:to) central_african_republic +south_sudan text(borders:with) ethiopia +tajikistan text(was:localized:in) central_asia +tajikistan text(neighbors:withborders) china +tajikistan text(neighbors) kyrgyzstan +tajikistan text(is:butted:against) afghanistan +tajikistan text(was:butted:against) uzbekistan +marshall_islands text(is:localized:in) micronesia +marshall_islands text(was:present:in) oceania +cameroon text(is:present:in) middle_africa +cameroon text(is:a:neighboring:country:of) chad +cameroon text(was:a:neighboring:country:of) republic_of_the_congo +cameroon text(was:a:neighbor:of) gabon +cameroon text(is:a:neighbor:of) equatorial_guinea +cameroon text(is:a:neighboring:state:to) central_african_republic +cameroon text(was:a:neighboring:state:to) nigeria +nauru text(is:still:in) micronesia +nauru text(was:still:in) oceania +chad text(was:currently:in) middle_africa +chad text(borders:with) libya +chad text(neighbors:withborders) niger +chad text(neighbors) south_sudan +chad text(is:butted:against) cameroon +chad text(was:butted:against) central_african_republic +chad text(is:a:neighboring:country:of) nigeria +vanuatu text(is:currently:in) melanesia +vanuatu text(was:situated:in) oceania +cape_verde text(is:situated:in) western_africa +cape_verde text(is:located:in) africa +falkland_islands text(was:located:in) south_america +falkland_islands text(could:be:found:in) americas +liberia text(can:be:found:in) western_africa +liberia text(was:a:neighboring:country:of) ivory_coast +liberia text(was:a:neighbor:of) sierra_leone +liberia text(is:a:neighbor:of) guinea +cambodia text(was:positioned:in) south-eastern_asia +cambodia text(is:a:neighboring:state:to) vietnam +cambodia text(was:a:neighboring:state:to) laos +comoros text(is:positioned:in) eastern_africa +comoros text(was:localized:in) africa +guam text(is:localized:in) micronesia +guam text(was:present:in) oceania +bahamas text(is:present:in) caribbean +bahamas text(is:still:in) americas +lebanon text(was:still:in) western_asia +lebanon text(was:currently:in) asia +lebanon text(borders:with) israel +sint_maarten text(is:currently:in) caribbean +sint_maarten text(was:situated:in) americas +ethiopia text(is:situated:in) eastern_africa +ethiopia text(neighbors:withborders) somalia +ethiopia text(neighbors) kenya +ethiopia text(is:butted:against) south_sudan +united_states_virgin_islands text(is:located:in) caribbean +united_states_virgin_islands text(was:located:in) americas +libya text(could:be:found:in) northern_africa +libya text(was:butted:against) chad +libya text(is:a:neighboring:country:of) tunisia +libya text(was:a:neighboring:country:of) niger +libya text(was:a:neighbor:of) algeria +french_polynesia text(can:be:found:in) polynesia +french_polynesia text(was:positioned:in) oceania +somalia text(is:positioned:in) eastern_africa +somalia text(is:a:neighbor:of) kenya +somalia text(is:a:neighboring:state:to) ethiopia +saint_barthélemy text(was:localized:in) caribbean +saint_barthélemy text(is:localized:in) americas +russia text(was:present:in) eastern_europe +russia text(was:a:neighboring:state:to) ukraine +russia text(borders:with) belarus +russia text(neighbors:withborders) china +russia text(neighbors) poland +russia text(is:butted:against) azerbaijan +russia text(was:butted:against) lithuania +russia text(is:a:neighboring:country:of) estonia +russia text(was:a:neighboring:country:of) north_korea +russia text(was:a:neighbor:of) finland +russia text(is:a:neighbor:of) latvia +russia text(is:a:neighboring:state:to) georgia +new_zealand text(is:present:in) australia_and_new_zealand +new_zealand text(is:still:in) oceania +papua_new_guinea text(was:still:in) melanesia +north_korea text(was:a:neighboring:state:to) china +north_korea text(borders:with) south_korea +north_korea text(neighbors:withborders) russia +latvia text(was:currently:in) northern_europe +latvia text(neighbors) lithuania +latvia text(is:butted:against) belarus +latvia text(was:butted:against) russia +latvia text(is:a:neighboring:country:of) estonia +oman text(is:currently:in) western_asia +oman text(was:a:neighboring:country:of) yemen +oman text(was:a:neighbor:of) united_arab_emirates +saint_pierre_and_miquelon text(was:situated:in) northern_america +saint_pierre_and_miquelon text(is:situated:in) americas +martinique text(is:located:in) caribbean +martinique text(was:located:in) americas +united_kingdom text(could:be:found:in) northern_europe +united_kingdom text(can:be:found:in) europe +united_kingdom text(is:a:neighbor:of) ireland +israel text(was:positioned:in) western_asia +israel text(is:a:neighboring:state:to) lebanon +jersey text(is:positioned:in) northern_europe +jersey text(was:localized:in) europe +pitcairn_islands text(is:localized:in) polynesia +pitcairn_islands text(was:present:in) oceania +togo text(is:present:in) western_africa +togo text(was:a:neighboring:state:to) benin +kiribati text(is:still:in) micronesia +kiribati text(was:still:in) oceania +iran text(was:currently:in) southern_asia +iran text(borders:with) afghanistan +iran text(neighbors:withborders) turkmenistan +iran text(neighbors) turkey +iran text(is:butted:against) armenia +iran text(was:butted:against) azerbaijan +iran text(is:a:neighboring:country:of) pakistan +dominican_republic text(is:currently:in) caribbean +dominican_republic text(was:situated:in) americas +dominican_republic text(was:a:neighboring:country:of) haiti +bermuda text(is:situated:in) northern_america +bermuda text(is:located:in) americas +chile text(was:a:neighbor:of) argentina +chile text(is:a:neighbor:of) bolivia +chile text(is:a:neighboring:state:to) peru +saint_kitts_and_nevis text(was:located:in) caribbean +saint_kitts_and_nevis text(could:be:found:in) americas +equatorial_guinea text(can:be:found:in) middle_africa +equatorial_guinea text(was:positioned:in) africa +equatorial_guinea text(was:a:neighboring:state:to) gabon +equatorial_guinea text(borders:with) cameroon +niger text(is:positioned:in) western_africa +niger text(neighbors:withborders) chad +niger text(neighbors) libya +niger text(is:butted:against) benin +niger text(was:butted:against) mali +niger text(is:a:neighboring:country:of) algeria +niger text(was:a:neighboring:country:of) nigeria +anguilla text(was:localized:in) caribbean +anguilla text(is:localized:in) americas +rwanda text(was:present:in) eastern_africa +rwanda text(was:a:neighbor:of) burundi +rwanda text(is:a:neighbor:of) uganda +rwanda text(is:a:neighboring:state:to) dr_congo +united_arab_emirates text(is:present:in) western_asia +united_arab_emirates text(was:a:neighboring:state:to) oman +estonia text(is:still:in) northern_europe +estonia text(was:still:in) europe +estonia text(borders:with) latvia +estonia text(neighbors:withborders) russia +greece text(was:currently:in) southern_europe +greece text(neighbors) albania +greece text(is:butted:against) macedonia +greece text(was:butted:against) turkey +senegal text(is:currently:in) western_africa +senegal text(was:situated:in) africa +senegal text(is:a:neighboring:country:of) mauritania +senegal text(was:a:neighboring:country:of) mali +senegal text(was:a:neighbor:of) gambia +senegal text(is:a:neighbor:of) guinea +guadeloupe text(is:situated:in) caribbean +guadeloupe text(is:located:in) americas +british_virgin_islands text(was:located:in) caribbean +british_virgin_islands text(could:be:found:in) americas +cook_islands text(can:be:found:in) polynesia +cook_islands text(was:positioned:in) oceania +uganda text(is:positioned:in) eastern_africa +uganda text(is:a:neighboring:state:to) dr_congo +uganda text(was:a:neighboring:state:to) kenya +uganda text(borders:with) south_sudan +uganda text(neighbors:withborders) rwanda +macedonia text(was:localized:in) southern_europe +macedonia text(neighbors) greece +macedonia text(is:butted:against) albania +macedonia text(was:butted:against) serbia +tunisia text(is:localized:in) northern_africa +tunisia text(was:present:in) africa +tunisia text(is:a:neighboring:country:of) libya +tunisia text(was:a:neighboring:country:of) algeria +brazil text(is:present:in) south_america +brazil text(was:a:neighbor:of) bolivia +brazil text(is:a:neighbor:of) colombia +brazil text(is:a:neighboring:state:to) paraguay +brazil text(was:a:neighboring:state:to) uruguay +brazil text(borders:with) argentina +brazil text(neighbors:withborders) peru +paraguay text(is:still:in) south_america +paraguay text(was:still:in) americas +paraguay text(neighbors) argentina +paraguay text(is:butted:against) brazil +paraguay text(was:butted:against) bolivia +finland text(was:currently:in) northern_europe +finland text(is:a:neighboring:country:of) sweden +finland text(was:a:neighboring:country:of) russia +montenegro text(is:currently:in) southern_europe +montenegro text(was:a:neighbor:of) bosnia_and_herzegovina +montenegro text(is:a:neighbor:of) croatia +montenegro text(is:a:neighboring:state:to) serbia +montenegro text(was:a:neighboring:state:to) albania +peru text(was:situated:in) south_america +peru text(borders:with) bolivia +peru text(neighbors:withborders) chile +peru text(neighbors) brazil +peru text(is:butted:against) colombia +montserrat text(is:situated:in) caribbean +montserrat text(is:located:in) americas +ukraine text(was:located:in) eastern_europe +ukraine text(was:butted:against) slovakia +ukraine text(is:a:neighboring:country:of) belarus +ukraine text(was:a:neighboring:country:of) poland +ukraine text(was:a:neighbor:of) russia +ukraine text(is:a:neighbor:of) moldova +ukraine text(is:a:neighboring:state:to) romania +dominica text(could:be:found:in) caribbean +dominica text(can:be:found:in) americas +turkmenistan text(was:a:neighboring:state:to) afghanistan +turkmenistan text(borders:with) uzbekistan +turkmenistan text(neighbors:withborders) iran +guernsey text(was:positioned:in) northern_europe +guernsey text(is:positioned:in) europe +gibraltar text(was:localized:in) southern_europe +switzerland text(is:localized:in) western_europe +switzerland text(neighbors) italy +switzerland text(is:butted:against) austria +switzerland text(was:butted:against) france +switzerland text(is:a:neighboring:country:of) liechtenstein +austria text(was:present:in) western_europe +austria text(was:a:neighboring:country:of) slovakia +austria text(was:a:neighbor:of) slovenia +austria text(is:a:neighbor:of) italy +austria text(is:a:neighboring:state:to) switzerland +austria text(was:a:neighboring:state:to) liechtenstein +malawi text(is:present:in) eastern_africa +malawi text(borders:with) mozambique +hong_kong text(neighbors:withborders) china +liechtenstein text(is:still:in) western_europe +liechtenstein text(was:still:in) europe +liechtenstein text(neighbors) switzerland +liechtenstein text(is:butted:against) austria +barbados text(was:currently:in) caribbean +barbados text(is:currently:in) americas +georgia text(was:situated:in) western_asia +georgia text(was:butted:against) armenia +georgia text(is:a:neighboring:country:of) azerbaijan +georgia text(was:a:neighboring:country:of) russia +georgia text(was:a:neighbor:of) turkey +albania text(is:situated:in) southern_europe +albania text(is:located:in) europe +albania text(is:a:neighbor:of) montenegro +albania text(is:a:neighboring:state:to) macedonia +albania text(was:a:neighboring:state:to) greece +kuwait text(was:located:in) western_asia +south_africa text(could:be:found:in) southern_africa +south_africa text(borders:with) mozambique +south_africa text(neighbors:withborders) swaziland +south_africa text(neighbors) namibia +south_africa text(is:butted:against) lesotho +haiti text(can:be:found:in) caribbean +haiti text(was:positioned:in) americas +haiti text(was:butted:against) dominican_republic +afghanistan text(is:positioned:in) southern_asia +afghanistan text(is:a:neighboring:country:of) turkmenistan +afghanistan text(was:a:neighboring:country:of) china +afghanistan text(was:a:neighbor:of) tajikistan +afghanistan text(is:a:neighbor:of) uzbekistan +afghanistan text(is:a:neighboring:state:to) iran +afghanistan text(was:a:neighboring:state:to) pakistan +singapore text(was:localized:in) south-eastern_asia +singapore text(is:localized:in) asia +benin text(was:present:in) western_africa +benin text(borders:with) niger +benin text(neighbors:withborders) togo +benin text(neighbors) nigeria +åland_islands text(is:present:in) northern_europe +åland_islands text(is:still:in) europe +croatia text(was:still:in) southern_europe +croatia text(is:butted:against) slovenia +croatia text(was:butted:against) bosnia_and_herzegovina +croatia text(is:a:neighboring:country:of) serbia +croatia text(was:a:neighboring:country:of) montenegro +sweden text(was:currently:in) northern_europe +sweden text(was:a:neighbor:of) finland +mexico text(is:a:neighbor:of) belize +mexico text(is:a:neighboring:state:to) guatemala +greenland text(is:currently:in) northern_america +greenland text(was:situated:in) americas +norfolk_island text(is:situated:in) australia_and_new_zealand +norfolk_island text(is:located:in) oceania +nepal text(was:located:in) southern_asia +nepal text(could:be:found:in) asia +nepal text(was:a:neighboring:state:to) china +nepal text(borders:with) india +guatemala text(neighbors:withborders) belize +guatemala text(neighbors) el_salvador +guatemala text(is:butted:against) mexico +guatemala text(was:butted:against) honduras +south_korea text(can:be:found:in) eastern_asia +south_korea text(is:a:neighboring:country:of) north_korea +moldova text(was:positioned:in) eastern_europe +moldova text(is:positioned:in) europe +moldova text(was:a:neighboring:country:of) ukraine +moldova text(was:a:neighbor:of) romania +mauritius text(was:localized:in) eastern_africa +mauritius text(is:localized:in) africa +belarus text(is:a:neighbor:of) ukraine +belarus text(is:a:neighboring:state:to) poland +belarus text(was:a:neighboring:state:to) lithuania +belarus text(borders:with) russia +belarus text(neighbors:withborders) latvia +bangladesh text(neighbors) india +malaysia text(was:present:in) south-eastern_asia +malaysia text(is:butted:against) brunei +bosnia_and_herzegovina text(is:present:in) southern_europe +bosnia_and_herzegovina text(was:butted:against) serbia +bosnia_and_herzegovina text(is:a:neighboring:country:of) croatia +bosnia_and_herzegovina text(was:a:neighboring:country:of) montenegro +luxembourg text(is:still:in) western_europe +luxembourg text(was:a:neighbor:of) belgium +luxembourg text(is:a:neighbor:of) france +italy text(was:still:in) southern_europe +italy text(was:currently:in) europe +italy text(is:a:neighboring:state:to) slovenia +italy text(was:a:neighboring:state:to) switzerland +italy text(borders:with) austria +italy text(neighbors:withborders) france +italy text(neighbors) vatican_city +italy text(is:butted:against) san_marino +azerbaijan text(is:currently:in) western_asia +azerbaijan text(was:butted:against) turkey +azerbaijan text(is:a:neighboring:country:of) armenia +azerbaijan text(was:a:neighboring:country:of) russia +azerbaijan text(was:a:neighbor:of) iran +azerbaijan text(is:a:neighbor:of) georgia +honduras text(was:situated:in) central_america +honduras text(is:a:neighboring:state:to) guatemala +honduras text(was:a:neighboring:state:to) el_salvador +mali text(is:situated:in) western_africa +mali text(borders:with) guinea +mali text(neighbors:withborders) mauritania +mali text(neighbors) niger +mali text(is:butted:against) senegal +mali text(was:butted:against) algeria +mali text(is:a:neighboring:country:of) ivory_coast +taiwan text(is:located:in) eastern_asia +taiwan text(was:located:in) asia +algeria text(could:be:found:in) northern_africa +algeria text(was:a:neighboring:country:of) libya +algeria text(was:a:neighbor:of) tunisia +algeria text(is:a:neighbor:of) mauritania +algeria text(is:a:neighboring:state:to) morocco +algeria text(was:a:neighboring:state:to) niger +algeria text(borders:with) mali +algeria text(neighbors:withborders) western_sahara +yemen text(can:be:found:in) western_asia +yemen text(neighbors) oman +puerto_rico text(was:positioned:in) caribbean +puerto_rico text(is:positioned:in) americas +saint_vincent_and_the_grenadines text(was:localized:in) caribbean +saint_vincent_and_the_grenadines text(is:localized:in) americas +grenada text(was:present:in) caribbean +grenada text(is:present:in) americas +tokelau text(is:still:in) polynesia +tokelau text(was:still:in) oceania +slovenia text(was:currently:in) southern_europe +slovenia text(is:butted:against) austria +slovenia text(was:butted:against) croatia +slovenia text(is:a:neighboring:country:of) italy +philippines text(is:currently:in) south-eastern_asia +philippines text(was:situated:in) asia +micronesia text(is:situated:in) micronesia +micronesia text(is:located:in) oceania +china text(was:located:in) eastern_asia +china text(was:a:neighboring:country:of) afghanistan +china text(was:a:neighbor:of) india +china text(is:a:neighbor:of) kyrgyzstan +china text(is:a:neighboring:state:to) tajikistan +china text(was:a:neighboring:state:to) laos +china text(borders:with) russia +china text(neighbors:withborders) north_korea +china text(neighbors) pakistan +china text(is:butted:against) hong_kong +china text(was:butted:against) vietnam +gabon text(could:be:found:in) middle_africa +gabon text(is:a:neighboring:country:of) equatorial_guinea +gabon text(was:a:neighboring:country:of) republic_of_the_congo +gabon text(was:a:neighbor:of) cameroon +united_states_minor_outlying_islands text(can:be:found:in) northern_america +united_states_minor_outlying_islands text(was:positioned:in) americas +andorra text(is:positioned:in) southern_europe +andorra text(is:a:neighbor:of) france +samoa text(was:localized:in) polynesia +samoa text(is:localized:in) oceania +gambia text(was:present:in) western_africa +gambia text(is:present:in) africa +gambia text(is:a:neighboring:state:to) senegal +palestine text(is:still:in) western_asia +palestine text(was:still:in) asia +palestine text(was:a:neighboring:state:to) israel +réunion text(was:currently:in) eastern_africa +réunion text(is:currently:in) africa +france text(was:situated:in) western_europe +france text(borders:with) luxembourg +france text(neighbors:withborders) italy +france text(neighbors) andorra +france text(is:butted:against) switzerland +france text(was:butted:against) belgium +lithuania text(is:situated:in) northern_europe +lithuania text(is:a:neighboring:country:of) poland +lithuania text(was:a:neighboring:country:of) latvia +lithuania text(was:a:neighbor:of) belarus +lithuania text(is:a:neighbor:of) russia +cayman_islands text(is:located:in) caribbean +cayman_islands text(was:located:in) americas +saint_lucia text(could:be:found:in) caribbean +saint_lucia text(can:be:found:in) americas +curaçao text(was:positioned:in) caribbean +curaçao text(is:positioned:in) americas +caribbean text(was:localized:in) americas +southern_asia text(is:localized:in) asia +middle_africa text(was:present:in) africa +northern_europe text(is:present:in) europe +southern_europe text(is:still:in) europe +western_asia text(was:still:in) asia +south_america text(was:currently:in) americas +polynesia text(is:currently:in) oceania +australia_and_new_zealand text(was:situated:in) oceania +western_europe text(is:situated:in) europe +eastern_africa text(is:located:in) africa +western_africa text(was:located:in) africa +eastern_europe text(could:be:found:in) europe +central_america text(can:be:found:in) americas +northern_america text(was:positioned:in) americas +south-eastern_asia text(is:positioned:in) asia +southern_africa text(was:localized:in) africa +eastern_asia text(is:localized:in) asia +northern_africa text(was:present:in) africa +melanesia text(is:present:in) oceania +micronesia text(is:still:in) oceania +central_asia text(was:still:in) asia +central_europe text(was:currently:in) europe +netherlands text(was:a:neighboring:country:of) germany +turkey text(was:a:neighbor:of) bulgaria +turkey text(is:a:neighbor:of) iraq +turkey text(is:a:neighboring:state:to) syria +angola text(was:a:neighboring:state:to) zambia +zambia text(is:positioned:in) eastern_africa +zambia text(borders:with) tanzania +zambia text(neighbors:withborders) mozambique +zambia text(neighbors) dr_congo +zambia text(is:butted:against) angola +zambia text(was:butted:against) botswana +zambia text(is:a:neighboring:country:of) zimbabwe +zambia text(was:a:neighboring:country:of) namibia +zambia text(was:a:neighbor:of) malawi +burundi text(is:a:neighbor:of) tanzania +central_african_republic text(is:a:neighboring:state:to) sudan +ivory_coast text(was:a:neighboring:state:to) burkina_faso +ivory_coast text(borders:with) ghana +poland text(neighbors:withborders) germany +poland text(neighbors) czechia +kazakhstan text(was:localized:in) central_asia +kazakhstan text(is:butted:against) turkmenistan +kazakhstan text(was:butted:against) china +kazakhstan text(is:a:neighboring:country:of) kyrgyzstan +kazakhstan text(was:a:neighboring:country:of) uzbekistan +kazakhstan text(was:a:neighbor:of) russia +uzbekistan text(is:a:neighbor:of) kazakhstan +serbia text(is:a:neighboring:state:to) kosovo +serbia text(was:a:neighboring:state:to) hungary +serbia text(borders:with) bulgaria +czechia text(is:localized:in) eastern_europe +czechia text(neighbors:withborders) germany +czechia text(neighbors) austria +czechia text(is:butted:against) poland +czechia text(was:butted:against) slovakia +nicaragua text(is:a:neighboring:country:of) honduras +nicaragua text(was:a:neighboring:country:of) costa_rica +canada text(was:a:neighbor:of) united_states +slovakia text(is:a:neighbor:of) hungary +slovakia text(is:a:neighboring:state:to) czechia +mozambique text(was:a:neighboring:state:to) tanzania +mozambique text(borders:with) zimbabwe +mozambique text(neighbors:withborders) zambia +colombia text(neighbors) ecuador +colombia text(is:butted:against) panama +colombia text(was:butted:against) venezuela +saudi_arabia text(is:a:neighboring:country:of) qatar +saudi_arabia text(was:a:neighboring:country:of) united_arab_emirates +saudi_arabia text(was:a:neighbor:of) jordan +saudi_arabia text(is:a:neighbor:of) yemen +saudi_arabia text(is:a:neighboring:state:to) oman +saudi_arabia text(was:a:neighboring:state:to) kuwait +saudi_arabia text(borders:with) iraq +namibia text(neighbors:withborders) zambia +namibia text(neighbors) botswana +guyana text(is:butted:against) brazil +guyana text(was:butted:against) suriname +guyana text(is:a:neighboring:country:of) venezuela +germany text(was:a:neighboring:country:of) denmark +germany text(was:a:neighbor:of) netherlands +germany text(is:a:neighbor:of) poland +germany text(is:a:neighboring:state:to) luxembourg +germany text(was:a:neighboring:state:to) belgium +germany text(borders:with) switzerland +germany text(neighbors:withborders) austria +germany text(neighbors) france +germany text(is:butted:against) czechia +burkina_faso text(was:butted:against) togo +burkina_faso text(is:a:neighboring:country:of) benin +burkina_faso text(was:a:neighboring:country:of) niger +burkina_faso text(was:a:neighbor:of) ghana +burkina_faso text(is:a:neighbor:of) mali +burkina_faso text(is:a:neighboring:state:to) ivory_coast +tanzania text(was:a:neighboring:state:to) uganda +tanzania text(borders:with) mozambique +tanzania text(neighbors:withborders) dr_congo +tanzania text(neighbors) kenya +tanzania text(is:butted:against) rwanda +tanzania text(was:butted:against) zambia +tanzania text(is:a:neighboring:country:of) malawi +tanzania text(was:a:neighboring:country:of) burundi +norway text(was:a:neighbor:of) sweden +norway text(is:a:neighbor:of) finland +norway text(is:a:neighboring:state:to) russia +laos text(was:a:neighboring:state:to) myanmar +laos text(borders:with) thailand +suriname text(was:present:in) south_america +suriname text(neighbors:withborders) brazil +suriname text(neighbors) french_guiana +suriname text(is:butted:against) guyana +egypt text(was:butted:against) libya +egypt text(is:a:neighboring:country:of) israel +egypt text(was:a:neighboring:country:of) sudan +bulgaria text(was:a:neighbor:of) macedonia +bulgaria text(is:a:neighbor:of) turkey +bulgaria text(is:a:neighboring:state:to) greece +bulgaria text(was:a:neighboring:state:to) serbia +bulgaria text(borders:with) romania +guinea text(neighbors:withborders) guinea-bissau +spain text(neighbors) morocco +spain text(is:butted:against) gibraltar +spain text(was:butted:against) andorra +spain text(is:a:neighboring:country:of) france +spain text(was:a:neighboring:country:of) portugal +costa_rica text(was:a:neighbor:of) panama +costa_rica text(is:a:neighbor:of) nicaragua +portugal text(is:a:neighboring:state:to) spain +romania text(was:a:neighboring:state:to) hungary +romania text(borders:with) bulgaria +myanmar text(neighbors:withborders) india +myanmar text(neighbors) bangladesh +myanmar text(is:butted:against) china +myanmar text(was:butted:against) laos +myanmar text(is:a:neighboring:country:of) thailand +iraq text(was:a:neighboring:country:of) turkey +iraq text(was:a:neighbor:of) saudi_arabia +iraq text(is:a:neighbor:of) iran +iraq text(is:a:neighboring:state:to) jordan +iraq text(was:a:neighboring:state:to) kuwait +iraq text(borders:with) syria +dr_congo text(neighbors:withborders) tanzania +dr_congo text(neighbors) zambia +kyrgyzstan text(is:butted:against) kazakhstan +botswana text(is:present:in) southern_africa +botswana text(was:butted:against) zimbabwe +botswana text(is:a:neighboring:country:of) namibia +botswana text(was:a:neighboring:country:of) zambia +botswana text(was:a:neighbor:of) south_africa +belgium text(is:a:neighbor:of) germany +qatar text(is:a:neighboring:state:to) saudi_arabia +syria text(is:still:in) western_asia +syria text(was:a:neighboring:state:to) israel +syria text(borders:with) turkey +syria text(neighbors:withborders) jordan +syria text(neighbors) lebanon +syria text(is:butted:against) iraq +india text(was:butted:against) bhutan +india text(is:a:neighboring:country:of) myanmar +morocco text(was:a:neighboring:country:of) spain +kenya text(was:a:neighbor:of) tanzania +south_sudan text(is:a:neighbor:of) sudan +ghana text(is:a:neighboring:state:to) burkina_faso +ghana text(was:a:neighboring:state:to) ivory_coast +ghana text(borders:with) togo +thailand text(neighbors:withborders) cambodia +thailand text(neighbors) myanmar +thailand text(is:butted:against) laos +thailand text(was:butted:against) malaysia +sudan text(is:a:neighboring:country:of) chad +sudan text(was:a:neighboring:country:of) libya +sudan text(was:a:neighbor:of) south_sudan +sudan text(is:a:neighbor:of) eritrea +sudan text(is:a:neighboring:state:to) central_african_republic +sudan text(was:a:neighboring:state:to) egypt +sudan text(borders:with) ethiopia +cambodia text(neighbors:withborders) thailand +zimbabwe text(neighbors) zambia +zimbabwe text(is:butted:against) south_africa +zimbabwe text(was:butted:against) botswana +zimbabwe text(is:a:neighboring:country:of) mozambique +lebanon text(was:a:neighboring:country:of) syria +sint_maarten text(was:a:neighbor:of) saint_martin +ethiopia text(is:a:neighbor:of) eritrea +ethiopia text(is:a:neighboring:state:to) djibouti +ethiopia text(was:a:neighboring:state:to) sudan +guinea-bissau text(was:still:in) western_africa +guinea-bissau text(was:currently:in) africa +guinea-bissau text(borders:with) guinea +guinea-bissau text(neighbors:withborders) senegal +libya text(neighbors) egypt +libya text(is:butted:against) sudan +bhutan text(is:currently:in) southern_asia +bhutan text(was:situated:in) asia +bhutan text(was:butted:against) china +bhutan text(is:a:neighboring:country:of) india +macau text(is:situated:in) eastern_asia +macau text(is:located:in) asia +macau text(was:a:neighboring:country:of) china +somalia text(was:a:neighbor:of) djibouti +russia text(is:a:neighbor:of) kazakhstan +russia text(is:a:neighboring:state:to) norway +russia text(was:a:neighboring:state:to) mongolia +panama text(was:located:in) central_america +panama text(could:be:found:in) americas +panama text(borders:with) costa_rica +panama text(neighbors:withborders) colombia +papua_new_guinea text(neighbors) indonesia +oman text(is:butted:against) saudi_arabia +israel text(was:butted:against) egypt +israel text(is:a:neighboring:country:of) jordan +israel text(was:a:neighboring:country:of) syria +togo text(was:a:neighbor:of) burkina_faso +togo text(is:a:neighbor:of) ghana +iran text(is:a:neighboring:state:to) iraq +saint_martin text(can:be:found:in) caribbean +saint_martin text(was:positioned:in) americas +saint_martin text(was:a:neighboring:state:to) sint_maarten +denmark text(borders:with) germany +kosovo text(is:positioned:in) eastern_europe +kosovo text(neighbors:withborders) serbia +kosovo text(neighbors) albania +kosovo text(is:butted:against) macedonia +kosovo text(was:butted:against) montenegro +eritrea text(is:a:neighboring:country:of) djibouti +eritrea text(was:a:neighboring:country:of) sudan +eritrea text(was:a:neighbor:of) ethiopia +niger text(is:a:neighbor:of) burkina_faso +rwanda text(is:a:neighboring:state:to) tanzania +united_arab_emirates text(was:a:neighboring:state:to) saudi_arabia +greece text(borders:with) bulgaria +senegal text(neighbors:withborders) guinea-bissau +monaco text(neighbors) france +djibouti text(is:butted:against) eritrea +djibouti text(was:butted:against) somalia +djibouti text(is:a:neighboring:country:of) ethiopia +indonesia text(was:a:neighboring:country:of) papua_new_guinea +indonesia text(was:a:neighbor:of) timor-leste +indonesia text(is:a:neighbor:of) malaysia +uganda text(is:a:neighboring:state:to) tanzania +macedonia text(was:a:neighboring:state:to) kosovo +macedonia text(borders:with) bulgaria +ecuador text(neighbors:withborders) peru +ecuador text(neighbors) colombia +brazil text(is:butted:against) french_guiana +brazil text(was:butted:against) suriname +brazil text(is:a:neighboring:country:of) venezuela +brazil text(was:a:neighboring:country:of) guyana +finland text(was:a:neighbor:of) norway +jordan text(is:a:neighbor:of) saudi_arabia +jordan text(is:a:neighboring:state:to) israel +jordan text(was:a:neighboring:state:to) iraq +jordan text(borders:with) syria +timor-leste text(neighbors:withborders) indonesia +montenegro text(neighbors) kosovo +peru text(is:butted:against) ecuador +ukraine text(was:butted:against) hungary +turkmenistan text(is:a:neighboring:country:of) kazakhstan +gibraltar text(was:a:neighboring:country:of) spain +switzerland text(was:a:neighbor:of) germany +austria text(is:a:neighbor:of) germany +austria text(is:a:neighboring:state:to) hungary +austria text(was:a:neighboring:state:to) czechia +hungary text(borders:with) ukraine +hungary text(neighbors:withborders) slovakia +hungary text(neighbors) slovenia +hungary text(is:butted:against) croatia +hungary text(was:butted:against) austria +hungary text(is:a:neighboring:country:of) serbia +hungary text(was:a:neighboring:country:of) romania +malawi text(was:a:neighbor:of) zambia +malawi text(is:a:neighbor:of) tanzania +albania text(is:a:neighboring:state:to) kosovo +kuwait text(was:a:neighboring:state:to) saudi_arabia +kuwait text(borders:with) iraq +south_africa text(neighbors:withborders) botswana +south_africa text(neighbors) zimbabwe +benin text(is:butted:against) burkina_faso +croatia text(was:butted:against) hungary +sweden text(is:a:neighboring:country:of) norway +mexico text(was:a:neighboring:country:of) united_states +bangladesh text(was:a:neighbor:of) myanmar +malaysia text(is:a:neighbor:of) thailand +malaysia text(is:a:neighboring:state:to) indonesia +luxembourg text(was:a:neighboring:state:to) germany +honduras text(borders:with) nicaragua +mali text(neighbors:withborders) burkina_faso +french_guiana text(neighbors) brazil +french_guiana text(is:butted:against) suriname +yemen text(was:butted:against) saudi_arabia +venezuela text(is:a:neighboring:country:of) brazil +venezuela text(was:a:neighboring:country:of) guyana +venezuela text(was:a:neighbor:of) colombia +united_states text(is:a:neighbor:of) canada +united_states text(is:a:neighboring:state:to) mexico +slovenia text(was:a:neighboring:state:to) hungary +china text(borders:with) bhutan +china text(neighbors:withborders) macau +china text(neighbors) kazakhstan +china text(is:butted:against) myanmar +china text(was:butted:against) mongolia +andorra text(is:a:neighboring:country:of) spain +palestine text(was:a:neighboring:country:of) jordan +palestine text(was:a:neighbor:of) egypt +france text(is:a:neighbor:of) germany +france text(is:a:neighboring:state:to) monaco +france text(was:a:neighboring:state:to) spain +mongolia text(was:localized:in) eastern_asia +mongolia text(is:localized:in) asia +mongolia text(borders:with) china +mongolia text(neighbors:withborders) russia \ No newline at end of file diff --git a/deepsoftlog/experiments/mentions_countries/dataset.py b/deepsoftlog/experiments/mentions_countries/dataset.py index 7d62d63..6a4bd66 100644 --- a/deepsoftlog/experiments/mentions_countries/dataset.py +++ b/deepsoftlog/experiments/mentions_countries/dataset.py @@ -11,54 +11,80 @@ _DATA_ROOT = str(Path(__file__).parent / "tmp") -def generate_tsvs(country_to_text: bool, relation_to_text: bool): +def get_entity_splits(): + base_path = Path(__file__).parent / 'data' / 'raw' + train_queries = load_tsv_file(base_path / 'train.tsv') + val_queries = load_tsv_file(base_path / 'val.tsv') + test_queries = load_tsv_file(base_path / 'test.tsv') + + return set([q[0] for q in train_queries]), set([q[0] for q in val_queries]).union(set([q[0] for q in test_queries])) + +def do_country_to_text(symbolic_facts, country_text_map): + for i, fact in enumerate(symbolic_facts): + text_1 = "text({})".format(country_text_map[fact[0]][0].replace(" ", ":")) + country_text_map[fact[0]] = np.roll(country_text_map[fact[0]], 1) + text_2 = "text({})".format(country_text_map[fact[2]][0].replace(" ", ":")) + country_text_map[fact[2]] = np.roll(country_text_map[fact[2]], 1) + + symbolic_facts[i] = (text_1, fact[1], text_2) + return symbolic_facts + +def do_relation_to_text(symbolic_facts, relation_text_map): + for i, fact in enumerate(symbolic_facts): + text_r = "text({})".format(relation_text_map[fact[1]][0].replace(" ", ":")) + relation_text_map[fact[1]] = np.roll(relation_text_map[fact[1]], 1) + + symbolic_facts[i] = (fact[0], text_r, fact[2]) + return symbolic_facts + +def generate_tsvs(country_to_text: bool, relation_to_text: bool, test_split: bool): base_path = Path(__file__).parent / 'data' / 'raw' country_entity_text = pd.read_csv(base_path / 'country2text.csv', dtype=str).set_index('Country') - country2text = {e[0]: np.random.permutation(e[2:]) for e in country_entity_text.itertuples()} - relation2text = { - 'locatedIn': ['is positioned in', 'was positioned in', 'can be found in', 'was located in', 'is located in', - 'is situated in', 'was situated in', 'can be found in', 'was placed in', 'is placed in', - 'is currently in', 'was currently in', 'was still in', 'is still in', 'is present in', - 'was present in', 'is localized in', 'was localized in', 'is sited in', 'was sited in'], - 'neighborOf': ['was a neighboring country of', 'is a neighboring country of', 'neighbors', 'is adjacent to', - 'was adjacent to', 'was butted against', 'is butted against', 'borders', 'borders with', - 'was a neighboring state to', 'is a neighboring state to', 'is a neighbor of', - 'was a neighbor of', 'neighbors with']} + country_text_map = {e[0]: np.random.permutation(e[2:]) for e in country_entity_text.itertuples()} + relation_text_map = { + 'locatedIn': (['is positioned in', 'was positioned in', + 'can be found in', 'could be found in', + 'was located in', 'is located in', + 'is situated in', 'was situated in', + 'is currently in', 'was currently in', + 'was still in', 'is still in', + 'is present in', 'was present in', + 'is localized in', 'was localized in',], + ['was placed in', 'is placed in', + 'is sited in', 'was sited in'], + ), + 'neighborOf': (['was a neighboring country of', 'is a neighboring country of', + 'was butted against', 'is butted against', + 'neighbors', 'neighbors with' + 'borders', 'borders with', + 'was a neighboring state to', 'is a neighboring state to', + 'is a neighbor of', 'was a neighbor of'], + ['is adjacent to', 'was adjacent to']) + } for task in ["S1", "S2", "S3"]: # load symbolic facts symbolic_facts = load_tsv_file(base_path / f"countries_{task}.tsv") - - for i, fact in enumerate(symbolic_facts): - if country2text: - text_1 = "text({})".format(country2text[fact[0]][0].replace(" ", ":")) - country2text[fact[0]] = np.roll(country2text[fact[0]], 1) - text_2 = "text({})".format(country2text[fact[2]][0].replace(" ", ":")) - country2text[fact[2]] = np.roll(country2text[fact[2]], 1) - else: - text_1 = fact[0] - text_2 = fact[2] - - if relation2text: - text_r = "text({})".format(relation2text[fact[1]][0].replace(" ", ":")) - relation2text[fact[1]] = np.roll(relation2text[fact[1]], 1) + if country_to_text: + symbolic_facts = do_country_to_text(symbolic_facts, country_text_map) + elif relation_to_text: + if test_split: + train_entities, test_entities = get_entity_splits() + test_facts = [s for s in symbolic_facts if s[0] in test_entities or s[2] in test_entities] + train_facts = [s for s in symbolic_facts if s not in test_facts] + symbolic_facts = (do_relation_to_text(train_facts, {k: v[0] for k,v in relation_text_map.items()}) + + do_relation_to_text(test_facts, {k: v[0] for k,v in relation_text_map.items()})) else: - text_r = fact[1] - - symbolic_facts[i] = (text_1, text_r, text_2) - + symbolic_facts = do_relation_to_text(symbolic_facts, {k: v[0] + v[1] for k,v in relation_text_map.items()}) with open(base_path / Path(f"countries_{task}" + ('_country2text' if country_to_text else '') + ( - '_relation2text' if relation_to_text else '') + ".tsv"), "w") as f: + '_relation2text' if relation_to_text else '') + ('_traintest' if test_split else '') + ".tsv"), "w") as f: f.write("\n".join(["\t".join(fact) for fact in symbolic_facts])) - def get_train_dataloader(cfg: dict): - train_dataset = MentionsCountriesDataset("train").subset(cfg['data_subset']) - train_dataset = train_dataset.mutate_all_output() + train_dataset = MentionsCountriesDataset("train").mutate_all_output() return DataLoader(train_dataset, batch_size=cfg['batch_size'], shuffle=True, seed=cfg['seed']) - def get_test_dataloader(): regions = ["africa", "americas", "asia", "europe", "oceania"] domain = {-1: [SoftTerm(Constant(r)) for r in regions]} @@ -81,7 +107,7 @@ def __init__(self, split_name: str = "val"): def generate_prolog_files(): base_path = Path(__file__).parent / 'data' (base_path / 'tmp').mkdir(exist_ok=True) - for setting in ['', '_country2text', '_relation2text', '_country2text_relation2text']: + for setting in ['', '_relation2text', '_relation2text_traintest']: for problem in (f'S{i}' for i in range(1,4)): data = load_tsv_file(base_path / f"raw/countries_{problem}{setting}.tsv") data = data_to_prolog(data, name="countries") @@ -94,6 +120,8 @@ def generate_prolog_files(): f.write(templates) if __name__ == "__main__": + generate_tsvs(country_to_text=False, relation_to_text=True, test_split=False) + generate_tsvs(country_to_text=False, relation_to_text=True, test_split=True) d = MentionsCountriesDataset() print(d) generate_prolog_files() \ No newline at end of file diff --git a/deepsoftlog/experiments/mentions_countries/mentions_countries.py b/deepsoftlog/experiments/mentions_countries/mentions_countries.py index c557257..c413b3c 100644 --- a/deepsoftlog/experiments/mentions_countries/mentions_countries.py +++ b/deepsoftlog/experiments/mentions_countries/mentions_countries.py @@ -64,4 +64,4 @@ def eval(folder: str): if __name__ == "__main__": - train("deepsoftlog/experiments/mentions_countries/config.yaml", 'test', 0, 'deepsoftlog/experiments/mentions_countries/data/tmp/countries_S1_relation2text.pl', 'LM') \ No newline at end of file + train("deepsoftlog/experiments/mentions_countries/config.yaml", 'test', 0, 'deepsoftlog/experiments/mentions_countries/data/tmp/countries_S1_relation2text.pl', 'boe') \ No newline at end of file From f9a1b7189566dbc096a9a705e526d365d1b9afcc Mon Sep 17 00:00:00 2001 From: RikA3 Date: Tue, 7 Oct 2025 09:19:47 +0200 Subject: [PATCH 12/15] fix detach loss before saving --- deepsoftlog/training/trainer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deepsoftlog/training/trainer.py b/deepsoftlog/training/trainer.py index ef820aa..ecc0135 100644 --- a/deepsoftlog/training/trainer.py +++ b/deepsoftlog/training/trainer.py @@ -151,7 +151,7 @@ def _eval_queries(self, queries: Iterable[Query]): def get_loss(self, queries: Iterable[Query]) -> tuple[float, float, float, float]: results, proof_steps, nb_proofs = tuple(zip(*self._query(queries))) - losses = [self.criterion(result, query.p) for result, query in zip(results, queries)] + losses = [self.criterion(result, query.p).detach() for result, query in zip(results, queries)] loss = torch.stack(losses).mean() errors = [query.error_with(result) for result, query in zip(results, queries)] if loss.requires_grad: From 4f8ebc1ee31d9a295de5cb78f07618a21cae92f6 Mon Sep 17 00:00:00 2001 From: RikA3 Date: Mon, 13 Oct 2025 16:21:18 +0200 Subject: [PATCH 13/15] Revert "change mentions_countries: different mentions set for test entities" This reverts commit c77079d42e5673747acb9c84f93108bf673af442. --- .../data/raw/countries_S1_country2text.tsv | 1111 +++++++++ ...ountries_S1_country2text_relation2text.tsv | 1111 +++++++++ .../data/raw/countries_S1_relation2text.tsv | 1894 +++++++-------- .../countries_S1_relation2text_traintest.tsv | 1111 --------- .../data/raw/countries_S2_country2text.tsv | 1063 +++++++++ ...ountries_S2_country2text_relation2text.tsv | 1063 +++++++++ .../data/raw/countries_S2_relation2text.tsv | 2034 ++++++++--------- .../countries_S2_relation2text_traintest.tsv | 1063 --------- .../data/raw/countries_S3_country2text.tsv | 979 ++++++++ ...ountries_S3_country2text_relation2text.tsv | 979 ++++++++ .../data/raw/countries_S3_relation2text.tsv | 1616 ++++++------- .../countries_S3_relation2text_traintest.tsv | 979 -------- .../experiments/mentions_countries/dataset.py | 98 +- .../mentions_countries/mentions_countries.py | 2 +- 14 files changed, 9114 insertions(+), 5989 deletions(-) create mode 100644 deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_country2text.tsv create mode 100644 deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_country2text_relation2text.tsv delete mode 100644 deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_relation2text_traintest.tsv create mode 100644 deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_country2text.tsv create mode 100644 deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_country2text_relation2text.tsv delete mode 100644 deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_relation2text_traintest.tsv create mode 100644 deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_country2text.tsv create mode 100644 deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_country2text_relation2text.tsv delete mode 100644 deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_relation2text_traintest.tsv diff --git a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_country2text.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_country2text.tsv new file mode 100644 index 0000000..61ad124 --- /dev/null +++ b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_country2text.tsv @@ -0,0 +1,1111 @@ +text(पलाउ) locatedIn text(Micronesië) +text(Palaos) locatedIn text(Oceania) +text(Maldives) locatedIn text(Asia:del:Sur) +text(Malediven) locatedIn text(Asia) +text(Brunei) locatedIn text(Sudeste:Asiático) +text(汶莱) locatedIn text(亞洲) +text(ब्रुनेई) neighborOf text(Malasia) +text(जापान) locatedIn text(Oost-Azië) +text(اليابان) locatedIn text(آسيا) +text(荷蘭) locatedIn text(西欧) +text(Netherlands) neighborOf text(Germany) +text(هولندا) neighborOf text(Belgium) +text(Turquía) locatedIn text(पश्चिमी:एशिया) +text(Turkey) neighborOf text(亞美尼亞) +text(तुर्की) neighborOf text(أذربيجان) +text(Turkije) neighborOf text(ईरान) +text(土耳其) neighborOf text(希腊) +text(تركيا) neighborOf text(格鲁吉亚) +text(Turquía) neighborOf text(Bulgarije) +text(Turkey) neighborOf text(Iraq) +text(तुर्की) neighborOf text(Syrië) +text(أنغولا) locatedIn text(Central:Africa) +text(Angola) locatedIn text(अफ्रीका) +text(अंगोला) neighborOf text(कांगो:लोकतान्त्रिक:गणराज्य) +text(Angola) neighborOf text(纳米比亚) +text(Angola) neighborOf text(贊比亞) +text(安哥拉) neighborOf text(剛果共和國) +text(Armenia) locatedIn text(Zuidwest-Azië) +text(أرمينيا) locatedIn text(एशिया) +text(Armenië) neighborOf text(Georgia) +text(Armenia) neighborOf text(Azerbeidzjan) +text(आर्मीनिया) neighborOf text(Irán) +text(亞美尼亞) neighborOf text(Turkije) +text(अण्टीगुआ:और:बारबूडा) locatedIn text(Caribe) +text(Antigua:y:Barbuda) locatedIn text(美洲) +text(Esuatini) locatedIn text(إفريقيا:الجنوبية) +text(Swaziland) locatedIn text(非洲) +text(एस्वातीनी) neighborOf text(Zuid-Afrika) +text(Eswatini) neighborOf text(Mozambique) +text(Wallis:and:Futuna) locatedIn text(पोलीनेशिया) +text(वालिस:और:फ़्यूचूना) locatedIn text(Oceanië) +text(उरुग्वे) locatedIn text(América:del:Sur) +text(Uruguay) locatedIn text(महाअमेरिका) +text(Uruguay) neighborOf text(阿根廷) +text(Uruguay) neighborOf text(ब्राज़ील) +text(Zambia) locatedIn text(东部非洲) +text(Zambia) locatedIn text(إفريقيا) +text(زامبيا) neighborOf text(تنزانيا) +text(ज़ाम्बिया) neighborOf text(موزمبيق) +text(Zambia) neighborOf text(República:Democrática:del:Congo) +text(贊比亞) neighborOf text(أنغولا) +text(Zambia) neighborOf text(بوتسوانا) +text(Zambia) neighborOf text(زيمبابوي) +text(زامبيا) neighborOf text(Namibia) +text(ज़ाम्बिया) neighborOf text(馬拉威) +text(塞浦路斯) locatedIn text(पूर्वी:यूरोप) +text(Chipre) locatedIn text(أوروبا) +text(Cyprus) neighborOf text(英国) +text(Reino:Unido) locatedIn text(Northern:Europe) +text(英国) locatedIn text(欧洲) +text(Verenigd:Koninkrijk) neighborOf text(Verenigd:Koninkrijk) +text(蒲隆地) locatedIn text(África:Oriental) +text(Burundi) locatedIn text(Africa) +text(बुरुण्डी) neighborOf text(Congo-Kinshasa) +text(Burundi) neighborOf text(卢旺达) +text(Burundi) neighborOf text(Tanzania) +text(República:Centroafricana) locatedIn text(मध्य:अफ्रीका) +text(मध्य:अफ़्रीकी:गणराज्य) locatedIn text(África) +text(中非共和國) neighborOf text(Tsjaad) +text(جمهورية:إفريقيا:الوسطى) neighborOf text(Congo-Brazzaville) +text(Central:African:Republic) neighborOf text(Democratic:Republic:of:the:Congo) +text(Centraal-Afrikaanse:Republiek) neighborOf text(दक्षिण:सूडान) +text(República:Centroafricana) neighborOf text(Kameroen) +text(मध्य:अफ़्रीकी:गणराज्य) neighborOf text(सूडान) +text(Tonga) locatedIn text(玻里尼西亞) +text(टोंगा) locatedIn text(大洋洲) +text(कोत:दिव्वार) locatedIn text(غرب:إفريقيا) +text(科特迪瓦) locatedIn text(Afrika) +text(Ivoorkust) neighborOf text(布吉納法索) +text(Costa:de:Marfil) neighborOf text(Ghana) +text(Ivory:Coast) neighborOf text(Liberia) +text(ساحل:العاج) neighborOf text(Mali) +text(कोत:दिव्वार) neighborOf text(गिनी) +text(سيراليون) locatedIn text(पश्चिमी:अफ्रीका) +text(Sierra:Leone) neighborOf text(Liberia) +text(Sierra:Leone) neighborOf text(Guinee) +text(مايوت) locatedIn text(पूर्वी:अफ्रीका) +text(Mayotte) locatedIn text(अफ्रीका) +text(波蘭) locatedIn text(Oost-Europa) +text(Poland) neighborOf text(ألمانيا) +text(पोलैंड) neighborOf text(Ucrania) +text(بولندا) neighborOf text(स्लोवाकिया) +text(Polonia) neighborOf text(Belarus) +text(Polen) neighborOf text(Russia) +text(波蘭) neighborOf text(立陶宛) +text(Poland) neighborOf text(चेक:गणराज्य) +text(कज़ाख़िस्तान) locatedIn text(Centraal-Azië) +text(Kazachstan) locatedIn text(Azië) +text(Kazajistán) neighborOf text(तुर्कमेनिस्तान) +text(哈萨克斯坦) neighborOf text(República:Popular:China) +text(Kazakhstan) neighborOf text(Kyrgyzstan) +text(كازاخستان) neighborOf text(उज़्बेकिस्तान) +text(कज़ाख़िस्तान) neighborOf text(रूस) +text(Uzbekistan) locatedIn text(中亚) +text(أوزبكستان) locatedIn text(Asia) +text(乌兹别克斯坦) neighborOf text(أفغانستان) +text(Uzbekistán) neighborOf text(Turkmenistán) +text(Oezbekistan) neighborOf text(Kazachstan) +text(उज़्बेकिस्तान) neighborOf text(किर्गिज़स्तान) +text(Uzbekistan) neighborOf text(塔吉克斯坦) +text(तुर्क:और:केकोस:द्वीपसमूह) locatedIn text(الكاريبي) +text(Turks-:en:Caicoseilanden) locatedIn text(Amerika) +text(Nueva:Caledonia) locatedIn text(Melanesia) +text(كاليدونيا:الجديدة) locatedIn text(أوقيانوسيا) +text(पाकिस्तान) locatedIn text(Zuid-Azië) +text(Pakistan) neighborOf text(चीनी:जनवादी:गणराज्य) +text(باكستان) neighborOf text(阿富汗) +text(巴基斯坦) neighborOf text(伊朗) +text(Pakistan) neighborOf text(भारत) +text(अर्जेण्टीना) locatedIn text(दक्षिण:अमेरिका) +text(Argentinië) locatedIn text(América) +text(الأرجنتين) neighborOf text(Bolivia) +text(Argentina) neighborOf text(Chile) +text(Argentina) neighborOf text(البرازيل) +text(阿根廷) neighborOf text(巴拉圭) +text(अर्जेण्टीना) neighborOf text(烏拉圭) +text(Cuba) locatedIn text(加勒比地区) +text(Cuba) locatedIn text(Americas) +text(Servië) locatedIn text(Europa:del:Sur) +text(सर्बिया) neighborOf text(Macedonia:del:Norte) +text(Serbia) neighborOf text(मॉन्टेनीग्रो) +text(صربيا) neighborOf text(Kosovo) +text(Serbia) neighborOf text(Bosnië:en:Herzegovina) +text(塞爾維亞) neighborOf text(क्रोएशिया) +text(Servië) neighborOf text(المجر) +text(सर्बिया) neighborOf text(बुल्गारिया) +text(Serbia) neighborOf text(Romania) +text(捷克) locatedIn text(Eastern:Europe) +text(Czech:Republic) locatedIn text(Europa) +text(Tsjechië) neighborOf text(德國) +text(جمهورية:التشيك) neighborOf text(ऑस्ट्रिया) +text(República:Checa) neighborOf text(पोलैंड) +text(चेक:गणराज्य) neighborOf text(سلوفاكيا) +text(निकारागुआ) locatedIn text(中美洲) +text(Nicaragua) neighborOf text(Honduras) +text(尼加拉瓜) neighborOf text(Costa:Rica) +text(فيتنام) locatedIn text(दक्षिण:पूर्व:एशिया) +text(वियतनाम) locatedIn text(Asia) +text(Vietnam) neighborOf text(Cambodja) +text(Vietnam) neighborOf text(Laos) +text(Vietnam) neighborOf text(Volksrepubliek:China) +text(紐埃) locatedIn text(Polynesië) +text(Niue) locatedIn text(Oceanía) +text(Canada) locatedIn text(North:America) +text(Canada) locatedIn text(أمريكتان) +text(कनाडा) neighborOf text(संयुक्त:राज्य:अमेरिका) +text(Slowakije) locatedIn text(मध्य:यूरोप) +text(Slovakia) neighborOf text(烏克蘭) +text(Eslovaquia) neighborOf text(بولندا) +text(斯洛伐克) neighborOf text(奧地利) +text(स्लोवाकिया) neighborOf text(Hungary) +text(سلوفاكيا) neighborOf text(捷克) +text(Mozambique) locatedIn text(East:Africa) +text(Mozambique) neighborOf text(Tanzania) +text(मोज़ाम्बीक) neighborOf text(斯威士兰) +text(莫桑比克) neighborOf text(津巴布韦) +text(Mozambique) neighborOf text(Zambia) +text(موزمبيق) neighborOf text(مالاوي) +text(Mozambique) neighborOf text(South:Africa) +text(Aruba) locatedIn text(कैरिबिया) +text(阿魯巴) locatedIn text(美洲) +text(Bolivia) locatedIn text(Zuid-Amerika) +text(Bolivia) locatedIn text(महाअमेरिका) +text(बोलिविया) neighborOf text(Chili) +text(بوليفيا) neighborOf text(Brasil) +text(玻利維亞) neighborOf text(पैराग्वे) +text(Bolivia) neighborOf text(Argentinië) +text(Bolivia) neighborOf text(Perú) +text(Colombia) locatedIn text(South:America) +text(哥伦比亚) locatedIn text(Amerika) +text(Colombia) neighborOf text(الإكوادور) +text(कोलम्बिया) neighborOf text(Brazil) +text(كولومبيا) neighborOf text(Panama) +text(Colombia) neighborOf text(Venezuela) +text(Colombia) neighborOf text(بيرو) +text(فيجي) locatedIn text(Melanesia) +text(Fiyi) locatedIn text(ओशिआनिया) +text(Republic:of:the:Congo) locatedIn text(中部非洲) +text(कांगो:गणराज्य) neighborOf text(Gabon) +text(República:del:Congo) neighborOf text(刚果民主共和国) +text(جمهورية:الكونغو) neighborOf text(Angola) +text(剛果共和國) neighborOf text(Cameroon) +text(Congo-Brazzaville) neighborOf text(中非共和國) +text(सउदी:अरब) locatedIn text(Asia:Occidental) +text(Saudi:Arabia) neighborOf text(卡塔尔) +text(Saoedi-Arabië) neighborOf text(संयुक्त:अरब:अमीरात) +text(Arabia:Saudí) neighborOf text(जॉर्डन) +text(沙特阿拉伯) neighborOf text(اليمن) +text(السعودية) neighborOf text(ओमान) +text(सउदी:अरब) neighborOf text(科威特) +text(Saudi:Arabia) neighborOf text(Irak) +text(El:Salvador) locatedIn text(केंद्रीय:अमेरिका) +text(अल:साल्वाडोर) locatedIn text(América) +text(السلفادور) neighborOf text(Guatemala) +text(薩爾瓦多) neighborOf text(हॉण्डुरस) +text(مدغشقر) locatedIn text(شرق:إفريقيا) +text(馬達加斯加) locatedIn text(非洲) +text(أستراليا) locatedIn text(nan) +text(ऑस्ट्रेलिया) locatedIn text(Oceania) +text(Namibia) locatedIn text(Zuidelijk:Afrika) +text(ناميبيا) locatedIn text(إفريقيا) +text(नामीबिया) neighborOf text(贊比亞) +text(Namibië) neighborOf text(अंगोला) +text(纳米比亚) neighborOf text(Sudáfrica) +text(Namibia) neighborOf text(Botswana) +text(توفالو) locatedIn text(Polinesia) +text(Tuvalu) locatedIn text(Oceanië) +text(nan) locatedIn text(उत्तरी:यूरोप) +text(Svalbard:y:Jan:Mayen) locatedIn text(यूरोप) +text(Isle:of:Man) locatedIn text(Noord-Europa) +text(Isla:de:Man) locatedIn text(Europe) +text(गयाना) locatedIn text(أمريكا:الجنوبية) +text(圭亚那) neighborOf text(巴西) +text(Guyana) neighborOf text(सूरीनाम) +text(غيانا) neighborOf text(فنزويلا) +text(Vaticaanstad) locatedIn text(南欧) +text(Ciudad:del:Vaticano) locatedIn text(Europa) +text(الفاتيكان) neighborOf text(Italy) +text(英屬印度洋領地) locatedIn text(Oost-Afrika) +text(Brits:Indische:Oceaanterritorium) locatedIn text(Africa) +text(نيجيريا) locatedIn text(West:Africa) +text(Nigeria) locatedIn text(África) +text(Nigeria) neighborOf text(Chad) +text(Nigeria) neighborOf text(Niger) +text(नाइजीरिया) neighborOf text(Camerún) +text(奈及利亞) neighborOf text(Benin) +text(जर्मनी) locatedIn text(पश्चिमी:यूरोप) +text(Duitsland) neighborOf text(डेनमार्क) +text(Alemania) neighborOf text(Nederland) +text(Germany) neighborOf text(Polonia) +text(ألمانيا) neighborOf text(लक्ज़मबर्ग) +text(德國) neighborOf text(比利時) +text(जर्मनी) neighborOf text(Suiza) +text(Duitsland) neighborOf text(Austria) +text(Alemania) neighborOf text(France) +text(Germany) neighborOf text(Czech:Republic) +text(Burkina:Faso) locatedIn text(西非) +text(Burkina:Faso) neighborOf text(टोगो) +text(بوركينا:فاسو) neighborOf text(Benín) +text(Burkina:Faso) neighborOf text(Niger) +text(बुर्किना:फासो) neighborOf text(घाना) +text(布吉納法索) neighborOf text(Mali) +text(Burkina:Faso) neighborOf text(科特迪瓦) +text(तंज़ानिया) locatedIn text(东部非洲) +text(坦桑尼亞) neighborOf text(Uganda) +text(Tanzania) neighborOf text(Mozambique) +text(تنزانيا) neighborOf text(جمهورية:الكونغو:الديمقراطية) +text(Tanzania) neighborOf text(Kenia) +text(Tanzania) neighborOf text(Rwanda) +text(तंज़ानिया) neighborOf text(Zambia) +text(坦桑尼亞) neighborOf text(Malawi) +text(Tanzania) neighborOf text(بوروندي) +text(Islas:Marianas:del:Norte) locatedIn text(密克羅尼西亞群島) +text(جزر:ماريانا:الشمالية) locatedIn text(大洋洲) +text(Belize) locatedIn text(Central:America) +text(बेलीज़) locatedIn text(Americas) +text(Belice) neighborOf text(危地马拉) +text(بليز) neighborOf text(المكسيك) +text(Noruega) locatedIn text(Europa:del:Norte) +text(नॉर्वे) neighborOf text(Zweden) +text(النرويج) neighborOf text(芬蘭) +text(Noorwegen) neighborOf text(俄罗斯) +text(Cocoseilanden) locatedIn text(nan) +text(Cocos:(Keeling):Islands) locatedIn text(أوقيانوسيا) +text(Laos) locatedIn text(Zuidoost-Azië) +text(लाओस) locatedIn text(亞洲) +text(Laos) neighborOf text(People's:Republic:of:China) +text(لاوس) neighborOf text(كمبوديا) +text(老撾) neighborOf text(Myanmar) +text(Laos) neighborOf text(越南) +text(Laos) neighborOf text(تايلاند) +text(सहरावी:अरब:जनतांत्रिक:गणराज्य) locatedIn text(North:Africa) +text(撒拉威阿拉伯民主共和國) locatedIn text(Afrika) +text(Sahrawi:Arabische:Democratische:Republiek) neighborOf text(Algeria) +text(الجمهورية:العربية:الصحراوية:الديمقراطية) neighborOf text(Mauritania) +text(Sahrawi:Arab:Democratic:Republic) neighborOf text(Marokko) +text(Suriname) locatedIn text(南美洲) +text(Surinam) locatedIn text(أمريكتان) +text(蘇利南) neighborOf text(Brazilië) +text(سورينام) neighborOf text(Frans-Guyana) +text(Suriname) neighborOf text(Guyana) +text(聖誕島) locatedIn text(Australië:en:Nieuw-Zeeland) +text(Christmaseiland) locatedIn text(Oceanía) +text(साओ:तोमे:और:प्रिन्सिपी) locatedIn text(Centraal-Afrika) +text(Santo:Tomé:y:Príncipe) locatedIn text(अफ्रीका) +text(مصر) locatedIn text(उत्तर:अफ़्रीका) +text(Egypt) neighborOf text(利比亞) +text(मिस्र) neighborOf text(以色列) +text(Egipto) neighborOf text(苏丹) +text(بلغاريا) locatedIn text(东欧) +text(保加利亚) neighborOf text(北马其顿) +text(Bulgaria) neighborOf text(土耳其) +text(Bulgaria) neighborOf text(اليونان) +text(Bulgarije) neighborOf text(صربيا) +text(बुल्गारिया) neighborOf text(羅馬尼亞) +text(几内亚) locatedIn text(África:Occidental) +text(Guinea) locatedIn text(非洲) +text(غينيا) neighborOf text(غينيا:بيساو) +text(Guinea) neighborOf text(Sierra:Leona) +text(गिनी) neighborOf text(مالي) +text(Guinee) neighborOf text(लाइबेरिया) +text(几内亚) neighborOf text(Senegal) +text(Guinea) neighborOf text(Ivoorkust) +text(स्पेन) locatedIn text(أوروبا:الجنوبية) +text(西班牙) neighborOf text(Marruecos) +text(Spain) neighborOf text(जिब्राल्टर) +text(Spanje) neighborOf text(Andorra) +text(إسبانيا) neighborOf text(Francia) +text(España) neighborOf text(البرتغال) +text(كوستاريكا) locatedIn text(أمريكا:الوسطى) +text(Costa:Rica) locatedIn text(美洲) +text(哥斯达黎加) neighborOf text(بنما) +text(Costa:Rica) neighborOf text(نيكاراغوا) +text(माल्टा) locatedIn text(दक्षिणी:यूरोप) +text(Malta) locatedIn text(أوروبا) +text(Portugal) locatedIn text(Southern:Europe) +text(Portugal) locatedIn text(欧洲) +text(Portugal) neighborOf text(स्पेन) +text(Roemenië) locatedIn text(أوروبا:الشرقية) +text(رومانيا) locatedIn text(Europa) +text(रोमानिया) neighborOf text(युक्रेन) +text(Rumania) neighborOf text(匈牙利) +text(Romania) neighborOf text(मोल्डोवा) +text(羅馬尼亞) neighborOf text(بلغاريا) +text(Roemenië) neighborOf text(Serbia) +text(سان:مارينو) locatedIn text(Zuid-Europa) +text(圣马力诺) locatedIn text(यूरोप) +text(San:Marino) neighborOf text(إيطاليا) +text(موريتانيا) locatedIn text(West-Afrika) +text(मॉरीतानिया) locatedIn text(إفريقيا) +text(Mauritanië) neighborOf text(阿爾及利亞) +text(毛里塔尼亞) neighborOf text(Mali) +text(Mauritania) neighborOf text(República:Árabe:Saharaui:Democrática) +text(Mauritania) neighborOf text(Senegal) +text(Trinidad:y:Tobago) locatedIn text(Caribbean) +text(Trinidad:en:Tobago) locatedIn text(महाअमेरिका) +text(Baréin) locatedIn text(西亚) +text(Bahrain) locatedIn text(آسيا) +text(म्यान्मार) locatedIn text(东南亚) +text(Myanmar) neighborOf text(印度) +text(ميانمار) neighborOf text(Bangladesh) +text(緬甸) neighborOf text(中华人民共和国) +text(Birmania) neighborOf text(लाओस) +text(Myanmar) neighborOf text(Thailand) +text(العراق) locatedIn text(West:Asia) +text(इराक) neighborOf text(تركيا) +text(Irak) neighborOf text(Saoedi-Arabië) +text(伊拉克) neighborOf text(Iran) +text(Iraq) neighborOf text(Jordan) +text(Irak) neighborOf text(Kuwait) +text(العراق) neighborOf text(Syria) +text(南乔治亚和南桑威奇群岛) locatedIn text(América:del:Sur) +text(Zuid-Georgia:en:de:Zuidelijke:Sandwicheilanden) locatedIn text(Amerika) +text(آيسلندا) locatedIn text(北歐) +text(Islandia) locatedIn text(Europe) +text(कांगो:लोकतान्त्रिक:गणराज्य) locatedIn text(África:Central) +text(República:Democrática:del:Congo) locatedIn text(Africa) +text(Congo-Kinshasa) neighborOf text(Uganda) +text(Democratic:Republic:of:the:Congo) neighborOf text(تنزانيا) +text(刚果民主共和国) neighborOf text(Republic:of:the:Congo) +text(جمهورية:الكونغو:الديمقراطية) neighborOf text(جمهورية:إفريقيا:الوسطى) +text(कांगो:लोकतान्त्रिक:गणराज्य) neighborOf text(Angola) +text(República:Democrática:del:Congo) neighborOf text(रवाण्डा) +text(Congo-Kinshasa) neighborOf text(Sudán:del:Sur) +text(Democratic:Republic:of:the:Congo) neighborOf text(Zambia) +text(刚果民主共和国) neighborOf text(蒲隆地) +text(Seychellen) locatedIn text(África:Oriental) +text(Seychelles) locatedIn text(África) +text(Kirgizië) locatedIn text(मध्य:एशिया) +text(Kirguistán) neighborOf text(الصين) +text(吉尔吉斯斯坦) neighborOf text(Kazajistán) +text(قرغيزستان) neighborOf text(Tajikistan) +text(Kyrgyzstan) neighborOf text(أوزبكستان) +text(波札那) locatedIn text(Southern:Africa) +text(Botsuana) locatedIn text(Afrika) +text(Botswana) neighborOf text(ज़िम्बाब्वे) +text(बोत्सवाना) neighborOf text(Namibia) +text(بوتسوانا) neighborOf text(زامبيا) +text(Botswana) neighborOf text(جنوب:إفريقيا) +text(جزر:فارو) locatedIn text(أوروبا:الشمالية) +text(Faeröer) locatedIn text(Europa) +text(Jamaica) locatedIn text(Caraïben) +text(Jamaica) locatedIn text(América) +text(ساموا:الأمريكية) locatedIn text(Polynesia) +text(Amerikaans-Samoa) locatedIn text(ओशिआनिया) +text(लेसोथो) locatedIn text(दक्षिणी:अफ्रीका) +text(Lesotho) locatedIn text(अफ्रीका) +text(ليسوتو) neighborOf text(南非) +text(سريلانكا) locatedIn text(جنوب:آسيا) +text(श्रीलंका) neighborOf text(India) +text(बेल्जियम) locatedIn text(West-Europa) +text(Bélgica) locatedIn text(أوروبا) +text(بلجيكا) neighborOf text(ألمانيا) +text(België) neighborOf text(卢森堡) +text(Belgium) neighborOf text(فرنسا) +text(比利時) neighborOf text(नीदरलैण्ड) +text(Qatar) locatedIn text(غرب:آسيا) +text(Catar) locatedIn text(एशिया) +text(क़तर) neighborOf text(Arabia:Saudí) +text(جزر:سليمان) locatedIn text(ميلانيزيا) +text(Solomon:Islands) locatedIn text(Oceania) +text(敘利亞) locatedIn text(पश्चिमी:एशिया) +text(سوريا) locatedIn text(Azië) +text(सीरिया) neighborOf text(Israel) +text(Siria) neighborOf text(Turquía) +text(Syrië) neighborOf text(Jordania) +text(Syria) neighborOf text(黎巴嫩) +text(敘利亞) neighborOf text(इराक) +text(India) locatedIn text(दक्षिण:एशिया) +text(الهند) locatedIn text(Asia) +text(India) neighborOf text(अफ़्ग़ानिस्तान) +text(भारत) neighborOf text(Bhutan) +text(印度) neighborOf text(बांग्लादेश) +text(India) neighborOf text(República:Popular:China) +text(India) neighborOf text(尼泊爾) +text(الهند) neighborOf text(म्यान्मार) +text(India) neighborOf text(Pakistán) +text(भारत) neighborOf text(Sri:Lanka) +text(Morocco) locatedIn text(Norte:de:África) +text(المغرب) neighborOf text(Argelia) +text(मोरक्को) neighborOf text(西班牙) +text(摩洛哥) neighborOf text(सहरावी:अरब:जनतांत्रिक:गणराज्य) +text(Kenia) locatedIn text(पूर्वी:अफ्रीका) +text(Kenya) locatedIn text(非洲) +text(कीनिया) neighborOf text(أوغندا) +text(肯尼亚) neighborOf text(Tanzania) +text(كينيا) neighborOf text(الصومال) +text(Kenia) neighborOf text(南蘇丹) +text(Kenia) neighborOf text(埃塞俄比亚) +text(Zuid-Soedan) locatedIn text(وسط:إفريقيا) +text(جنوب:السودان) locatedIn text(إفريقيا) +text(South:Sudan) neighborOf text(Oeganda) +text(दक्षिण:सूडान) neighborOf text(جمهورية:الكونغو:الديمقراطية) +text(Sudán:del:Sur) neighborOf text(Kenya) +text(南蘇丹) neighborOf text(Central:African:Republic) +text(Zuid-Soedan) neighborOf text(Soedan) +text(جنوب:السودان) neighborOf text(इथियोपिया) +text(Ghana) locatedIn text(غرب:إفريقيا) +text(Ghana) neighborOf text(Burkina:Faso) +text(迦納) neighborOf text(Costa:de:Marfil) +text(غانا) neighborOf text(توغو) +text(Tadzjikistan) locatedIn text(Asia:Central) +text(طاجيكستان) locatedIn text(Asia) +text(ताजीकिस्तान) neighborOf text(चीनी:जनवादी:गणराज्य) +text(Tayikistán) neighborOf text(किर्गिज़स्तान) +text(塔吉克斯坦) neighborOf text(Afghanistan) +text(Tajikistan) neighborOf text(乌兹别克斯坦) +text(جزر:مارشال) locatedIn text(Micronesia) +text(Marshalleilanden) locatedIn text(Oceanië) +text(कैमरुन) locatedIn text(Central:Africa) +text(喀麦隆) locatedIn text(Africa) +text(الكاميرون) neighborOf text(تشاد) +text(Kameroen) neighborOf text(कांगो:गणराज्य) +text(Cameroon) neighborOf text(Gabón) +text(Camerún) neighborOf text(赤道几内亚) +text(कैमरुन) neighborOf text(Centraal-Afrikaanse:Republiek) +text(喀麦隆) neighborOf text(نيجيريا) +text(ناورو) locatedIn text(Micronesia) +text(Nauru) locatedIn text(大洋洲) +text(थाईलैंड) locatedIn text(Southeast:Asia) +text(泰國) neighborOf text(柬埔寨) +text(Tailandia) neighborOf text(Myanmar) +text(Thailand) neighborOf text(Laos) +text(تايلاند) neighborOf text(मलेशिया) +text(السودان) locatedIn text(شمال:إفريقيا) +text(Sudan) neighborOf text(乍得) +text(Sudán) neighborOf text(Libya) +text(सूडान) neighborOf text(South:Sudan) +text(苏丹) neighborOf text(إرتريا) +text(Soedan) neighborOf text(República:Centroafricana) +text(السودان) neighborOf text(Egypte) +text(Sudan) neighborOf text(Ethiopië) +text(चाड) locatedIn text(मध्य:अफ्रीका) +text(Chad) locatedIn text(África) +text(Tsjaad) neighborOf text(Libia) +text(Chad) neighborOf text(尼日尔) +text(تشاد) neighborOf text(दक्षिण:सूडान) +text(乍得) neighborOf text(الكاميرون) +text(चाड) neighborOf text(मध्य:अफ़्रीकी:गणराज्य) +text(Chad) neighborOf text(Nigeria) +text(فانواتو) locatedIn text(मॅलानिशिया) +text(वानूआटू) locatedIn text(أوقيانوسيا) +text(Cape:Verde) locatedIn text(पश्चिमी:अफ्रीका) +text(Kaapverdië) locatedIn text(Afrika) +text(फ़ॉकलैंड:द्वीपसमूह) locatedIn text(दक्षिण:अमेरिका) +text(جزر:فوكلاند) locatedIn text(Americas) +text(利比里亞) locatedIn text(West:Africa) +text(ليبيريا) locatedIn text(अफ्रीका) +text(Liberia) neighborOf text(Ivory:Coast) +text(Liberia) neighborOf text(塞拉利昂) +text(Liberia) neighborOf text(غينيا) +text(Cambodia) locatedIn text(جنوب:شرق:آسيا) +text(Camboya) locatedIn text(亞洲) +text(कम्बोडिया) neighborOf text(فيتنام) +text(Cambodja) neighborOf text(Thailand) +text(كمبوديا) neighborOf text(لاوس) +text(Zimbabwe) locatedIn text(East:Africa) +text(Zimbabwe) neighborOf text(ज़ाम्बिया) +text(Zimbabue) neighborOf text(दक्षिण:अफ़्रीका) +text(زيمبابوي) neighborOf text(波札那) +text(津巴布韦) neighborOf text(मोज़ाम्बीक) +text(Comoras) locatedIn text(شرق:إفريقيا) +text(Comoros) locatedIn text(非洲) +text(غوام) locatedIn text(ميكرونيسيا) +text(गुआम) locatedIn text(Oceanía) +text(巴哈馬) locatedIn text(Caribe) +text(बहामास) locatedIn text(أمريكتان) +text(लेबनॉन) locatedIn text(Zuidwest-Azië) +text(Libanon) locatedIn text(آسيا) +text(Líbano) neighborOf text(Israel) +text(Lebanon) neighborOf text(سوريا) +text(Saint:Martin) locatedIn text(الكاريبي) +text(圣马丁岛) locatedIn text(美洲) +text(سانت:مارتن) neighborOf text(法屬聖馬丁) +text(Ethiopia) locatedIn text(Oost-Afrika) +text(Etiopía) locatedIn text(إفريقيا) +text(إثيوبيا) neighborOf text(सोमालिया) +text(埃塞俄比亚) neighborOf text(कीनिया) +text(इथियोपिया) neighborOf text(Eritrea) +text(Ethiopië) neighborOf text(Sudán:del:Sur) +text(Ethiopia) neighborOf text(جيبوتي) +text(Etiopía) neighborOf text(Sudán) +text(جزر:العذراء:التابعة:الولايات:المتحدة) locatedIn text(加勒比地区) +text(Islas:Vírgenes:de:los:Estados:Unidos) locatedIn text(महाअमेरिका) +text(Guinea-Bisáu) locatedIn text(西非) +text(Guinea-Bissau) locatedIn text(Africa) +text(畿內亞比紹) neighborOf text(Guinea) +text(Guinee-Bissau) neighborOf text(塞内加尔) +text(लीबिया) locatedIn text(北部非洲) +text(Libië) locatedIn text(África) +text(ليبيا) neighborOf text(Tsjaad) +text(利比亞) neighborOf text(تونس) +text(Libya) neighborOf text(नाइजर) +text(Libia) neighborOf text(الجزائر) +text(लीबिया) neighborOf text(埃及) +text(Libië) neighborOf text(सूडान) +text(Bhutan) locatedIn text(South:Asia) +text(भूटान) locatedIn text(एशिया) +text(不丹) neighborOf text(Volksrepubliek:China) +text(بوتان) neighborOf text(印度) +text(मकाउ) locatedIn text(पूर्वी:एशिया) +text(ماكاو) locatedIn text(Azië) +text(Macau) neighborOf text(People's:Republic:of:China) +text(法屬玻里尼西亞) locatedIn text(بولنيزيا) +text(फ़्रान्सीसी:पॉलिनेशिया) locatedIn text(ओशिआनिया) +text(Somalia) locatedIn text(东部非洲) +text(索馬里) locatedIn text(Afrika) +text(Somalië) neighborOf text(जिबूती) +text(Somalia) neighborOf text(肯尼亚) +text(الصومال) neighborOf text(إثيوبيا) +text(سان:بارتيلمي) locatedIn text(कैरिबिया) +text(Saint:Barthélemy) locatedIn text(Amerika) +text(روسيا) locatedIn text(Europa:Oriental) +text(Rusia) locatedIn text(欧洲) +text(Rusland) neighborOf text(أوكرانيا) +text(Russia) neighborOf text(Wit-Rusland) +text(रूस) neighborOf text(中华人民共和国) +text(俄罗斯) neighborOf text(哈萨克斯坦) +text(روسيا) neighborOf text(挪威) +text(Rusia) neighborOf text(Polen) +text(Rusland) neighborOf text(Azerbaiyán) +text(Russia) neighborOf text(Lithuania) +text(रूस) neighborOf text(إستونيا) +text(俄罗斯) neighborOf text(Noord-Korea) +text(روسيا) neighborOf text(فنلندا) +text(Rusia) neighborOf text(Mongolia) +text(Rusland) neighborOf text(لاتفيا) +text(Russia) neighborOf text(جورجيا) +text(Nieuw-Zeeland) locatedIn text(nan) +text(新西兰) locatedIn text(Oceania) +text(Panamá) locatedIn text(Centraal-Amerika) +text(Panama) locatedIn text(América) +text(巴拿馬) neighborOf text(कोस्टा:रीका) +text(पनामा) neighborOf text(哥伦比亚) +text(巴布亚新几内亚) locatedIn text(美拉尼西亞) +text(पापुआ:न्यू:गिनी) locatedIn text(Oceanië) +text(بابوا:غينيا:الجديدة) neighborOf text(Indonesia) +text(Corea:del:Norte) locatedIn text(Asia:Oriental) +text(उत्तर:कोरिया) neighborOf text(الصين) +text(كوريا:الشمالية) neighborOf text(Corea:del:Sur) +text(朝鮮民主主義人民共和國) neighborOf text(रूस) +text(Latvia) locatedIn text(Northern:Europe) +text(拉脫維亞) locatedIn text(Europa) +text(Letonia) neighborOf text(Lituania) +text(लातविया) neighborOf text(بيلاروس) +text(Letland) neighborOf text(俄罗斯) +text(لاتفيا) neighborOf text(Estonia) +text(阿曼) locatedIn text(Asia:Occidental) +text(Oman) locatedIn text(Asia) +text(Omán) neighborOf text(沙特阿拉伯) +text(Oman) neighborOf text(Yemen) +text(سلطنة:عمان) neighborOf text(阿拉伯联合酋长国) +text(سان:بيير:وميكلون) locatedIn text(Noord-Amerika) +text(圣皮埃尔和密克隆) locatedIn text(Americas) +text(Martinique) locatedIn text(Caribbean) +text(مارتينيك) locatedIn text(أمريكتان) +text(यूनाइटेड:किंगडम) locatedIn text(उत्तरी:यूरोप) +text(Reino:Unido) locatedIn text(यूरोप) +text(المملكة:المتحدة) neighborOf text(यूनाइटेड:किंगडम) +text(इज़राइल) locatedIn text(西亚) +text(Israël) locatedIn text(Asia) +text(إسرائيل) neighborOf text(لبنان) +text(以色列) neighborOf text(مصر) +text(Israel) neighborOf text(الأردن) +text(Israel) neighborOf text(सीरिया) +text(Jersey) locatedIn text(Noord-Europa) +text(澤西) locatedIn text(Europe) +text(Pitcairneilanden) locatedIn text(पोलीनेशिया) +text(पिटकेर्न:द्वीपसमूह) locatedIn text(大洋洲) +text(Togo) locatedIn text(África:Occidental) +text(Togo) locatedIn text(अफ्रीका) +text(Togo) neighborOf text(بوركينا:فاسو) +text(多哥) neighborOf text(Ghana) +text(टोगो) neighborOf text(बेनिन) +text(Kiribati) locatedIn text(माइक्रोनीशिया) +text(Kiribati) locatedIn text(أوقيانوسيا) +text(إيران) locatedIn text(南亚) +text(Iran) locatedIn text(亞洲) +text(ईरान) neighborOf text(Afghanistan) +text(Irán) neighborOf text(Turkmenistan) +text(伊朗) neighborOf text(Turkey) +text(Iran) neighborOf text(Armenia) +text(إيران) neighborOf text(Azerbaijan) +text(Iran) neighborOf text(पाकिस्तान) +text(ईरान) neighborOf text(Irak) +text(Saint-Martin) locatedIn text(Caraïben) +text(San:Martín) locatedIn text(美洲) +text(Sint-Maarten) neighborOf text(San:Martín) +text(多明尼加) locatedIn text(Caribe) +text(جمهورية:الدومينيكان) locatedIn text(महाअमेरिका) +text(Dominicaanse:Republiek) neighborOf text(Haití) +text(الدنمارك) locatedIn text(Europa:del:Norte) +text(Denemarken) neighborOf text(德國) +text(百慕大) locatedIn text(北美洲) +text(برمودا) locatedIn text(Amerika) +text(智利) locatedIn text(Zuid-Amerika) +text(تشيلي) neighborOf text(الأرجنتين) +text(चिली) neighborOf text(Bolivia) +text(Chile) neighborOf text(Peru) +text(كوسوفو) locatedIn text(पूर्वी:यूरोप) +text(科索沃) locatedIn text(Europa) +text(Kosovo) neighborOf text(塞爾維亞) +text(कोसोवो:गणराज्य) neighborOf text(阿爾巴尼亞) +text(Kosovo) neighborOf text(Noord-Macedonië) +text(Kosovo) neighborOf text(Montenegro) +text(聖克里斯多福及尼維斯) locatedIn text(الكاريبي) +text(San:Cristóbal:y:Nieves) locatedIn text(América) +text(Eritrea) locatedIn text(África:Oriental) +text(इरित्रिया) neighborOf text(吉布提) +text(厄立特里亞) neighborOf text(苏丹) +text(Eritrea) neighborOf text(埃塞俄比亚) +text(भूमध्यरेखीय:गिनी) locatedIn text(中部非洲) +text(Guinea:Ecuatorial) locatedIn text(非洲) +text(Equatorial:Guinea) neighborOf text(加蓬) +text(غينيا:الاستوائية) neighborOf text(Kameroen) +text(Níger) locatedIn text(West-Afrika) +text(النيجر) locatedIn text(إفريقيا) +text(Niger) neighborOf text(Chad) +text(Niger) neighborOf text(ليبيا) +text(尼日尔) neighborOf text(Burkina:Faso) +text(नाइजर) neighborOf text(Benin) +text(Níger) neighborOf text(马里) +text(النيجر) neighborOf text(अल्जीरिया) +text(Niger) neighborOf text(Nigeria) +text(अंगुइला) locatedIn text(加勒比地区) +text(أنغويلا) locatedIn text(Americas) +text(Ruanda) locatedIn text(पूर्वी:अफ्रीका) +text(Rwanda) locatedIn text(Africa) +text(رواندا) neighborOf text(Burundi) +text(卢旺达) neighborOf text(Tanzania) +text(Rwanda) neighborOf text(烏干達) +text(रवाण्डा) neighborOf text(कांगो:लोकतान्त्रिक:गणराज्य) +text(الإمارات:العربية:المتحدة) locatedIn text(West:Asia) +text(Verenigde:Arabische:Emiraten) locatedIn text(آسيا) +text(United:Arab:Emirates) neighborOf text(ओमान) +text(Emiratos:Árabes:Unidos) neighborOf text(السعودية) +text(Estland) locatedIn text(北歐) +text(एस्टोनिया) locatedIn text(أوروبا) +text(Estonia) neighborOf text(Latvia) +text(愛沙尼亞) neighborOf text(روسيا) +text(Greece) locatedIn text(Europa:del:Sur) +text(यूनान) locatedIn text(欧洲) +text(Griekenland) neighborOf text(保加利亚) +text(Grecia) neighborOf text(अल्बानिया) +text(希腊) neighborOf text(North:Macedonia) +text(اليونان) neighborOf text(तुर्की) +text(Senegal) locatedIn text(غرب:إفريقيا) +text(सेनेगल) locatedIn text(África) +text(السنغال) neighborOf text(गिनी-बिसाऊ) +text(Senegal) neighborOf text(موريتانيا) +text(Senegal) neighborOf text(माली) +text(塞内加尔) neighborOf text(गाम्बिया) +text(Senegal) neighborOf text(गिनी) +text(गुआदेलूप) locatedIn text(कैरिबिया) +text(Guadeloupe) locatedIn text(أمريكتان) +text(Mónaco) locatedIn text(Europa:Occidental) +text(Monaco) neighborOf text(फ़्रान्स) +text(Djibouti) locatedIn text(East:Africa) +text(Djibouti) neighborOf text(إرتريا) +text(Yibuti) neighborOf text(सोमालिया) +text(جيبوتي) neighborOf text(इथियोपिया) +text(Indonesië) locatedIn text(Sudeste:Asiático) +text(इंडोनेशिया) neighborOf text(Papoea-Nieuw-Guinea) +text(Indonesia) neighborOf text(تيمور:الشرقية) +text(印度尼西亚) neighborOf text(ماليزيا) +text(Britse:Maagdeneilanden) locatedIn text(Caribbean) +text(British:Virgin:Islands) locatedIn text(美洲) +text(Cook:Islands) locatedIn text(玻里尼西亞) +text(कुक:द्वीपसमूह) locatedIn text(Oceanía) +text(युगाण्डा) locatedIn text(شرق:إفريقيا) +text(Uganda) locatedIn text(Afrika) +text(Uganda) neighborOf text(तंज़ानिया) +text(أوغندا) neighborOf text(República:Democrática:del:Congo) +text(Oeganda) neighborOf text(كينيا) +text(烏干達) neighborOf text(南蘇丹) +text(युगाण्डा) neighborOf text(Ruanda) +text(مقدونيا:الشمالية) locatedIn text(南欧) +text(उत्तर:मैसिडोनिया) locatedIn text(Europa) +text(Macedonia:del:Norte) neighborOf text(كوسوفو) +text(北马其顿) neighborOf text(Greece) +text(Noord-Macedonië) neighborOf text(Albanië) +text(North:Macedonia) neighborOf text(Servië) +text(مقدونيا:الشمالية) neighborOf text(Bulgaria) +text(Túnez) locatedIn text(Noord-Afrika) +text(突尼西亞) locatedIn text(अफ्रीका) +text(Tunisia) neighborOf text(利比亞) +text(ट्यूनिशिया) neighborOf text(Algerije) +text(Ecuador) locatedIn text(South:America) +text(Ecuador) neighborOf text(पेरू) +text(厄瓜多尔) neighborOf text(Colombia) +text(ब्राज़ील) locatedIn text(أمريكا:الجنوبية) +text(البرازيل) locatedIn text(महाअमेरिका) +text(Brasil) neighborOf text(बोलिविया) +text(Brazil) neighborOf text(कोलम्बिया) +text(巴西) neighborOf text(Paraguay) +text(Brazilië) neighborOf text(الأوروغواي) +text(ब्राज़ील) neighborOf text(फ़्रान्सीसी:गुयाना) +text(البرازيل) neighborOf text(सूरीनाम) +text(Brasil) neighborOf text(委內瑞拉) +text(Brazil) neighborOf text(Argentina) +text(巴西) neighborOf text(Guyana) +text(Brazilië) neighborOf text(秘鲁) +text(باراغواي) locatedIn text(南美洲) +text(Paraguay) locatedIn text(Amerika) +text(Paraguay) neighborOf text(Argentina) +text(巴拉圭) neighborOf text(ब्राज़ील) +text(पैराग्वे) neighborOf text(بوليفيا) +text(Finland) locatedIn text(أوروبا:الشمالية) +text(फ़िनलैण्ड) locatedIn text(यूरोप) +text(Finlandia) neighborOf text(Norway) +text(Finland) neighborOf text(स्वीडन) +text(芬蘭) neighborOf text(Rusia) +text(約旦) locatedIn text(غرب:آسيا) +text(Jordanië) neighborOf text(सउदी:अरब) +text(जॉर्डन) neighborOf text(इज़राइल) +text(Jordan) neighborOf text(伊拉克) +text(Jordania) neighborOf text(Siria) +text(Timor:Oriental) locatedIn text(दक्षिण:पूर्व:एशिया) +text(東帝汶) neighborOf text(إندونيسيا) +text(الجبل:الأسود) locatedIn text(أوروبا:الجنوبية) +text(蒙特內哥羅) locatedIn text(Europe) +text(Montenegro) neighborOf text(科索沃) +text(Montenegro) neighborOf text(Bosnia:y:Herzegovina) +text(मॉन्टेनीग्रो) neighborOf text(Kroatië) +text(Montenegro) neighborOf text(सर्बिया) +text(الجبل:الأسود) neighborOf text(Albania) +text(Peru) locatedIn text(América:del:Sur) +text(Perú) locatedIn text(América) +text(بيرو) neighborOf text(Ecuador) +text(Peru) neighborOf text(玻利維亞) +text(पेरू) neighborOf text(Chile) +text(秘鲁) neighborOf text(البرازيل) +text(Peru) neighborOf text(كولومبيا) +text(मॉण्टसेराट) locatedIn text(Caraïben) +text(مونتسيرات) locatedIn text(Americas) +text(Oekraïne) locatedIn text(Oost-Europa) +text(Ukraine) locatedIn text(Europa) +text(Ucrania) neighborOf text(Slowakije) +text(烏克蘭) neighborOf text(白俄羅斯) +text(युक्रेन) neighborOf text(波蘭) +text(أوكرانيا) neighborOf text(Rusland) +text(Oekraïne) neighborOf text(Hongarije) +text(Ukraine) neighborOf text(Moldova) +text(Ucrania) neighborOf text(رومانيا) +text(دومينيكا) locatedIn text(Caribe) +text(Dominica) locatedIn text(أمريكتان) +text(تركمانستان) locatedIn text(آسيا:الوسطى) +text(土庫曼斯坦) neighborOf text(Kazakhstan) +text(Turkmenistan) neighborOf text(Afganistán) +text(तुर्कमेनिस्तान) neighborOf text(Uzbekistán) +text(Turkmenistán) neighborOf text(Irán) +text(根西) locatedIn text(Northern:Europe) +text(Guernsey) locatedIn text(أوروبا) +text(Gibraltar) locatedIn text(दक्षिणी:यूरोप) +text(Gibraltar) locatedIn text(欧洲) +text(直布羅陀) neighborOf text(Spain) +text(स्विट्ज़रलैण्ड) locatedIn text(أوروبا:الغربية) +text(瑞士) locatedIn text(Europa) +text(سويسرا) neighborOf text(जर्मनी) +text(Zwitserland) neighborOf text(意大利) +text(Switzerland) neighborOf text(Austria) +text(Suiza) neighborOf text(法國) +text(स्विट्ज़रलैण्ड) neighborOf text(लिक्टेन्स्टाइन) +text(Oostenrijk) locatedIn text(Western:Europe) +text(النمسا) locatedIn text(यूरोप) +text(ऑस्ट्रिया) neighborOf text(Duitsland) +text(奧地利) neighborOf text(Slovakia) +text(Austria) neighborOf text(Slovenia) +text(Austria) neighborOf text(Italië) +text(Oostenrijk) neighborOf text(瑞士) +text(النمسا) neighborOf text(हंगरी) +text(ऑस्ट्रिया) neighborOf text(Liechtenstein) +text(奧地利) neighborOf text(Tsjechië) +text(Hungría) locatedIn text(Eastern:Europe) +text(المجر) neighborOf text(烏克蘭) +text(Hungary) neighborOf text(Eslovaquia) +text(匈牙利) neighborOf text(स्लोवेनिया) +text(Hongarije) neighborOf text(Croatia) +text(हंगरी) neighborOf text(Austria) +text(Hungría) neighborOf text(Serbia) +text(المجر) neighborOf text(रोमानिया) +text(Malawi) locatedIn text(Oost-Afrika) +text(मलावी) locatedIn text(非洲) +text(Malaui) neighborOf text(Zambia) +text(馬拉威) neighborOf text(坦桑尼亞) +text(مالاوي) neighborOf text(莫桑比克) +text(香港) locatedIn text(東亞) +text(Hongkong) neighborOf text(República:Popular:China) +text(ليختنشتاين) locatedIn text(西欧) +text(Liechtenstein) locatedIn text(Europe) +text(列支敦斯登) neighborOf text(سويسرا) +text(Liechtenstein) neighborOf text(Austria) +text(Barbados) locatedIn text(الكاريبي) +text(बारबाडोस) locatedIn text(美洲) +text(Georgië) locatedIn text(पश्चिमी:एशिया) +text(Georgia) locatedIn text(एशिया) +text(जॉर्जिया) neighborOf text(أرمينيا) +text(格鲁吉亚) neighborOf text(阿塞拜疆) +text(Georgia) neighborOf text(Russia) +text(جورجيا) neighborOf text(Turkije) +text(Albania) locatedIn text(Southern:Europe) +text(ألبانيا) locatedIn text(Europa) +text(阿爾巴尼亞) neighborOf text(蒙特內哥羅) +text(अल्बानिया) neighborOf text(उत्तर:मैसिडोनिया) +text(Albanië) neighborOf text(Kosovo) +text(Albania) neighborOf text(यूनान) +text(Kuwait) locatedIn text(Zuidwest-Azië) +text(कुवैत) locatedIn text(Azië) +text(Koeweit) neighborOf text(Saudi:Arabia) +text(الكويت) neighborOf text(Iraq) +text(Zuid-Afrika) locatedIn text(南部非洲) +text(South:Africa) locatedIn text(إفريقيا) +text(Sudáfrica) neighborOf text(Mozambique) +text(جنوب:إفريقيا) neighborOf text(Botsuana) +text(南非) neighborOf text(إسواتيني) +text(दक्षिण:अफ़्रीका) neighborOf text(ज़िम्बाब्वे) +text(Zuid-Afrika) neighborOf text(ناميبيا) +text(South:Africa) neighborOf text(Lesotho) +text(Haïti) locatedIn text(加勒比地区) +text(Haiti) locatedIn text(महाअमेरिका) +text(हैती) neighborOf text(डोमिनिकन:गणराज्य) +text(أفغانستان) locatedIn text(Asia:del:Sur) +text(阿富汗) locatedIn text(Asia) +text(अफ़्ग़ानिस्तान) neighborOf text(Turkmenistan) +text(Afghanistan) neighborOf text(चीनी:जनवादी:गणराज्य) +text(Afghanistan) neighborOf text(Tadzjikistan) +text(Afganistán) neighborOf text(Oezbekistan) +text(أفغانستان) neighborOf text(伊朗) +text(阿富汗) neighborOf text(Pakistan) +text(سنغافورة) locatedIn text(Zuidoost-Azië) +text(Singapore) locatedIn text(Asia) +text(貝南) locatedIn text(पश्चिमी:अफ्रीका) +text(بنين) locatedIn text(Africa) +text(Benin) neighborOf text(Niger) +text(Benín) neighborOf text(बुर्किना:फासो) +text(बेनिन) neighborOf text(توغو) +text(Benin) neighborOf text(Nigeria) +text(Åland) locatedIn text(उत्तरी:यूरोप) +text(奥兰) locatedIn text(أوروبا) +text(Croacia) locatedIn text(Zuid-Europa) +text(克羅地亞) locatedIn text(欧洲) +text(كرواتيا) neighborOf text(斯洛文尼亞) +text(क्रोएशिया) neighborOf text(बोस्निया:और:हर्ज़ेगोविना) +text(Kroatië) neighborOf text(Hungary) +text(Croatia) neighborOf text(صربيا) +text(Croacia) neighborOf text(Montenegro) +text(Sweden) locatedIn text(Noord-Europa) +text(السويد) locatedIn text(Europa) +text(瑞典) neighborOf text(Noruega) +text(Suecia) neighborOf text(فنلندا) +text(墨西哥) locatedIn text(أمريكا:الشمالية) +text(México) neighborOf text(伯利兹) +text(Mexico) neighborOf text(Estados:Unidos) +text(Mexico) neighborOf text(ग्वाटेमाला) +text(格陵兰) locatedIn text(América:del:Norte) +text(Groenland) locatedIn text(Amerika) +text(Pitcairneilanden) locatedIn text(Australia:and:New:Zealand) +text(جزر:بيتكيرن) locatedIn text(ओशिआनिया) +text(Nepal) locatedIn text(Zuid-Azië) +text(Nepal) locatedIn text(亞洲) +text(Nepal) neighborOf text(Volksrepubliek:China) +text(نيبال) neighborOf text(India) +text(غواتيمالا) locatedIn text(América:Central) +text(Guatemala) neighborOf text(Belize) +text(Guatemala) neighborOf text(El:Salvador) +text(Guatemala) neighborOf text(मेक्सिको) +text(危地马拉) neighborOf text(هندوراس) +text(大韩民国) locatedIn text(شرق:آسيا) +text(South:Korea) locatedIn text(آسيا) +text(كوريا:الجنوبية) neighborOf text(North:Korea) +text(Moldavië) locatedIn text(东欧) +text(摩爾多瓦) locatedIn text(यूरोप) +text(مولدوفا) neighborOf text(युक्रेन) +text(Moldavia) neighborOf text(Rumania) +text(Mauritius) locatedIn text(东部非洲) +text(موريشيوس) locatedIn text(África) +text(बेलारूस) locatedIn text(أوروبا:الشرقية) +text(Bielorrusia) neighborOf text(أوكرانيا) +text(Belarus) neighborOf text(Poland) +text(Wit-Rusland) neighborOf text(Litouwen) +text(بيلاروس) neighborOf text(रूस) +text(白俄羅斯) neighborOf text(拉脫維亞) +text(بنغلاديش) locatedIn text(جنوب:آسيا) +text(Bangladés) neighborOf text(ميانمار) +text(孟加拉國) neighborOf text(India) +text(馬來西亞) locatedIn text(东南亚) +text(Maleisië) locatedIn text(एशिया) +text(Malaysia) neighborOf text(थाईलैंड) +text(Malasia) neighborOf text(Indonesia) +text(मलेशिया) neighborOf text(Brunéi) +text(البوسنة:والهرسك) locatedIn text(Europa:del:Sur) +text(波斯尼亚和黑塞哥维那) locatedIn text(Europe) +text(Bosnia:and:Herzegovina) neighborOf text(Serbia) +text(Bosnië:en:Herzegovina) neighborOf text(克羅地亞) +text(Bosnia:y:Herzegovina) neighborOf text(Montenegro) +text(لوكسمبورغ) locatedIn text(पश्चिमी:यूरोप) +text(Luxembourg) locatedIn text(Europa) +text(Luxemburgo) neighborOf text(Alemania) +text(Luxemburg) neighborOf text(बेल्जियम) +text(लक्ज़मबर्ग) neighborOf text(Frankrijk) +text(Italia) locatedIn text(南欧) +text(इटली) locatedIn text(أوروبا) +text(Italy) neighborOf text(Eslovenia) +text(إيطاليا) neighborOf text(Zwitserland) +text(意大利) neighborOf text(Oostenrijk) +text(Italië) neighborOf text(France) +text(Italia) neighborOf text(Vatican:City) +text(इटली) neighborOf text(San:Marino) +text(अज़रबैजान) locatedIn text(Asia:Occidental) +text(أذربيجان) locatedIn text(Azië) +text(Azerbeidzjan) neighborOf text(土耳其) +text(Azerbaiyán) neighborOf text(Armenië) +text(Azerbaijan) neighborOf text(俄罗斯) +text(阿塞拜疆) neighborOf text(Iran) +text(अज़रबैजान) neighborOf text(Georgië) +text(洪都拉斯) locatedIn text(中美洲) +text(Honduras) locatedIn text(América) +text(Honduras) neighborOf text(ग्वाटेमाला) +text(Honduras) neighborOf text(Nicaragua) +text(हॉण्डुरस) neighborOf text(El:Salvador) +text(Mali) locatedIn text(West:Africa) +text(Mali) locatedIn text(Afrika) +text(مالي) neighborOf text(布吉納法索) +text(Mali) neighborOf text(Guinee) +text(马里) neighborOf text(मॉरीतानिया) +text(माली) neighborOf text(尼日尔) +text(Mali) neighborOf text(सेनेगल) +text(Mali) neighborOf text(Algeria) +text(مالي) neighborOf text(ساحل:العاج) +text(中華民國) locatedIn text(East:Asia) +text(تايوان) locatedIn text(Asia) +text(阿爾及利亞) locatedIn text(North:Africa) +text(Argelia) locatedIn text(अफ्रीका) +text(الجزائر) neighborOf text(Libya) +text(अल्जीरिया) neighborOf text(Tunesië) +text(Algerije) neighborOf text(Mauritanië) +text(Algeria) neighborOf text(Marokko) +text(阿爾及利亞) neighborOf text(नाइजर) +text(Argelia) neighborOf text(Mali) +text(الجزائر) neighborOf text(撒拉威阿拉伯民主共和國) +text(French:Guiana) locatedIn text(दक्षिण:अमेरिका) +text(غويانا:الفرنسية) neighborOf text(Brasil) +text(法屬圭亞那) neighborOf text(Suriname) +text(Jemen) locatedIn text(西亚) +text(也门) locatedIn text(Asia) +text(Yemen) neighborOf text(阿曼) +text(यमन) neighborOf text(Saoedi-Arabië) +text(पोर्टो:रीको) locatedIn text(कैरिबिया) +text(بورتوريكو) locatedIn text(Americas) +text(San:Vicente:y:las:Granadinas) locatedIn text(Caribbean) +text(सन्त:विन्सेण्ट:और:ग्रेनाडाइन्स) locatedIn text(أمريكتان) +text(Venezuela) locatedIn text(Zuid-Amerika) +text(वेनेज़ुएला) neighborOf text(Brazil) +text(Venezuela) neighborOf text(गयाना) +text(Venezuela) neighborOf text(Colombia) +text(Granada) locatedIn text(Caraïben) +text(ग्रेनाडा) locatedIn text(美洲) +text(الولايات:المتحدة) locatedIn text(उत्तर:अमेरिका) +text(Verenigde:Staten) neighborOf text(كندا) +text(美國) neighborOf text(المكسيك) +text(托克劳) locatedIn text(Polynesië) +text(Tokelau) locatedIn text(Oceania) +text(Slovenië) locatedIn text(أوروبا:الجنوبية) +text(سلوفينيا) locatedIn text(欧洲) +text(Slovenia) neighborOf text(النمسا) +text(स्लोवेनिया) neighborOf text(كرواتيا) +text(斯洛文尼亞) neighborOf text(Italy) +text(Eslovenia) neighborOf text(匈牙利) +text(Filipijnen) locatedIn text(Southeast:Asia) +text(Philippines) locatedIn text(亞洲) +text(Micronesië) locatedIn text(密克羅尼西亞群島) +text(Micronesia) locatedIn text(Oceanië) +text(People's:Republic:of:China) locatedIn text(Oost-Azië) +text(中华人民共和国) locatedIn text(آسيا) +text(الصين) neighborOf text(अफ़्ग़ानिस्तान) +text(República:Popular:China) neighborOf text(Bután) +text(चीनी:जनवादी:गणराज्य) neighborOf text(Macao) +text(Volksrepubliek:China) neighborOf text(الهند) +text(People's:Republic:of:China) neighborOf text(كازاخستان) +text(中华人民共和国) neighborOf text(Kirgizië) +text(الصين) neighborOf text(طاجيكستان) +text(República:Popular:China) neighborOf text(老撾) +text(चीनी:जनवादी:गणराज्य) neighborOf text(روسيا) +text(Volksrepubliek:China) neighborOf text(Noord-Korea) +text(People's:Republic:of:China) neighborOf text(緬甸) +text(中华人民共和国) neighborOf text(باكستان) +text(الصين) neighborOf text(Mongolia) +text(República:Popular:China) neighborOf text(Hong:Kong) +text(चीनी:जनवादी:गणराज्य) neighborOf text(वियतनाम) +text(Gabon) locatedIn text(Centraal-Afrika) +text(الغابون) locatedIn text(非洲) +text(गबॉन) neighborOf text(Equatoriaal-Guinea) +text(Gabon) neighborOf text(República:del:Congo) +text(Gabón) neighborOf text(Cameroon) +text(جزر:الولايات:المتحدة:الصغيرة:النائية) locatedIn text(North:America) +text(संयुक्त:राज्य:अमेरिका:के:छोटे:दूरस्थ:द्वीपसमूह) locatedIn text(महाअमेरिका) +text(Andorra) locatedIn text(दक्षिणी:यूरोप) +text(安道尔) locatedIn text(Europa) +text(Andorra) neighborOf text(Spanje) +text(अण्डोरा) neighborOf text(Francia) +text(萨摩亚) locatedIn text(Polinesia) +text(Samoa) locatedIn text(大洋洲) +text(غامبيا) locatedIn text(西非) +text(Gambia) locatedIn text(إفريقيا) +text(Gambia) neighborOf text(السنغال) +text(Pedro:Miguel) locatedIn text(West:Asia) +text(Pedro:Miguel) locatedIn text(एशिया) +text(nan) neighborOf text(الأردن) +text(nan) neighborOf text(Egypt) +text(Pedro:Miguel) neighborOf text(Israël) +text(Réunion) locatedIn text(África:Oriental) +text(Reunión) locatedIn text(Africa) +text(فرنسا) locatedIn text(West-Europa) +text(फ़्रान्स) locatedIn text(यूरोप) +text(法國) neighborOf text(Germany) +text(Frankrijk) neighborOf text(卢森堡) +text(France) neighborOf text(إيطاليا) +text(Francia) neighborOf text(أندورا) +text(فرنسا) neighborOf text(Switzerland) +text(फ़्रान्स) neighborOf text(موناكو) +text(法國) neighborOf text(Bélgica) +text(Frankrijk) neighborOf text(إسبانيا) +text(منغوليا) locatedIn text(पूर्वी:एशिया) +text(蒙古國) locatedIn text(Azië) +text(Mongolië) neighborOf text(Volksrepubliek:China) +text(मंगोलिया) neighborOf text(Rusia) +text(लिथुआनिया) locatedIn text(Europa:del:Norte) +text(ليتوانيا) locatedIn text(Europe) +text(立陶宛) neighborOf text(पोलैंड) +text(Lithuania) neighborOf text(Letonia) +text(Lituania) neighborOf text(बेलारूस) +text(Litouwen) neighborOf text(Rusland) +text(جزر:كايمان) locatedIn text(Caribe) +text(Islas:Caimán) locatedIn text(Amerika) +text(Santa:Lucía) locatedIn text(الكاريبي) +text(सेंट:लूसिया) locatedIn text(América) +text(कुराकाओ) locatedIn text(加勒比地区) +text(库拉索) locatedIn text(Americas) +text(कैरिबिया) locatedIn text(أمريكتان) +text(दक्षिण:एशिया) locatedIn text(Asia) +text(África:Central) locatedIn text(África) +text(北歐) locatedIn text(Europa) +text(Southern:Europe) locatedIn text(أوروبا) +text(غرب:آسيا) locatedIn text(Asia) +text(South:America) locatedIn text(美洲) +text(Polynesia) locatedIn text(أوقيانوسيا) +text(nan) locatedIn text(Oceanía) +text(Europa:Occidental) locatedIn text(欧洲) +text(पूर्वी:अफ्रीका) locatedIn text(Afrika) +text(África:Occidental) locatedIn text(अफ्रीका) +text(Europa:Oriental) locatedIn text(Europa) +text(केंद्रीय:अमेरिका) locatedIn text(महाअमेरिका) +text(Noord-Amerika) locatedIn text(Amerika) +text(جنوب:شرق:آسيا) locatedIn text(亞洲) +text(África:austral) locatedIn text(非洲) +text(Asia:Oriental) locatedIn text(آسيا) +text(उत्तर:अफ़्रीका) locatedIn text(إفريقيا) +text(Melanesië) locatedIn text(ओशिआनिया) +text(Micronesia) locatedIn text(Oceania) +text(Central:Asia) locatedIn text(एशिया) +text(Europa:Central) locatedIn text(यूरोप) \ No newline at end of file diff --git a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_country2text_relation2text.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_country2text_relation2text.tsv new file mode 100644 index 0000000..1cf89a8 --- /dev/null +++ b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_country2text_relation2text.tsv @@ -0,0 +1,1111 @@ +text(Palau) text(is:positioned:in) text(密克羅尼西亞群島) +text(Palau) text(was:sited:in) text(ओशिआनिया) +text(मालदीव) text(is:sited:in) text(جنوب:آسيا) +text(Malediven) text(was:localized:in) text(Asia) +text(汶莱) text(is:localized:in) text(Sudeste:Asiático) +text(Brunei) text(was:present:in) text(亞洲) +text(بروناي) text(was:a:neighboring:country:of) text(ماليزيا) +text(日本) text(is:present:in) text(पूर्वी:एशिया) +text(اليابان) text(is:still:in) text(آسيا) +text(荷蘭) text(was:still:in) text(Europa:Occidental) +text(नीदरलैण्ड) text(neighbors:with) text(ألمانيا) +text(Países:Bajos) text(was:a:neighbor:of) text(بلجيكا) +text(تركيا) text(was:currently:in) text(पश्चिमी:एशिया) +text(तुर्की) text(is:a:neighbor:of) text(أرمينيا) +text(Turquía) text(is:a:neighboring:state:to) text(अज़रबैजान) +text(土耳其) text(was:a:neighboring:state:to) text(ईरान) +text(Turkije) text(borders:with) text(Greece) +text(Turkey) text(borders) text(جورجيا) +text(تركيا) text(is:butted:against) text(保加利亚) +text(तुर्की) text(was:butted:against) text(Irak) +text(Turquía) text(was:adjacent:to) text(Syria) +text(Angola) text(is:currently:in) text(中部非洲) +text(Angola) text(is:placed:in) text(África) +text(安哥拉) text(is:adjacent:to) text(刚果民主共和国) +text(أنغولا) text(neighbors) text(纳米比亚) +text(अंगोला) text(is:a:neighboring:country:of) text(Zambia) +text(Angola) text(was:a:neighboring:country:of) text(República:del:Congo) +text(Armenia) text(was:placed:in) text(西亚) +text(Armenië) text(can:be:found:in) text(एशिया) +text(आर्मीनिया) text(neighbors:with) text(जॉर्जिया) +text(Armenia) text(was:a:neighbor:of) text(阿塞拜疆) +text(亞美尼亞) text(is:a:neighbor:of) text(Iran) +text(أرمينيا) text(is:a:neighboring:state:to) text(土耳其) +text(Antigua:and:Barbuda) text(was:situated:in) text(加勒比地区) +text(Antigua:en:Barbuda) text(is:situated:in) text(महाअमेरिका) +text(एस्वातीनी) text(is:located:in) text(南部非洲) +text(斯威士兰) text(was:located:in) text(अफ्रीका) +text(Eswatini) text(was:a:neighboring:state:to) text(جنوب:إفريقيا) +text(Swaziland) text(borders:with) text(Mozambique) +text(Wallis:y:Futuna) text(can:be:found:in) text(Polynesia) +text(Wallis:en:Futuna) text(was:positioned:in) text(أوقيانوسيا) +text(उरुग्वे) text(is:positioned:in) text(América:del:Sur) +text(الأوروغواي) text(was:sited:in) text(Amerika) +text(烏拉圭) text(borders) text(Argentina) +text(Uruguay) text(is:butted:against) text(Brazil) +text(Zambia) text(is:sited:in) text(شرق:إفريقيا) +text(زامبيا) text(was:localized:in) text(إفريقيا) +text(Zambia) text(was:butted:against) text(Tanzania) +text(ज़ाम्बिया) text(was:adjacent:to) text(Mozambique) +text(贊比亞) text(is:adjacent:to) text(جمهورية:الكونغو:الديمقراطية) +text(Zambia) text(neighbors) text(Angola) +text(Zambia) text(is:a:neighboring:country:of) text(Botswana) +text(زامبيا) text(was:a:neighboring:country:of) text(Zimbabwe) +text(Zambia) text(neighbors:with) text(Namibië) +text(ज़ाम्बिया) text(was:a:neighbor:of) text(Malaui) +text(قبرص) text(is:localized:in) text(东欧) +text(Chipre) text(was:present:in) text(欧洲) +text(Cyprus) text(is:a:neighbor:of) text(Verenigd:Koninkrijk) +text(Reino:Unido) text(is:present:in) text(Europa:del:Norte) +text(United:Kingdom) text(is:still:in) text(Europa) +text(यूनाइटेड:किंगडम) text(is:a:neighboring:state:to) text(المملكة:المتحدة) +text(Burundi) text(was:still:in) text(Oost-Afrika) +text(蒲隆地) text(was:currently:in) text(非洲) +text(Burundi) text(was:a:neighboring:state:to) text(कांगो:लोकतान्त्रिक:गणराज्य) +text(बुरुण्डी) text(borders:with) text(卢旺达) +text(بوروندي) text(borders) text(Tanzania) +text(جمهورية:إفريقيا:الوسطى) text(is:currently:in) text(Central:Africa) +text(República:Centroafricana) text(is:placed:in) text(Africa) +text(Centraal-Afrikaanse:Republiek) text(is:butted:against) text(乍得) +text(मध्य:अफ़्रीकी:गणराज्य) text(was:butted:against) text(Congo-Brazzaville) +text(中非共和國) text(was:adjacent:to) text(Congo-Kinshasa) +text(Central:African:Republic) text(is:adjacent:to) text(South:Sudan) +text(جمهورية:إفريقيا:الوسطى) text(neighbors) text(الكاميرون) +text(República:Centroafricana) text(is:a:neighboring:country:of) text(Soedan) +text(Tonga) text(was:placed:in) text(Polynesië) +text(Tonga) text(can:be:found:in) text(Oceanía) +text(Ivoorkust) text(was:situated:in) text(África:Occidental) +text(ساحل:العاج) text(is:situated:in) text(Afrika) +text(Ivory:Coast) text(was:a:neighboring:country:of) text(Burkina:Faso) +text(Costa:de:Marfil) text(neighbors:with) text(غانا) +text(कोत:दिव्वार) text(was:a:neighbor:of) text(Liberia) +text(科特迪瓦) text(is:a:neighbor:of) text(Mali) +text(Ivoorkust) text(is:a:neighboring:state:to) text(Guinea) +text(Sierra:Leone) text(is:located:in) text(غرب:إفريقيا) +text(Sierra:Leone) text(was:a:neighboring:state:to) text(लाइबेरिया) +text(塞拉利昂) text(borders:with) text(غينيا) +text(Mayotte) text(was:located:in) text(पूर्वी:अफ्रीका) +text(मेयोट) text(can:be:found:in) text(África) +text(Polonia) text(was:positioned:in) text(Eastern:Europe) +text(पोलैंड) text(borders) text(जर्मनी) +text(Polen) text(is:butted:against) text(Ukraine) +text(波蘭) text(was:butted:against) text(स्लोवाकिया) +text(Poland) text(was:adjacent:to) text(Wit-Rusland) +text(بولندا) text(is:adjacent:to) text(रूस) +text(Polonia) text(neighbors) text(Lituania) +text(पोलैंड) text(is:a:neighboring:country:of) text(Tsjechië) +text(कज़ाख़िस्तान) text(is:positioned:in) text(آسيا:الوسطى) +text(Kazajistán) text(was:sited:in) text(Asia) +text(Kazachstan) text(was:a:neighboring:country:of) text(تركمانستان) +text(哈萨克斯坦) text(neighbors:with) text(الصين) +text(كازاخستان) text(was:a:neighbor:of) text(Kyrgyzstan) +text(Kazakhstan) text(is:a:neighbor:of) text(Uzbekistán) +text(कज़ाख़िस्तान) text(is:a:neighboring:state:to) text(روسيا) +text(उज़्बेकिस्तान) text(is:sited:in) text(Central:Asia) +text(乌兹别克斯坦) text(was:localized:in) text(Azië) +text(Uzbekistan) text(was:a:neighboring:state:to) text(أفغانستان) +text(أوزبكستان) text(borders:with) text(तुर्कमेनिस्तान) +text(Oezbekistan) text(borders) text(Kazajistán) +text(Uzbekistán) text(is:butted:against) text(قرغيزستان) +text(उज़्बेकिस्तान) text(was:butted:against) text(طاجيكستان) +text(Turks:and:Caicos:Islands) text(is:localized:in) text(Caraïben) +text(特克斯和凯科斯群岛) text(was:present:in) text(América) +text(नया:कैलेडोनिया) text(is:present:in) text(ميلانيزيا) +text(新喀里多尼亞) text(is:still:in) text(大洋洲) +text(巴基斯坦) text(was:still:in) text(南亚) +text(باكستان) text(was:adjacent:to) text(People's:Republic:of:China) +text(पाकिस्तान) text(is:adjacent:to) text(Afghanistan) +text(Pakistan) text(neighbors) text(伊朗) +text(Pakistan) text(is:a:neighboring:country:of) text(الهند) +text(Argentina) text(was:currently:in) text(South:America) +text(阿根廷) text(is:currently:in) text(أمريكتان) +text(Argentinië) text(was:a:neighboring:country:of) text(Bolivia) +text(अर्जेण्टीना) text(neighbors:with) text(चिली) +text(الأرجنتين) text(was:a:neighbor:of) text(ब्राज़ील) +text(Argentina) text(is:a:neighbor:of) text(पैराग्वे) +text(Argentina) text(is:a:neighboring:state:to) text(Uruguay) +text(Cuba) text(is:placed:in) text(कैरिबिया) +text(كوبا) text(was:placed:in) text(Americas) +text(सर्बिया) text(can:be:found:in) text(أوروبا:الجنوبية) +text(صربيا) text(was:a:neighboring:state:to) text(Macedonia:del:Norte) +text(Serbia) text(borders:with) text(蒙特內哥羅) +text(塞爾維亞) text(borders) text(Kosovo) +text(Servië) text(is:butted:against) text(Bosnië:en:Herzegovina) +text(Serbia) text(was:butted:against) text(كرواتيا) +text(सर्बिया) text(was:adjacent:to) text(المجر) +text(صربيا) text(is:adjacent:to) text(बुल्गारिया) +text(Serbia) text(neighbors) text(羅馬尼亞) +text(República:Checa) text(was:situated:in) text(पूर्वी:यूरोप) +text(捷克) text(is:situated:in) text(यूरोप) +text(Czech:Republic) text(is:a:neighboring:country:of) text(Germany) +text(चेक:गणराज्य) text(was:a:neighboring:country:of) text(Austria) +text(جمهورية:التشيك) text(neighbors:with) text(Polen) +text(Tsjechië) text(was:a:neighbor:of) text(Eslovaquia) +text(Nicaragua) text(is:located:in) text(Central:America) +text(Nicaragua) text(is:a:neighbor:of) text(Honduras) +text(尼加拉瓜) text(is:a:neighboring:state:to) text(Costa:Rica) +text(वियतनाम) text(was:located:in) text(جنوب:شرق:آسيا) +text(فيتنام) text(can:be:found:in) text(Asia) +text(Vietnam) text(was:a:neighboring:state:to) text(Camboya) +text(越南) text(borders:with) text(لاوس) +text(Vietnam) text(borders) text(Volksrepubliek:China) +text(Niue) text(was:positioned:in) text(Polinesia) +text(紐埃) text(is:positioned:in) text(Oceanië) +text(Canadá) text(was:sited:in) text(أمريكا:الشمالية) +text(加拿大) text(is:sited:in) text(美洲) +text(कनाडा) text(is:butted:against) text(Estados:Unidos) +text(Slovakia) text(was:localized:in) text(Europa:Central) +text(斯洛伐克) text(was:butted:against) text(युक्रेन) +text(سلوفاكيا) text(was:adjacent:to) text(波蘭) +text(Slowakije) text(is:adjacent:to) text(奧地利) +text(स्लोवाकिया) text(neighbors) text(Hungary) +text(Eslovaquia) text(is:a:neighboring:country:of) text(República:Checa) +text(موزمبيق) text(is:localized:in) text(东部非洲) +text(मोज़ाम्बीक) text(was:a:neighboring:country:of) text(坦桑尼亞) +text(莫桑比克) text(neighbors:with) text(Esuatini) +text(Mozambique) text(was:a:neighbor:of) text(ज़िम्बाब्वे) +text(Mozambique) text(is:a:neighbor:of) text(贊比亞) +text(Mozambique) text(is:a:neighboring:state:to) text(Malawi) +text(موزمبيق) text(was:a:neighboring:state:to) text(दक्षिण:अफ़्रीका) +text(阿魯巴) text(was:present:in) text(Caribe) +text(Aruba) text(is:present:in) text(महाअमेरिका) +text(Bolivia) text(is:still:in) text(أمريكا:الجنوبية) +text(Bolivia) text(was:still:in) text(Amerika) +text(玻利維亞) text(borders:with) text(智利) +text(बोलिविया) text(borders) text(البرازيل) +text(بوليفيا) text(is:butted:against) text(Paraguay) +text(Bolivia) text(was:butted:against) text(阿根廷) +text(Bolivia) text(was:adjacent:to) text(بيرو) +text(Colombia) text(was:currently:in) text(दक्षिण:अमेरिका) +text(كولومبيا) text(is:currently:in) text(América) +text(Colombia) text(is:adjacent:to) text(الإكوادور) +text(कोलम्बिया) text(neighbors) text(巴西) +text(哥伦比亚) text(is:a:neighboring:country:of) text(Panama) +text(Colombia) text(was:a:neighboring:country:of) text(فنزويلا) +text(Colombia) text(neighbors:with) text(Peru) +text(Fiji) text(is:placed:in) text(美拉尼西亞) +text(Fiji) text(was:placed:in) text(Oceania) +text(Republic:of:the:Congo) text(can:be:found:in) text(मध्य:अफ्रीका) +text(جمهورية:الكونغو) text(was:a:neighbor:of) text(गबॉन) +text(剛果共和國) text(is:a:neighbor:of) text(Democratic:Republic:of:the:Congo) +text(कांगो:गणराज्य) text(is:a:neighboring:state:to) text(Angola) +text(República:del:Congo) text(was:a:neighboring:state:to) text(喀麦隆) +text(Congo-Brazzaville) text(borders:with) text(Centraal-Afrikaanse:Republiek) +text(السعودية) text(was:situated:in) text(Zuidwest-Azië) +text(沙特阿拉伯) text(borders) text(क़तर) +text(Saudi:Arabia) text(is:butted:against) text(United:Arab:Emirates) +text(सउदी:अरब) text(was:butted:against) text(الأردن) +text(Arabia:Saudí) text(was:adjacent:to) text(也门) +text(Saoedi-Arabië) text(is:adjacent:to) text(阿曼) +text(السعودية) text(neighbors) text(कुवैत) +text(沙特阿拉伯) text(is:a:neighboring:country:of) text(Irak) +text(السلفادور) text(is:situated:in) text(केंद्रीय:अमेरिका) +text(अल:साल्वाडोर) text(is:located:in) text(أمريكتان) +text(El:Salvador) text(was:a:neighboring:country:of) text(Guatemala) +text(El:Salvador) text(neighbors:with) text(هندوراس) +text(मेडागास्कर) text(was:located:in) text(East:Africa) +text(馬達加斯加) text(can:be:found:in) text(अफ्रीका) +text(Australia) text(was:positioned:in) text(Australia:and:New:Zealand) +text(Australia) text(is:positioned:in) text(ओशिआनिया) +text(नामीबिया) text(was:sited:in) text(दक्षिणी:अफ्रीका) +text(Namibia) text(is:sited:in) text(إفريقيا) +text(ناميبيا) text(was:a:neighbor:of) text(Zambia) +text(Namibia) text(is:a:neighbor:of) text(安哥拉) +text(纳米比亚) text(is:a:neighboring:state:to) text(南非) +text(Namibië) text(was:a:neighboring:state:to) text(Botswana) +text(तुवालू) text(was:localized:in) text(玻里尼西亞) +text(Tuvalu) text(is:localized:in) text(أوقيانوسيا) +text(斯瓦巴和扬马延) text(was:present:in) text(Noord-Europa) +text(Spitsbergen:en:Jan:Mayen) text(is:present:in) text(أوروبا) +text(马恩岛) text(is:still:in) text(उत्तरी:यूरोप) +text(आइल:ऑफ़:मैन) text(was:still:in) text(Europe) +text(Guyana) text(was:currently:in) text(Zuid-Amerika) +text(Guyana) text(borders:with) text(Brasil) +text(Guyana) text(borders) text(Surinam) +text(圭亚那) text(is:butted:against) text(Venezuela) +text(Ciudad:del:Vaticano) text(is:currently:in) text(Zuid-Europa) +text(वैटिकन:नगर) text(is:placed:in) text(Europa) +text(Vaticaanstad) text(was:butted:against) text(意大利) +text(Territorio:Británico:del:Océano:Índico) text(was:placed:in) text(África:Oriental) +text(إقليم:المحيط:الهندي:البريطاني) text(can:be:found:in) text(非洲) +text(नाइजीरिया) text(was:situated:in) text(West-Afrika) +text(Nigeria) text(is:situated:in) text(Africa) +text(نيجيريا) text(was:adjacent:to) text(Chad) +text(Nigeria) text(is:adjacent:to) text(नाइजर) +text(Nigeria) text(neighbors) text(Kameroen) +text(奈及利亞) text(is:a:neighboring:country:of) text(Benin) +text(Duitsland) text(is:located:in) text(पश्चिमी:यूरोप) +text(Alemania) text(was:a:neighboring:country:of) text(Denmark) +text(德國) text(neighbors:with) text(هولندا) +text(ألمانيا) text(was:a:neighbor:of) text(Poland) +text(जर्मनी) text(is:a:neighbor:of) text(لوكسمبورغ) +text(Germany) text(is:a:neighboring:state:to) text(Belgium) +text(Duitsland) text(was:a:neighboring:state:to) text(Switzerland) +text(Alemania) text(borders:with) text(Austria) +text(德國) text(borders) text(Frankrijk) +text(ألمانيا) text(is:butted:against) text(捷克) +text(Burkina:Faso) text(was:located:in) text(पश्चिमी:अफ्रीका) +text(Burkina:Faso) text(was:butted:against) text(Togo) +text(布吉納法索) text(was:adjacent:to) text(बेनिन) +text(बुर्किना:फासो) text(is:adjacent:to) text(النيجر) +text(بوركينا:فاسو) text(neighbors) text(Ghana) +text(Burkina:Faso) text(is:a:neighboring:country:of) text(مالي) +text(Burkina:Faso) text(was:a:neighboring:country:of) text(ساحل:العاج) +text(तंज़ानिया) text(can:be:found:in) text(شرق:إفريقيا) +text(Tanzania) text(neighbors:with) text(Uganda) +text(تنزانيا) text(was:a:neighbor:of) text(मोज़ाम्बीक) +text(Tanzania) text(is:a:neighbor:of) text(República:Democrática:del:Congo) +text(Tanzania) text(is:a:neighboring:state:to) text(Kenia) +text(坦桑尼亞) text(was:a:neighboring:state:to) text(Rwanda) +text(तंज़ानिया) text(borders:with) text(Zambia) +text(Tanzania) text(borders) text(مالاوي) +text(تنزانيا) text(is:butted:against) text(Burundi) +text(Noordelijke:Marianen) text(was:positioned:in) text(माइक्रोनीशिया) +text(北马里亚纳群岛) text(is:positioned:in) text(Oceanía) +text(Belize) text(was:sited:in) text(أمريكا:الوسطى) +text(伯利兹) text(is:sited:in) text(Americas) +text(بليز) text(was:butted:against) text(危地马拉) +text(Belice) text(was:adjacent:to) text(Mexico) +text(नॉर्वे) text(was:localized:in) text(أوروبا:الشمالية) +text(Norway) text(is:adjacent:to) text(Suecia) +text(挪威) text(neighbors) text(Finland) +text(النرويج) text(is:a:neighboring:country:of) text(俄罗斯) +text(科科斯(基林)群島) text(is:localized:in) text(nan) +text(Cocoseilanden) text(was:present:in) text(大洋洲) +text(Laos) text(is:present:in) text(东南亚) +text(लाओस) text(is:still:in) text(亞洲) +text(老撾) text(was:a:neighboring:country:of) text(中华人民共和国) +text(Laos) text(neighbors:with) text(Cambodja) +text(Laos) text(was:a:neighbor:of) text(緬甸) +text(لاوس) text(is:a:neighbor:of) text(Vietnam) +text(Laos) text(is:a:neighboring:state:to) text(थाईलैंड) +text(撒拉威阿拉伯民主共和國) text(was:still:in) text(北部非洲) +text(सहरावी:अरब:जनतांत्रिक:गणराज्य) text(was:currently:in) text(Afrika) +text(República:Árabe:Saharaui:Democrática) text(was:a:neighboring:state:to) text(अल्जीरिया) +text(Sahrawi:Arab:Democratic:Republic) text(borders:with) text(मॉरीतानिया) +text(الجمهورية:العربية:الصحراوية:الديمقراطية) text(borders) text(Marokko) +text(蘇利南) text(is:currently:in) text(南美洲) +text(Suriname) text(is:placed:in) text(美洲) +text(سورينام) text(is:butted:against) text(Brazilië) +text(सूरीनाम) text(was:butted:against) text(غويانا:الفرنسية) +text(Suriname) text(was:adjacent:to) text(गयाना) +text(Isla:de:Navidad) text(was:placed:in) text(Australië:en:Nieuw-Zeeland) +text(Christmaseiland) text(can:be:found:in) text(Oceanië) +text(Santo:Tomé:y:Príncipe) text(was:situated:in) text(وسط:إفريقيا) +text(圣多美和普林西比) text(is:situated:in) text(África) +text(Egypt) text(is:located:in) text(شمال:إفريقيا) +text(मिस्र) text(is:adjacent:to) text(利比亞) +text(Egipto) text(neighbors) text(以色列) +text(埃及) text(is:a:neighboring:country:of) text(السودان) +text(Bulgaria) text(was:located:in) text(Europa:Oriental) +text(Bulgarije) text(was:a:neighboring:country:of) text(North:Macedonia) +text(بلغاريا) text(neighbors:with) text(Turkije) +text(Bulgaria) text(was:a:neighbor:of) text(希腊) +text(保加利亚) text(is:a:neighbor:of) text(塞爾維亞) +text(बुल्गारिया) text(is:a:neighboring:state:to) text(Rumania) +text(Guinea) text(can:be:found:in) text(西非) +text(गिनी) text(was:positioned:in) text(अफ्रीका) +text(Guinee) text(was:a:neighboring:state:to) text(Guinea-Bissau) +text(几内亚) text(borders:with) text(سيراليون) +text(Guinea) text(borders) text(माली) +text(غينيا) text(is:butted:against) text(ليبيريا) +text(Guinea) text(was:butted:against) text(Senegal) +text(गिनी) text(was:adjacent:to) text(Ivory:Coast) +text(Spanje) text(is:positioned:in) text(Europa:del:Sur) +text(西班牙) text(is:adjacent:to) text(Morocco) +text(Spain) text(neighbors) text(Gibraltar) +text(स्पेन) text(is:a:neighboring:country:of) text(أندورا) +text(España) text(was:a:neighboring:country:of) text(فرنسا) +text(إسبانيا) text(neighbors:with) text(पुर्तगाल) +text(कोस्टा:रीका) text(was:sited:in) text(América:Central) +text(哥斯达黎加) text(is:sited:in) text(महाअमेरिका) +text(Costa:Rica) text(was:a:neighbor:of) text(Panama) +text(Costa:Rica) text(is:a:neighbor:of) text(Nicaragua) +text(馬耳他) text(was:localized:in) text(दक्षिणी:यूरोप) +text(Malta) text(is:localized:in) text(欧洲) +text(Portugal) text(was:present:in) text(南欧) +text(Portugal) text(is:present:in) text(Europa) +text(البرتغال) text(is:a:neighboring:state:to) text(Spanje) +text(Romania) text(is:still:in) text(Oost-Europa) +text(रोमानिया) text(was:still:in) text(यूरोप) +text(Roemenië) text(was:a:neighboring:state:to) text(Oekraïne) +text(رومانيا) text(borders:with) text(匈牙利) +text(羅馬尼亞) text(borders) text(Moldova) +text(Rumania) text(is:butted:against) text(Bulgaria) +text(Romania) text(was:butted:against) text(Servië) +text(圣马力诺) text(was:currently:in) text(Southern:Europe) +text(San:Marino) text(is:currently:in) text(أوروبا) +text(سان:مارينو) text(was:adjacent:to) text(इटली) +text(毛里塔尼亞) text(is:placed:in) text(West:Africa) +text(Mauritania) text(was:placed:in) text(إفريقيا) +text(موريتانيا) text(is:adjacent:to) text(الجزائر) +text(Mauritanië) text(neighbors) text(Mali) +text(Mauritania) text(is:a:neighboring:country:of) text(Sahrawi:Arabische:Democratische:Republiek) +text(मॉरीतानिया) text(was:a:neighboring:country:of) text(塞内加尔) +text(ترينيداد:وتوباغو) text(can:be:found:in) text(Caribbean) +text(Trinidad:en:Tobago) text(was:situated:in) text(Amerika) +text(Bahrein) text(is:situated:in) text(Asia:Occidental) +text(Baréin) text(is:located:in) text(آسيا) +text(Birmania) text(was:located:in) text(दक्षिण:पूर्व:एशिया) +text(Myanmar) text(neighbors:with) text(India) +text(म्यान्मार) text(was:a:neighbor:of) text(Bangladesh) +text(Myanmar) text(is:a:neighbor:of) text(चीनी:जनवादी:गणराज्य) +text(ميانمار) text(is:a:neighboring:state:to) text(लाओस) +text(緬甸) text(was:a:neighboring:state:to) text(Thailand) +text(伊拉克) text(can:be:found:in) text(West:Asia) +text(العراق) text(borders:with) text(Turkey) +text(इराक) text(borders) text(Saudi:Arabia) +text(Iraq) text(is:butted:against) text(إيران) +text(Irak) text(was:butted:against) text(Jordan) +text(Irak) text(was:adjacent:to) text(Kuwait) +text(伊拉克) text(is:adjacent:to) text(Siria) +text(South:Georgia:and:the:South:Sandwich:Islands) text(was:positioned:in) text(América:del:Sur) +text(Islas:Georgias:del:Sur:y:Sandwich:del:Sur) text(is:positioned:in) text(América) +text(آيسلندا) text(was:sited:in) text(北歐) +text(IJsland) text(is:sited:in) text(Europe) +text(刚果民主共和国) text(was:localized:in) text(África:Central) +text(جمهورية:الكونغو:الديمقراطية) text(is:localized:in) text(非洲) +text(कांगो:लोकतान्त्रिक:गणराज्य) text(neighbors) text(Oeganda) +text(Congo-Kinshasa) text(is:a:neighboring:country:of) text(Tanzania) +text(Democratic:Republic:of:the:Congo) text(was:a:neighboring:country:of) text(Republic:of:the:Congo) +text(República:Democrática:del:Congo) text(neighbors:with) text(मध्य:अफ़्रीकी:गणराज्य) +text(刚果民主共和国) text(was:a:neighbor:of) text(أنغولا) +text(جمهورية:الكونغو:الديمقراطية) text(is:a:neighbor:of) text(Rwanda) +text(कांगो:लोकतान्त्रिक:गणराज्य) text(is:a:neighboring:state:to) text(Sudán:del:Sur) +text(Congo-Kinshasa) text(was:a:neighboring:state:to) text(زامبيا) +text(Democratic:Republic:of:the:Congo) text(borders:with) text(Burundi) +text(Seychelles) text(was:present:in) text(Oost-Afrika) +text(सेशेल्स) text(is:present:in) text(Africa) +text(किर्गिज़स्तान) text(is:still:in) text(Asia:Central) +text(Kirgizië) text(borders) text(República:Popular:China) +text(Kirguistán) text(is:butted:against) text(Kazachstan) +text(吉尔吉斯斯坦) text(was:butted:against) text(ताजीकिस्तान) +text(Kyrgyzstan) text(was:adjacent:to) text(乌兹别克斯坦) +text(波札那) text(was:still:in) text(Zuidelijk:Afrika) +text(बोत्सवाना) text(was:currently:in) text(Afrika) +text(Botsuana) text(is:adjacent:to) text(Zimbabue) +text(بوتسوانا) text(neighbors) text(नामीबिया) +text(Botswana) text(is:a:neighboring:country:of) text(Zambia) +text(Botswana) text(was:a:neighboring:country:of) text(South:Africa) +text(फ़रो:द्वीपसमूह) text(is:currently:in) text(Northern:Europe) +text(Faroe:Islands) text(is:placed:in) text(Europa) +text(Jamaica) text(was:placed:in) text(الكاريبي) +text(جامايكا) text(can:be:found:in) text(أمريكتان) +text(美屬薩摩亞) text(was:situated:in) text(بولنيزيا) +text(American:Samoa) text(is:situated:in) text(Oceania) +text(ليسوتو) text(is:located:in) text(África:austral) +text(Lesotho) text(was:located:in) text(África) +text(लेसोथो) text(neighbors:with) text(Sudáfrica) +text(سريلانكا) text(can:be:found:in) text(दक्षिण:एशिया) +text(Sri:Lanka) text(was:a:neighbor:of) text(भारत) +text(België) text(was:positioned:in) text(Western:Europe) +text(比利時) text(is:positioned:in) text(欧洲) +text(बेल्जियम) text(is:a:neighbor:of) text(जर्मनी) +text(Bélgica) text(is:a:neighboring:state:to) text(लक्ज़मबर्ग) +text(بلجيكا) text(was:a:neighboring:state:to) text(Francia) +text(Belgium) text(borders:with) text(Netherlands) +text(Catar) text(was:sited:in) text(غرب:آسيا) +text(卡塔尔) text(is:sited:in) text(एशिया) +text(Qatar) text(borders) text(सउदी:अरब) +text(Solomon:Islands) text(was:localized:in) text(Melanesië) +text(सोलोमन:द्वीपसमूह) text(is:localized:in) text(ओशिआनिया) +text(सीरिया) text(was:present:in) text(पश्चिमी:एशिया) +text(敘利亞) text(is:present:in) text(Asia) +text(Syrië) text(is:butted:against) text(Israël) +text(سوريا) text(was:butted:against) text(تركيا) +text(Syria) text(was:adjacent:to) text(Jordanië) +text(Siria) text(is:adjacent:to) text(लेबनॉन) +text(सीरिया) text(neighbors) text(العراق) +text(印度) text(is:still:in) text(Asia:del:Sur) +text(India) text(was:still:in) text(Azië) +text(India) text(is:a:neighboring:country:of) text(阿富汗) +text(الهند) text(was:a:neighboring:country:of) text(Bután) +text(India) text(neighbors:with) text(Bangladesh) +text(भारत) text(was:a:neighbor:of) text(الصين) +text(印度) text(is:a:neighbor:of) text(Nepal) +text(India) text(is:a:neighboring:state:to) text(Birmania) +text(India) text(was:a:neighboring:state:to) text(Pakistán) +text(الهند) text(borders:with) text(斯里蘭卡) +text(मोरक्को) text(was:currently:in) text(उत्तर:अफ़्रीका) +text(Marruecos) text(borders) text(阿爾及利亞) +text(المغرب) text(is:butted:against) text(西班牙) +text(摩洛哥) text(was:butted:against) text(撒拉威阿拉伯民主共和國) +text(Kenya) text(is:currently:in) text(पूर्वी:अफ्रीका) +text(肯尼亚) text(is:placed:in) text(अफ्रीका) +text(كينيا) text(was:adjacent:to) text(युगाण्डा) +text(Kenia) text(is:adjacent:to) text(Tanzania) +text(कीनिया) text(neighbors) text(Somalia) +text(Kenia) text(is:a:neighboring:country:of) text(جنوب:السودان) +text(Kenya) text(was:a:neighboring:country:of) text(إثيوبيا) +text(दक्षिण:सूडान) text(was:placed:in) text(Centraal-Afrika) +text(Zuid-Soedan) text(can:be:found:in) text(إفريقيا) +text(南蘇丹) text(neighbors:with) text(Uganda) +text(South:Sudan) text(was:a:neighbor:of) text(República:Democrática:del:Congo) +text(Sudán:del:Sur) text(is:a:neighbor:of) text(肯尼亚) +text(جنوب:السودان) text(is:a:neighboring:state:to) text(中非共和國) +text(दक्षिण:सूडान) text(was:a:neighboring:state:to) text(सूडान) +text(Zuid-Soedan) text(borders:with) text(Ethiopië) +text(Ghana) text(was:situated:in) text(África:Occidental) +text(घाना) text(borders) text(Burkina:Faso) +text(Ghana) text(is:butted:against) text(Costa:de:Marfil) +text(迦納) text(was:butted:against) text(टोगो) +text(塔吉克斯坦) text(is:situated:in) text(中亚) +text(Tadzjikistan) text(is:located:in) text(Asia) +text(Tajikistan) text(was:adjacent:to) text(People's:Republic:of:China) +text(Tayikistán) text(is:adjacent:to) text(قرغيزستان) +text(طاجيكستان) text(neighbors) text(Afganistán) +text(ताजीकिस्तान) text(is:a:neighboring:country:of) text(Uzbekistan) +text(馬紹爾群島) text(was:located:in) text(ميكرونيسيا) +text(Islas:Marshall) text(can:be:found:in) text(أوقيانوسيا) +text(कैमरुन) text(was:positioned:in) text(中部非洲) +text(Camerún) text(is:positioned:in) text(非洲) +text(Cameroon) text(was:a:neighboring:country:of) text(Chad) +text(الكاميرون) text(neighbors:with) text(جمهورية:الكونغو) +text(喀麦隆) text(was:a:neighbor:of) text(Gabón) +text(Kameroen) text(is:a:neighbor:of) text(भूमध्यरेखीय:गिनी) +text(कैमरुन) text(is:a:neighboring:state:to) text(Central:African:Republic) +text(Camerún) text(was:a:neighboring:state:to) text(नाइजीरिया) +text(ناورو) text(was:sited:in) text(Micronesia) +text(Nauru) text(is:sited:in) text(Oceanía) +text(تايلاند) text(was:localized:in) text(Southeast:Asia) +text(Thailand) text(borders:with) text(Cambodia) +text(Tailandia) text(borders) text(Myanmar) +text(泰國) text(is:butted:against) text(老撾) +text(थाईलैंड) text(was:butted:against) text(馬來西亞) +text(苏丹) text(is:localized:in) text(North:Africa) +text(Sudán) text(was:adjacent:to) text(Tsjaad) +text(Sudan) text(is:adjacent:to) text(Libia) +text(Soedan) text(neighbors) text(南蘇丹) +text(السودان) text(is:a:neighboring:country:of) text(厄立特里亞) +text(सूडान) text(was:a:neighboring:country:of) text(جمهورية:إفريقيا:الوسطى) +text(苏丹) text(neighbors:with) text(Egypte) +text(Sudán) text(was:a:neighbor:of) text(इथियोपिया) +text(تشاد) text(was:present:in) text(Central:Africa) +text(चाड) text(is:present:in) text(Africa) +text(乍得) text(is:a:neighbor:of) text(ليبيا) +text(Chad) text(is:a:neighboring:state:to) text(Níger) +text(Chad) text(was:a:neighboring:state:to) text(South:Sudan) +text(Tsjaad) text(borders:with) text(Cameroon) +text(تشاد) text(borders) text(República:Centroafricana) +text(चाड) text(is:butted:against) text(Nigeria) +text(Vanuatu) text(is:still:in) text(Melanesia) +text(فانواتو) text(was:still:in) text(大洋洲) +text(Cabo:Verde) text(was:currently:in) text(غرب:إفريقيا) +text(佛得角) text(is:currently:in) text(Afrika) +text(Falklandeilanden) text(is:placed:in) text(South:America) +text(फ़ॉकलैंड:द्वीपसमूह) text(was:placed:in) text(Americas) +text(Liberia) text(can:be:found:in) text(West-Afrika) +text(Liberia) text(was:situated:in) text(África) +text(利比里亞) text(was:butted:against) text(कोत:दिव्वार) +text(Liberia) text(was:adjacent:to) text(Sierra:Leona) +text(लाइबेरिया) text(is:adjacent:to) text(Guinee) +text(柬埔寨) text(is:situated:in) text(Zuidoost-Azië) +text(كمبوديا) text(is:located:in) text(亞洲) +text(कम्बोडिया) text(neighbors) text(वियतनाम) +text(Camboya) text(is:a:neighboring:country:of) text(Thailand) +text(Cambodja) text(was:a:neighboring:country:of) text(Laos) +text(Zimbabwe) text(was:located:in) text(东部非洲) +text(زيمبابوي) text(neighbors:with) text(ज़ाम्बिया) +text(津巴布韦) text(was:a:neighbor:of) text(Zuid-Afrika) +text(Zimbabwe) text(is:a:neighbor:of) text(波札那) +text(ज़िम्बाब्वे) text(is:a:neighboring:state:to) text(莫桑比克) +text(Comoren) text(can:be:found:in) text(East:Africa) +text(Comoros) text(was:positioned:in) text(अफ्रीका) +text(غوام) text(is:positioned:in) text(Micronesia) +text(गुआम) text(was:sited:in) text(Oceanië) +text(جزر:البهاما) text(is:sited:in) text(加勒比地区) +text(Bahama's) text(was:localized:in) text(美洲) +text(Lebanon) text(is:localized:in) text(西亚) +text(Líbano) text(was:present:in) text(آسيا) +text(لبنان) text(was:a:neighboring:state:to) text(इज़राइल) +text(Libanon) text(borders:with) text(敘利亞) +text(圣马丁岛) text(is:present:in) text(Caraïben) +text(San:Martín) text(is:still:in) text(महाअमेरिका) +text(سانت:مارتن) text(borders) text(Sint-Maarten) +text(埃塞俄比亚) text(was:still:in) text(África:Oriental) +text(Etiopía) text(was:currently:in) text(إفريقيا) +text(Ethiopia) text(is:butted:against) text(सोमालिया) +text(إثيوبيا) text(was:butted:against) text(كينيا) +text(Ethiopië) text(was:adjacent:to) text(Eritrea) +text(इथियोपिया) text(is:adjacent:to) text(Sudán:del:Sur) +text(埃塞俄比亚) text(neighbors) text(吉布提) +text(Etiopía) text(is:a:neighboring:country:of) text(Sudan) +text(संयुक्त:राज्य:वर्जिन:द्वीपसमूह) text(is:currently:in) text(कैरिबिया) +text(United:States:Virgin:Islands) text(is:placed:in) text(Amerika) +text(गिनी-बिसाऊ) text(was:placed:in) text(पश्चिमी:अफ्रीका) +text(Guinee-Bissau) text(can:be:found:in) text(非洲) +text(畿內亞比紹) text(was:a:neighboring:country:of) text(几内亚) +text(غينيا:بيساو) text(neighbors:with) text(السنغال) +text(लीबिया) text(was:situated:in) text(Noord-Afrika) +text(Libië) text(is:situated:in) text(Africa) +text(Libya) text(was:a:neighbor:of) text(乍得) +text(利比亞) text(is:a:neighbor:of) text(Túnez) +text(Libia) text(is:a:neighboring:state:to) text(Niger) +text(ليبيا) text(was:a:neighboring:state:to) text(Algerije) +text(लीबिया) text(borders:with) text(مصر) +text(Libië) text(borders) text(Soedan) +text(भूटान) text(is:located:in) text(Zuid-Azië) +text(بوتان) text(was:located:in) text(एशिया) +text(Bhutan) text(is:butted:against) text(Volksrepubliek:China) +text(不丹) text(was:butted:against) text(India) +text(澳門) text(can:be:found:in) text(Asia:Oriental) +text(Macau) text(was:positioned:in) text(Asia) +text(Macau) text(was:adjacent:to) text(中华人民共和国) +text(بولنيزيا:الفرنسية) text(is:positioned:in) text(पोलीनेशिया) +text(Polinesia:Francesa) text(was:sited:in) text(Oceania) +text(الصومال) text(is:sited:in) text(شرق:إفريقيا) +text(Somalia) text(was:localized:in) text(Afrika) +text(Somalië) text(is:adjacent:to) text(Djibouti) +text(索馬里) text(neighbors) text(Kenia) +text(Somalia) text(is:a:neighboring:country:of) text(Ethiopia) +text(Saint-Barthélemy) text(is:localized:in) text(Caribe) +text(سان:بارتيلمي) text(was:present:in) text(América) +text(Rusia) text(is:present:in) text(أوروبا:الشرقية) +text(Russia) text(is:still:in) text(Europa) +text(Rusland) text(was:a:neighboring:country:of) text(أوكرانيا) +text(रूस) text(neighbors:with) text(بيلاروس) +text(روسيا) text(was:a:neighbor:of) text(चीनी:जनवादी:गणराज्य) +text(俄罗斯) text(is:a:neighbor:of) text(哈萨克斯坦) +text(Rusia) text(is:a:neighboring:state:to) text(Noruega) +text(Russia) text(was:a:neighboring:state:to) text(بولندا) +text(Rusland) text(borders:with) text(Azerbaiyán) +text(रूस) text(borders) text(Litouwen) +text(روسيا) text(is:butted:against) text(إستونيا) +text(俄罗斯) text(was:butted:against) text(Corea:del:Norte) +text(Rusia) text(was:adjacent:to) text(芬蘭) +text(Russia) text(is:adjacent:to) text(Mongolië) +text(Rusland) text(neighbors) text(لاتفيا) +text(रूस) text(is:a:neighboring:country:of) text(Georgia) +text(新西兰) text(was:still:in) text(nan) +text(न्यूज़ीलैंड) text(was:currently:in) text(ओशिआनिया) +text(पनामा) text(is:currently:in) text(中美洲) +text(بنما) text(is:placed:in) text(أمريكتان) +text(Panamá) text(was:a:neighboring:country:of) text(كوستاريكا) +text(巴拿馬) text(neighbors:with) text(كولومبيا) +text(بابوا:غينيا:الجديدة) text(was:placed:in) text(Melanesia) +text(Papoea-Nieuw-Guinea) text(can:be:found:in) text(أوقيانوسيا) +text(巴布亚新几内亚) text(was:a:neighbor:of) text(Indonesia) +text(North:Korea) text(was:situated:in) text(東亞) +text(朝鮮民主主義人民共和國) text(is:a:neighbor:of) text(República:Popular:China) +text(उत्तर:कोरिया) text(is:a:neighboring:state:to) text(كوريا:الجنوبية) +text(Noord-Korea) text(was:a:neighboring:state:to) text(روسيا) +text(Letland) text(is:situated:in) text(Europa:del:Norte) +text(लातविया) text(is:located:in) text(यूरोप) +text(Latvia) text(borders:with) text(लिथुआनिया) +text(Letonia) text(borders) text(बेलारूस) +text(拉脫維亞) text(is:butted:against) text(俄罗斯) +text(لاتفيا) text(was:butted:against) text(愛沙尼亞) +text(Oman) text(was:located:in) text(Zuidwest-Azië) +text(Omán) text(can:be:found:in) text(Azië) +text(Oman) text(was:adjacent:to) text(Arabia:Saudí) +text(ओमान) text(is:adjacent:to) text(اليمن) +text(سلطنة:عمان) text(neighbors) text(Emiratos:Árabes:Unidos) +text(Saint-Pierre:en:Miquelon) text(was:positioned:in) text(América:del:Norte) +text(سان:بيير:وميكلون) text(is:positioned:in) text(Americas) +text(Martinique) text(was:sited:in) text(Caribbean) +text(مارتينيك) text(is:sited:in) text(美洲) +text(United:Kingdom) text(was:localized:in) text(Noord-Europa) +text(英国) text(is:localized:in) text(أوروبا) +text(यूनाइटेड:किंगडम) text(is:a:neighboring:country:of) text(英国) +text(إسرائيل) text(was:present:in) text(Asia:Occidental) +text(Israel) text(is:present:in) text(Asia) +text(Israel) text(was:a:neighboring:country:of) text(黎巴嫩) +text(以色列) text(neighbors:with) text(Egypt) +text(Israël) text(was:a:neighbor:of) text(जॉर्डन) +text(इज़राइल) text(is:a:neighbor:of) text(Syrië) +text(Jersey) text(is:still:in) text(उत्तरी:यूरोप) +text(جيرزي) text(was:still:in) text(Europe) +text(皮特凯恩群岛) text(was:currently:in) text(Polynesia) +text(Islas:Pitcairn) text(is:currently:in) text(Oceanía) +text(多哥) text(is:placed:in) text(西非) +text(Togo) text(was:placed:in) text(África) +text(Togo) text(is:a:neighboring:state:to) text(布吉納法索) +text(توغو) text(was:a:neighboring:state:to) text(غانا) +text(Togo) text(borders:with) text(貝南) +text(吉里巴斯) text(can:be:found:in) text(Micronesië) +text(Kiribati) text(was:situated:in) text(大洋洲) +text(Irán) text(is:situated:in) text(South:Asia) +text(Iran) text(is:located:in) text(亞洲) +text(ईरान) text(borders) text(Afghanistan) +text(Iran) text(is:butted:against) text(土庫曼斯坦) +text(伊朗) text(was:butted:against) text(तुर्की) +text(إيران) text(was:adjacent:to) text(Armenia) +text(Irán) text(is:adjacent:to) text(Azerbaijan) +text(Iran) text(neighbors) text(巴基斯坦) +text(ईरान) text(is:a:neighboring:country:of) text(इराक) +text(法屬聖馬丁) text(was:located:in) text(الكاريبي) +text(Saint-Martin) text(can:be:found:in) text(महाअमेरिका) +text(تجمع:سان:مارتين) text(was:a:neighboring:country:of) text(Sint:Maarten) +text(Dominican:Republic) text(was:positioned:in) text(加勒比地区) +text(جمهورية:الدومينيكان) text(is:positioned:in) text(Amerika) +text(República:Dominicana) text(neighbors:with) text(हैती) +text(Dinamarca) text(was:sited:in) text(أوروبا:الشمالية) +text(Denemarken) text(was:a:neighbor:of) text(Germany) +text(Bermuda) text(is:sited:in) text(उत्तर:अमेरिका) +text(बरमूडा) text(was:localized:in) text(América) +text(Chili) text(is:localized:in) text(أمريكا:الجنوبية) +text(Chile) text(is:a:neighbor:of) text(Argentinië) +text(تشيلي) text(is:a:neighboring:state:to) text(Bolivia) +text(Chile) text(was:a:neighboring:state:to) text(Perú) +text(科索沃) text(was:present:in) text(东欧) +text(Kosovo) text(is:present:in) text(Europa) +text(कोसोवो:गणराज्य) text(borders:with) text(Serbia) +text(Kosovo) text(borders) text(अल्बानिया) +text(كوسوفو) text(is:butted:against) text(مقدونيا:الشمالية) +text(Kosovo) text(was:butted:against) text(मॉन्टेनीग्रो) +text(सन्त:किट्स:और:नेविस) text(is:still:in) text(Caraïben) +text(Saint:Kitts:and:Nevis) text(was:still:in) text(أمريكتان) +text(Eritrea) text(was:currently:in) text(Oost-Afrika) +text(Eritrea) text(was:adjacent:to) text(Yibuti) +text(इरित्रिया) text(is:adjacent:to) text(السودان) +text(إرتريا) text(neighbors) text(إثيوبيا) +text(赤道几内亚) text(is:currently:in) text(मध्य:अफ्रीका) +text(غينيا:الاستوائية) text(is:placed:in) text(अफ्रीका) +text(Equatorial:Guinea) text(is:a:neighboring:country:of) text(Gabon) +text(Equatoriaal-Guinea) text(was:a:neighboring:country:of) text(الكاميرون) +text(Niger) text(was:placed:in) text(West:Africa) +text(尼日尔) text(can:be:found:in) text(إفريقيا) +text(नाइजर) text(neighbors:with) text(Chad) +text(النيجر) text(was:a:neighbor:of) text(Libya) +text(Níger) text(is:a:neighbor:of) text(बुर्किना:फासो) +text(Niger) text(is:a:neighboring:state:to) text(Benin) +text(Niger) text(was:a:neighboring:state:to) text(Mali) +text(尼日尔) text(borders:with) text(Algeria) +text(नाइजर) text(borders) text(نيجيريا) +text(Anguilla) text(was:situated:in) text(कैरिबिया) +text(安圭拉) text(is:situated:in) text(Americas) +text(रवाण्डा) text(is:located:in) text(पूर्वी:अफ्रीका) +text(رواندا) text(was:located:in) text(非洲) +text(Ruanda) text(is:butted:against) text(蒲隆地) +text(卢旺达) text(was:butted:against) text(坦桑尼亞) +text(Rwanda) text(was:adjacent:to) text(烏干達) +text(Rwanda) text(is:adjacent:to) text(刚果民主共和国) +text(الإمارات:العربية:المتحدة) text(can:be:found:in) text(West:Asia) +text(阿拉伯联合酋长国) text(was:positioned:in) text(آسيا) +text(संयुक्त:अरब:अमीरात) text(neighbors) text(阿曼) +text(Verenigde:Arabische:Emiraten) text(is:a:neighboring:country:of) text(Saoedi-Arabië) +text(Estonia) text(is:positioned:in) text(北歐) +text(एस्टोनिया) text(was:sited:in) text(欧洲) +text(Estonia) text(was:a:neighboring:country:of) text(Letland) +text(Estland) text(neighbors:with) text(Rusia) +text(Griekenland) text(is:sited:in) text(أوروبا:الجنوبية) +text(Grecia) text(was:localized:in) text(Europa) +text(اليونان) text(was:a:neighbor:of) text(Bulgarije) +text(यूनान) text(is:a:neighbor:of) text(ألبانيا) +text(Greece) text(is:a:neighboring:state:to) text(उत्तर:मैसिडोनिया) +text(希腊) text(was:a:neighboring:state:to) text(Turquía) +text(Senegal) text(is:localized:in) text(África:Occidental) +text(Senegal) text(was:present:in) text(Africa) +text(सेनेगल) text(borders:with) text(Guinea-Bisáu) +text(Senegal) text(borders) text(毛里塔尼亞) +text(塞内加尔) text(is:butted:against) text(马里) +text(السنغال) text(was:butted:against) text(غامبيا) +text(Senegal) text(was:adjacent:to) text(Guinea) +text(瓜德羅普) text(is:present:in) text(Caribe) +text(Guadalupe) text(is:still:in) text(美洲) +text(Mónaco) text(was:still:in) text(أوروبا:الغربية) +text(摩納哥) text(is:adjacent:to) text(法國) +text(جيبوتي) text(was:currently:in) text(东部非洲) +text(Djibouti) text(neighbors) text(厄立特里亞) +text(जिबूती) text(is:a:neighboring:country:of) text(सोमालिया) +text(吉布提) text(was:a:neighboring:country:of) text(Ethiopië) +text(Indonesia) text(is:currently:in) text(Sudeste:Asiático) +text(इंडोनेशिया) text(neighbors:with) text(Papua:New:Guinea) +text(إندونيسيا) text(was:a:neighbor:of) text(Timor:Oriental) +text(Indonesië) text(is:a:neighbor:of) text(मलेशिया) +text(British:Virgin:Islands) text(is:placed:in) text(Caribbean) +text(جزر:عذراء:بريطانية) text(was:placed:in) text(महाअमेरिका) +text(कुक:द्वीपसमूह) text(can:be:found:in) text(Polynesië) +text(Cookeilanden) text(was:situated:in) text(Oceanië) +text(أوغندا) text(is:situated:in) text(East:Africa) +text(Uganda) text(is:located:in) text(Afrika) +text(Oeganda) text(is:a:neighboring:state:to) text(तंज़ानिया) +text(युगाण्डा) text(was:a:neighboring:state:to) text(جمهورية:الكونغو:الديمقراطية) +text(Uganda) text(borders:with) text(कीनिया) +text(烏干達) text(borders) text(جنوب:السودان) +text(أوغندا) text(is:butted:against) text(रवाण्डा) +text(Noord-Macedonië) text(was:located:in) text(Zuid-Europa) +text(北马其顿) text(can:be:found:in) text(यूरोप) +text(Macedonia:del:Norte) text(was:butted:against) text(科索沃) +text(North:Macedonia) text(was:adjacent:to) text(Griekenland) +text(مقدونيا:الشمالية) text(is:adjacent:to) text(Albanië) +text(उत्तर:मैसिडोनिया) text(neighbors) text(सर्बिया) +text(Noord-Macedonië) text(is:a:neighboring:country:of) text(بلغاريا) +text(ट्यूनिशिया) text(was:positioned:in) text(Norte:de:África) +text(突尼西亞) text(is:positioned:in) text(África) +text(Tunesië) text(was:a:neighboring:country:of) text(利比亞) +text(Tunisia) text(neighbors:with) text(Argelia) +text(Ecuador) text(was:sited:in) text(दक्षिण:अमेरिका) +text(Ecuador) text(was:a:neighbor:of) text(पेरू) +text(厄瓜多尔) text(is:a:neighbor:of) text(Colombia) +text(Brazil) text(is:sited:in) text(Zuid-Amerika) +text(ब्राज़ील) text(was:localized:in) text(Amerika) +text(البرازيل) text(is:a:neighboring:state:to) text(玻利維亞) +text(巴西) text(was:a:neighboring:state:to) text(कोलम्बिया) +text(Brasil) text(borders:with) text(Paraguay) +text(Brazilië) text(borders) text(Uruguay) +text(Brazil) text(is:butted:against) text(Frans-Guyana) +text(ब्राज़ील) text(was:butted:against) text(Surinam) +text(البرازيل) text(was:adjacent:to) text(委內瑞拉) +text(巴西) text(is:adjacent:to) text(अर्जेण्टीना) +text(Brasil) text(neighbors) text(غيانا) +text(Brazilië) text(is:a:neighboring:country:of) text(Peru) +text(باراغواي) text(is:localized:in) text(南美洲) +text(巴拉圭) text(was:present:in) text(América) +text(Paraguay) text(was:a:neighboring:country:of) text(الأرجنتين) +text(पैराग्वे) text(neighbors:with) text(Brazil) +text(Paraguay) text(was:a:neighbor:of) text(बोलिविया) +text(Finland) text(is:present:in) text(Northern:Europe) +text(फ़िनलैण्ड) text(is:still:in) text(أوروبا) +text(فنلندا) text(is:a:neighbor:of) text(Noorwegen) +text(Finlandia) text(is:a:neighboring:state:to) text(स्वीडन) +text(Finland) text(was:a:neighboring:state:to) text(Russia) +text(約旦) text(was:still:in) text(غرب:آسيا) +text(Jordania) text(borders:with) text(السعودية) +text(الأردن) text(borders) text(إسرائيل) +text(Jordan) text(is:butted:against) text(Iraq) +text(Jordanië) text(was:butted:against) text(سوريا) +text(पूर्वी:तिमोर) text(was:currently:in) text(جنوب:شرق:آسيا) +text(Timor-Leste) text(was:adjacent:to) text(印度尼西亚) +text(Montenegro) text(is:currently:in) text(Europa:del:Sur) +text(Montenegro) text(is:placed:in) text(Europe) +text(الجبل:الأسود) text(is:adjacent:to) text(Kosovo) +text(Montenegro) text(neighbors) text(बोस्निया:और:हर्ज़ेगोविना) +text(蒙特內哥羅) text(is:a:neighboring:country:of) text(Kroatië) +text(मॉन्टेनीग्रो) text(was:a:neighboring:country:of) text(صربيا) +text(Montenegro) text(neighbors:with) text(阿爾巴尼亞) +text(秘鲁) text(was:placed:in) text(América:del:Sur) +text(بيرو) text(can:be:found:in) text(أمريكتان) +text(Peru) text(was:a:neighbor:of) text(Ecuador) +text(Perú) text(is:a:neighbor:of) text(بوليفيا) +text(पेरू) text(is:a:neighboring:state:to) text(चिली) +text(Peru) text(was:a:neighboring:state:to) text(ब्राज़ील) +text(秘鲁) text(borders:with) text(哥伦比亚) +text(मॉण्टसेराट) text(was:situated:in) text(الكاريبي) +text(蒙塞拉特島) text(is:situated:in) text(Americas) +text(烏克蘭) text(is:located:in) text(Eastern:Europe) +text(Ucrania) text(was:located:in) text(Europa) +text(Ukraine) text(borders) text(Slovakia) +text(युक्रेन) text(is:butted:against) text(白俄羅斯) +text(Oekraïne) text(was:butted:against) text(Polonia) +text(أوكرانيا) text(was:adjacent:to) text(Rusland) +text(烏克蘭) text(is:adjacent:to) text(हंगरी) +text(Ucrania) text(neighbors) text(摩爾多瓦) +text(Ukraine) text(is:a:neighboring:country:of) text(रोमानिया) +text(डोमिनिका) text(can:be:found:in) text(加勒比地区) +text(Dominica) text(was:positioned:in) text(美洲) +text(Turkmenistan) text(is:positioned:in) text(Centraal-Azië) +text(Turkmenistan) text(was:a:neighboring:country:of) text(كازاخستان) +text(Turkmenistán) text(neighbors:with) text(अफ़्ग़ानिस्तान) +text(تركمانستان) text(was:a:neighbor:of) text(أوزبكستان) +text(तुर्कमेनिस्तान) text(is:a:neighbor:of) text(Iran) +text(غيرنزي) text(was:sited:in) text(Europa:del:Norte) +text(Guernsey) text(is:sited:in) text(欧洲) +text(直布羅陀) text(was:localized:in) text(दक्षिणी:यूरोप) +text(जिब्राल्टर) text(is:localized:in) text(Europa) +text(Gibraltar) text(is:a:neighboring:state:to) text(Spain) +text(स्विट्ज़रलैण्ड) text(was:present:in) text(West-Europa) +text(瑞士) text(is:present:in) text(यूरोप) +text(Zwitserland) text(was:a:neighboring:state:to) text(Duitsland) +text(سويسرا) text(borders:with) text(إيطاليا) +text(Suiza) text(borders) text(النمسا) +text(Switzerland) text(is:butted:against) text(फ़्रान्स) +text(स्विट्ज़रलैण्ड) text(was:butted:against) text(列支敦斯登) +text(ऑस्ट्रिया) text(is:still:in) text(西欧) +text(Oostenrijk) text(was:still:in) text(أوروبا) +text(Austria) text(was:adjacent:to) text(Alemania) +text(奧地利) text(is:adjacent:to) text(斯洛伐克) +text(Austria) text(neighbors) text(स्लोवेनिया) +text(النمسا) text(is:a:neighboring:country:of) text(Italy) +text(ऑस्ट्रिया) text(was:a:neighboring:country:of) text(瑞士) +text(Oostenrijk) text(neighbors:with) text(Hongarije) +text(Austria) text(was:a:neighbor:of) text(Liechtenstein) +text(奧地利) text(is:a:neighbor:of) text(Czech:Republic) +text(Hungría) text(was:currently:in) text(पूर्वी:यूरोप) +text(المجر) text(is:a:neighboring:state:to) text(युक्रेन) +text(Hungary) text(was:a:neighboring:state:to) text(سلوفاكيا) +text(匈牙利) text(borders:with) text(Eslovenia) +text(हंगरी) text(borders) text(Croatia) +text(Hongarije) text(is:butted:against) text(Austria) +text(Hungría) text(was:butted:against) text(Serbia) +text(المجر) text(was:adjacent:to) text(Roemenië) +text(मलावी) text(is:currently:in) text(África:Oriental) +text(Malawi) text(is:placed:in) text(अफ्रीका) +text(馬拉威) text(is:adjacent:to) text(贊比亞) +text(Malaui) text(neighbors) text(Tanzania) +text(Malawi) text(is:a:neighboring:country:of) text(Mozambique) +text(香港) text(was:placed:in) text(East:Asia) +text(Hong:Kong) text(was:a:neighboring:country:of) text(الصين) +text(Liechtenstein) text(can:be:found:in) text(Europa:Occidental) +text(Liechtenstein) text(was:situated:in) text(Europe) +text(ليختنشتاين) text(neighbors:with) text(Zwitserland) +text(लिक्टेन्स्टाइन) text(was:a:neighbor:of) text(النمسا) +text(Barbados) text(is:situated:in) text(Caraïben) +text(Barbados) text(is:located:in) text(महाअमेरिका) +text(格鲁吉亚) text(was:located:in) text(पश्चिमी:एशिया) +text(Georgië) text(can:be:found:in) text(एशिया) +text(Georgia) text(is:a:neighbor:of) text(Armenië) +text(جورجيا) text(is:a:neighboring:state:to) text(Azerbeidzjan) +text(जॉर्जिया) text(was:a:neighboring:state:to) text(रूस) +text(Georgia) text(borders:with) text(土耳其) +text(Albania) text(was:positioned:in) text(南欧) +text(Albania) text(is:positioned:in) text(Europa) +text(अल्बानिया) text(borders) text(Montenegro) +text(ألبانيا) text(is:butted:against) text(北马其顿) +text(Albanië) text(was:butted:against) text(कोसोवो:गणराज्य) +text(阿爾巴尼亞) text(was:adjacent:to) text(Grecia) +text(科威特) text(was:sited:in) text(西亚) +text(الكويت) text(is:sited:in) text(Asia) +text(Koeweit) text(is:adjacent:to) text(沙特阿拉伯) +text(Kuwait) text(neighbors) text(Irak) +text(جنوب:إفريقيا) text(was:localized:in) text(إفريقيا:الجنوبية) +text(दक्षिण:अफ़्रीका) text(is:localized:in) text(إفريقيا) +text(南非) text(is:a:neighboring:country:of) text(Mozambique) +text(South:Africa) text(was:a:neighboring:country:of) text(बोत्सवाना) +text(Sudáfrica) text(neighbors:with) text(إسواتيني) +text(Zuid-Afrika) text(was:a:neighbor:of) text(Zimbabue) +text(جنوب:إفريقيا) text(is:a:neighbor:of) text(Namibia) +text(दक्षिण:अफ़्रीका) text(is:a:neighboring:state:to) text(Lesoto) +text(Haïti) text(was:present:in) text(कैरिबिया) +text(Haití) text(is:present:in) text(Amerika) +text(海地) text(was:a:neighboring:state:to) text(डोमिनिकन:गणराज्य) +text(أفغانستان) text(is:still:in) text(جنوب:آسيا) +text(Afghanistan) text(was:still:in) text(Azië) +text(阿富汗) text(borders:with) text(土庫曼斯坦) +text(Afganistán) text(borders) text(People's:Republic:of:China) +text(Afghanistan) text(is:butted:against) text(塔吉克斯坦) +text(अफ़्ग़ानिस्तान) text(was:butted:against) text(Oezbekistan) +text(أفغانستان) text(was:adjacent:to) text(伊朗) +text(Afghanistan) text(is:adjacent:to) text(باكستان) +text(سنغافورة) text(was:currently:in) text(东南亚) +text(新加坡) text(is:currently:in) text(Asia) +text(بنين) text(is:placed:in) text(غرب:إفريقيا) +text(Benín) text(was:placed:in) text(非洲) +text(Benin) text(neighbors) text(النيجر) +text(बेनिन) text(is:a:neighboring:country:of) text(بوركينا:فاسو) +text(貝南) text(was:a:neighboring:country:of) text(टोगो) +text(Benin) text(neighbors:with) text(Nigeria) +text(奥兰) text(can:be:found:in) text(Noord-Europa) +text(Åland) text(was:situated:in) text(欧洲) +text(Croacia) text(is:situated:in) text(Southern:Europe) +text(克羅地亞) text(is:located:in) text(Europa) +text(क्रोएशिया) text(was:a:neighbor:of) text(Slovenië) +text(كرواتيا) text(is:a:neighbor:of) text(Bosnia:and:Herzegovina) +text(Kroatië) text(is:a:neighboring:state:to) text(Hungary) +text(Croatia) text(was:a:neighboring:state:to) text(塞爾維亞) +text(Croacia) text(borders:with) text(الجبل:الأسود) +text(Zweden) text(was:located:in) text(उत्तरी:यूरोप) +text(Sweden) text(can:be:found:in) text(यूरोप) +text(السويد) text(borders) text(नॉर्वे) +text(瑞典) text(is:butted:against) text(芬蘭) +text(México) text(was:positioned:in) text(North:America) +text(मेक्सिको) text(was:butted:against) text(Belize) +text(墨西哥) text(was:adjacent:to) text(美國) +text(المكسيك) text(is:adjacent:to) text(Guatemala) +text(Greenland) text(is:positioned:in) text(北美洲) +text(ग्रीनलैण्ड) text(was:sited:in) text(América) +text(جزر:بيتكيرن) text(is:sited:in) text(nan) +text(Islas:Pitcairn) text(was:localized:in) text(Oceania) +text(नेपाल) text(is:localized:in) text(南亚) +text(نيبال) text(was:present:in) text(亞洲) +text(Nepal) text(neighbors) text(Volksrepubliek:China) +text(尼泊爾) text(is:a:neighboring:country:of) text(भारत) +text(Guatemala) text(is:present:in) text(Centraal-Amerika) +text(ग्वाटेमाला) text(was:a:neighboring:country:of) text(बेलीज़) +text(غواتيمالا) text(neighbors:with) text(薩爾瓦多) +text(Guatemala) text(was:a:neighbor:of) text(Mexico) +text(危地马拉) text(is:a:neighbor:of) text(Honduras) +text(大韩民国) text(is:still:in) text(شرق:آسيا) +text(Corea:del:Sur) text(was:still:in) text(آسيا) +text(दक्षिण:कोरिया) text(is:a:neighboring:state:to) text(كوريا:الشمالية) +text(Moldavië) text(was:currently:in) text(Europa:Oriental) +text(Moldavia) text(is:currently:in) text(أوروبا) +text(مولدوفا) text(was:a:neighboring:state:to) text(Oekraïne) +text(मोल्डोवा) text(borders:with) text(رومانيا) +text(موريشيوس) text(is:placed:in) text(شرق:إفريقيا) +text(Mauricio) text(was:placed:in) text(Africa) +text(Belarus) text(can:be:found:in) text(Oost-Europa) +text(Bielorrusia) text(borders) text(أوكرانيا) +text(Wit-Rusland) text(is:butted:against) text(पोलैंड) +text(بيلاروس) text(was:butted:against) text(ليتوانيا) +text(बेलारूस) text(was:adjacent:to) text(روسيا) +text(白俄羅斯) text(is:adjacent:to) text(लातविया) +text(孟加拉國) text(was:situated:in) text(दक्षिण:एशिया) +text(Bangladés) text(neighbors) text(म्यान्मार) +text(بنغلاديش) text(is:a:neighboring:country:of) text(印度) +text(Malaysia) text(is:situated:in) text(दक्षिण:पूर्व:एशिया) +text(Malasia) text(is:located:in) text(एशिया) +text(Maleisië) text(was:a:neighboring:country:of) text(تايلاند) +text(ماليزيا) text(neighbors:with) text(Indonesia) +text(馬來西亞) text(was:a:neighbor:of) text(ब्रुनेई) +text(البوسنة:والهرسك) text(was:located:in) text(أوروبا:الجنوبية) +text(Bosnia:y:Herzegovina) text(can:be:found:in) text(Europe) +text(波斯尼亚和黑塞哥维那) text(is:a:neighbor:of) text(Servië) +text(Bosnië:en:Herzegovina) text(is:a:neighboring:state:to) text(克羅地亞) +text(बोस्निया:और:हर्ज़ेगोविना) text(was:a:neighboring:state:to) text(Montenegro) +text(Luxembourg) text(was:positioned:in) text(पश्चिमी:यूरोप) +text(Luxemburg) text(is:positioned:in) text(Europa) +text(卢森堡) text(borders:with) text(德國) +text(Luxemburgo) text(borders) text(België) +text(لوكسمبورغ) text(is:butted:against) text(France) +text(Italië) text(was:sited:in) text(Zuid-Europa) +text(Italia) text(is:sited:in) text(欧洲) +text(意大利) text(was:butted:against) text(Slovenia) +text(इटली) text(was:adjacent:to) text(سويسرا) +text(إيطاليا) text(is:adjacent:to) text(ऑस्ट्रिया) +text(Italy) text(neighbors) text(Frankrijk) +text(Italië) text(is:a:neighboring:country:of) text(Vatican:City) +text(Italia) text(was:a:neighboring:country:of) text(सान:मारिनो) +text(أذربيجان) text(was:localized:in) text(Zuidwest-Azië) +text(अज़रबैजान) text(is:localized:in) text(Asia) +text(阿塞拜疆) text(neighbors:with) text(Turkije) +text(Azerbaiyán) text(was:a:neighbor:of) text(आर्मीनिया) +text(Azerbaijan) text(is:a:neighbor:of) text(俄罗斯) +text(Azerbeidzjan) text(is:a:neighboring:state:to) text(إيران) +text(أذربيجان) text(was:a:neighboring:state:to) text(格鲁吉亚) +text(Honduras) text(was:present:in) text(Central:America) +text(洪都拉斯) text(is:present:in) text(أمريكتان) +text(हॉण्डुरस) text(borders:with) text(Guatemala) +text(Honduras) text(borders) text(نيكاراغوا) +text(هندوراس) text(is:butted:against) text(El:Salvador) +text(Mali) text(is:still:in) text(West-Afrika) +text(مالي) text(was:still:in) text(Afrika) +text(माली) text(was:butted:against) text(Burkina:Faso) +text(Mali) text(was:adjacent:to) text(غينيا) +text(Mali) text(is:adjacent:to) text(Mauritania) +text(马里) text(neighbors) text(Níger) +text(Mali) text(is:a:neighboring:country:of) text(Senegal) +text(مالي) text(was:a:neighboring:country:of) text(अल्जीरिया) +text(माली) text(neighbors:with) text(科特迪瓦) +text(República:de:China) text(was:currently:in) text(Oost-Azië) +text(चीनी:गणराज्य) text(is:currently:in) text(Azië) +text(الجزائر) text(is:placed:in) text(北部非洲) +text(阿爾及利亞) text(was:placed:in) text(África) +text(Algerije) text(was:a:neighbor:of) text(Libia) +text(Algeria) text(is:a:neighbor:of) text(تونس) +text(Argelia) text(is:a:neighboring:state:to) text(موريتانيا) +text(अल्जीरिया) text(was:a:neighboring:state:to) text(Marokko) +text(الجزائر) text(borders:with) text(Niger) +text(阿爾及利亞) text(borders) text(Mali) +text(Algerije) text(is:butted:against) text(सहरावी:अरब:जनतांत्रिक:गणराज्य) +text(फ़्रान्सीसी:गुयाना) text(can:be:found:in) text(South:America) +text(法屬圭亞那) text(was:butted:against) text(البرازيل) +text(French:Guiana) text(was:adjacent:to) text(蘇利南) +text(Jemen) text(was:situated:in) text(Asia:Occidental) +text(Yemen) text(is:situated:in) text(Asia) +text(Yemen) text(is:adjacent:to) text(Oman) +text(यमन) text(neighbors) text(Saudi:Arabia) +text(Puerto:Rico) text(is:located:in) text(Caribe) +text(पोर्टो:रीको) text(was:located:in) text(Americas) +text(Saint:Vincent:en:de:Grenadines) text(can:be:found:in) text(Caribbean) +text(Saint:Vincent:and:the:Grenadines) text(was:positioned:in) text(美洲) +text(वेनेज़ुएला) text(is:positioned:in) text(أمريكا:الجنوبية) +text(Venezuela) text(is:a:neighboring:country:of) text(巴西) +text(Venezuela) text(was:a:neighboring:country:of) text(Guyana) +text(فنزويلا) text(neighbors:with) text(Colombia) +text(Granada) text(was:sited:in) text(الكاريبي) +text(ग्रेनाडा) text(is:sited:in) text(महाअमेरिका) +text(الولايات:المتحدة) text(was:localized:in) text(Noord-Amerika) +text(Verenigde:Staten) text(was:a:neighbor:of) text(Canada) +text(United:States) text(is:a:neighbor:of) text(Mexico) +text(Tokelau) text(is:localized:in) text(Polinesia) +text(टोकेलाऊ) text(was:present:in) text(ओशिआनिया) +text(سلوفينيا) text(is:present:in) text(Europa:del:Sur) +text(斯洛文尼亞) text(is:still:in) text(Europa) +text(स्लोवेनिया) text(is:a:neighboring:state:to) text(Oostenrijk) +text(Eslovenia) text(was:a:neighboring:state:to) text(क्रोएशिया) +text(Slovenië) text(borders:with) text(意大利) +text(Slovenia) text(borders) text(匈牙利) +text(Filipinas) text(was:still:in) text(Southeast:Asia) +text(菲律賓) text(was:currently:in) text(亞洲) +text(密克羅尼西亞群島) text(is:currently:in) text(माइक्रोनीशिया) +text(ميكرونيسيا) text(is:placed:in) text(أوقيانوسيا) +text(中华人民共和国) text(was:placed:in) text(पूर्वी:एशिया) +text(चीनी:जनवादी:गणराज्य) text(can:be:found:in) text(آسيا) +text(República:Popular:China) text(is:butted:against) text(阿富汗) +text(الصين) text(was:butted:against) text(Bhutan) +text(People's:Republic:of:China) text(was:adjacent:to) text(मकाउ) +text(Volksrepubliek:China) text(is:adjacent:to) text(India) +text(中华人民共和国) text(neighbors) text(Kazakhstan) +text(चीनी:जनवादी:गणराज्य) text(is:a:neighboring:country:of) text(किर्गिज़स्तान) +text(República:Popular:China) text(was:a:neighboring:country:of) text(Tadzjikistan) +text(الصين) text(neighbors:with) text(Laos) +text(People's:Republic:of:China) text(was:a:neighbor:of) text(Rusia) +text(Volksrepubliek:China) text(is:a:neighbor:of) text(Corea:del:Norte) +text(中华人民共和国) text(is:a:neighboring:state:to) text(Myanmar) +text(चीनी:जनवादी:गणराज्य) text(was:a:neighboring:state:to) text(पाकिस्तान) +text(República:Popular:China) text(borders:with) text(मंगोलिया) +text(الصين) text(borders) text(هونغ:كونغ) +text(People's:Republic:of:China) text(is:butted:against) text(فيتنام) +text(Gabon) text(was:situated:in) text(وسط:إفريقيا) +text(加蓬) text(is:situated:in) text(अफ्रीका) +text(الغابون) text(was:butted:against) text(Guinea:Ecuatorial) +text(गबॉन) text(was:adjacent:to) text(剛果共和國) +text(Gabón) text(is:adjacent:to) text(喀麦隆) +text(Islas:ultramarinas:de:Estados:Unidos) text(is:located:in) text(أمريكا:الشمالية) +text(جزر:الولايات:المتحدة:الصغيرة:النائية) text(was:located:in) text(Amerika) +text(Andorra) text(can:be:found:in) text(दक्षिणी:यूरोप) +text(Andorra) text(was:positioned:in) text(यूरोप) +text(安道尔) text(neighbors) text(स्पेन) +text(Andorra) text(is:a:neighboring:country:of) text(فرنسا) +text(समोआ) text(is:positioned:in) text(玻里尼西亞) +text(ساموا) text(was:sited:in) text(Oceanía) +text(गाम्बिया) text(is:sited:in) text(पश्चिमी:अफ्रीका) +text(Gambia) text(was:localized:in) text(إفريقيا) +text(Gambia) text(was:a:neighboring:country:of) text(सेनेगल) +text(nan) text(is:localized:in) text(West:Asia) +text(Pedro:Miguel) text(was:present:in) text(एशिया) +text(nan) text(neighbors:with) text(जॉर्डन) +text(Pedro:Miguel) text(was:a:neighbor:of) text(मिस्र) +text(nan) text(is:a:neighbor:of) text(Israel) +text(रेयूनियों) text(is:present:in) text(Oost-Afrika) +text(Réunion) text(is:still:in) text(非洲) +text(Francia) text(was:still:in) text(Western:Europe) +text(法國) text(was:currently:in) text(أوروبا) +text(फ़्रान्स) text(is:a:neighboring:state:to) text(ألمانيا) +text(France) text(was:a:neighboring:state:to) text(लक्ज़मबर्ग) +text(Frankrijk) text(borders:with) text(इटली) +text(فرنسا) text(borders) text(अण्डोरा) +text(Francia) text(is:butted:against) text(Suiza) +text(法國) text(was:butted:against) text(Monaco) +text(फ़्रान्स) text(was:adjacent:to) text(比利時) +text(France) text(is:adjacent:to) text(España) +text(منغوليا) text(is:currently:in) text(Asia:Oriental) +text(Mongolia) text(is:placed:in) text(Asia) +text(蒙古國) text(neighbors) text(Volksrepubliek:China) +text(Mongolia) text(is:a:neighboring:country:of) text(Russia) +text(立陶宛) text(was:placed:in) text(أوروبا:الشمالية) +text(Lithuania) text(can:be:found:in) text(Europe) +text(Lituania) text(was:a:neighboring:country:of) text(Polen) +text(Litouwen) text(neighbors:with) text(Latvia) +text(लिथुआनिया) text(was:a:neighbor:of) text(Belarus) +text(ليتوانيا) text(is:a:neighbor:of) text(Rusland) +text(Islas:Caimán) text(was:situated:in) text(加勒比地区) +text(開曼群島) text(is:situated:in) text(América) +text(सेंट:लूसिया) text(is:located:in) text(Caraïben) +text(Saint:Lucia) text(was:located:in) text(أمريكتان) +text(कुराकाओ) text(can:be:found:in) text(कैरिबिया) +text(كوراساو) text(was:positioned:in) text(Americas) +text(Caribe) text(is:positioned:in) text(美洲) +text(Asia:del:Sur) text(was:sited:in) text(Azië) +text(África:Central) text(is:sited:in) text(Africa) +text(北歐) text(was:localized:in) text(Europa) +text(南欧) text(is:localized:in) text(欧洲) +text(غرب:آسيا) text(was:present:in) text(Asia) +text(दक्षिण:अमेरिका) text(is:present:in) text(महाअमेरिका) +text(بولنيزيا) text(is:still:in) text(大洋洲) +text(nan) text(was:still:in) text(Oceanië) +text(أوروبا:الغربية) text(was:currently:in) text(Europa) +text(पूर्वी:अफ्रीका) text(is:currently:in) text(Afrika) +text(西非) text(is:placed:in) text(África) +text(أوروبا:الشرقية) text(was:placed:in) text(यूरोप) +text(केंद्रीय:अमेरिका) text(can:be:found:in) text(Amerika) +text(América:del:Norte) text(was:situated:in) text(América) +text(Zuidoost-Azië) text(is:situated:in) text(亞洲) +text(Southern:Africa) text(is:located:in) text(अफ्रीका) +text(東亞) text(was:located:in) text(آسيا) +text(شمال:إفريقيا) text(can:be:found:in) text(إفريقيا) +text(मॅलानिशिया) text(was:positioned:in) text(Oceania) +text(Micronesia) text(is:positioned:in) text(ओशिआनिया) +text(मध्य:एशिया) text(was:sited:in) text(एशिया) +text(Central:Europe) text(is:sited:in) text(أوروبا) \ No newline at end of file diff --git a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_relation2text.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_relation2text.tsv index a33fd1c..d6d5727 100644 --- a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_relation2text.tsv +++ b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_relation2text.tsv @@ -1,944 +1,944 @@ palau text(is:positioned:in) micronesia palau text(was:sited:in) oceania maldives text(is:sited:in) southern_asia -maldives text(is:placed:in) asia -brunei text(was:placed:in) south-eastern_asia -brunei text(was:localized:in) asia +maldives text(was:localized:in) asia +brunei text(is:localized:in) south-eastern_asia +brunei text(was:present:in) asia brunei text(was:a:neighboring:country:of) malaysia -japan text(is:localized:in) eastern_asia -japan text(was:present:in) asia -netherlands text(is:present:in) western_europe -netherlands text(was:adjacent:to) germany -netherlands text(is:adjacent:to) belgium -turkey text(is:still:in) western_asia -turkey text(was:a:neighbor:of) armenia -turkey text(is:a:neighbor:of) azerbaijan -turkey text(is:a:neighboring:state:to) iran -turkey text(was:a:neighboring:state:to) greece -turkey text(borders:with) georgia -turkey text(neighbors:withborders) bulgaria -turkey text(neighbors) iraq -turkey text(is:butted:against) syria -angola text(was:still:in) middle_africa -angola text(was:currently:in) africa -angola text(was:butted:against) dr_congo -angola text(is:a:neighboring:country:of) namibia -angola text(was:a:neighboring:country:of) zambia -angola text(was:adjacent:to) republic_of_the_congo -armenia text(is:currently:in) western_asia -armenia text(was:situated:in) asia -armenia text(is:adjacent:to) georgia +japan text(is:present:in) eastern_asia +japan text(is:still:in) asia +netherlands text(was:still:in) western_europe +netherlands text(neighbors:with) germany +netherlands text(was:a:neighbor:of) belgium +turkey text(was:currently:in) western_asia +turkey text(is:a:neighbor:of) armenia +turkey text(is:a:neighboring:state:to) azerbaijan +turkey text(was:a:neighboring:state:to) iran +turkey text(borders:with) greece +turkey text(borders) georgia +turkey text(is:butted:against) bulgaria +turkey text(was:butted:against) iraq +turkey text(was:adjacent:to) syria +angola text(is:currently:in) middle_africa +angola text(is:placed:in) africa +angola text(is:adjacent:to) dr_congo +angola text(neighbors) namibia +angola text(is:a:neighboring:country:of) zambia +angola text(was:a:neighboring:country:of) republic_of_the_congo +armenia text(was:placed:in) western_asia +armenia text(can:be:found:in) asia +armenia text(neighbors:with) georgia armenia text(was:a:neighbor:of) azerbaijan armenia text(is:a:neighbor:of) iran armenia text(is:a:neighboring:state:to) turkey -antigua_and_barbuda text(is:situated:in) caribbean -antigua_and_barbuda text(is:located:in) americas -swaziland text(was:located:in) southern_africa -swaziland text(could:be:found:in) africa +antigua_and_barbuda text(was:situated:in) caribbean +antigua_and_barbuda text(is:situated:in) americas +swaziland text(is:located:in) southern_africa +swaziland text(was:located:in) africa swaziland text(was:a:neighboring:state:to) south_africa swaziland text(borders:with) mozambique wallis_and_futuna text(can:be:found:in) polynesia wallis_and_futuna text(was:positioned:in) oceania uruguay text(is:positioned:in) south_america uruguay text(was:sited:in) americas -uruguay text(neighbors:withborders) argentina -uruguay text(neighbors) brazil +uruguay text(borders) argentina +uruguay text(is:butted:against) brazil zambia text(is:sited:in) eastern_africa -zambia text(is:placed:in) africa -zambia text(is:butted:against) tanzania -zambia text(was:butted:against) mozambique -zambia text(is:a:neighboring:country:of) dr_congo -zambia text(was:a:neighboring:country:of) angola -zambia text(was:adjacent:to) botswana -zambia text(is:adjacent:to) zimbabwe -zambia text(was:a:neighbor:of) namibia -zambia text(is:a:neighbor:of) malawi -cyprus text(was:placed:in) eastern_europe -cyprus text(was:localized:in) europe -cyprus text(is:a:neighboring:state:to) united_kingdom -ireland text(is:localized:in) northern_europe -ireland text(was:present:in) europe -ireland text(was:a:neighboring:state:to) united_kingdom -burundi text(is:present:in) eastern_africa -burundi text(is:still:in) africa -burundi text(borders:with) dr_congo -burundi text(neighbors:withborders) rwanda -burundi text(neighbors) tanzania -central_african_republic text(was:still:in) middle_africa -central_african_republic text(was:currently:in) africa +zambia text(was:localized:in) africa +zambia text(was:butted:against) tanzania +zambia text(was:adjacent:to) mozambique +zambia text(is:adjacent:to) dr_congo +zambia text(neighbors) angola +zambia text(is:a:neighboring:country:of) botswana +zambia text(was:a:neighboring:country:of) zimbabwe +zambia text(neighbors:with) namibia +zambia text(was:a:neighbor:of) malawi +cyprus text(is:localized:in) eastern_europe +cyprus text(was:present:in) europe +cyprus text(is:a:neighbor:of) united_kingdom +ireland text(is:present:in) northern_europe +ireland text(is:still:in) europe +ireland text(is:a:neighboring:state:to) united_kingdom +burundi text(was:still:in) eastern_africa +burundi text(was:currently:in) africa +burundi text(was:a:neighboring:state:to) dr_congo +burundi text(borders:with) rwanda +burundi text(borders) tanzania +central_african_republic text(is:currently:in) middle_africa +central_african_republic text(is:placed:in) africa central_african_republic text(is:butted:against) chad central_african_republic text(was:butted:against) republic_of_the_congo -central_african_republic text(is:a:neighboring:country:of) dr_congo -central_african_republic text(was:a:neighboring:country:of) south_sudan -central_african_republic text(was:adjacent:to) cameroon -central_african_republic text(is:adjacent:to) sudan -tonga text(is:currently:in) polynesia -tonga text(was:situated:in) oceania -ivory_coast text(is:situated:in) western_africa -ivory_coast text(is:located:in) africa -ivory_coast text(was:a:neighbor:of) burkina_faso -ivory_coast text(is:a:neighbor:of) ghana -ivory_coast text(is:a:neighboring:state:to) liberia -ivory_coast text(was:a:neighboring:state:to) mali -ivory_coast text(borders:with) guinea -sierra_leone text(was:located:in) western_africa -sierra_leone text(neighbors:withborders) liberia -sierra_leone text(neighbors) guinea -mayotte text(could:be:found:in) eastern_africa +central_african_republic text(was:adjacent:to) dr_congo +central_african_republic text(is:adjacent:to) south_sudan +central_african_republic text(neighbors) cameroon +central_african_republic text(is:a:neighboring:country:of) sudan +tonga text(was:placed:in) polynesia +tonga text(can:be:found:in) oceania +ivory_coast text(was:situated:in) western_africa +ivory_coast text(is:situated:in) africa +ivory_coast text(was:a:neighboring:country:of) burkina_faso +ivory_coast text(neighbors:with) ghana +ivory_coast text(was:a:neighbor:of) liberia +ivory_coast text(is:a:neighbor:of) mali +ivory_coast text(is:a:neighboring:state:to) guinea +sierra_leone text(is:located:in) western_africa +sierra_leone text(was:a:neighboring:state:to) liberia +sierra_leone text(borders:with) guinea +mayotte text(was:located:in) eastern_africa mayotte text(can:be:found:in) africa poland text(was:positioned:in) eastern_europe -poland text(is:butted:against) germany -poland text(was:butted:against) ukraine -poland text(is:a:neighboring:country:of) slovakia -poland text(was:a:neighboring:country:of) belarus -poland text(was:adjacent:to) russia -poland text(is:adjacent:to) lithuania -poland text(was:a:neighbor:of) czechia +poland text(borders) germany +poland text(is:butted:against) ukraine +poland text(was:butted:against) slovakia +poland text(was:adjacent:to) belarus +poland text(is:adjacent:to) russia +poland text(neighbors) lithuania +poland text(is:a:neighboring:country:of) czechia kazakhstan text(is:positioned:in) central_asia kazakhstan text(was:sited:in) asia -kazakhstan text(is:a:neighbor:of) turkmenistan -kazakhstan text(is:a:neighboring:state:to) china -kazakhstan text(was:a:neighboring:state:to) kyrgyzstan -kazakhstan text(borders:with) uzbekistan -kazakhstan text(neighbors:withborders) russia +kazakhstan text(was:a:neighboring:country:of) turkmenistan +kazakhstan text(neighbors:with) china +kazakhstan text(was:a:neighbor:of) kyrgyzstan +kazakhstan text(is:a:neighbor:of) uzbekistan +kazakhstan text(is:a:neighboring:state:to) russia uzbekistan text(is:sited:in) central_asia -uzbekistan text(is:placed:in) asia -uzbekistan text(neighbors) afghanistan -uzbekistan text(is:butted:against) turkmenistan -uzbekistan text(was:butted:against) kazakhstan -uzbekistan text(is:a:neighboring:country:of) kyrgyzstan -uzbekistan text(was:a:neighboring:country:of) tajikistan -turks_and_caicos_islands text(was:placed:in) caribbean -turks_and_caicos_islands text(was:localized:in) americas -new_caledonia text(is:localized:in) melanesia -new_caledonia text(was:present:in) oceania -pakistan text(is:present:in) southern_asia +uzbekistan text(was:localized:in) asia +uzbekistan text(was:a:neighboring:state:to) afghanistan +uzbekistan text(borders:with) turkmenistan +uzbekistan text(borders) kazakhstan +uzbekistan text(is:butted:against) kyrgyzstan +uzbekistan text(was:butted:against) tajikistan +turks_and_caicos_islands text(is:localized:in) caribbean +turks_and_caicos_islands text(was:present:in) americas +new_caledonia text(is:present:in) melanesia +new_caledonia text(is:still:in) oceania +pakistan text(was:still:in) southern_asia pakistan text(was:adjacent:to) china pakistan text(is:adjacent:to) afghanistan -pakistan text(was:a:neighbor:of) iran -pakistan text(is:a:neighbor:of) india -argentina text(is:still:in) south_america -argentina text(was:still:in) americas -argentina text(is:a:neighboring:state:to) bolivia -argentina text(was:a:neighboring:state:to) chile -argentina text(borders:with) brazil -argentina text(neighbors:withborders) paraguay -argentina text(neighbors) uruguay -cuba text(was:currently:in) caribbean -cuba text(is:currently:in) americas -serbia text(was:situated:in) southern_europe -serbia text(is:butted:against) macedonia -serbia text(was:butted:against) montenegro -serbia text(is:a:neighboring:country:of) kosovo -serbia text(was:a:neighboring:country:of) bosnia_and_herzegovina -serbia text(was:adjacent:to) croatia -serbia text(is:adjacent:to) hungary -serbia text(was:a:neighbor:of) bulgaria -serbia text(is:a:neighbor:of) romania -czechia text(is:situated:in) eastern_europe -czechia text(is:located:in) europe -czechia text(is:a:neighboring:state:to) germany -czechia text(was:a:neighboring:state:to) austria -czechia text(borders:with) poland -czechia text(neighbors:withborders) slovakia -nicaragua text(was:located:in) central_america -nicaragua text(neighbors) honduras -nicaragua text(is:butted:against) costa_rica -vietnam text(could:be:found:in) south-eastern_asia +pakistan text(neighbors) iran +pakistan text(is:a:neighboring:country:of) india +argentina text(was:currently:in) south_america +argentina text(is:currently:in) americas +argentina text(was:a:neighboring:country:of) bolivia +argentina text(neighbors:with) chile +argentina text(was:a:neighbor:of) brazil +argentina text(is:a:neighbor:of) paraguay +argentina text(is:a:neighboring:state:to) uruguay +cuba text(is:placed:in) caribbean +cuba text(was:placed:in) americas +serbia text(can:be:found:in) southern_europe +serbia text(was:a:neighboring:state:to) macedonia +serbia text(borders:with) montenegro +serbia text(borders) kosovo +serbia text(is:butted:against) bosnia_and_herzegovina +serbia text(was:butted:against) croatia +serbia text(was:adjacent:to) hungary +serbia text(is:adjacent:to) bulgaria +serbia text(neighbors) romania +czechia text(was:situated:in) eastern_europe +czechia text(is:situated:in) europe +czechia text(is:a:neighboring:country:of) germany +czechia text(was:a:neighboring:country:of) austria +czechia text(neighbors:with) poland +czechia text(was:a:neighbor:of) slovakia +nicaragua text(is:located:in) central_america +nicaragua text(is:a:neighbor:of) honduras +nicaragua text(is:a:neighboring:state:to) costa_rica +vietnam text(was:located:in) south-eastern_asia vietnam text(can:be:found:in) asia -vietnam text(was:butted:against) cambodia -vietnam text(is:a:neighboring:country:of) laos -vietnam text(was:a:neighboring:country:of) china +vietnam text(was:a:neighboring:state:to) cambodia +vietnam text(borders:with) laos +vietnam text(borders) china niue text(was:positioned:in) polynesia niue text(is:positioned:in) oceania canada text(was:sited:in) northern_america canada text(is:sited:in) americas -canada text(was:adjacent:to) united_states -slovakia text(is:placed:in) central_europe -slovakia text(is:adjacent:to) ukraine -slovakia text(was:a:neighbor:of) poland -slovakia text(is:a:neighbor:of) austria -slovakia text(is:a:neighboring:state:to) hungary -slovakia text(was:a:neighboring:state:to) czechia -mozambique text(was:placed:in) eastern_africa -mozambique text(borders:with) tanzania -mozambique text(neighbors:withborders) swaziland -mozambique text(neighbors) zimbabwe -mozambique text(is:butted:against) zambia -mozambique text(was:butted:against) malawi -mozambique text(is:a:neighboring:country:of) south_africa -aruba text(was:localized:in) caribbean -aruba text(is:localized:in) americas -bolivia text(was:present:in) south_america -bolivia text(is:present:in) americas -bolivia text(was:a:neighboring:country:of) chile -bolivia text(was:adjacent:to) brazil -bolivia text(is:adjacent:to) paraguay -bolivia text(was:a:neighbor:of) argentina -bolivia text(is:a:neighbor:of) peru -colombia text(is:still:in) south_america -colombia text(was:still:in) americas -colombia text(is:a:neighboring:state:to) ecuador -colombia text(was:a:neighboring:state:to) brazil -colombia text(borders:with) panama -colombia text(neighbors:withborders) venezuela -colombia text(neighbors) peru -fiji text(was:currently:in) melanesia -fiji text(is:currently:in) oceania -republic_of_the_congo text(was:situated:in) middle_africa -republic_of_the_congo text(is:butted:against) gabon -republic_of_the_congo text(was:butted:against) dr_congo -republic_of_the_congo text(is:a:neighboring:country:of) angola -republic_of_the_congo text(was:a:neighboring:country:of) cameroon -republic_of_the_congo text(was:adjacent:to) central_african_republic -saudi_arabia text(is:situated:in) western_asia -saudi_arabia text(is:adjacent:to) qatar -saudi_arabia text(was:a:neighbor:of) united_arab_emirates -saudi_arabia text(is:a:neighbor:of) jordan -saudi_arabia text(is:a:neighboring:state:to) yemen -saudi_arabia text(was:a:neighboring:state:to) oman -saudi_arabia text(borders:with) kuwait -saudi_arabia text(neighbors:withborders) iraq -el_salvador text(is:located:in) central_america -el_salvador text(was:located:in) americas -el_salvador text(neighbors) guatemala -el_salvador text(is:butted:against) honduras -madagascar text(could:be:found:in) eastern_africa +canada text(is:butted:against) united_states +slovakia text(was:localized:in) central_europe +slovakia text(was:butted:against) ukraine +slovakia text(was:adjacent:to) poland +slovakia text(is:adjacent:to) austria +slovakia text(neighbors) hungary +slovakia text(is:a:neighboring:country:of) czechia +mozambique text(is:localized:in) eastern_africa +mozambique text(was:a:neighboring:country:of) tanzania +mozambique text(neighbors:with) swaziland +mozambique text(was:a:neighbor:of) zimbabwe +mozambique text(is:a:neighbor:of) zambia +mozambique text(is:a:neighboring:state:to) malawi +mozambique text(was:a:neighboring:state:to) south_africa +aruba text(was:present:in) caribbean +aruba text(is:present:in) americas +bolivia text(is:still:in) south_america +bolivia text(was:still:in) americas +bolivia text(borders:with) chile +bolivia text(borders) brazil +bolivia text(is:butted:against) paraguay +bolivia text(was:butted:against) argentina +bolivia text(was:adjacent:to) peru +colombia text(was:currently:in) south_america +colombia text(is:currently:in) americas +colombia text(is:adjacent:to) ecuador +colombia text(neighbors) brazil +colombia text(is:a:neighboring:country:of) panama +colombia text(was:a:neighboring:country:of) venezuela +colombia text(neighbors:with) peru +fiji text(is:placed:in) melanesia +fiji text(was:placed:in) oceania +republic_of_the_congo text(can:be:found:in) middle_africa +republic_of_the_congo text(was:a:neighbor:of) gabon +republic_of_the_congo text(is:a:neighbor:of) dr_congo +republic_of_the_congo text(is:a:neighboring:state:to) angola +republic_of_the_congo text(was:a:neighboring:state:to) cameroon +republic_of_the_congo text(borders:with) central_african_republic +saudi_arabia text(was:situated:in) western_asia +saudi_arabia text(borders) qatar +saudi_arabia text(is:butted:against) united_arab_emirates +saudi_arabia text(was:butted:against) jordan +saudi_arabia text(was:adjacent:to) yemen +saudi_arabia text(is:adjacent:to) oman +saudi_arabia text(neighbors) kuwait +saudi_arabia text(is:a:neighboring:country:of) iraq +el_salvador text(is:situated:in) central_america +el_salvador text(is:located:in) americas +el_salvador text(was:a:neighboring:country:of) guatemala +el_salvador text(neighbors:with) honduras +madagascar text(was:located:in) eastern_africa madagascar text(can:be:found:in) africa australia text(was:positioned:in) australia_and_new_zealand australia text(is:positioned:in) oceania namibia text(was:sited:in) southern_africa namibia text(is:sited:in) africa -namibia text(was:butted:against) zambia -namibia text(is:a:neighboring:country:of) angola -namibia text(was:a:neighboring:country:of) south_africa -namibia text(was:adjacent:to) botswana -tuvalu text(is:placed:in) polynesia -tuvalu text(was:placed:in) oceania -svalbard_and_jan_mayen text(was:localized:in) northern_europe -svalbard_and_jan_mayen text(is:localized:in) europe -isle_of_man text(was:present:in) northern_europe -isle_of_man text(is:present:in) europe -guyana text(is:still:in) south_america -guyana text(is:adjacent:to) brazil -guyana text(was:a:neighbor:of) suriname -guyana text(is:a:neighbor:of) venezuela -vatican_city text(was:still:in) southern_europe -vatican_city text(was:currently:in) europe -vatican_city text(is:a:neighboring:state:to) italy -british_indian_ocean_territory text(is:currently:in) eastern_africa -british_indian_ocean_territory text(was:situated:in) africa -nigeria text(is:situated:in) western_africa -nigeria text(is:located:in) africa -nigeria text(was:a:neighboring:state:to) chad -nigeria text(borders:with) niger -nigeria text(neighbors:withborders) cameroon -nigeria text(neighbors) benin -germany text(was:located:in) western_europe -germany text(is:butted:against) denmark -germany text(was:butted:against) netherlands -germany text(is:a:neighboring:country:of) poland -germany text(was:a:neighboring:country:of) luxembourg -germany text(was:adjacent:to) belgium -germany text(is:adjacent:to) switzerland -germany text(was:a:neighbor:of) austria -germany text(is:a:neighbor:of) france -germany text(is:a:neighboring:state:to) czechia -burkina_faso text(could:be:found:in) western_africa -burkina_faso text(was:a:neighboring:state:to) togo -burkina_faso text(borders:with) benin -burkina_faso text(neighbors:withborders) niger +namibia text(was:a:neighbor:of) zambia +namibia text(is:a:neighbor:of) angola +namibia text(is:a:neighboring:state:to) south_africa +namibia text(was:a:neighboring:state:to) botswana +tuvalu text(was:localized:in) polynesia +tuvalu text(is:localized:in) oceania +svalbard_and_jan_mayen text(was:present:in) northern_europe +svalbard_and_jan_mayen text(is:present:in) europe +isle_of_man text(is:still:in) northern_europe +isle_of_man text(was:still:in) europe +guyana text(was:currently:in) south_america +guyana text(borders:with) brazil +guyana text(borders) suriname +guyana text(is:butted:against) venezuela +vatican_city text(is:currently:in) southern_europe +vatican_city text(is:placed:in) europe +vatican_city text(was:butted:against) italy +british_indian_ocean_territory text(was:placed:in) eastern_africa +british_indian_ocean_territory text(can:be:found:in) africa +nigeria text(was:situated:in) western_africa +nigeria text(is:situated:in) africa +nigeria text(was:adjacent:to) chad +nigeria text(is:adjacent:to) niger +nigeria text(neighbors) cameroon +nigeria text(is:a:neighboring:country:of) benin +germany text(is:located:in) western_europe +germany text(was:a:neighboring:country:of) denmark +germany text(neighbors:with) netherlands +germany text(was:a:neighbor:of) poland +germany text(is:a:neighbor:of) luxembourg +germany text(is:a:neighboring:state:to) belgium +germany text(was:a:neighboring:state:to) switzerland +germany text(borders:with) austria +germany text(borders) france +germany text(is:butted:against) czechia +burkina_faso text(was:located:in) western_africa +burkina_faso text(was:butted:against) togo +burkina_faso text(was:adjacent:to) benin +burkina_faso text(is:adjacent:to) niger burkina_faso text(neighbors) ghana -burkina_faso text(is:butted:against) mali -burkina_faso text(was:butted:against) ivory_coast +burkina_faso text(is:a:neighboring:country:of) mali +burkina_faso text(was:a:neighboring:country:of) ivory_coast tanzania text(can:be:found:in) eastern_africa -tanzania text(is:a:neighboring:country:of) uganda -tanzania text(was:a:neighboring:country:of) mozambique -tanzania text(was:adjacent:to) dr_congo -tanzania text(is:adjacent:to) kenya -tanzania text(was:a:neighbor:of) rwanda -tanzania text(is:a:neighbor:of) zambia -tanzania text(is:a:neighboring:state:to) malawi -tanzania text(was:a:neighboring:state:to) burundi +tanzania text(neighbors:with) uganda +tanzania text(was:a:neighbor:of) mozambique +tanzania text(is:a:neighbor:of) dr_congo +tanzania text(is:a:neighboring:state:to) kenya +tanzania text(was:a:neighboring:state:to) rwanda +tanzania text(borders:with) zambia +tanzania text(borders) malawi +tanzania text(is:butted:against) burundi northern_mariana_islands text(was:positioned:in) micronesia northern_mariana_islands text(is:positioned:in) oceania belize text(was:sited:in) central_america belize text(is:sited:in) americas -belize text(borders:with) guatemala -belize text(neighbors:withborders) mexico -norway text(is:placed:in) northern_europe -norway text(neighbors) sweden -norway text(is:butted:against) finland -norway text(was:butted:against) russia -cocos_keeling_islands text(was:placed:in) australia_and_new_zealand -cocos_keeling_islands text(was:localized:in) oceania -laos text(is:localized:in) south-eastern_asia -laos text(was:present:in) asia -laos text(is:a:neighboring:country:of) china -laos text(was:a:neighboring:country:of) cambodia -laos text(was:adjacent:to) myanmar -laos text(is:adjacent:to) vietnam -laos text(was:a:neighbor:of) thailand -western_sahara text(is:present:in) northern_africa -western_sahara text(is:still:in) africa -western_sahara text(is:a:neighbor:of) algeria -western_sahara text(is:a:neighboring:state:to) mauritania -western_sahara text(was:a:neighboring:state:to) morocco -suriname text(was:still:in) south_america -suriname text(was:currently:in) americas -suriname text(borders:with) brazil -suriname text(neighbors:withborders) french_guiana -suriname text(neighbors) guyana -christmas_island text(is:currently:in) australia_and_new_zealand -christmas_island text(was:situated:in) oceania -são_tomé_and_príncipe text(is:situated:in) middle_africa -são_tomé_and_príncipe text(is:located:in) africa -egypt text(was:located:in) northern_africa -egypt text(is:butted:against) libya -egypt text(was:butted:against) israel +belize text(was:butted:against) guatemala +belize text(was:adjacent:to) mexico +norway text(was:localized:in) northern_europe +norway text(is:adjacent:to) sweden +norway text(neighbors) finland +norway text(is:a:neighboring:country:of) russia +cocos_keeling_islands text(is:localized:in) australia_and_new_zealand +cocos_keeling_islands text(was:present:in) oceania +laos text(is:present:in) south-eastern_asia +laos text(is:still:in) asia +laos text(was:a:neighboring:country:of) china +laos text(neighbors:with) cambodia +laos text(was:a:neighbor:of) myanmar +laos text(is:a:neighbor:of) vietnam +laos text(is:a:neighboring:state:to) thailand +western_sahara text(was:still:in) northern_africa +western_sahara text(was:currently:in) africa +western_sahara text(was:a:neighboring:state:to) algeria +western_sahara text(borders:with) mauritania +western_sahara text(borders) morocco +suriname text(is:currently:in) south_america +suriname text(is:placed:in) americas +suriname text(is:butted:against) brazil +suriname text(was:butted:against) french_guiana +suriname text(was:adjacent:to) guyana +christmas_island text(was:placed:in) australia_and_new_zealand +christmas_island text(can:be:found:in) oceania +são_tomé_and_príncipe text(was:situated:in) middle_africa +são_tomé_and_príncipe text(is:situated:in) africa +egypt text(is:located:in) northern_africa +egypt text(is:adjacent:to) libya +egypt text(neighbors) israel egypt text(is:a:neighboring:country:of) sudan -bulgaria text(could:be:found:in) eastern_europe +bulgaria text(was:located:in) eastern_europe bulgaria text(was:a:neighboring:country:of) macedonia -bulgaria text(was:adjacent:to) turkey -bulgaria text(is:adjacent:to) greece -bulgaria text(was:a:neighbor:of) serbia -bulgaria text(is:a:neighbor:of) romania +bulgaria text(neighbors:with) turkey +bulgaria text(was:a:neighbor:of) greece +bulgaria text(is:a:neighbor:of) serbia +bulgaria text(is:a:neighboring:state:to) romania guinea text(can:be:found:in) western_africa guinea text(was:positioned:in) africa -guinea text(is:a:neighboring:state:to) guinea-bissau -guinea text(was:a:neighboring:state:to) sierra_leone -guinea text(borders:with) mali -guinea text(neighbors:withborders) liberia -guinea text(neighbors) senegal -guinea text(is:butted:against) ivory_coast +guinea text(was:a:neighboring:state:to) guinea-bissau +guinea text(borders:with) sierra_leone +guinea text(borders) mali +guinea text(is:butted:against) liberia +guinea text(was:butted:against) senegal +guinea text(was:adjacent:to) ivory_coast spain text(is:positioned:in) southern_europe -spain text(was:butted:against) morocco -spain text(is:a:neighboring:country:of) gibraltar -spain text(was:a:neighboring:country:of) andorra -spain text(was:adjacent:to) france -spain text(is:adjacent:to) portugal +spain text(is:adjacent:to) morocco +spain text(neighbors) gibraltar +spain text(is:a:neighboring:country:of) andorra +spain text(was:a:neighboring:country:of) france +spain text(neighbors:with) portugal costa_rica text(was:sited:in) central_america costa_rica text(is:sited:in) americas costa_rica text(was:a:neighbor:of) panama costa_rica text(is:a:neighbor:of) nicaragua -malta text(is:placed:in) southern_europe -malta text(was:placed:in) europe -portugal text(was:localized:in) southern_europe -portugal text(is:localized:in) europe +malta text(was:localized:in) southern_europe +malta text(is:localized:in) europe +portugal text(was:present:in) southern_europe +portugal text(is:present:in) europe portugal text(is:a:neighboring:state:to) spain -romania text(was:present:in) eastern_europe -romania text(is:present:in) europe +romania text(is:still:in) eastern_europe +romania text(was:still:in) europe romania text(was:a:neighboring:state:to) ukraine romania text(borders:with) hungary -romania text(neighbors:withborders) moldova -romania text(neighbors) bulgaria -romania text(is:butted:against) serbia -san_marino text(is:still:in) southern_europe -san_marino text(was:still:in) europe -san_marino text(was:butted:against) italy -mauritania text(was:currently:in) western_africa -mauritania text(is:currently:in) africa -mauritania text(is:a:neighboring:country:of) algeria -mauritania text(was:a:neighboring:country:of) mali -mauritania text(was:adjacent:to) western_sahara -mauritania text(is:adjacent:to) senegal -trinidad_and_tobago text(was:situated:in) caribbean -trinidad_and_tobago text(is:situated:in) americas -bahrain text(is:located:in) western_asia -bahrain text(was:located:in) asia -myanmar text(could:be:found:in) south-eastern_asia -myanmar text(was:a:neighbor:of) india -myanmar text(is:a:neighbor:of) bangladesh -myanmar text(is:a:neighboring:state:to) china -myanmar text(was:a:neighboring:state:to) laos -myanmar text(borders:with) thailand +romania text(borders) moldova +romania text(is:butted:against) bulgaria +romania text(was:butted:against) serbia +san_marino text(was:currently:in) southern_europe +san_marino text(is:currently:in) europe +san_marino text(was:adjacent:to) italy +mauritania text(is:placed:in) western_africa +mauritania text(was:placed:in) africa +mauritania text(is:adjacent:to) algeria +mauritania text(neighbors) mali +mauritania text(is:a:neighboring:country:of) western_sahara +mauritania text(was:a:neighboring:country:of) senegal +trinidad_and_tobago text(can:be:found:in) caribbean +trinidad_and_tobago text(was:situated:in) americas +bahrain text(is:situated:in) western_asia +bahrain text(is:located:in) asia +myanmar text(was:located:in) south-eastern_asia +myanmar text(neighbors:with) india +myanmar text(was:a:neighbor:of) bangladesh +myanmar text(is:a:neighbor:of) china +myanmar text(is:a:neighboring:state:to) laos +myanmar text(was:a:neighboring:state:to) thailand iraq text(can:be:found:in) western_asia -iraq text(neighbors:withborders) turkey -iraq text(neighbors) saudi_arabia +iraq text(borders:with) turkey +iraq text(borders) saudi_arabia iraq text(is:butted:against) iran iraq text(was:butted:against) jordan -iraq text(is:a:neighboring:country:of) kuwait -iraq text(was:a:neighboring:country:of) syria +iraq text(was:adjacent:to) kuwait +iraq text(is:adjacent:to) syria south_georgia text(was:positioned:in) south_america south_georgia text(is:positioned:in) americas iceland text(was:sited:in) northern_europe iceland text(is:sited:in) europe -dr_congo text(is:placed:in) middle_africa -dr_congo text(was:placed:in) africa -dr_congo text(was:adjacent:to) uganda -dr_congo text(is:adjacent:to) tanzania -dr_congo text(was:a:neighbor:of) republic_of_the_congo -dr_congo text(is:a:neighbor:of) central_african_republic -dr_congo text(is:a:neighboring:state:to) angola -dr_congo text(was:a:neighboring:state:to) rwanda -dr_congo text(borders:with) south_sudan -dr_congo text(neighbors:withborders) zambia -dr_congo text(neighbors) burundi -seychelles text(was:localized:in) eastern_africa -seychelles text(is:localized:in) africa -kyrgyzstan text(was:present:in) central_asia -kyrgyzstan text(is:butted:against) china -kyrgyzstan text(was:butted:against) kazakhstan -kyrgyzstan text(is:a:neighboring:country:of) tajikistan -kyrgyzstan text(was:a:neighboring:country:of) uzbekistan -botswana text(is:present:in) southern_africa -botswana text(is:still:in) africa -botswana text(was:adjacent:to) zimbabwe -botswana text(is:adjacent:to) namibia -botswana text(was:a:neighbor:of) zambia -botswana text(is:a:neighbor:of) south_africa -faroe_islands text(was:still:in) northern_europe -faroe_islands text(was:currently:in) europe -jamaica text(is:currently:in) caribbean -jamaica text(was:situated:in) americas -american_samoa text(is:situated:in) polynesia -american_samoa text(is:located:in) oceania -lesotho text(was:located:in) southern_africa -lesotho text(could:be:found:in) africa -lesotho text(is:a:neighboring:state:to) south_africa +dr_congo text(was:localized:in) middle_africa +dr_congo text(is:localized:in) africa +dr_congo text(neighbors) uganda +dr_congo text(is:a:neighboring:country:of) tanzania +dr_congo text(was:a:neighboring:country:of) republic_of_the_congo +dr_congo text(neighbors:with) central_african_republic +dr_congo text(was:a:neighbor:of) angola +dr_congo text(is:a:neighbor:of) rwanda +dr_congo text(is:a:neighboring:state:to) south_sudan +dr_congo text(was:a:neighboring:state:to) zambia +dr_congo text(borders:with) burundi +seychelles text(was:present:in) eastern_africa +seychelles text(is:present:in) africa +kyrgyzstan text(is:still:in) central_asia +kyrgyzstan text(borders) china +kyrgyzstan text(is:butted:against) kazakhstan +kyrgyzstan text(was:butted:against) tajikistan +kyrgyzstan text(was:adjacent:to) uzbekistan +botswana text(was:still:in) southern_africa +botswana text(was:currently:in) africa +botswana text(is:adjacent:to) zimbabwe +botswana text(neighbors) namibia +botswana text(is:a:neighboring:country:of) zambia +botswana text(was:a:neighboring:country:of) south_africa +faroe_islands text(is:currently:in) northern_europe +faroe_islands text(is:placed:in) europe +jamaica text(was:placed:in) caribbean +jamaica text(can:be:found:in) americas +american_samoa text(was:situated:in) polynesia +american_samoa text(is:situated:in) oceania +lesotho text(is:located:in) southern_africa +lesotho text(was:located:in) africa +lesotho text(neighbors:with) south_africa sri_lanka text(can:be:found:in) southern_asia -sri_lanka text(was:a:neighboring:state:to) india +sri_lanka text(was:a:neighbor:of) india belgium text(was:positioned:in) western_europe belgium text(is:positioned:in) europe -belgium text(borders:with) germany -belgium text(neighbors:withborders) luxembourg -belgium text(neighbors) france -belgium text(is:butted:against) netherlands +belgium text(is:a:neighbor:of) germany +belgium text(is:a:neighboring:state:to) luxembourg +belgium text(was:a:neighboring:state:to) france +belgium text(borders:with) netherlands qatar text(was:sited:in) western_asia qatar text(is:sited:in) asia -qatar text(was:butted:against) saudi_arabia -solomon_islands text(is:placed:in) melanesia -solomon_islands text(was:placed:in) oceania -syria text(was:localized:in) western_asia -syria text(is:localized:in) asia -syria text(is:a:neighboring:country:of) israel -syria text(was:a:neighboring:country:of) turkey +qatar text(borders) saudi_arabia +solomon_islands text(was:localized:in) melanesia +solomon_islands text(is:localized:in) oceania +syria text(was:present:in) western_asia +syria text(is:present:in) asia +syria text(is:butted:against) israel +syria text(was:butted:against) turkey syria text(was:adjacent:to) jordan syria text(is:adjacent:to) lebanon -syria text(was:a:neighbor:of) iraq -india text(was:present:in) southern_asia -india text(is:present:in) asia -india text(is:a:neighbor:of) afghanistan -india text(is:a:neighboring:state:to) bhutan -india text(was:a:neighboring:state:to) bangladesh -india text(borders:with) china -india text(neighbors:withborders) nepal -india text(neighbors) myanmar -india text(is:butted:against) pakistan -india text(was:butted:against) sri_lanka -morocco text(is:still:in) northern_africa -morocco text(is:a:neighboring:country:of) algeria -morocco text(was:a:neighboring:country:of) spain -morocco text(was:adjacent:to) western_sahara -kenya text(was:still:in) eastern_africa -kenya text(was:currently:in) africa -kenya text(is:adjacent:to) uganda -kenya text(was:a:neighbor:of) tanzania -kenya text(is:a:neighbor:of) somalia -kenya text(is:a:neighboring:state:to) south_sudan -kenya text(was:a:neighboring:state:to) ethiopia -south_sudan text(is:currently:in) middle_africa -south_sudan text(was:situated:in) africa -south_sudan text(borders:with) uganda -south_sudan text(neighbors:withborders) dr_congo -south_sudan text(neighbors) kenya -south_sudan text(is:butted:against) central_african_republic -south_sudan text(was:butted:against) sudan -south_sudan text(is:a:neighboring:country:of) ethiopia -ghana text(is:situated:in) western_africa -ghana text(was:a:neighboring:country:of) burkina_faso -ghana text(was:adjacent:to) ivory_coast -ghana text(is:adjacent:to) togo -tajikistan text(is:located:in) central_asia -tajikistan text(was:located:in) asia -tajikistan text(was:a:neighbor:of) china -tajikistan text(is:a:neighbor:of) kyrgyzstan -tajikistan text(is:a:neighboring:state:to) afghanistan -tajikistan text(was:a:neighboring:state:to) uzbekistan -marshall_islands text(could:be:found:in) micronesia +syria text(neighbors) iraq +india text(is:still:in) southern_asia +india text(was:still:in) asia +india text(is:a:neighboring:country:of) afghanistan +india text(was:a:neighboring:country:of) bhutan +india text(neighbors:with) bangladesh +india text(was:a:neighbor:of) china +india text(is:a:neighbor:of) nepal +india text(is:a:neighboring:state:to) myanmar +india text(was:a:neighboring:state:to) pakistan +india text(borders:with) sri_lanka +morocco text(was:currently:in) northern_africa +morocco text(borders) algeria +morocco text(is:butted:against) spain +morocco text(was:butted:against) western_sahara +kenya text(is:currently:in) eastern_africa +kenya text(is:placed:in) africa +kenya text(was:adjacent:to) uganda +kenya text(is:adjacent:to) tanzania +kenya text(neighbors) somalia +kenya text(is:a:neighboring:country:of) south_sudan +kenya text(was:a:neighboring:country:of) ethiopia +south_sudan text(was:placed:in) middle_africa +south_sudan text(can:be:found:in) africa +south_sudan text(neighbors:with) uganda +south_sudan text(was:a:neighbor:of) dr_congo +south_sudan text(is:a:neighbor:of) kenya +south_sudan text(is:a:neighboring:state:to) central_african_republic +south_sudan text(was:a:neighboring:state:to) sudan +south_sudan text(borders:with) ethiopia +ghana text(was:situated:in) western_africa +ghana text(borders) burkina_faso +ghana text(is:butted:against) ivory_coast +ghana text(was:butted:against) togo +tajikistan text(is:situated:in) central_asia +tajikistan text(is:located:in) asia +tajikistan text(was:adjacent:to) china +tajikistan text(is:adjacent:to) kyrgyzstan +tajikistan text(neighbors) afghanistan +tajikistan text(is:a:neighboring:country:of) uzbekistan +marshall_islands text(was:located:in) micronesia marshall_islands text(can:be:found:in) oceania cameroon text(was:positioned:in) middle_africa cameroon text(is:positioned:in) africa -cameroon text(borders:with) chad -cameroon text(neighbors:withborders) republic_of_the_congo -cameroon text(neighbors) gabon -cameroon text(is:butted:against) equatorial_guinea -cameroon text(was:butted:against) central_african_republic -cameroon text(is:a:neighboring:country:of) nigeria +cameroon text(was:a:neighboring:country:of) chad +cameroon text(neighbors:with) republic_of_the_congo +cameroon text(was:a:neighbor:of) gabon +cameroon text(is:a:neighbor:of) equatorial_guinea +cameroon text(is:a:neighboring:state:to) central_african_republic +cameroon text(was:a:neighboring:state:to) nigeria nauru text(was:sited:in) micronesia nauru text(is:sited:in) oceania -thailand text(is:placed:in) south-eastern_asia -thailand text(was:a:neighboring:country:of) cambodia -thailand text(was:adjacent:to) myanmar -thailand text(is:adjacent:to) laos -thailand text(was:a:neighbor:of) malaysia -sudan text(was:placed:in) northern_africa -sudan text(is:a:neighbor:of) chad -sudan text(is:a:neighboring:state:to) libya -sudan text(was:a:neighboring:state:to) south_sudan -sudan text(borders:with) eritrea -sudan text(neighbors:withborders) central_african_republic -sudan text(neighbors) egypt -sudan text(is:butted:against) ethiopia -chad text(was:localized:in) middle_africa -chad text(is:localized:in) africa -chad text(was:butted:against) libya -chad text(is:a:neighboring:country:of) niger -chad text(was:a:neighboring:country:of) south_sudan -chad text(was:adjacent:to) cameroon -chad text(is:adjacent:to) central_african_republic -chad text(was:a:neighbor:of) nigeria -vanuatu text(was:present:in) melanesia -vanuatu text(is:present:in) oceania -cape_verde text(is:still:in) western_africa -cape_verde text(was:still:in) africa -falkland_islands text(was:currently:in) south_america -falkland_islands text(is:currently:in) americas -liberia text(was:situated:in) western_africa -liberia text(is:situated:in) africa -liberia text(is:a:neighbor:of) ivory_coast -liberia text(is:a:neighboring:state:to) sierra_leone -liberia text(was:a:neighboring:state:to) guinea -cambodia text(is:located:in) south-eastern_asia -cambodia text(was:located:in) asia -cambodia text(borders:with) vietnam -cambodia text(neighbors:withborders) thailand -cambodia text(neighbors) laos -zimbabwe text(could:be:found:in) eastern_africa -zimbabwe text(is:butted:against) zambia -zimbabwe text(was:butted:against) south_africa -zimbabwe text(is:a:neighboring:country:of) botswana -zimbabwe text(was:a:neighboring:country:of) mozambique +thailand text(was:localized:in) south-eastern_asia +thailand text(borders:with) cambodia +thailand text(borders) myanmar +thailand text(is:butted:against) laos +thailand text(was:butted:against) malaysia +sudan text(is:localized:in) northern_africa +sudan text(was:adjacent:to) chad +sudan text(is:adjacent:to) libya +sudan text(neighbors) south_sudan +sudan text(is:a:neighboring:country:of) eritrea +sudan text(was:a:neighboring:country:of) central_african_republic +sudan text(neighbors:with) egypt +sudan text(was:a:neighbor:of) ethiopia +chad text(was:present:in) middle_africa +chad text(is:present:in) africa +chad text(is:a:neighbor:of) libya +chad text(is:a:neighboring:state:to) niger +chad text(was:a:neighboring:state:to) south_sudan +chad text(borders:with) cameroon +chad text(borders) central_african_republic +chad text(is:butted:against) nigeria +vanuatu text(is:still:in) melanesia +vanuatu text(was:still:in) oceania +cape_verde text(was:currently:in) western_africa +cape_verde text(is:currently:in) africa +falkland_islands text(is:placed:in) south_america +falkland_islands text(was:placed:in) americas +liberia text(can:be:found:in) western_africa +liberia text(was:situated:in) africa +liberia text(was:butted:against) ivory_coast +liberia text(was:adjacent:to) sierra_leone +liberia text(is:adjacent:to) guinea +cambodia text(is:situated:in) south-eastern_asia +cambodia text(is:located:in) asia +cambodia text(neighbors) vietnam +cambodia text(is:a:neighboring:country:of) thailand +cambodia text(was:a:neighboring:country:of) laos +zimbabwe text(was:located:in) eastern_africa +zimbabwe text(neighbors:with) zambia +zimbabwe text(was:a:neighbor:of) south_africa +zimbabwe text(is:a:neighbor:of) botswana +zimbabwe text(is:a:neighboring:state:to) mozambique comoros text(can:be:found:in) eastern_africa comoros text(was:positioned:in) africa guam text(is:positioned:in) micronesia guam text(was:sited:in) oceania bahamas text(is:sited:in) caribbean -bahamas text(is:placed:in) americas -lebanon text(was:placed:in) western_asia -lebanon text(was:localized:in) asia -lebanon text(was:adjacent:to) israel -lebanon text(is:adjacent:to) syria -sint_maarten text(is:localized:in) caribbean -sint_maarten text(was:present:in) americas -sint_maarten text(was:a:neighbor:of) saint_martin -ethiopia text(is:present:in) eastern_africa -ethiopia text(is:still:in) africa -ethiopia text(is:a:neighbor:of) somalia -ethiopia text(is:a:neighboring:state:to) kenya -ethiopia text(was:a:neighboring:state:to) eritrea -ethiopia text(borders:with) south_sudan -ethiopia text(neighbors:withborders) djibouti -ethiopia text(neighbors) sudan -united_states_virgin_islands text(was:still:in) caribbean -united_states_virgin_islands text(was:currently:in) americas -guinea-bissau text(is:currently:in) western_africa -guinea-bissau text(was:situated:in) africa -guinea-bissau text(is:butted:against) guinea -guinea-bissau text(was:butted:against) senegal -libya text(is:situated:in) northern_africa -libya text(is:located:in) africa -libya text(is:a:neighboring:country:of) chad -libya text(was:a:neighboring:country:of) tunisia -libya text(was:adjacent:to) niger -libya text(is:adjacent:to) algeria -libya text(was:a:neighbor:of) egypt -libya text(is:a:neighbor:of) sudan -bhutan text(was:located:in) southern_asia -bhutan text(could:be:found:in) asia -bhutan text(is:a:neighboring:state:to) china -bhutan text(was:a:neighboring:state:to) india +bahamas text(was:localized:in) americas +lebanon text(is:localized:in) western_asia +lebanon text(was:present:in) asia +lebanon text(was:a:neighboring:state:to) israel +lebanon text(borders:with) syria +sint_maarten text(is:present:in) caribbean +sint_maarten text(is:still:in) americas +sint_maarten text(borders) saint_martin +ethiopia text(was:still:in) eastern_africa +ethiopia text(was:currently:in) africa +ethiopia text(is:butted:against) somalia +ethiopia text(was:butted:against) kenya +ethiopia text(was:adjacent:to) eritrea +ethiopia text(is:adjacent:to) south_sudan +ethiopia text(neighbors) djibouti +ethiopia text(is:a:neighboring:country:of) sudan +united_states_virgin_islands text(is:currently:in) caribbean +united_states_virgin_islands text(is:placed:in) americas +guinea-bissau text(was:placed:in) western_africa +guinea-bissau text(can:be:found:in) africa +guinea-bissau text(was:a:neighboring:country:of) guinea +guinea-bissau text(neighbors:with) senegal +libya text(was:situated:in) northern_africa +libya text(is:situated:in) africa +libya text(was:a:neighbor:of) chad +libya text(is:a:neighbor:of) tunisia +libya text(is:a:neighboring:state:to) niger +libya text(was:a:neighboring:state:to) algeria +libya text(borders:with) egypt +libya text(borders) sudan +bhutan text(is:located:in) southern_asia +bhutan text(was:located:in) asia +bhutan text(is:butted:against) china +bhutan text(was:butted:against) india macau text(can:be:found:in) eastern_asia macau text(was:positioned:in) asia -macau text(borders:with) china +macau text(was:adjacent:to) china french_polynesia text(is:positioned:in) polynesia french_polynesia text(was:sited:in) oceania somalia text(is:sited:in) eastern_africa -somalia text(is:placed:in) africa -somalia text(neighbors:withborders) djibouti +somalia text(was:localized:in) africa +somalia text(is:adjacent:to) djibouti somalia text(neighbors) kenya -somalia text(is:butted:against) ethiopia -saint_barthélemy text(was:placed:in) caribbean -saint_barthélemy text(was:localized:in) americas -russia text(is:localized:in) eastern_europe -russia text(was:present:in) europe -russia text(was:butted:against) ukraine -russia text(is:a:neighboring:country:of) belarus -russia text(was:a:neighboring:country:of) china -russia text(was:adjacent:to) kazakhstan -russia text(is:adjacent:to) norway -russia text(was:a:neighbor:of) poland -russia text(is:a:neighbor:of) azerbaijan -russia text(is:a:neighboring:state:to) lithuania -russia text(was:a:neighboring:state:to) estonia -russia text(borders:with) north_korea -russia text(neighbors:withborders) finland -russia text(neighbors) mongolia -russia text(is:butted:against) latvia -russia text(was:butted:against) georgia -new_zealand text(is:present:in) australia_and_new_zealand -new_zealand text(is:still:in) oceania -panama text(was:still:in) central_america -panama text(was:currently:in) americas -panama text(is:a:neighboring:country:of) costa_rica -panama text(was:a:neighboring:country:of) colombia -papua_new_guinea text(is:currently:in) melanesia -papua_new_guinea text(was:situated:in) oceania -papua_new_guinea text(was:adjacent:to) indonesia -north_korea text(is:situated:in) eastern_asia -north_korea text(is:adjacent:to) china -north_korea text(was:a:neighbor:of) south_korea -north_korea text(is:a:neighbor:of) russia -latvia text(is:located:in) northern_europe -latvia text(was:located:in) europe -latvia text(is:a:neighboring:state:to) lithuania -latvia text(was:a:neighboring:state:to) belarus -latvia text(borders:with) russia -latvia text(neighbors:withborders) estonia -oman text(could:be:found:in) western_asia +somalia text(is:a:neighboring:country:of) ethiopia +saint_barthélemy text(is:localized:in) caribbean +saint_barthélemy text(was:present:in) americas +russia text(is:present:in) eastern_europe +russia text(is:still:in) europe +russia text(was:a:neighboring:country:of) ukraine +russia text(neighbors:with) belarus +russia text(was:a:neighbor:of) china +russia text(is:a:neighbor:of) kazakhstan +russia text(is:a:neighboring:state:to) norway +russia text(was:a:neighboring:state:to) poland +russia text(borders:with) azerbaijan +russia text(borders) lithuania +russia text(is:butted:against) estonia +russia text(was:butted:against) north_korea +russia text(was:adjacent:to) finland +russia text(is:adjacent:to) mongolia +russia text(neighbors) latvia +russia text(is:a:neighboring:country:of) georgia +new_zealand text(was:still:in) australia_and_new_zealand +new_zealand text(was:currently:in) oceania +panama text(is:currently:in) central_america +panama text(is:placed:in) americas +panama text(was:a:neighboring:country:of) costa_rica +panama text(neighbors:with) colombia +papua_new_guinea text(was:placed:in) melanesia +papua_new_guinea text(can:be:found:in) oceania +papua_new_guinea text(was:a:neighbor:of) indonesia +north_korea text(was:situated:in) eastern_asia +north_korea text(is:a:neighbor:of) china +north_korea text(is:a:neighboring:state:to) south_korea +north_korea text(was:a:neighboring:state:to) russia +latvia text(is:situated:in) northern_europe +latvia text(is:located:in) europe +latvia text(borders:with) lithuania +latvia text(borders) belarus +latvia text(is:butted:against) russia +latvia text(was:butted:against) estonia +oman text(was:located:in) western_asia oman text(can:be:found:in) asia -oman text(neighbors) saudi_arabia -oman text(is:butted:against) yemen -oman text(was:butted:against) united_arab_emirates +oman text(was:adjacent:to) saudi_arabia +oman text(is:adjacent:to) yemen +oman text(neighbors) united_arab_emirates saint_pierre_and_miquelon text(was:positioned:in) northern_america saint_pierre_and_miquelon text(is:positioned:in) americas martinique text(was:sited:in) caribbean martinique text(is:sited:in) americas -united_kingdom text(is:placed:in) northern_europe -united_kingdom text(was:placed:in) europe +united_kingdom text(was:localized:in) northern_europe +united_kingdom text(is:localized:in) europe united_kingdom text(is:a:neighboring:country:of) ireland -israel text(was:localized:in) western_asia -israel text(is:localized:in) asia +israel text(was:present:in) western_asia +israel text(is:present:in) asia israel text(was:a:neighboring:country:of) lebanon -israel text(was:adjacent:to) egypt -israel text(is:adjacent:to) jordan -israel text(was:a:neighbor:of) syria -jersey text(was:present:in) northern_europe -jersey text(is:present:in) europe -pitcairn_islands text(is:still:in) polynesia -pitcairn_islands text(was:still:in) oceania -togo text(was:currently:in) western_africa -togo text(is:currently:in) africa -togo text(is:a:neighbor:of) burkina_faso -togo text(is:a:neighboring:state:to) ghana -togo text(was:a:neighboring:state:to) benin -kiribati text(was:situated:in) micronesia -kiribati text(is:situated:in) oceania -iran text(is:located:in) southern_asia -iran text(was:located:in) asia -iran text(borders:with) afghanistan -iran text(neighbors:withborders) turkmenistan -iran text(neighbors) turkey -iran text(is:butted:against) armenia -iran text(was:butted:against) azerbaijan -iran text(is:a:neighboring:country:of) pakistan -iran text(was:a:neighboring:country:of) iraq -saint_martin text(could:be:found:in) caribbean +israel text(neighbors:with) egypt +israel text(was:a:neighbor:of) jordan +israel text(is:a:neighbor:of) syria +jersey text(is:still:in) northern_europe +jersey text(was:still:in) europe +pitcairn_islands text(was:currently:in) polynesia +pitcairn_islands text(is:currently:in) oceania +togo text(is:placed:in) western_africa +togo text(was:placed:in) africa +togo text(is:a:neighboring:state:to) burkina_faso +togo text(was:a:neighboring:state:to) ghana +togo text(borders:with) benin +kiribati text(can:be:found:in) micronesia +kiribati text(was:situated:in) oceania +iran text(is:situated:in) southern_asia +iran text(is:located:in) asia +iran text(borders) afghanistan +iran text(is:butted:against) turkmenistan +iran text(was:butted:against) turkey +iran text(was:adjacent:to) armenia +iran text(is:adjacent:to) azerbaijan +iran text(neighbors) pakistan +iran text(is:a:neighboring:country:of) iraq +saint_martin text(was:located:in) caribbean saint_martin text(can:be:found:in) americas -saint_martin text(was:adjacent:to) sint_maarten +saint_martin text(was:a:neighboring:country:of) sint_maarten dominican_republic text(was:positioned:in) caribbean dominican_republic text(is:positioned:in) americas -dominican_republic text(is:adjacent:to) haiti +dominican_republic text(neighbors:with) haiti denmark text(was:sited:in) northern_europe denmark text(was:a:neighbor:of) germany bermuda text(is:sited:in) northern_america -bermuda text(is:placed:in) americas -chile text(was:placed:in) south_america +bermuda text(was:localized:in) americas +chile text(is:localized:in) south_america chile text(is:a:neighbor:of) argentina chile text(is:a:neighboring:state:to) bolivia chile text(was:a:neighboring:state:to) peru -kosovo text(was:localized:in) eastern_europe -kosovo text(is:localized:in) europe +kosovo text(was:present:in) eastern_europe +kosovo text(is:present:in) europe kosovo text(borders:with) serbia -kosovo text(neighbors:withborders) albania -kosovo text(neighbors) macedonia -kosovo text(is:butted:against) montenegro -saint_kitts_and_nevis text(was:present:in) caribbean -saint_kitts_and_nevis text(is:present:in) americas -eritrea text(is:still:in) eastern_africa -eritrea text(was:butted:against) djibouti -eritrea text(is:a:neighboring:country:of) sudan -eritrea text(was:a:neighboring:country:of) ethiopia -equatorial_guinea text(was:still:in) middle_africa -equatorial_guinea text(was:currently:in) africa -equatorial_guinea text(was:adjacent:to) gabon -equatorial_guinea text(is:adjacent:to) cameroon -niger text(is:currently:in) western_africa -niger text(was:situated:in) africa -niger text(was:a:neighbor:of) chad -niger text(is:a:neighbor:of) libya -niger text(is:a:neighboring:state:to) burkina_faso -niger text(was:a:neighboring:state:to) benin -niger text(borders:with) mali -niger text(neighbors:withborders) algeria -niger text(neighbors) nigeria -anguilla text(is:situated:in) caribbean -anguilla text(is:located:in) americas -rwanda text(was:located:in) eastern_africa -rwanda text(could:be:found:in) africa +kosovo text(borders) albania +kosovo text(is:butted:against) macedonia +kosovo text(was:butted:against) montenegro +saint_kitts_and_nevis text(is:still:in) caribbean +saint_kitts_and_nevis text(was:still:in) americas +eritrea text(was:currently:in) eastern_africa +eritrea text(was:adjacent:to) djibouti +eritrea text(is:adjacent:to) sudan +eritrea text(neighbors) ethiopia +equatorial_guinea text(is:currently:in) middle_africa +equatorial_guinea text(is:placed:in) africa +equatorial_guinea text(is:a:neighboring:country:of) gabon +equatorial_guinea text(was:a:neighboring:country:of) cameroon +niger text(was:placed:in) western_africa +niger text(can:be:found:in) africa +niger text(neighbors:with) chad +niger text(was:a:neighbor:of) libya +niger text(is:a:neighbor:of) burkina_faso +niger text(is:a:neighboring:state:to) benin +niger text(was:a:neighboring:state:to) mali +niger text(borders:with) algeria +niger text(borders) nigeria +anguilla text(was:situated:in) caribbean +anguilla text(is:situated:in) americas +rwanda text(is:located:in) eastern_africa +rwanda text(was:located:in) africa rwanda text(is:butted:against) burundi rwanda text(was:butted:against) tanzania -rwanda text(is:a:neighboring:country:of) uganda -rwanda text(was:a:neighboring:country:of) dr_congo +rwanda text(was:adjacent:to) uganda +rwanda text(is:adjacent:to) dr_congo united_arab_emirates text(can:be:found:in) western_asia united_arab_emirates text(was:positioned:in) asia -united_arab_emirates text(was:adjacent:to) oman -united_arab_emirates text(is:adjacent:to) saudi_arabia +united_arab_emirates text(neighbors) oman +united_arab_emirates text(is:a:neighboring:country:of) saudi_arabia estonia text(is:positioned:in) northern_europe estonia text(was:sited:in) europe -estonia text(was:a:neighbor:of) latvia -estonia text(is:a:neighbor:of) russia +estonia text(was:a:neighboring:country:of) latvia +estonia text(neighbors:with) russia greece text(is:sited:in) southern_europe -greece text(is:placed:in) europe -greece text(is:a:neighboring:state:to) bulgaria -greece text(was:a:neighboring:state:to) albania -greece text(borders:with) macedonia -greece text(neighbors:withborders) turkey -senegal text(was:placed:in) western_africa -senegal text(was:localized:in) africa -senegal text(neighbors) guinea-bissau -senegal text(is:butted:against) mauritania -senegal text(was:butted:against) mali -senegal text(is:a:neighboring:country:of) gambia -senegal text(was:a:neighboring:country:of) guinea -guadeloupe text(is:localized:in) caribbean -guadeloupe text(was:present:in) americas -monaco text(is:present:in) western_europe -monaco text(was:adjacent:to) france -djibouti text(is:still:in) eastern_africa -djibouti text(is:adjacent:to) eritrea -djibouti text(was:a:neighbor:of) somalia -djibouti text(is:a:neighbor:of) ethiopia -indonesia text(was:still:in) south-eastern_asia -indonesia text(is:a:neighboring:state:to) papua_new_guinea -indonesia text(was:a:neighboring:state:to) timor-leste -indonesia text(borders:with) malaysia -british_virgin_islands text(was:currently:in) caribbean -british_virgin_islands text(is:currently:in) americas -cook_islands text(was:situated:in) polynesia -cook_islands text(is:situated:in) oceania -uganda text(is:located:in) eastern_africa -uganda text(was:located:in) africa -uganda text(neighbors:withborders) tanzania -uganda text(neighbors) dr_congo -uganda text(is:butted:against) kenya -uganda text(was:butted:against) south_sudan -uganda text(is:a:neighboring:country:of) rwanda -macedonia text(could:be:found:in) southern_europe +greece text(was:localized:in) europe +greece text(was:a:neighbor:of) bulgaria +greece text(is:a:neighbor:of) albania +greece text(is:a:neighboring:state:to) macedonia +greece text(was:a:neighboring:state:to) turkey +senegal text(is:localized:in) western_africa +senegal text(was:present:in) africa +senegal text(borders:with) guinea-bissau +senegal text(borders) mauritania +senegal text(is:butted:against) mali +senegal text(was:butted:against) gambia +senegal text(was:adjacent:to) guinea +guadeloupe text(is:present:in) caribbean +guadeloupe text(is:still:in) americas +monaco text(was:still:in) western_europe +monaco text(is:adjacent:to) france +djibouti text(was:currently:in) eastern_africa +djibouti text(neighbors) eritrea +djibouti text(is:a:neighboring:country:of) somalia +djibouti text(was:a:neighboring:country:of) ethiopia +indonesia text(is:currently:in) south-eastern_asia +indonesia text(neighbors:with) papua_new_guinea +indonesia text(was:a:neighbor:of) timor-leste +indonesia text(is:a:neighbor:of) malaysia +british_virgin_islands text(is:placed:in) caribbean +british_virgin_islands text(was:placed:in) americas +cook_islands text(can:be:found:in) polynesia +cook_islands text(was:situated:in) oceania +uganda text(is:situated:in) eastern_africa +uganda text(is:located:in) africa +uganda text(is:a:neighboring:state:to) tanzania +uganda text(was:a:neighboring:state:to) dr_congo +uganda text(borders:with) kenya +uganda text(borders) south_sudan +uganda text(is:butted:against) rwanda +macedonia text(was:located:in) southern_europe macedonia text(can:be:found:in) europe -macedonia text(was:a:neighboring:country:of) kosovo +macedonia text(was:butted:against) kosovo macedonia text(was:adjacent:to) greece macedonia text(is:adjacent:to) albania -macedonia text(was:a:neighbor:of) serbia -macedonia text(is:a:neighbor:of) bulgaria +macedonia text(neighbors) serbia +macedonia text(is:a:neighboring:country:of) bulgaria tunisia text(was:positioned:in) northern_africa tunisia text(is:positioned:in) africa -tunisia text(is:a:neighboring:state:to) libya -tunisia text(was:a:neighboring:state:to) algeria +tunisia text(was:a:neighboring:country:of) libya +tunisia text(neighbors:with) algeria ecuador text(was:sited:in) south_america -ecuador text(borders:with) peru -ecuador text(neighbors:withborders) colombia +ecuador text(was:a:neighbor:of) peru +ecuador text(is:a:neighbor:of) colombia brazil text(is:sited:in) south_america -brazil text(is:placed:in) americas -brazil text(neighbors) bolivia -brazil text(is:butted:against) colombia -brazil text(was:butted:against) paraguay -brazil text(is:a:neighboring:country:of) uruguay -brazil text(was:a:neighboring:country:of) french_guiana -brazil text(was:adjacent:to) suriname -brazil text(is:adjacent:to) venezuela -brazil text(was:a:neighbor:of) argentina -brazil text(is:a:neighbor:of) guyana -brazil text(is:a:neighboring:state:to) peru -paraguay text(was:placed:in) south_america -paraguay text(was:localized:in) americas -paraguay text(was:a:neighboring:state:to) argentina -paraguay text(borders:with) brazil -paraguay text(neighbors:withborders) bolivia -finland text(is:localized:in) northern_europe -finland text(was:present:in) europe -finland text(neighbors) norway -finland text(is:butted:against) sweden -finland text(was:butted:against) russia -jordan text(is:present:in) western_asia -jordan text(is:a:neighboring:country:of) saudi_arabia -jordan text(was:a:neighboring:country:of) israel -jordan text(was:adjacent:to) iraq -jordan text(is:adjacent:to) syria -timor-leste text(is:still:in) south-eastern_asia -timor-leste text(was:a:neighbor:of) indonesia -montenegro text(was:still:in) southern_europe -montenegro text(was:currently:in) europe -montenegro text(is:a:neighbor:of) kosovo -montenegro text(is:a:neighboring:state:to) bosnia_and_herzegovina -montenegro text(was:a:neighboring:state:to) croatia -montenegro text(borders:with) serbia -montenegro text(neighbors:withborders) albania -peru text(is:currently:in) south_america -peru text(was:situated:in) americas -peru text(neighbors) ecuador -peru text(is:butted:against) bolivia -peru text(was:butted:against) chile -peru text(is:a:neighboring:country:of) brazil -peru text(was:a:neighboring:country:of) colombia -montserrat text(is:situated:in) caribbean -montserrat text(is:located:in) americas -ukraine text(was:located:in) eastern_europe -ukraine text(could:be:found:in) europe -ukraine text(was:adjacent:to) slovakia -ukraine text(is:adjacent:to) belarus -ukraine text(was:a:neighbor:of) poland -ukraine text(is:a:neighbor:of) russia -ukraine text(is:a:neighboring:state:to) hungary -ukraine text(was:a:neighboring:state:to) moldova -ukraine text(borders:with) romania +brazil text(was:localized:in) americas +brazil text(is:a:neighboring:state:to) bolivia +brazil text(was:a:neighboring:state:to) colombia +brazil text(borders:with) paraguay +brazil text(borders) uruguay +brazil text(is:butted:against) french_guiana +brazil text(was:butted:against) suriname +brazil text(was:adjacent:to) venezuela +brazil text(is:adjacent:to) argentina +brazil text(neighbors) guyana +brazil text(is:a:neighboring:country:of) peru +paraguay text(is:localized:in) south_america +paraguay text(was:present:in) americas +paraguay text(was:a:neighboring:country:of) argentina +paraguay text(neighbors:with) brazil +paraguay text(was:a:neighbor:of) bolivia +finland text(is:present:in) northern_europe +finland text(is:still:in) europe +finland text(is:a:neighbor:of) norway +finland text(is:a:neighboring:state:to) sweden +finland text(was:a:neighboring:state:to) russia +jordan text(was:still:in) western_asia +jordan text(borders:with) saudi_arabia +jordan text(borders) israel +jordan text(is:butted:against) iraq +jordan text(was:butted:against) syria +timor-leste text(was:currently:in) south-eastern_asia +timor-leste text(was:adjacent:to) indonesia +montenegro text(is:currently:in) southern_europe +montenegro text(is:placed:in) europe +montenegro text(is:adjacent:to) kosovo +montenegro text(neighbors) bosnia_and_herzegovina +montenegro text(is:a:neighboring:country:of) croatia +montenegro text(was:a:neighboring:country:of) serbia +montenegro text(neighbors:with) albania +peru text(was:placed:in) south_america +peru text(can:be:found:in) americas +peru text(was:a:neighbor:of) ecuador +peru text(is:a:neighbor:of) bolivia +peru text(is:a:neighboring:state:to) chile +peru text(was:a:neighboring:state:to) brazil +peru text(borders:with) colombia +montserrat text(was:situated:in) caribbean +montserrat text(is:situated:in) americas +ukraine text(is:located:in) eastern_europe +ukraine text(was:located:in) europe +ukraine text(borders) slovakia +ukraine text(is:butted:against) belarus +ukraine text(was:butted:against) poland +ukraine text(was:adjacent:to) russia +ukraine text(is:adjacent:to) hungary +ukraine text(neighbors) moldova +ukraine text(is:a:neighboring:country:of) romania dominica text(can:be:found:in) caribbean dominica text(was:positioned:in) americas turkmenistan text(is:positioned:in) central_asia -turkmenistan text(neighbors:withborders) kazakhstan -turkmenistan text(neighbors) afghanistan -turkmenistan text(is:butted:against) uzbekistan -turkmenistan text(was:butted:against) iran +turkmenistan text(was:a:neighboring:country:of) kazakhstan +turkmenistan text(neighbors:with) afghanistan +turkmenistan text(was:a:neighbor:of) uzbekistan +turkmenistan text(is:a:neighbor:of) iran guernsey text(was:sited:in) northern_europe guernsey text(is:sited:in) europe -gibraltar text(is:placed:in) southern_europe -gibraltar text(was:placed:in) europe -gibraltar text(is:a:neighboring:country:of) spain -switzerland text(was:localized:in) western_europe -switzerland text(is:localized:in) europe -switzerland text(was:a:neighboring:country:of) germany -switzerland text(was:adjacent:to) italy -switzerland text(is:adjacent:to) austria -switzerland text(was:a:neighbor:of) france -switzerland text(is:a:neighbor:of) liechtenstein -austria text(was:present:in) western_europe -austria text(is:present:in) europe -austria text(is:a:neighboring:state:to) germany -austria text(was:a:neighboring:state:to) slovakia -austria text(borders:with) slovenia -austria text(neighbors:withborders) italy -austria text(neighbors) switzerland -austria text(is:butted:against) hungary -austria text(was:butted:against) liechtenstein -austria text(is:a:neighboring:country:of) czechia -hungary text(is:still:in) eastern_europe -hungary text(was:a:neighboring:country:of) ukraine -hungary text(was:adjacent:to) slovakia -hungary text(is:adjacent:to) slovenia -hungary text(was:a:neighbor:of) croatia -hungary text(is:a:neighbor:of) austria -hungary text(is:a:neighboring:state:to) serbia -hungary text(was:a:neighboring:state:to) romania -malawi text(was:still:in) eastern_africa -malawi text(was:currently:in) africa -malawi text(borders:with) zambia -malawi text(neighbors:withborders) tanzania -malawi text(neighbors) mozambique -hong_kong text(is:currently:in) eastern_asia -hong_kong text(is:butted:against) china -liechtenstein text(was:situated:in) western_europe -liechtenstein text(is:situated:in) europe -liechtenstein text(was:butted:against) switzerland -liechtenstein text(is:a:neighboring:country:of) austria -barbados text(is:located:in) caribbean -barbados text(was:located:in) americas -georgia text(could:be:found:in) western_asia +gibraltar text(was:localized:in) southern_europe +gibraltar text(is:localized:in) europe +gibraltar text(is:a:neighboring:state:to) spain +switzerland text(was:present:in) western_europe +switzerland text(is:present:in) europe +switzerland text(was:a:neighboring:state:to) germany +switzerland text(borders:with) italy +switzerland text(borders) austria +switzerland text(is:butted:against) france +switzerland text(was:butted:against) liechtenstein +austria text(is:still:in) western_europe +austria text(was:still:in) europe +austria text(was:adjacent:to) germany +austria text(is:adjacent:to) slovakia +austria text(neighbors) slovenia +austria text(is:a:neighboring:country:of) italy +austria text(was:a:neighboring:country:of) switzerland +austria text(neighbors:with) hungary +austria text(was:a:neighbor:of) liechtenstein +austria text(is:a:neighbor:of) czechia +hungary text(was:currently:in) eastern_europe +hungary text(is:a:neighboring:state:to) ukraine +hungary text(was:a:neighboring:state:to) slovakia +hungary text(borders:with) slovenia +hungary text(borders) croatia +hungary text(is:butted:against) austria +hungary text(was:butted:against) serbia +hungary text(was:adjacent:to) romania +malawi text(is:currently:in) eastern_africa +malawi text(is:placed:in) africa +malawi text(is:adjacent:to) zambia +malawi text(neighbors) tanzania +malawi text(is:a:neighboring:country:of) mozambique +hong_kong text(was:placed:in) eastern_asia +hong_kong text(was:a:neighboring:country:of) china +liechtenstein text(can:be:found:in) western_europe +liechtenstein text(was:situated:in) europe +liechtenstein text(neighbors:with) switzerland +liechtenstein text(was:a:neighbor:of) austria +barbados text(is:situated:in) caribbean +barbados text(is:located:in) americas +georgia text(was:located:in) western_asia georgia text(can:be:found:in) asia -georgia text(was:a:neighboring:country:of) armenia -georgia text(was:adjacent:to) azerbaijan -georgia text(is:adjacent:to) russia -georgia text(was:a:neighbor:of) turkey +georgia text(is:a:neighbor:of) armenia +georgia text(is:a:neighboring:state:to) azerbaijan +georgia text(was:a:neighboring:state:to) russia +georgia text(borders:with) turkey albania text(was:positioned:in) southern_europe albania text(is:positioned:in) europe -albania text(is:a:neighbor:of) montenegro -albania text(is:a:neighboring:state:to) macedonia -albania text(was:a:neighboring:state:to) kosovo -albania text(borders:with) greece +albania text(borders) montenegro +albania text(is:butted:against) macedonia +albania text(was:butted:against) kosovo +albania text(was:adjacent:to) greece kuwait text(was:sited:in) western_asia kuwait text(is:sited:in) asia -kuwait text(neighbors:withborders) saudi_arabia +kuwait text(is:adjacent:to) saudi_arabia kuwait text(neighbors) iraq -south_africa text(is:placed:in) southern_africa -south_africa text(was:placed:in) africa -south_africa text(is:butted:against) mozambique -south_africa text(was:butted:against) botswana -south_africa text(is:a:neighboring:country:of) swaziland -south_africa text(was:a:neighboring:country:of) zimbabwe -south_africa text(was:adjacent:to) namibia -south_africa text(is:adjacent:to) lesotho -haiti text(was:localized:in) caribbean -haiti text(is:localized:in) americas -haiti text(was:a:neighbor:of) dominican_republic -afghanistan text(was:present:in) southern_asia -afghanistan text(is:present:in) asia -afghanistan text(is:a:neighbor:of) turkmenistan -afghanistan text(is:a:neighboring:state:to) china -afghanistan text(was:a:neighboring:state:to) tajikistan -afghanistan text(borders:with) uzbekistan -afghanistan text(neighbors:withborders) iran -afghanistan text(neighbors) pakistan -singapore text(is:still:in) south-eastern_asia -singapore text(was:still:in) asia -benin text(was:currently:in) western_africa -benin text(is:currently:in) africa -benin text(is:butted:against) niger -benin text(was:butted:against) burkina_faso -benin text(is:a:neighboring:country:of) togo -benin text(was:a:neighboring:country:of) nigeria -åland_islands text(was:situated:in) northern_europe -åland_islands text(is:situated:in) europe -croatia text(is:located:in) southern_europe -croatia text(was:located:in) europe -croatia text(was:adjacent:to) slovenia -croatia text(is:adjacent:to) bosnia_and_herzegovina -croatia text(was:a:neighbor:of) hungary -croatia text(is:a:neighbor:of) serbia -croatia text(is:a:neighboring:state:to) montenegro -sweden text(could:be:found:in) northern_europe +south_africa text(was:localized:in) southern_africa +south_africa text(is:localized:in) africa +south_africa text(is:a:neighboring:country:of) mozambique +south_africa text(was:a:neighboring:country:of) botswana +south_africa text(neighbors:with) swaziland +south_africa text(was:a:neighbor:of) zimbabwe +south_africa text(is:a:neighbor:of) namibia +south_africa text(is:a:neighboring:state:to) lesotho +haiti text(was:present:in) caribbean +haiti text(is:present:in) americas +haiti text(was:a:neighboring:state:to) dominican_republic +afghanistan text(is:still:in) southern_asia +afghanistan text(was:still:in) asia +afghanistan text(borders:with) turkmenistan +afghanistan text(borders) china +afghanistan text(is:butted:against) tajikistan +afghanistan text(was:butted:against) uzbekistan +afghanistan text(was:adjacent:to) iran +afghanistan text(is:adjacent:to) pakistan +singapore text(was:currently:in) south-eastern_asia +singapore text(is:currently:in) asia +benin text(is:placed:in) western_africa +benin text(was:placed:in) africa +benin text(neighbors) niger +benin text(is:a:neighboring:country:of) burkina_faso +benin text(was:a:neighboring:country:of) togo +benin text(neighbors:with) nigeria +åland_islands text(can:be:found:in) northern_europe +åland_islands text(was:situated:in) europe +croatia text(is:situated:in) southern_europe +croatia text(is:located:in) europe +croatia text(was:a:neighbor:of) slovenia +croatia text(is:a:neighbor:of) bosnia_and_herzegovina +croatia text(is:a:neighboring:state:to) hungary +croatia text(was:a:neighboring:state:to) serbia +croatia text(borders:with) montenegro +sweden text(was:located:in) northern_europe sweden text(can:be:found:in) europe -sweden text(was:a:neighboring:state:to) norway -sweden text(borders:with) finland +sweden text(borders) norway +sweden text(is:butted:against) finland mexico text(was:positioned:in) northern_america -mexico text(neighbors:withborders) belize -mexico text(neighbors) united_states -mexico text(is:butted:against) guatemala +mexico text(was:butted:against) belize +mexico text(was:adjacent:to) united_states +mexico text(is:adjacent:to) guatemala greenland text(is:positioned:in) northern_america greenland text(was:sited:in) americas norfolk_island text(is:sited:in) australia_and_new_zealand -norfolk_island text(is:placed:in) oceania -nepal text(was:placed:in) southern_asia -nepal text(was:localized:in) asia -nepal text(was:butted:against) china +norfolk_island text(was:localized:in) oceania +nepal text(is:localized:in) southern_asia +nepal text(was:present:in) asia +nepal text(neighbors) china nepal text(is:a:neighboring:country:of) india -guatemala text(is:localized:in) central_america +guatemala text(is:present:in) central_america guatemala text(was:a:neighboring:country:of) belize -guatemala text(was:adjacent:to) el_salvador -guatemala text(is:adjacent:to) mexico -guatemala text(was:a:neighbor:of) honduras -south_korea text(was:present:in) eastern_asia -south_korea text(is:present:in) asia -south_korea text(is:a:neighbor:of) north_korea -moldova text(is:still:in) eastern_europe -moldova text(was:still:in) europe -moldova text(is:a:neighboring:state:to) ukraine -moldova text(was:a:neighboring:state:to) romania -mauritius text(was:currently:in) eastern_africa -mauritius text(is:currently:in) africa -belarus text(was:situated:in) eastern_europe -belarus text(borders:with) ukraine -belarus text(neighbors:withborders) poland -belarus text(neighbors) lithuania -belarus text(is:butted:against) russia -belarus text(was:butted:against) latvia -bangladesh text(is:situated:in) southern_asia -bangladesh text(is:a:neighboring:country:of) myanmar -bangladesh text(was:a:neighboring:country:of) india -malaysia text(is:located:in) south-eastern_asia -malaysia text(was:located:in) asia -malaysia text(was:adjacent:to) thailand -malaysia text(is:adjacent:to) indonesia +guatemala text(neighbors:with) el_salvador +guatemala text(was:a:neighbor:of) mexico +guatemala text(is:a:neighbor:of) honduras +south_korea text(is:still:in) eastern_asia +south_korea text(was:still:in) asia +south_korea text(is:a:neighboring:state:to) north_korea +moldova text(was:currently:in) eastern_europe +moldova text(is:currently:in) europe +moldova text(was:a:neighboring:state:to) ukraine +moldova text(borders:with) romania +mauritius text(is:placed:in) eastern_africa +mauritius text(was:placed:in) africa +belarus text(can:be:found:in) eastern_europe +belarus text(borders) ukraine +belarus text(is:butted:against) poland +belarus text(was:butted:against) lithuania +belarus text(was:adjacent:to) russia +belarus text(is:adjacent:to) latvia +bangladesh text(was:situated:in) southern_asia +bangladesh text(neighbors) myanmar +bangladesh text(is:a:neighboring:country:of) india +malaysia text(is:situated:in) south-eastern_asia +malaysia text(is:located:in) asia +malaysia text(was:a:neighboring:country:of) thailand +malaysia text(neighbors:with) indonesia malaysia text(was:a:neighbor:of) brunei -bosnia_and_herzegovina text(could:be:found:in) southern_europe +bosnia_and_herzegovina text(was:located:in) southern_europe bosnia_and_herzegovina text(can:be:found:in) europe bosnia_and_herzegovina text(is:a:neighbor:of) serbia bosnia_and_herzegovina text(is:a:neighboring:state:to) croatia @@ -946,164 +946,164 @@ bosnia_and_herzegovina text(was:a:neighboring:state:to) montenegro luxembourg text(was:positioned:in) western_europe luxembourg text(is:positioned:in) europe luxembourg text(borders:with) germany -luxembourg text(neighbors:withborders) belgium -luxembourg text(neighbors) france +luxembourg text(borders) belgium +luxembourg text(is:butted:against) france italy text(was:sited:in) southern_europe italy text(is:sited:in) europe -italy text(is:butted:against) slovenia -italy text(was:butted:against) switzerland -italy text(is:a:neighboring:country:of) austria -italy text(was:a:neighboring:country:of) france -italy text(was:adjacent:to) vatican_city -italy text(is:adjacent:to) san_marino -azerbaijan text(is:placed:in) western_asia -azerbaijan text(was:placed:in) asia -azerbaijan text(was:a:neighbor:of) turkey -azerbaijan text(is:a:neighbor:of) armenia -azerbaijan text(is:a:neighboring:state:to) russia -azerbaijan text(was:a:neighboring:state:to) iran -azerbaijan text(borders:with) georgia -honduras text(was:localized:in) central_america -honduras text(is:localized:in) americas -honduras text(neighbors:withborders) guatemala -honduras text(neighbors) nicaragua +italy text(was:butted:against) slovenia +italy text(was:adjacent:to) switzerland +italy text(is:adjacent:to) austria +italy text(neighbors) france +italy text(is:a:neighboring:country:of) vatican_city +italy text(was:a:neighboring:country:of) san_marino +azerbaijan text(was:localized:in) western_asia +azerbaijan text(is:localized:in) asia +azerbaijan text(neighbors:with) turkey +azerbaijan text(was:a:neighbor:of) armenia +azerbaijan text(is:a:neighbor:of) russia +azerbaijan text(is:a:neighboring:state:to) iran +azerbaijan text(was:a:neighboring:state:to) georgia +honduras text(was:present:in) central_america +honduras text(is:present:in) americas +honduras text(borders:with) guatemala +honduras text(borders) nicaragua honduras text(is:butted:against) el_salvador -mali text(was:present:in) western_africa -mali text(is:present:in) africa +mali text(is:still:in) western_africa +mali text(was:still:in) africa mali text(was:butted:against) burkina_faso -mali text(is:a:neighboring:country:of) guinea -mali text(was:a:neighboring:country:of) mauritania -mali text(was:adjacent:to) niger -mali text(is:adjacent:to) senegal -mali text(was:a:neighbor:of) algeria -mali text(is:a:neighbor:of) ivory_coast -taiwan text(is:still:in) eastern_asia -taiwan text(was:still:in) asia -algeria text(was:currently:in) northern_africa -algeria text(is:currently:in) africa -algeria text(is:a:neighboring:state:to) libya -algeria text(was:a:neighboring:state:to) tunisia -algeria text(borders:with) mauritania -algeria text(neighbors:withborders) morocco -algeria text(neighbors) niger -algeria text(is:butted:against) mali -algeria text(was:butted:against) western_sahara -french_guiana text(was:situated:in) south_america -french_guiana text(is:a:neighboring:country:of) brazil -french_guiana text(was:a:neighboring:country:of) suriname -yemen text(is:situated:in) western_asia -yemen text(is:located:in) asia -yemen text(was:adjacent:to) oman -yemen text(is:adjacent:to) saudi_arabia -puerto_rico text(was:located:in) caribbean -puerto_rico text(could:be:found:in) americas +mali text(was:adjacent:to) guinea +mali text(is:adjacent:to) mauritania +mali text(neighbors) niger +mali text(is:a:neighboring:country:of) senegal +mali text(was:a:neighboring:country:of) algeria +mali text(neighbors:with) ivory_coast +taiwan text(was:currently:in) eastern_asia +taiwan text(is:currently:in) asia +algeria text(is:placed:in) northern_africa +algeria text(was:placed:in) africa +algeria text(was:a:neighbor:of) libya +algeria text(is:a:neighbor:of) tunisia +algeria text(is:a:neighboring:state:to) mauritania +algeria text(was:a:neighboring:state:to) morocco +algeria text(borders:with) niger +algeria text(borders) mali +algeria text(is:butted:against) western_sahara +french_guiana text(can:be:found:in) south_america +french_guiana text(was:butted:against) brazil +french_guiana text(was:adjacent:to) suriname +yemen text(was:situated:in) western_asia +yemen text(is:situated:in) asia +yemen text(is:adjacent:to) oman +yemen text(neighbors) saudi_arabia +puerto_rico text(is:located:in) caribbean +puerto_rico text(was:located:in) americas saint_vincent_and_the_grenadines text(can:be:found:in) caribbean saint_vincent_and_the_grenadines text(was:positioned:in) americas venezuela text(is:positioned:in) south_america -venezuela text(was:a:neighbor:of) brazil -venezuela text(is:a:neighbor:of) guyana -venezuela text(is:a:neighboring:state:to) colombia +venezuela text(is:a:neighboring:country:of) brazil +venezuela text(was:a:neighboring:country:of) guyana +venezuela text(neighbors:with) colombia grenada text(was:sited:in) caribbean grenada text(is:sited:in) americas -united_states text(is:placed:in) northern_america -united_states text(was:a:neighboring:state:to) canada -united_states text(borders:with) mexico -tokelau text(was:placed:in) polynesia -tokelau text(was:localized:in) oceania -slovenia text(is:localized:in) southern_europe -slovenia text(was:present:in) europe -slovenia text(neighbors:withborders) austria -slovenia text(neighbors) croatia -slovenia text(is:butted:against) italy -slovenia text(was:butted:against) hungary -philippines text(is:present:in) south-eastern_asia -philippines text(is:still:in) asia -micronesia text(was:still:in) micronesia -micronesia text(was:currently:in) oceania -china text(is:currently:in) eastern_asia -china text(was:situated:in) asia -china text(is:a:neighboring:country:of) afghanistan -china text(was:a:neighboring:country:of) bhutan +united_states text(was:localized:in) northern_america +united_states text(was:a:neighbor:of) canada +united_states text(is:a:neighbor:of) mexico +tokelau text(is:localized:in) polynesia +tokelau text(was:present:in) oceania +slovenia text(is:present:in) southern_europe +slovenia text(is:still:in) europe +slovenia text(is:a:neighboring:state:to) austria +slovenia text(was:a:neighboring:state:to) croatia +slovenia text(borders:with) italy +slovenia text(borders) hungary +philippines text(was:still:in) south-eastern_asia +philippines text(was:currently:in) asia +micronesia text(is:currently:in) micronesia +micronesia text(is:placed:in) oceania +china text(was:placed:in) eastern_asia +china text(can:be:found:in) asia +china text(is:butted:against) afghanistan +china text(was:butted:against) bhutan china text(was:adjacent:to) macau china text(is:adjacent:to) india -china text(was:a:neighbor:of) kazakhstan -china text(is:a:neighbor:of) kyrgyzstan -china text(is:a:neighboring:state:to) tajikistan -china text(was:a:neighboring:state:to) laos -china text(borders:with) russia -china text(neighbors:withborders) north_korea -china text(neighbors) myanmar -china text(is:butted:against) pakistan -china text(was:butted:against) mongolia -china text(is:a:neighboring:country:of) hong_kong -china text(was:a:neighboring:country:of) vietnam -gabon text(is:situated:in) middle_africa -gabon text(is:located:in) africa -gabon text(was:adjacent:to) equatorial_guinea -gabon text(is:adjacent:to) republic_of_the_congo -gabon text(was:a:neighbor:of) cameroon -united_states_minor_outlying_islands text(was:located:in) northern_america -united_states_minor_outlying_islands text(could:be:found:in) americas +china text(neighbors) kazakhstan +china text(is:a:neighboring:country:of) kyrgyzstan +china text(was:a:neighboring:country:of) tajikistan +china text(neighbors:with) laos +china text(was:a:neighbor:of) russia +china text(is:a:neighbor:of) north_korea +china text(is:a:neighboring:state:to) myanmar +china text(was:a:neighboring:state:to) pakistan +china text(borders:with) mongolia +china text(borders) hong_kong +china text(is:butted:against) vietnam +gabon text(was:situated:in) middle_africa +gabon text(is:situated:in) africa +gabon text(was:butted:against) equatorial_guinea +gabon text(was:adjacent:to) republic_of_the_congo +gabon text(is:adjacent:to) cameroon +united_states_minor_outlying_islands text(is:located:in) northern_america +united_states_minor_outlying_islands text(was:located:in) americas andorra text(can:be:found:in) southern_europe andorra text(was:positioned:in) europe -andorra text(is:a:neighbor:of) spain -andorra text(is:a:neighboring:state:to) france +andorra text(neighbors) spain +andorra text(is:a:neighboring:country:of) france samoa text(is:positioned:in) polynesia samoa text(was:sited:in) oceania gambia text(is:sited:in) western_africa -gambia text(is:placed:in) africa -gambia text(was:a:neighboring:state:to) senegal -palestine text(was:placed:in) western_asia -palestine text(was:localized:in) asia -palestine text(borders:with) jordan -palestine text(neighbors:withborders) egypt -palestine text(neighbors) israel -réunion text(is:localized:in) eastern_africa -réunion text(was:present:in) africa -france text(is:present:in) western_europe -france text(is:still:in) europe -france text(is:butted:against) germany -france text(was:butted:against) luxembourg -france text(is:a:neighboring:country:of) italy -france text(was:a:neighboring:country:of) andorra -france text(was:adjacent:to) switzerland -france text(is:adjacent:to) monaco -france text(was:a:neighbor:of) belgium -france text(is:a:neighbor:of) spain -mongolia text(was:still:in) eastern_asia -mongolia text(was:currently:in) asia -mongolia text(is:a:neighboring:state:to) china -mongolia text(was:a:neighboring:state:to) russia -lithuania text(is:currently:in) northern_europe -lithuania text(was:situated:in) europe -lithuania text(borders:with) poland -lithuania text(neighbors:withborders) latvia -lithuania text(neighbors) belarus -lithuania text(is:butted:against) russia -cayman_islands text(is:situated:in) caribbean -cayman_islands text(is:located:in) americas -saint_lucia text(was:located:in) caribbean -saint_lucia text(could:be:found:in) americas +gambia text(was:localized:in) africa +gambia text(was:a:neighboring:country:of) senegal +palestine text(is:localized:in) western_asia +palestine text(was:present:in) asia +palestine text(neighbors:with) jordan +palestine text(was:a:neighbor:of) egypt +palestine text(is:a:neighbor:of) israel +réunion text(is:present:in) eastern_africa +réunion text(is:still:in) africa +france text(was:still:in) western_europe +france text(was:currently:in) europe +france text(is:a:neighboring:state:to) germany +france text(was:a:neighboring:state:to) luxembourg +france text(borders:with) italy +france text(borders) andorra +france text(is:butted:against) switzerland +france text(was:butted:against) monaco +france text(was:adjacent:to) belgium +france text(is:adjacent:to) spain +mongolia text(is:currently:in) eastern_asia +mongolia text(is:placed:in) asia +mongolia text(neighbors) china +mongolia text(is:a:neighboring:country:of) russia +lithuania text(was:placed:in) northern_europe +lithuania text(can:be:found:in) europe +lithuania text(was:a:neighboring:country:of) poland +lithuania text(neighbors:with) latvia +lithuania text(was:a:neighbor:of) belarus +lithuania text(is:a:neighbor:of) russia +cayman_islands text(was:situated:in) caribbean +cayman_islands text(is:situated:in) americas +saint_lucia text(is:located:in) caribbean +saint_lucia text(was:located:in) americas curaçao text(can:be:found:in) caribbean curaçao text(was:positioned:in) americas caribbean text(is:positioned:in) americas southern_asia text(was:sited:in) asia middle_africa text(is:sited:in) africa -northern_europe text(is:placed:in) europe -southern_europe text(was:placed:in) europe -western_asia text(was:localized:in) asia -south_america text(is:localized:in) americas -polynesia text(was:present:in) oceania -australia_and_new_zealand text(is:present:in) oceania -western_europe text(is:still:in) europe -eastern_africa text(was:still:in) africa -western_africa text(was:currently:in) africa -eastern_europe text(is:currently:in) europe -central_america text(was:situated:in) americas -northern_america text(is:situated:in) americas -south-eastern_asia text(is:located:in) asia -southern_africa text(was:located:in) africa -eastern_asia text(could:be:found:in) asia +northern_europe text(was:localized:in) europe +southern_europe text(is:localized:in) europe +western_asia text(was:present:in) asia +south_america text(is:present:in) americas +polynesia text(is:still:in) oceania +australia_and_new_zealand text(was:still:in) oceania +western_europe text(was:currently:in) europe +eastern_africa text(is:currently:in) africa +western_africa text(is:placed:in) africa +eastern_europe text(was:placed:in) europe +central_america text(can:be:found:in) americas +northern_america text(was:situated:in) americas +south-eastern_asia text(is:situated:in) asia +southern_africa text(is:located:in) africa +eastern_asia text(was:located:in) asia northern_africa text(can:be:found:in) africa melanesia text(was:positioned:in) oceania micronesia text(is:positioned:in) oceania diff --git a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_relation2text_traintest.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_relation2text_traintest.tsv deleted file mode 100644 index 8f79ecc..0000000 --- a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S1_relation2text_traintest.tsv +++ /dev/null @@ -1,1111 +0,0 @@ -palau text(is:positioned:in) micronesia -palau text(was:localized:in) oceania -maldives text(is:localized:in) southern_asia -maldives text(was:present:in) asia -brunei text(is:present:in) south-eastern_asia -brunei text(is:still:in) asia -brunei text(was:a:neighboring:country:of) malaysia -japan text(was:still:in) eastern_asia -japan text(was:currently:in) asia -netherlands text(is:currently:in) western_europe -netherlands text(was:a:neighbor:of) belgium -turkey text(was:situated:in) western_asia -turkey text(is:a:neighbor:of) armenia -turkey text(is:a:neighboring:state:to) azerbaijan -turkey text(was:a:neighboring:state:to) iran -turkey text(borders:with) greece -turkey text(neighbors:withborders) georgia -angola text(is:situated:in) middle_africa -angola text(is:located:in) africa -angola text(neighbors) dr_congo -angola text(is:butted:against) namibia -angola text(was:butted:against) republic_of_the_congo -armenia text(was:located:in) western_asia -armenia text(could:be:found:in) asia -armenia text(is:a:neighboring:country:of) georgia -armenia text(was:a:neighboring:country:of) azerbaijan -armenia text(was:a:neighbor:of) iran -armenia text(is:a:neighbor:of) turkey -antigua_and_barbuda text(can:be:found:in) caribbean -antigua_and_barbuda text(was:positioned:in) americas -swaziland text(is:positioned:in) southern_africa -swaziland text(was:localized:in) africa -swaziland text(is:a:neighboring:state:to) south_africa -swaziland text(was:a:neighboring:state:to) mozambique -wallis_and_futuna text(is:localized:in) polynesia -wallis_and_futuna text(was:present:in) oceania -uruguay text(is:present:in) south_america -uruguay text(is:still:in) americas -uruguay text(borders:with) argentina -uruguay text(neighbors:withborders) brazil -cyprus text(was:still:in) eastern_europe -cyprus text(was:currently:in) europe -cyprus text(neighbors) united_kingdom -ireland text(is:currently:in) northern_europe -ireland text(was:situated:in) europe -ireland text(is:butted:against) united_kingdom -burundi text(is:situated:in) eastern_africa -burundi text(is:located:in) africa -burundi text(was:butted:against) dr_congo -burundi text(is:a:neighboring:country:of) rwanda -central_african_republic text(was:located:in) middle_africa -central_african_republic text(could:be:found:in) africa -central_african_republic text(was:a:neighboring:country:of) chad -central_african_republic text(was:a:neighbor:of) republic_of_the_congo -central_african_republic text(is:a:neighbor:of) dr_congo -central_african_republic text(is:a:neighboring:state:to) south_sudan -central_african_republic text(was:a:neighboring:state:to) cameroon -tonga text(can:be:found:in) polynesia -tonga text(was:positioned:in) oceania -ivory_coast text(is:positioned:in) western_africa -ivory_coast text(was:localized:in) africa -ivory_coast text(borders:with) liberia -ivory_coast text(neighbors:withborders) mali -ivory_coast text(neighbors) guinea -sierra_leone text(is:localized:in) western_africa -sierra_leone text(is:butted:against) liberia -sierra_leone text(was:butted:against) guinea -mayotte text(was:present:in) eastern_africa -mayotte text(is:present:in) africa -poland text(is:still:in) eastern_europe -poland text(is:a:neighboring:country:of) ukraine -poland text(was:a:neighboring:country:of) slovakia -poland text(was:a:neighbor:of) belarus -poland text(is:a:neighbor:of) russia -poland text(is:a:neighboring:state:to) lithuania -uzbekistan text(was:still:in) central_asia -uzbekistan text(was:currently:in) asia -uzbekistan text(was:a:neighboring:state:to) afghanistan -uzbekistan text(borders:with) turkmenistan -uzbekistan text(neighbors:withborders) kyrgyzstan -uzbekistan text(neighbors) tajikistan -turks_and_caicos_islands text(is:currently:in) caribbean -turks_and_caicos_islands text(was:situated:in) americas -new_caledonia text(is:situated:in) melanesia -new_caledonia text(is:located:in) oceania -pakistan text(was:located:in) southern_asia -pakistan text(is:butted:against) china -pakistan text(was:butted:against) afghanistan -pakistan text(is:a:neighboring:country:of) iran -pakistan text(was:a:neighboring:country:of) india -argentina text(could:be:found:in) south_america -argentina text(can:be:found:in) americas -argentina text(was:a:neighbor:of) bolivia -argentina text(is:a:neighbor:of) chile -argentina text(is:a:neighboring:state:to) brazil -argentina text(was:a:neighboring:state:to) paraguay -argentina text(borders:with) uruguay -cuba text(was:positioned:in) caribbean -cuba text(is:positioned:in) americas -serbia text(was:localized:in) southern_europe -serbia text(neighbors:withborders) macedonia -serbia text(neighbors) montenegro -serbia text(is:butted:against) bosnia_and_herzegovina -serbia text(was:butted:against) croatia -serbia text(is:a:neighboring:country:of) romania -vietnam text(is:localized:in) south-eastern_asia -vietnam text(was:present:in) asia -vietnam text(was:a:neighboring:country:of) cambodia -vietnam text(was:a:neighbor:of) laos -vietnam text(is:a:neighbor:of) china -niue text(is:present:in) polynesia -niue text(is:still:in) oceania -canada text(was:still:in) northern_america -canada text(was:currently:in) americas -slovakia text(is:currently:in) central_europe -slovakia text(is:a:neighboring:state:to) ukraine -slovakia text(was:a:neighboring:state:to) poland -slovakia text(borders:with) austria -mozambique text(was:situated:in) eastern_africa -mozambique text(neighbors:withborders) swaziland -mozambique text(neighbors) malawi -mozambique text(is:butted:against) south_africa -aruba text(is:situated:in) caribbean -aruba text(is:located:in) americas -bolivia text(was:located:in) south_america -bolivia text(could:be:found:in) americas -bolivia text(was:butted:against) chile -bolivia text(is:a:neighboring:country:of) brazil -bolivia text(was:a:neighboring:country:of) paraguay -bolivia text(was:a:neighbor:of) argentina -bolivia text(is:a:neighbor:of) peru -colombia text(can:be:found:in) south_america -colombia text(was:positioned:in) americas -colombia text(is:a:neighboring:state:to) brazil -colombia text(was:a:neighboring:state:to) peru -fiji text(is:positioned:in) melanesia -fiji text(was:localized:in) oceania -republic_of_the_congo text(is:localized:in) middle_africa -republic_of_the_congo text(borders:with) gabon -republic_of_the_congo text(neighbors:withborders) dr_congo -republic_of_the_congo text(neighbors) angola -republic_of_the_congo text(is:butted:against) cameroon -republic_of_the_congo text(was:butted:against) central_african_republic -el_salvador text(was:present:in) central_america -el_salvador text(is:present:in) americas -el_salvador text(is:a:neighboring:country:of) guatemala -el_salvador text(was:a:neighboring:country:of) honduras -madagascar text(is:still:in) eastern_africa -madagascar text(was:still:in) africa -australia text(was:currently:in) australia_and_new_zealand -australia text(is:currently:in) oceania -namibia text(was:situated:in) southern_africa -namibia text(is:situated:in) africa -namibia text(was:a:neighbor:of) angola -namibia text(is:a:neighbor:of) south_africa -tuvalu text(is:located:in) polynesia -tuvalu text(was:located:in) oceania -svalbard_and_jan_mayen text(could:be:found:in) northern_europe -svalbard_and_jan_mayen text(can:be:found:in) europe -isle_of_man text(was:positioned:in) northern_europe -isle_of_man text(is:positioned:in) europe -vatican_city text(was:localized:in) southern_europe -vatican_city text(is:localized:in) europe -vatican_city text(is:a:neighboring:state:to) italy -british_indian_ocean_territory text(was:present:in) eastern_africa -british_indian_ocean_territory text(is:present:in) africa -nigeria text(is:still:in) western_africa -nigeria text(was:still:in) africa -nigeria text(was:a:neighboring:state:to) chad -nigeria text(borders:with) niger -nigeria text(neighbors:withborders) cameroon -nigeria text(neighbors) benin -northern_mariana_islands text(was:currently:in) micronesia -northern_mariana_islands text(is:currently:in) oceania -belize text(was:situated:in) central_america -belize text(is:situated:in) americas -belize text(is:butted:against) guatemala -belize text(was:butted:against) mexico -cocos_keeling_islands text(is:located:in) australia_and_new_zealand -cocos_keeling_islands text(was:located:in) oceania -laos text(could:be:found:in) south-eastern_asia -laos text(can:be:found:in) asia -laos text(is:a:neighboring:country:of) china -laos text(was:a:neighboring:country:of) cambodia -laos text(was:a:neighbor:of) vietnam -western_sahara text(was:positioned:in) northern_africa -western_sahara text(is:positioned:in) africa -western_sahara text(is:a:neighbor:of) algeria -western_sahara text(is:a:neighboring:state:to) mauritania -western_sahara text(was:a:neighboring:state:to) morocco -christmas_island text(was:localized:in) australia_and_new_zealand -christmas_island text(is:localized:in) oceania -são_tomé_and_príncipe text(was:present:in) middle_africa -são_tomé_and_príncipe text(is:present:in) africa -guinea text(is:still:in) western_africa -guinea text(was:still:in) africa -guinea text(borders:with) sierra_leone -guinea text(neighbors:withborders) mali -guinea text(neighbors) liberia -guinea text(is:butted:against) senegal -guinea text(was:butted:against) ivory_coast -costa_rica text(was:currently:in) central_america -costa_rica text(is:currently:in) americas -malta text(was:situated:in) southern_europe -malta text(is:situated:in) europe -portugal text(is:located:in) southern_europe -portugal text(was:located:in) europe -romania text(could:be:found:in) eastern_europe -romania text(can:be:found:in) europe -romania text(is:a:neighboring:country:of) ukraine -romania text(was:a:neighboring:country:of) moldova -romania text(was:a:neighbor:of) serbia -san_marino text(was:positioned:in) southern_europe -san_marino text(is:positioned:in) europe -san_marino text(is:a:neighbor:of) italy -mauritania text(was:localized:in) western_africa -mauritania text(is:localized:in) africa -mauritania text(is:a:neighboring:state:to) algeria -mauritania text(was:a:neighboring:state:to) mali -mauritania text(borders:with) western_sahara -mauritania text(neighbors:withborders) senegal -trinidad_and_tobago text(was:present:in) caribbean -trinidad_and_tobago text(is:present:in) americas -bahrain text(is:still:in) western_asia -bahrain text(was:still:in) asia -south_georgia text(was:currently:in) south_america -south_georgia text(is:currently:in) americas -iceland text(was:situated:in) northern_europe -iceland text(is:situated:in) europe -dr_congo text(is:located:in) middle_africa -dr_congo text(was:located:in) africa -dr_congo text(neighbors) uganda -dr_congo text(is:butted:against) republic_of_the_congo -dr_congo text(was:butted:against) central_african_republic -dr_congo text(is:a:neighboring:country:of) angola -dr_congo text(was:a:neighboring:country:of) rwanda -dr_congo text(was:a:neighbor:of) south_sudan -dr_congo text(is:a:neighbor:of) burundi -seychelles text(could:be:found:in) eastern_africa -seychelles text(can:be:found:in) africa -kyrgyzstan text(was:positioned:in) central_asia -kyrgyzstan text(is:a:neighboring:state:to) china -kyrgyzstan text(was:a:neighboring:state:to) tajikistan -kyrgyzstan text(borders:with) uzbekistan -faroe_islands text(is:positioned:in) northern_europe -faroe_islands text(was:localized:in) europe -jamaica text(is:localized:in) caribbean -jamaica text(was:present:in) americas -american_samoa text(is:present:in) polynesia -american_samoa text(is:still:in) oceania -lesotho text(was:still:in) southern_africa -lesotho text(was:currently:in) africa -lesotho text(neighbors:withborders) south_africa -sri_lanka text(is:currently:in) southern_asia -sri_lanka text(neighbors) india -belgium text(was:situated:in) western_europe -belgium text(is:situated:in) europe -belgium text(is:butted:against) luxembourg -belgium text(was:butted:against) france -belgium text(is:a:neighboring:country:of) netherlands -qatar text(is:located:in) western_asia -qatar text(was:located:in) asia -solomon_islands text(could:be:found:in) melanesia -solomon_islands text(can:be:found:in) oceania -india text(was:positioned:in) southern_asia -india text(is:positioned:in) asia -india text(was:a:neighboring:country:of) afghanistan -india text(was:a:neighbor:of) bangladesh -india text(is:a:neighbor:of) china -india text(is:a:neighboring:state:to) nepal -india text(was:a:neighboring:state:to) pakistan -india text(borders:with) sri_lanka -morocco text(was:localized:in) northern_africa -morocco text(neighbors:withborders) algeria -morocco text(neighbors) western_sahara -kenya text(is:localized:in) eastern_africa -kenya text(was:present:in) africa -kenya text(is:butted:against) uganda -kenya text(was:butted:against) somalia -kenya text(is:a:neighboring:country:of) south_sudan -kenya text(was:a:neighboring:country:of) ethiopia -south_sudan text(is:present:in) middle_africa -south_sudan text(is:still:in) africa -south_sudan text(was:a:neighbor:of) uganda -south_sudan text(is:a:neighbor:of) dr_congo -south_sudan text(is:a:neighboring:state:to) kenya -south_sudan text(was:a:neighboring:state:to) central_african_republic -south_sudan text(borders:with) ethiopia -tajikistan text(was:still:in) central_asia -tajikistan text(was:currently:in) asia -tajikistan text(neighbors:withborders) china -tajikistan text(neighbors) kyrgyzstan -tajikistan text(is:butted:against) afghanistan -tajikistan text(was:butted:against) uzbekistan -marshall_islands text(is:currently:in) micronesia -marshall_islands text(was:situated:in) oceania -cameroon text(is:situated:in) middle_africa -cameroon text(is:located:in) africa -cameroon text(is:a:neighboring:country:of) chad -cameroon text(was:a:neighboring:country:of) republic_of_the_congo -cameroon text(was:a:neighbor:of) gabon -cameroon text(is:a:neighbor:of) equatorial_guinea -cameroon text(is:a:neighboring:state:to) central_african_republic -cameroon text(was:a:neighboring:state:to) nigeria -nauru text(was:located:in) micronesia -nauru text(could:be:found:in) oceania -chad text(can:be:found:in) middle_africa -chad text(was:positioned:in) africa -chad text(borders:with) libya -chad text(neighbors:withborders) niger -chad text(neighbors) south_sudan -chad text(is:butted:against) cameroon -chad text(was:butted:against) central_african_republic -chad text(is:a:neighboring:country:of) nigeria -vanuatu text(is:positioned:in) melanesia -vanuatu text(was:localized:in) oceania -cape_verde text(is:localized:in) western_africa -cape_verde text(was:present:in) africa -falkland_islands text(is:present:in) south_america -falkland_islands text(is:still:in) americas -liberia text(was:still:in) western_africa -liberia text(was:currently:in) africa -liberia text(was:a:neighboring:country:of) ivory_coast -liberia text(was:a:neighbor:of) sierra_leone -liberia text(is:a:neighbor:of) guinea -cambodia text(is:currently:in) south-eastern_asia -cambodia text(was:situated:in) asia -cambodia text(is:a:neighboring:state:to) vietnam -cambodia text(was:a:neighboring:state:to) laos -comoros text(is:situated:in) eastern_africa -comoros text(is:located:in) africa -guam text(was:located:in) micronesia -guam text(could:be:found:in) oceania -bahamas text(can:be:found:in) caribbean -bahamas text(was:positioned:in) americas -lebanon text(is:positioned:in) western_asia -lebanon text(was:localized:in) asia -lebanon text(borders:with) israel -sint_maarten text(is:localized:in) caribbean -sint_maarten text(was:present:in) americas -ethiopia text(is:present:in) eastern_africa -ethiopia text(is:still:in) africa -ethiopia text(neighbors:withborders) somalia -ethiopia text(neighbors) kenya -ethiopia text(is:butted:against) south_sudan -united_states_virgin_islands text(was:still:in) caribbean -united_states_virgin_islands text(was:currently:in) americas -libya text(is:currently:in) northern_africa -libya text(was:situated:in) africa -libya text(was:butted:against) chad -libya text(is:a:neighboring:country:of) tunisia -libya text(was:a:neighboring:country:of) niger -libya text(was:a:neighbor:of) algeria -french_polynesia text(is:situated:in) polynesia -french_polynesia text(is:located:in) oceania -somalia text(was:located:in) eastern_africa -somalia text(could:be:found:in) africa -somalia text(is:a:neighbor:of) kenya -somalia text(is:a:neighboring:state:to) ethiopia -saint_barthélemy text(can:be:found:in) caribbean -saint_barthélemy text(was:positioned:in) americas -russia text(is:positioned:in) eastern_europe -russia text(was:localized:in) europe -russia text(was:a:neighboring:state:to) ukraine -russia text(borders:with) belarus -russia text(neighbors:withborders) china -russia text(neighbors) poland -russia text(is:butted:against) azerbaijan -russia text(was:butted:against) lithuania -russia text(is:a:neighboring:country:of) estonia -russia text(was:a:neighboring:country:of) north_korea -russia text(was:a:neighbor:of) finland -russia text(is:a:neighbor:of) latvia -russia text(is:a:neighboring:state:to) georgia -new_zealand text(is:localized:in) australia_and_new_zealand -new_zealand text(was:present:in) oceania -papua_new_guinea text(is:present:in) melanesia -papua_new_guinea text(is:still:in) oceania -north_korea text(was:still:in) eastern_asia -north_korea text(was:a:neighboring:state:to) china -north_korea text(borders:with) south_korea -north_korea text(neighbors:withborders) russia -latvia text(was:currently:in) northern_europe -latvia text(is:currently:in) europe -latvia text(neighbors) lithuania -latvia text(is:butted:against) belarus -latvia text(was:butted:against) russia -latvia text(is:a:neighboring:country:of) estonia -oman text(was:situated:in) western_asia -oman text(is:situated:in) asia -oman text(was:a:neighboring:country:of) yemen -oman text(was:a:neighbor:of) united_arab_emirates -saint_pierre_and_miquelon text(is:located:in) northern_america -saint_pierre_and_miquelon text(was:located:in) americas -martinique text(could:be:found:in) caribbean -martinique text(can:be:found:in) americas -united_kingdom text(was:positioned:in) northern_europe -united_kingdom text(is:positioned:in) europe -united_kingdom text(is:a:neighbor:of) ireland -israel text(was:localized:in) western_asia -israel text(is:localized:in) asia -israel text(is:a:neighboring:state:to) lebanon -jersey text(was:present:in) northern_europe -jersey text(is:present:in) europe -pitcairn_islands text(is:still:in) polynesia -pitcairn_islands text(was:still:in) oceania -togo text(was:currently:in) western_africa -togo text(is:currently:in) africa -togo text(was:a:neighboring:state:to) benin -kiribati text(was:situated:in) micronesia -kiribati text(is:situated:in) oceania -iran text(is:located:in) southern_asia -iran text(was:located:in) asia -iran text(borders:with) afghanistan -iran text(neighbors:withborders) turkmenistan -iran text(neighbors) turkey -iran text(is:butted:against) armenia -iran text(was:butted:against) azerbaijan -iran text(is:a:neighboring:country:of) pakistan -dominican_republic text(could:be:found:in) caribbean -dominican_republic text(can:be:found:in) americas -dominican_republic text(was:a:neighboring:country:of) haiti -bermuda text(was:positioned:in) northern_america -bermuda text(is:positioned:in) americas -chile text(was:localized:in) south_america -chile text(was:a:neighbor:of) argentina -chile text(is:a:neighbor:of) bolivia -chile text(is:a:neighboring:state:to) peru -saint_kitts_and_nevis text(is:localized:in) caribbean -saint_kitts_and_nevis text(was:present:in) americas -equatorial_guinea text(is:present:in) middle_africa -equatorial_guinea text(is:still:in) africa -equatorial_guinea text(was:a:neighboring:state:to) gabon -equatorial_guinea text(borders:with) cameroon -niger text(was:still:in) western_africa -niger text(was:currently:in) africa -niger text(neighbors:withborders) chad -niger text(neighbors) libya -niger text(is:butted:against) benin -niger text(was:butted:against) mali -niger text(is:a:neighboring:country:of) algeria -niger text(was:a:neighboring:country:of) nigeria -anguilla text(is:currently:in) caribbean -anguilla text(was:situated:in) americas -rwanda text(is:situated:in) eastern_africa -rwanda text(is:located:in) africa -rwanda text(was:a:neighbor:of) burundi -rwanda text(is:a:neighbor:of) uganda -rwanda text(is:a:neighboring:state:to) dr_congo -united_arab_emirates text(was:located:in) western_asia -united_arab_emirates text(could:be:found:in) asia -united_arab_emirates text(was:a:neighboring:state:to) oman -estonia text(can:be:found:in) northern_europe -estonia text(was:positioned:in) europe -estonia text(borders:with) latvia -estonia text(neighbors:withborders) russia -greece text(is:positioned:in) southern_europe -greece text(was:localized:in) europe -greece text(neighbors) albania -greece text(is:butted:against) macedonia -greece text(was:butted:against) turkey -senegal text(is:localized:in) western_africa -senegal text(was:present:in) africa -senegal text(is:a:neighboring:country:of) mauritania -senegal text(was:a:neighboring:country:of) mali -senegal text(was:a:neighbor:of) gambia -senegal text(is:a:neighbor:of) guinea -guadeloupe text(is:present:in) caribbean -guadeloupe text(is:still:in) americas -british_virgin_islands text(was:still:in) caribbean -british_virgin_islands text(was:currently:in) americas -cook_islands text(is:currently:in) polynesia -cook_islands text(was:situated:in) oceania -uganda text(is:situated:in) eastern_africa -uganda text(is:located:in) africa -uganda text(is:a:neighboring:state:to) dr_congo -uganda text(was:a:neighboring:state:to) kenya -uganda text(borders:with) south_sudan -uganda text(neighbors:withborders) rwanda -macedonia text(was:located:in) southern_europe -macedonia text(could:be:found:in) europe -macedonia text(neighbors) greece -macedonia text(is:butted:against) albania -macedonia text(was:butted:against) serbia -tunisia text(can:be:found:in) northern_africa -tunisia text(was:positioned:in) africa -tunisia text(is:a:neighboring:country:of) libya -tunisia text(was:a:neighboring:country:of) algeria -brazil text(is:positioned:in) south_america -brazil text(was:localized:in) americas -brazil text(was:a:neighbor:of) bolivia -brazil text(is:a:neighbor:of) colombia -brazil text(is:a:neighboring:state:to) paraguay -brazil text(was:a:neighboring:state:to) uruguay -brazil text(borders:with) argentina -brazil text(neighbors:withborders) peru -paraguay text(is:localized:in) south_america -paraguay text(was:present:in) americas -paraguay text(neighbors) argentina -paraguay text(is:butted:against) brazil -paraguay text(was:butted:against) bolivia -finland text(is:present:in) northern_europe -finland text(is:still:in) europe -finland text(is:a:neighboring:country:of) sweden -finland text(was:a:neighboring:country:of) russia -montenegro text(was:still:in) southern_europe -montenegro text(was:currently:in) europe -montenegro text(was:a:neighbor:of) bosnia_and_herzegovina -montenegro text(is:a:neighbor:of) croatia -montenegro text(is:a:neighboring:state:to) serbia -montenegro text(was:a:neighboring:state:to) albania -peru text(is:currently:in) south_america -peru text(was:situated:in) americas -peru text(borders:with) bolivia -peru text(neighbors:withborders) chile -peru text(neighbors) brazil -peru text(is:butted:against) colombia -montserrat text(is:situated:in) caribbean -montserrat text(is:located:in) americas -ukraine text(was:located:in) eastern_europe -ukraine text(could:be:found:in) europe -ukraine text(was:butted:against) slovakia -ukraine text(is:a:neighboring:country:of) belarus -ukraine text(was:a:neighboring:country:of) poland -ukraine text(was:a:neighbor:of) russia -ukraine text(is:a:neighbor:of) moldova -ukraine text(is:a:neighboring:state:to) romania -dominica text(can:be:found:in) caribbean -dominica text(was:positioned:in) americas -turkmenistan text(is:positioned:in) central_asia -turkmenistan text(was:a:neighboring:state:to) afghanistan -turkmenistan text(borders:with) uzbekistan -turkmenistan text(neighbors:withborders) iran -guernsey text(was:localized:in) northern_europe -guernsey text(is:localized:in) europe -gibraltar text(was:present:in) southern_europe -gibraltar text(is:present:in) europe -switzerland text(is:still:in) western_europe -switzerland text(was:still:in) europe -switzerland text(neighbors) italy -switzerland text(is:butted:against) austria -switzerland text(was:butted:against) france -switzerland text(is:a:neighboring:country:of) liechtenstein -austria text(was:currently:in) western_europe -austria text(is:currently:in) europe -austria text(was:a:neighboring:country:of) slovakia -austria text(was:a:neighbor:of) slovenia -austria text(is:a:neighbor:of) italy -austria text(is:a:neighboring:state:to) switzerland -austria text(was:a:neighboring:state:to) liechtenstein -malawi text(was:situated:in) eastern_africa -malawi text(is:situated:in) africa -malawi text(borders:with) mozambique -hong_kong text(is:located:in) eastern_asia -hong_kong text(neighbors:withborders) china -liechtenstein text(was:located:in) western_europe -liechtenstein text(could:be:found:in) europe -liechtenstein text(neighbors) switzerland -liechtenstein text(is:butted:against) austria -barbados text(can:be:found:in) caribbean -barbados text(was:positioned:in) americas -georgia text(is:positioned:in) western_asia -georgia text(was:localized:in) asia -georgia text(was:butted:against) armenia -georgia text(is:a:neighboring:country:of) azerbaijan -georgia text(was:a:neighboring:country:of) russia -georgia text(was:a:neighbor:of) turkey -albania text(is:localized:in) southern_europe -albania text(was:present:in) europe -albania text(is:a:neighbor:of) montenegro -albania text(is:a:neighboring:state:to) macedonia -albania text(was:a:neighboring:state:to) greece -kuwait text(is:present:in) western_asia -kuwait text(is:still:in) asia -south_africa text(was:still:in) southern_africa -south_africa text(was:currently:in) africa -south_africa text(borders:with) mozambique -south_africa text(neighbors:withborders) swaziland -south_africa text(neighbors) namibia -south_africa text(is:butted:against) lesotho -haiti text(is:currently:in) caribbean -haiti text(was:situated:in) americas -haiti text(was:butted:against) dominican_republic -afghanistan text(is:situated:in) southern_asia -afghanistan text(is:located:in) asia -afghanistan text(is:a:neighboring:country:of) turkmenistan -afghanistan text(was:a:neighboring:country:of) china -afghanistan text(was:a:neighbor:of) tajikistan -afghanistan text(is:a:neighbor:of) uzbekistan -afghanistan text(is:a:neighboring:state:to) iran -afghanistan text(was:a:neighboring:state:to) pakistan -singapore text(was:located:in) south-eastern_asia -singapore text(could:be:found:in) asia -benin text(can:be:found:in) western_africa -benin text(was:positioned:in) africa -benin text(borders:with) niger -benin text(neighbors:withborders) togo -benin text(neighbors) nigeria -åland_islands text(is:positioned:in) northern_europe -åland_islands text(was:localized:in) europe -croatia text(is:localized:in) southern_europe -croatia text(was:present:in) europe -croatia text(is:butted:against) slovenia -croatia text(was:butted:against) bosnia_and_herzegovina -croatia text(is:a:neighboring:country:of) serbia -croatia text(was:a:neighboring:country:of) montenegro -sweden text(is:present:in) northern_europe -sweden text(is:still:in) europe -sweden text(was:a:neighbor:of) finland -mexico text(was:still:in) northern_america -mexico text(is:a:neighbor:of) belize -mexico text(is:a:neighboring:state:to) guatemala -greenland text(was:currently:in) northern_america -greenland text(is:currently:in) americas -norfolk_island text(was:situated:in) australia_and_new_zealand -norfolk_island text(is:situated:in) oceania -nepal text(is:located:in) southern_asia -nepal text(was:located:in) asia -nepal text(was:a:neighboring:state:to) china -nepal text(borders:with) india -guatemala text(could:be:found:in) central_america -guatemala text(neighbors:withborders) belize -guatemala text(neighbors) el_salvador -guatemala text(is:butted:against) mexico -guatemala text(was:butted:against) honduras -south_korea text(can:be:found:in) eastern_asia -south_korea text(was:positioned:in) asia -south_korea text(is:a:neighboring:country:of) north_korea -moldova text(is:positioned:in) eastern_europe -moldova text(was:localized:in) europe -moldova text(was:a:neighboring:country:of) ukraine -moldova text(was:a:neighbor:of) romania -mauritius text(is:localized:in) eastern_africa -mauritius text(was:present:in) africa -belarus text(is:present:in) eastern_europe -belarus text(is:a:neighbor:of) ukraine -belarus text(is:a:neighboring:state:to) poland -belarus text(was:a:neighboring:state:to) lithuania -belarus text(borders:with) russia -belarus text(neighbors:withborders) latvia -bangladesh text(is:still:in) southern_asia -bangladesh text(neighbors) india -malaysia text(was:still:in) south-eastern_asia -malaysia text(was:currently:in) asia -malaysia text(is:butted:against) brunei -bosnia_and_herzegovina text(is:currently:in) southern_europe -bosnia_and_herzegovina text(was:situated:in) europe -bosnia_and_herzegovina text(was:butted:against) serbia -bosnia_and_herzegovina text(is:a:neighboring:country:of) croatia -bosnia_and_herzegovina text(was:a:neighboring:country:of) montenegro -luxembourg text(is:situated:in) western_europe -luxembourg text(is:located:in) europe -luxembourg text(was:a:neighbor:of) belgium -luxembourg text(is:a:neighbor:of) france -italy text(was:located:in) southern_europe -italy text(could:be:found:in) europe -italy text(is:a:neighboring:state:to) slovenia -italy text(was:a:neighboring:state:to) switzerland -italy text(borders:with) austria -italy text(neighbors:withborders) france -italy text(neighbors) vatican_city -italy text(is:butted:against) san_marino -azerbaijan text(can:be:found:in) western_asia -azerbaijan text(was:positioned:in) asia -azerbaijan text(was:butted:against) turkey -azerbaijan text(is:a:neighboring:country:of) armenia -azerbaijan text(was:a:neighboring:country:of) russia -azerbaijan text(was:a:neighbor:of) iran -azerbaijan text(is:a:neighbor:of) georgia -honduras text(is:positioned:in) central_america -honduras text(was:localized:in) americas -honduras text(is:a:neighboring:state:to) guatemala -honduras text(was:a:neighboring:state:to) el_salvador -mali text(is:localized:in) western_africa -mali text(was:present:in) africa -mali text(borders:with) guinea -mali text(neighbors:withborders) mauritania -mali text(neighbors) niger -mali text(is:butted:against) senegal -mali text(was:butted:against) algeria -mali text(is:a:neighboring:country:of) ivory_coast -taiwan text(is:present:in) eastern_asia -taiwan text(is:still:in) asia -algeria text(was:still:in) northern_africa -algeria text(was:currently:in) africa -algeria text(was:a:neighboring:country:of) libya -algeria text(was:a:neighbor:of) tunisia -algeria text(is:a:neighbor:of) mauritania -algeria text(is:a:neighboring:state:to) morocco -algeria text(was:a:neighboring:state:to) niger -algeria text(borders:with) mali -algeria text(neighbors:withborders) western_sahara -yemen text(is:currently:in) western_asia -yemen text(was:situated:in) asia -yemen text(neighbors) oman -puerto_rico text(is:situated:in) caribbean -puerto_rico text(is:located:in) americas -saint_vincent_and_the_grenadines text(was:located:in) caribbean -saint_vincent_and_the_grenadines text(could:be:found:in) americas -grenada text(can:be:found:in) caribbean -grenada text(was:positioned:in) americas -tokelau text(is:positioned:in) polynesia -tokelau text(was:localized:in) oceania -slovenia text(is:localized:in) southern_europe -slovenia text(was:present:in) europe -slovenia text(is:butted:against) austria -slovenia text(was:butted:against) croatia -slovenia text(is:a:neighboring:country:of) italy -philippines text(is:present:in) south-eastern_asia -philippines text(is:still:in) asia -micronesia text(was:still:in) micronesia -micronesia text(was:currently:in) oceania -china text(is:currently:in) eastern_asia -china text(was:situated:in) asia -china text(was:a:neighboring:country:of) afghanistan -china text(was:a:neighbor:of) india -china text(is:a:neighbor:of) kyrgyzstan -china text(is:a:neighboring:state:to) tajikistan -china text(was:a:neighboring:state:to) laos -china text(borders:with) russia -china text(neighbors:withborders) north_korea -china text(neighbors) pakistan -china text(is:butted:against) hong_kong -china text(was:butted:against) vietnam -gabon text(is:situated:in) middle_africa -gabon text(is:located:in) africa -gabon text(is:a:neighboring:country:of) equatorial_guinea -gabon text(was:a:neighboring:country:of) republic_of_the_congo -gabon text(was:a:neighbor:of) cameroon -united_states_minor_outlying_islands text(was:located:in) northern_america -united_states_minor_outlying_islands text(could:be:found:in) americas -andorra text(can:be:found:in) southern_europe -andorra text(was:positioned:in) europe -andorra text(is:a:neighbor:of) france -samoa text(is:positioned:in) polynesia -samoa text(was:localized:in) oceania -gambia text(is:localized:in) western_africa -gambia text(was:present:in) africa -gambia text(is:a:neighboring:state:to) senegal -palestine text(is:present:in) western_asia -palestine text(is:still:in) asia -palestine text(was:a:neighboring:state:to) israel -réunion text(was:still:in) eastern_africa -réunion text(was:currently:in) africa -france text(is:currently:in) western_europe -france text(was:situated:in) europe -france text(borders:with) luxembourg -france text(neighbors:withborders) italy -france text(neighbors) andorra -france text(is:butted:against) switzerland -france text(was:butted:against) belgium -lithuania text(is:situated:in) northern_europe -lithuania text(is:located:in) europe -lithuania text(is:a:neighboring:country:of) poland -lithuania text(was:a:neighboring:country:of) latvia -lithuania text(was:a:neighbor:of) belarus -lithuania text(is:a:neighbor:of) russia -cayman_islands text(was:located:in) caribbean -cayman_islands text(could:be:found:in) americas -saint_lucia text(can:be:found:in) caribbean -saint_lucia text(was:positioned:in) americas -curaçao text(is:positioned:in) caribbean -curaçao text(was:localized:in) americas -caribbean text(is:localized:in) americas -southern_asia text(was:present:in) asia -middle_africa text(is:present:in) africa -northern_europe text(is:still:in) europe -southern_europe text(was:still:in) europe -western_asia text(was:currently:in) asia -south_america text(is:currently:in) americas -polynesia text(was:situated:in) oceania -australia_and_new_zealand text(is:situated:in) oceania -western_europe text(is:located:in) europe -eastern_africa text(was:located:in) africa -western_africa text(could:be:found:in) africa -eastern_europe text(can:be:found:in) europe -central_america text(was:positioned:in) americas -northern_america text(is:positioned:in) americas -south-eastern_asia text(was:localized:in) asia -southern_africa text(is:localized:in) africa -eastern_asia text(was:present:in) asia -northern_africa text(is:present:in) africa -melanesia text(is:still:in) oceania -micronesia text(was:still:in) oceania -central_asia text(was:currently:in) asia -central_europe text(is:currently:in) europe -netherlands text(was:a:neighboring:country:of) germany -turkey text(was:a:neighbor:of) bulgaria -turkey text(is:a:neighbor:of) iraq -turkey text(is:a:neighboring:state:to) syria -angola text(was:a:neighboring:state:to) zambia -zambia text(is:positioned:in) eastern_africa -zambia text(was:localized:in) africa -zambia text(borders:with) tanzania -zambia text(neighbors:withborders) mozambique -zambia text(neighbors) dr_congo -zambia text(is:butted:against) angola -zambia text(was:butted:against) botswana -zambia text(is:a:neighboring:country:of) zimbabwe -zambia text(was:a:neighboring:country:of) namibia -zambia text(was:a:neighbor:of) malawi -burundi text(is:a:neighbor:of) tanzania -central_african_republic text(is:a:neighboring:state:to) sudan -ivory_coast text(was:a:neighboring:state:to) burkina_faso -ivory_coast text(borders:with) ghana -poland text(neighbors:withborders) germany -poland text(neighbors) czechia -kazakhstan text(is:localized:in) central_asia -kazakhstan text(was:present:in) asia -kazakhstan text(is:butted:against) turkmenistan -kazakhstan text(was:butted:against) china -kazakhstan text(is:a:neighboring:country:of) kyrgyzstan -kazakhstan text(was:a:neighboring:country:of) uzbekistan -kazakhstan text(was:a:neighbor:of) russia -uzbekistan text(is:a:neighbor:of) kazakhstan -serbia text(is:a:neighboring:state:to) kosovo -serbia text(was:a:neighboring:state:to) hungary -serbia text(borders:with) bulgaria -czechia text(is:present:in) eastern_europe -czechia text(is:still:in) europe -czechia text(neighbors:withborders) germany -czechia text(neighbors) austria -czechia text(is:butted:against) poland -czechia text(was:butted:against) slovakia -nicaragua text(was:still:in) central_america -nicaragua text(is:a:neighboring:country:of) honduras -nicaragua text(was:a:neighboring:country:of) costa_rica -canada text(was:a:neighbor:of) united_states -slovakia text(is:a:neighbor:of) hungary -slovakia text(is:a:neighboring:state:to) czechia -mozambique text(was:a:neighboring:state:to) tanzania -mozambique text(borders:with) zimbabwe -mozambique text(neighbors:withborders) zambia -colombia text(neighbors) ecuador -colombia text(is:butted:against) panama -colombia text(was:butted:against) venezuela -saudi_arabia text(was:currently:in) western_asia -saudi_arabia text(is:a:neighboring:country:of) qatar -saudi_arabia text(was:a:neighboring:country:of) united_arab_emirates -saudi_arabia text(was:a:neighbor:of) jordan -saudi_arabia text(is:a:neighbor:of) yemen -saudi_arabia text(is:a:neighboring:state:to) oman -saudi_arabia text(was:a:neighboring:state:to) kuwait -saudi_arabia text(borders:with) iraq -namibia text(neighbors:withborders) zambia -namibia text(neighbors) botswana -guyana text(is:currently:in) south_america -guyana text(is:butted:against) brazil -guyana text(was:butted:against) suriname -guyana text(is:a:neighboring:country:of) venezuela -germany text(was:situated:in) western_europe -germany text(was:a:neighboring:country:of) denmark -germany text(was:a:neighbor:of) netherlands -germany text(is:a:neighbor:of) poland -germany text(is:a:neighboring:state:to) luxembourg -germany text(was:a:neighboring:state:to) belgium -germany text(borders:with) switzerland -germany text(neighbors:withborders) austria -germany text(neighbors) france -germany text(is:butted:against) czechia -burkina_faso text(is:situated:in) western_africa -burkina_faso text(was:butted:against) togo -burkina_faso text(is:a:neighboring:country:of) benin -burkina_faso text(was:a:neighboring:country:of) niger -burkina_faso text(was:a:neighbor:of) ghana -burkina_faso text(is:a:neighbor:of) mali -burkina_faso text(is:a:neighboring:state:to) ivory_coast -tanzania text(is:located:in) eastern_africa -tanzania text(was:a:neighboring:state:to) uganda -tanzania text(borders:with) mozambique -tanzania text(neighbors:withborders) dr_congo -tanzania text(neighbors) kenya -tanzania text(is:butted:against) rwanda -tanzania text(was:butted:against) zambia -tanzania text(is:a:neighboring:country:of) malawi -tanzania text(was:a:neighboring:country:of) burundi -norway text(was:located:in) northern_europe -norway text(was:a:neighbor:of) sweden -norway text(is:a:neighbor:of) finland -norway text(is:a:neighboring:state:to) russia -laos text(was:a:neighboring:state:to) myanmar -laos text(borders:with) thailand -suriname text(could:be:found:in) south_america -suriname text(can:be:found:in) americas -suriname text(neighbors:withborders) brazil -suriname text(neighbors) french_guiana -suriname text(is:butted:against) guyana -egypt text(was:positioned:in) northern_africa -egypt text(was:butted:against) libya -egypt text(is:a:neighboring:country:of) israel -egypt text(was:a:neighboring:country:of) sudan -bulgaria text(is:positioned:in) eastern_europe -bulgaria text(was:a:neighbor:of) macedonia -bulgaria text(is:a:neighbor:of) turkey -bulgaria text(is:a:neighboring:state:to) greece -bulgaria text(was:a:neighboring:state:to) serbia -bulgaria text(borders:with) romania -guinea text(neighbors:withborders) guinea-bissau -spain text(was:localized:in) southern_europe -spain text(neighbors) morocco -spain text(is:butted:against) gibraltar -spain text(was:butted:against) andorra -spain text(is:a:neighboring:country:of) france -spain text(was:a:neighboring:country:of) portugal -costa_rica text(was:a:neighbor:of) panama -costa_rica text(is:a:neighbor:of) nicaragua -portugal text(is:a:neighboring:state:to) spain -romania text(was:a:neighboring:state:to) hungary -romania text(borders:with) bulgaria -myanmar text(is:localized:in) south-eastern_asia -myanmar text(neighbors:withborders) india -myanmar text(neighbors) bangladesh -myanmar text(is:butted:against) china -myanmar text(was:butted:against) laos -myanmar text(is:a:neighboring:country:of) thailand -iraq text(was:present:in) western_asia -iraq text(was:a:neighboring:country:of) turkey -iraq text(was:a:neighbor:of) saudi_arabia -iraq text(is:a:neighbor:of) iran -iraq text(is:a:neighboring:state:to) jordan -iraq text(was:a:neighboring:state:to) kuwait -iraq text(borders:with) syria -dr_congo text(neighbors:withborders) tanzania -dr_congo text(neighbors) zambia -kyrgyzstan text(is:butted:against) kazakhstan -botswana text(is:present:in) southern_africa -botswana text(is:still:in) africa -botswana text(was:butted:against) zimbabwe -botswana text(is:a:neighboring:country:of) namibia -botswana text(was:a:neighboring:country:of) zambia -botswana text(was:a:neighbor:of) south_africa -belgium text(is:a:neighbor:of) germany -qatar text(is:a:neighboring:state:to) saudi_arabia -syria text(was:still:in) western_asia -syria text(was:currently:in) asia -syria text(was:a:neighboring:state:to) israel -syria text(borders:with) turkey -syria text(neighbors:withborders) jordan -syria text(neighbors) lebanon -syria text(is:butted:against) iraq -india text(was:butted:against) bhutan -india text(is:a:neighboring:country:of) myanmar -morocco text(was:a:neighboring:country:of) spain -kenya text(was:a:neighbor:of) tanzania -south_sudan text(is:a:neighbor:of) sudan -ghana text(is:currently:in) western_africa -ghana text(is:a:neighboring:state:to) burkina_faso -ghana text(was:a:neighboring:state:to) ivory_coast -ghana text(borders:with) togo -thailand text(was:situated:in) south-eastern_asia -thailand text(neighbors:withborders) cambodia -thailand text(neighbors) myanmar -thailand text(is:butted:against) laos -thailand text(was:butted:against) malaysia -sudan text(is:situated:in) northern_africa -sudan text(is:a:neighboring:country:of) chad -sudan text(was:a:neighboring:country:of) libya -sudan text(was:a:neighbor:of) south_sudan -sudan text(is:a:neighbor:of) eritrea -sudan text(is:a:neighboring:state:to) central_african_republic -sudan text(was:a:neighboring:state:to) egypt -sudan text(borders:with) ethiopia -cambodia text(neighbors:withborders) thailand -zimbabwe text(is:located:in) eastern_africa -zimbabwe text(neighbors) zambia -zimbabwe text(is:butted:against) south_africa -zimbabwe text(was:butted:against) botswana -zimbabwe text(is:a:neighboring:country:of) mozambique -lebanon text(was:a:neighboring:country:of) syria -sint_maarten text(was:a:neighbor:of) saint_martin -ethiopia text(is:a:neighbor:of) eritrea -ethiopia text(is:a:neighboring:state:to) djibouti -ethiopia text(was:a:neighboring:state:to) sudan -guinea-bissau text(was:located:in) western_africa -guinea-bissau text(could:be:found:in) africa -guinea-bissau text(borders:with) guinea -guinea-bissau text(neighbors:withborders) senegal -libya text(neighbors) egypt -libya text(is:butted:against) sudan -bhutan text(can:be:found:in) southern_asia -bhutan text(was:positioned:in) asia -bhutan text(was:butted:against) china -bhutan text(is:a:neighboring:country:of) india -macau text(is:positioned:in) eastern_asia -macau text(was:localized:in) asia -macau text(was:a:neighboring:country:of) china -somalia text(was:a:neighbor:of) djibouti -russia text(is:a:neighbor:of) kazakhstan -russia text(is:a:neighboring:state:to) norway -russia text(was:a:neighboring:state:to) mongolia -panama text(is:localized:in) central_america -panama text(was:present:in) americas -panama text(borders:with) costa_rica -panama text(neighbors:withborders) colombia -papua_new_guinea text(neighbors) indonesia -oman text(is:butted:against) saudi_arabia -israel text(was:butted:against) egypt -israel text(is:a:neighboring:country:of) jordan -israel text(was:a:neighboring:country:of) syria -togo text(was:a:neighbor:of) burkina_faso -togo text(is:a:neighbor:of) ghana -iran text(is:a:neighboring:state:to) iraq -saint_martin text(is:present:in) caribbean -saint_martin text(is:still:in) americas -saint_martin text(was:a:neighboring:state:to) sint_maarten -denmark text(was:still:in) northern_europe -denmark text(borders:with) germany -kosovo text(was:currently:in) eastern_europe -kosovo text(is:currently:in) europe -kosovo text(neighbors:withborders) serbia -kosovo text(neighbors) albania -kosovo text(is:butted:against) macedonia -kosovo text(was:butted:against) montenegro -eritrea text(was:situated:in) eastern_africa -eritrea text(is:a:neighboring:country:of) djibouti -eritrea text(was:a:neighboring:country:of) sudan -eritrea text(was:a:neighbor:of) ethiopia -niger text(is:a:neighbor:of) burkina_faso -rwanda text(is:a:neighboring:state:to) tanzania -united_arab_emirates text(was:a:neighboring:state:to) saudi_arabia -greece text(borders:with) bulgaria -senegal text(neighbors:withborders) guinea-bissau -monaco text(is:situated:in) western_europe -monaco text(neighbors) france -djibouti text(is:located:in) eastern_africa -djibouti text(is:butted:against) eritrea -djibouti text(was:butted:against) somalia -djibouti text(is:a:neighboring:country:of) ethiopia -indonesia text(was:located:in) south-eastern_asia -indonesia text(was:a:neighboring:country:of) papua_new_guinea -indonesia text(was:a:neighbor:of) timor-leste -indonesia text(is:a:neighbor:of) malaysia -uganda text(is:a:neighboring:state:to) tanzania -macedonia text(was:a:neighboring:state:to) kosovo -macedonia text(borders:with) bulgaria -ecuador text(could:be:found:in) south_america -ecuador text(neighbors:withborders) peru -ecuador text(neighbors) colombia -brazil text(is:butted:against) french_guiana -brazil text(was:butted:against) suriname -brazil text(is:a:neighboring:country:of) venezuela -brazil text(was:a:neighboring:country:of) guyana -finland text(was:a:neighbor:of) norway -jordan text(can:be:found:in) western_asia -jordan text(is:a:neighbor:of) saudi_arabia -jordan text(is:a:neighboring:state:to) israel -jordan text(was:a:neighboring:state:to) iraq -jordan text(borders:with) syria -timor-leste text(was:positioned:in) south-eastern_asia -timor-leste text(neighbors:withborders) indonesia -montenegro text(neighbors) kosovo -peru text(is:butted:against) ecuador -ukraine text(was:butted:against) hungary -turkmenistan text(is:a:neighboring:country:of) kazakhstan -gibraltar text(was:a:neighboring:country:of) spain -switzerland text(was:a:neighbor:of) germany -austria text(is:a:neighbor:of) germany -austria text(is:a:neighboring:state:to) hungary -austria text(was:a:neighboring:state:to) czechia -hungary text(is:positioned:in) eastern_europe -hungary text(borders:with) ukraine -hungary text(neighbors:withborders) slovakia -hungary text(neighbors) slovenia -hungary text(is:butted:against) croatia -hungary text(was:butted:against) austria -hungary text(is:a:neighboring:country:of) serbia -hungary text(was:a:neighboring:country:of) romania -malawi text(was:a:neighbor:of) zambia -malawi text(is:a:neighbor:of) tanzania -albania text(is:a:neighboring:state:to) kosovo -kuwait text(was:a:neighboring:state:to) saudi_arabia -kuwait text(borders:with) iraq -south_africa text(neighbors:withborders) botswana -south_africa text(neighbors) zimbabwe -benin text(is:butted:against) burkina_faso -croatia text(was:butted:against) hungary -sweden text(is:a:neighboring:country:of) norway -mexico text(was:a:neighboring:country:of) united_states -bangladesh text(was:a:neighbor:of) myanmar -malaysia text(is:a:neighbor:of) thailand -malaysia text(is:a:neighboring:state:to) indonesia -luxembourg text(was:a:neighboring:state:to) germany -honduras text(borders:with) nicaragua -mali text(neighbors:withborders) burkina_faso -french_guiana text(was:localized:in) south_america -french_guiana text(neighbors) brazil -french_guiana text(is:butted:against) suriname -yemen text(was:butted:against) saudi_arabia -venezuela text(is:localized:in) south_america -venezuela text(is:a:neighboring:country:of) brazil -venezuela text(was:a:neighboring:country:of) guyana -venezuela text(was:a:neighbor:of) colombia -united_states text(was:present:in) northern_america -united_states text(is:a:neighbor:of) canada -united_states text(is:a:neighboring:state:to) mexico -slovenia text(was:a:neighboring:state:to) hungary -china text(borders:with) bhutan -china text(neighbors:withborders) macau -china text(neighbors) kazakhstan -china text(is:butted:against) myanmar -china text(was:butted:against) mongolia -andorra text(is:a:neighboring:country:of) spain -palestine text(was:a:neighboring:country:of) jordan -palestine text(was:a:neighbor:of) egypt -france text(is:a:neighbor:of) germany -france text(is:a:neighboring:state:to) monaco -france text(was:a:neighboring:state:to) spain -mongolia text(is:present:in) eastern_asia -mongolia text(is:still:in) asia -mongolia text(borders:with) china -mongolia text(neighbors:withborders) russia \ No newline at end of file diff --git a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_country2text.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_country2text.tsv new file mode 100644 index 0000000..770f4a3 --- /dev/null +++ b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_country2text.tsv @@ -0,0 +1,1063 @@ +text(帛琉) locatedIn text(ميكرونيسيا) +text(Palau) locatedIn text(Oceanië) +text(馬爾代夫) locatedIn text(South:Asia) +text(المالديف) locatedIn text(Azië) +text(Brunei) locatedIn text(Sudeste:Asiático) +text(بروناي) locatedIn text(Asia) +text(Brunei) neighborOf text(ماليزيا) +text(Japón) locatedIn text(東亞) +text(Japan) locatedIn text(Asia) +text(Países:Bajos) neighborOf text(ألمانيا) +text(荷蘭) neighborOf text(بلجيكا) +text(تركيا) neighborOf text(Armenia) +text(Turquía) neighborOf text(أذربيجان) +text(Turkey) neighborOf text(إيران) +text(तुर्की) neighborOf text(Griekenland) +text(Turkije) neighborOf text(Georgia) +text(土耳其) neighborOf text(Bulgaria) +text(تركيا) neighborOf text(Irak) +text(Turquía) neighborOf text(Syrië) +text(Angola) locatedIn text(وسط:إفريقيا) +text(安哥拉) locatedIn text(Africa) +text(أنغولا) neighborOf text(Congo-Kinshasa) +text(Angola) neighborOf text(नामीबिया) +text(अंगोला) neighborOf text(贊比亞) +text(Angola) neighborOf text(جمهورية:الكونغو) +text(आर्मीनिया) locatedIn text(पश्चिमी:एशिया) +text(亞美尼亞) locatedIn text(亞洲) +text(Armenia) neighborOf text(जॉर्जिया) +text(أرمينيا) neighborOf text(Azerbeidzjan) +text(Armenië) neighborOf text(Iran) +text(Armenia) neighborOf text(Turkey) +text(Antigua:en:Barbuda) locatedIn text(Caribbean) +text(安提瓜和巴布达) locatedIn text(América) +text(Esuatini) locatedIn text(إفريقيا:الجنوبية) +text(Swaziland) locatedIn text(África) +text(एस्वातीनी) neighborOf text(Sudáfrica) +text(Eswatini) neighborOf text(موزمبيق) +text(Wallis:y:Futuna) locatedIn text(بولنيزيا) +text(Wallis:en:Futuna) locatedIn text(大洋洲) +text(उरुग्वे) locatedIn text(أمريكا:الجنوبية) +text(Uruguay) locatedIn text(Americas) +text(Uruguay) neighborOf text(阿根廷) +text(Uruguay) neighborOf text(巴西) +text(Zambia) locatedIn text(East:Africa) +text(Zambia) locatedIn text(Afrika) +text(زامبيا) neighborOf text(Tanzania) +text(ज़ाम्बिया) neighborOf text(Mozambique) +text(Zambia) neighborOf text(Democratic:Republic:of:the:Congo) +text(贊比亞) neighborOf text(Angola) +text(Zambia) neighborOf text(Botswana) +text(Zambia) neighborOf text(Zimbabwe) +text(زامبيا) neighborOf text(Namibië) +text(ज़ाम्बिया) neighborOf text(Malawi) +text(قبرص) locatedIn text(पूर्वी:यूरोप) +text(Cyprus) locatedIn text(Europe) +text(साइप्रस) neighborOf text(United:Kingdom) +text(المملكة:المتحدة) locatedIn text(أوروبا:الشمالية) +text(United:Kingdom) locatedIn text(Europa) +text(Reino:Unido) neighborOf text(英国) +text(बुरुण्डी) locatedIn text(شرق:إفريقيا) +text(Burundi) locatedIn text(अफ्रीका) +text(Burundi) neighborOf text(刚果民主共和国) +text(بوروندي) neighborOf text(Rwanda) +text(蒲隆地) neighborOf text(تنزانيا) +text(中非共和國) locatedIn text(Central:Africa) +text(جمهورية:إفريقيا:الوسطى) locatedIn text(非洲) +text(Central:African:Republic) neighborOf text(تشاد) +text(Centraal-Afrikaanse:Republiek) neighborOf text(剛果共和國) +text(República:Centroafricana) neighborOf text(جمهورية:الكونغو:الديمقراطية) +text(मध्य:अफ़्रीकी:गणराज्य) neighborOf text(Zuid-Soedan) +text(中非共和國) neighborOf text(Camerún) +text(جمهورية:إفريقيا:الوسطى) neighborOf text(Soedan) +text(Tonga) locatedIn text(पोलीनेशिया) +text(東加) locatedIn text(أوقيانوسيا) +text(कोत:दिव्वार) locatedIn text(West-Afrika) +text(科特迪瓦) locatedIn text(إفريقيا) +text(Ivoorkust) neighborOf text(Burkina:Faso) +text(Costa:de:Marfil) neighborOf text(घाना) +text(Ivory:Coast) neighborOf text(लाइबेरिया) +text(ساحل:العاج) neighborOf text(马里) +text(कोत:दिव्वार) neighborOf text(几内亚) +text(सिएरा:लियोन) neighborOf text(利比里亞) +text(سيراليون) neighborOf text(Guinea) +text(Mayotte) locatedIn text(Oost-Afrika) +text(马约特) locatedIn text(Africa) +text(بولندا) neighborOf text(德國) +text(Polonia) neighborOf text(Oekraïne) +text(Polen) neighborOf text(斯洛伐克) +text(波蘭) neighborOf text(Bielorrusia) +text(Poland) neighborOf text(Russia) +text(पोलैंड) neighborOf text(लिथुआनिया) +text(بولندا) neighborOf text(جمهورية:التشيك) +text(कज़ाख़िस्तान) locatedIn text(Centraal-Azië) +text(Kazachstan) locatedIn text(آسيا) +text(Kazajistán) neighborOf text(تركمانستان) +text(哈萨克斯坦) neighborOf text(People's:Republic:of:China) +text(Kazakhstan) neighborOf text(Kirguistán) +text(كازاخستان) neighborOf text(उज़्बेकिस्तान) +text(कज़ाख़िस्तान) neighborOf text(रूस) +text(Uzbekistan) locatedIn text(中亚) +text(أوزبكستان) locatedIn text(एशिया) +text(乌兹别克斯坦) neighborOf text(Afghanistan) +text(Uzbekistán) neighborOf text(土庫曼斯坦) +text(Oezbekistan) neighborOf text(Kazachstan) +text(उज़्बेकिस्तान) neighborOf text(吉尔吉斯斯坦) +text(Uzbekistan) neighborOf text(ताजीकिस्तान) +text(Islas:Turcas:y:Caicos) locatedIn text(Caraïben) +text(Turks:and:Caicos:Islands) locatedIn text(أمريكتان) +text(नया:कैलेडोनिया) locatedIn text(Melanesia) +text(New:Caledonia) locatedIn text(Oceanía) +text(巴基斯坦) neighborOf text(中华人民共和国) +text(Pakistan) neighborOf text(Afghanistan) +text(Pakistán) neighborOf text(ईरान) +text(पाकिस्तान) neighborOf text(India) +text(अर्जेण्टीना) locatedIn text(南美洲) +text(Argentinië) locatedIn text(美洲) +text(الأرجنتين) neighborOf text(Bolivia) +text(Argentina) neighborOf text(Chili) +text(Argentina) neighborOf text(Brazilië) +text(阿根廷) neighborOf text(Paraguay) +text(अर्जेण्टीना) neighborOf text(烏拉圭) +text(كوبا) locatedIn text(Caribe) +text(古巴) locatedIn text(महाअमेरिका) +text(塞爾維亞) neighborOf text(Macedonia:del:Norte) +text(Servië) neighborOf text(मॉन्टेनीग्रो) +text(सर्बिया) neighborOf text(कोसोवो:गणराज्य) +text(Serbia) neighborOf text(बोस्निया:और:हर्ज़ेगोविना) +text(صربيا) neighborOf text(क्रोएशिया) +text(Serbia) neighborOf text(Hongarije) +text(塞爾維亞) neighborOf text(Bulgarije) +text(Servië) neighborOf text(Romania) +text(República:Checa) locatedIn text(Oost-Europa) +text(चेक:गणराज्य) locatedIn text(أوروبا) +text(捷克) neighborOf text(जर्मनी) +text(Czech:Republic) neighborOf text(ऑस्ट्रिया) +text(Tsjechië) neighborOf text(Polonia) +text(جمهورية:التشيك) neighborOf text(स्लोवाकिया) +text(Nicaragua) neighborOf text(هندوراس) +text(निकारागुआ) neighborOf text(Costa:Rica) +text(Vietnam) locatedIn text(दक्षिण:पूर्व:एशिया) +text(Vietnam) locatedIn text(Azië) +text(Vietnam) neighborOf text(柬埔寨) +text(越南) neighborOf text(Laos) +text(فيتنام) neighborOf text(الصين) +text(نييوي) locatedIn text(玻里尼西亞) +text(निउए) locatedIn text(ओशिआनिया) +text(加拿大) locatedIn text(北美洲) +text(Canadá) locatedIn text(Amerika) +text(Canada) neighborOf text(United:States) +text(سلوفاكيا) neighborOf text(Ukraine) +text(Slowakije) neighborOf text(Polen) +text(Slovakia) neighborOf text(奧地利) +text(Eslovaquia) neighborOf text(हंगरी) +text(斯洛伐克) neighborOf text(República:Checa) +text(Mozambique) neighborOf text(Tanzania) +text(मोज़ाम्बीक) neighborOf text(斯威士兰) +text(莫桑比克) neighborOf text(Zimbabwe) +text(Mozambique) neighborOf text(Zambia) +text(موزمبيق) neighborOf text(Malawi) +text(Mozambique) neighborOf text(جنوب:إفريقيا) +text(Aruba) locatedIn text(الكاريبي) +text(Aruba) locatedIn text(América) +text(Bolivia) locatedIn text(América:del:Sur) +text(Bolivia) locatedIn text(Americas) +text(बोलिविया) neighborOf text(智利) +text(بوليفيا) neighborOf text(ब्राज़ील) +text(玻利維亞) neighborOf text(باراغواي) +text(Bolivia) neighborOf text(Argentinië) +text(Bolivia) neighborOf text(Perú) +text(Colombia) locatedIn text(दक्षिण:अमेरिका) +text(哥伦比亚) locatedIn text(أمريكتان) +text(Colombia) neighborOf text(ईक्वाडोर) +text(कोलम्बिया) neighborOf text(البرازيل) +text(كولومبيا) neighborOf text(Panama) +text(Colombia) neighborOf text(فنزويلا) +text(Colombia) neighborOf text(بيرو) +text(Fiji) locatedIn text(Melanesia) +text(Fiji) locatedIn text(Oceania) +text(Congo-Brazzaville) neighborOf text(加蓬) +text(Republic:of:the:Congo) neighborOf text(कांगो:लोकतान्त्रिक:गणराज्य) +text(कांगो:गणराज्य) neighborOf text(安哥拉) +text(República:del:Congo) neighborOf text(कैमरुन) +text(جمهورية:الكونغو) neighborOf text(Central:African:Republic) +text(Arabia:Saudí) neighborOf text(Qatar) +text(沙特阿拉伯) neighborOf text(संयुक्त:अरब:अमीरात) +text(السعودية) neighborOf text(約旦) +text(सउदी:अरब) neighborOf text(اليمن) +text(Saudi:Arabia) neighborOf text(Oman) +text(Saoedi-Arabië) neighborOf text(科威特) +text(Arabia:Saudí) neighborOf text(العراق) +text(El:Salvador) locatedIn text(Central:America) +text(अल:साल्वाडोर) locatedIn text(美洲) +text(السلفادور) neighborOf text(غواتيمالا) +text(薩爾瓦多) neighborOf text(洪都拉斯) +text(Madagascar) locatedIn text(东部非洲) +text(मेडागास्कर) locatedIn text(África) +text(Australia) locatedIn text(nan) +text(Australia) locatedIn text(Oceanië) +text(纳米比亚) locatedIn text(Zuidelijk:Afrika) +text(Namibia) locatedIn text(Afrika) +text(Namibia) neighborOf text(贊比亞) +text(ناميبيا) neighborOf text(أنغولا) +text(नामीबिया) neighborOf text(南非) +text(Namibië) neighborOf text(बोत्सवाना) +text(Tuvalu) locatedIn text(Polynesië) +text(तुवालू) locatedIn text(大洋洲) +text(斯瓦巴和扬马延) locatedIn text(Northern:Europe) +text(Spitsbergen:en:Jan:Mayen) locatedIn text(欧洲) +text(Man) locatedIn text(उत्तरी:यूरोप) +text(جزيرة:مان) locatedIn text(Europa) +text(圭亚那) neighborOf text(Brasil) +text(Guyana) neighborOf text(Surinam) +text(غيانا) neighborOf text(委內瑞拉) +text(वैटिकन:नगर) locatedIn text(Zuid-Europa) +text(梵蒂岡城國) locatedIn text(यूरोप) +text(Vaticaanstad) neighborOf text(意大利) +text(British:Indian:Ocean:Territory) locatedIn text(África:Oriental) +text(Territorio:Británico:del:Océano:Índico) locatedIn text(अफ्रीका) +text(नाइजीरिया) locatedIn text(غرب:إفريقيا) +text(奈及利亞) locatedIn text(非洲) +text(نيجيريا) neighborOf text(乍得) +text(Nigeria) neighborOf text(Níger) +text(Nigeria) neighborOf text(喀麦隆) +text(Nigeria) neighborOf text(貝南) +text(Duitsland) neighborOf text(Denmark) +text(Alemania) neighborOf text(Netherlands) +text(Germany) neighborOf text(波蘭) +text(ألمانيا) neighborOf text(لوكسمبورغ) +text(德國) neighborOf text(België) +text(जर्मनी) neighborOf text(Suiza) +text(Duitsland) neighborOf text(Austria) +text(Alemania) neighborOf text(France) +text(Germany) neighborOf text(चेक:गणराज्य) +text(Burkina:Faso) neighborOf text(Togo) +text(بوركينا:فاسو) neighborOf text(بنين) +text(Burkina:Faso) neighborOf text(النيجر) +text(बुर्किना:फासो) neighborOf text(Ghana) +text(布吉納法索) neighborOf text(माली) +text(Burkina:Faso) neighborOf text(科特迪瓦) +text(Tanzania) neighborOf text(Uganda) +text(तंज़ानिया) neighborOf text(Mozambique) +text(坦桑尼亞) neighborOf text(República:Democrática:del:Congo) +text(Tanzania) neighborOf text(Kenia) +text(تنزانيا) neighborOf text(رواندا) +text(Tanzania) neighborOf text(Zambia) +text(Tanzania) neighborOf text(मलावी) +text(तंज़ानिया) neighborOf text(Burundi) +text(उत्तरी:मारियाना:द्वीप) locatedIn text(माइक्रोनीशिया) +text(Noordelijke:Marianen) locatedIn text(أوقيانوسيا) +text(Belize) locatedIn text(أمريكا:الوسطى) +text(बेलीज़) locatedIn text(महाअमेरिका) +text(Belice) neighborOf text(Guatemala) +text(بليز) neighborOf text(墨西哥) +text(नॉर्वे) neighborOf text(Zweden) +text(النرويج) neighborOf text(Finland) +text(Noorwegen) neighborOf text(俄罗斯) +text(جزر:كوكوس) locatedIn text(nan) +text(कोकोस:(कीलिंग):द्वीपसमूह) locatedIn text(Oceanía) +text(Laos) locatedIn text(Zuidoost-Azië) +text(लाओस) locatedIn text(Asia) +text(Laos) neighborOf text(República:Popular:China) +text(لاوس) neighborOf text(Cambodia) +text(老撾) neighborOf text(Birmania) +text(Laos) neighborOf text(वियतनाम) +text(Laos) neighborOf text(泰國) +text(Sahrawi:Arabische:Democratische:Republiek) locatedIn text(Norte:de:África) +text(الجمهورية:العربية:الصحراوية:الديمقراطية) locatedIn text(إفريقيا) +text(Sahrawi:Arab:Democratic:Republic) neighborOf text(अल्जीरिया) +text(República:Árabe:Saharaui:Democrática) neighborOf text(毛里塔尼亞) +text(सहरावी:अरब:जनतांत्रिक:गणराज्य) neighborOf text(Marruecos) +text(蘇利南) locatedIn text(Zuid-Amerika) +text(سورينام) locatedIn text(Amerika) +text(Suriname) neighborOf text(Brazil) +text(सूरीनाम) neighborOf text(Guayana:Francesa) +text(Suriname) neighborOf text(Guyana) +text(Isla:de:Navidad) locatedIn text(Australië:en:Nieuw-Zeeland) +text(Christmas:Island) locatedIn text(ओशिआनिया) +text(São:Tomé:and:Príncipe) locatedIn text(मध्य:अफ्रीका) +text(ساو:تومي:وبرينسيب) locatedIn text(Africa) +text(मिस्र) neighborOf text(Libia) +text(Egipto) neighborOf text(إسرائيل) +text(Egypte) neighborOf text(السودان) +text(बुल्गारिया) neighborOf text(北马其顿) +text(بلغاريا) neighborOf text(तुर्की) +text(保加利亚) neighborOf text(Grecia) +text(Bulgaria) neighborOf text(सर्बिया) +text(Bulgaria) neighborOf text(羅馬尼亞) +text(غينيا) locatedIn text(पश्चिमी:अफ्रीका) +text(Guinea) locatedIn text(África) +text(गिनी) neighborOf text(غينيا:بيساو) +text(Guinee) neighborOf text(Sierra:Leone) +text(几内亚) neighborOf text(Mali) +text(Guinea) neighborOf text(ليبيريا) +text(غينيا) neighborOf text(Senegal) +text(Guinea) neighborOf text(Ivoorkust) +text(España) neighborOf text(Morocco) +text(स्पेन) neighborOf text(جبل:طارق) +text(西班牙) neighborOf text(Andorra) +text(Spain) neighborOf text(Francia) +text(Spanje) neighborOf text(पुर्तगाल) +text(كوستاريكا) locatedIn text(Centraal-Amerika) +text(Costa:Rica) locatedIn text(América) +text(哥斯达黎加) neighborOf text(بنما) +text(Costa:Rica) neighborOf text(Nicaragua) +text(مالطا) locatedIn text(Europa:del:Sur) +text(Malta) locatedIn text(Europe) +text(葡萄牙) locatedIn text(南欧) +text(البرتغال) locatedIn text(Europa) +text(Portugal) neighborOf text(إسبانيا) +text(Roemenië) locatedIn text(Eastern:Europe) +text(رومانيا) locatedIn text(أوروبا) +text(रोमानिया) neighborOf text(Ucrania) +text(Rumania) neighborOf text(Hungría) +text(Romania) neighborOf text(मोल्डोवा) +text(羅馬尼亞) neighborOf text(Bulgarije) +text(Roemenië) neighborOf text(Serbia) +text(सान:मारिनो) locatedIn text(أوروبا:الجنوبية) +text(San:Marino) locatedIn text(欧洲) +text(سان:مارينو) neighborOf text(Italië) +text(Mauritania) locatedIn text(West:Africa) +text(Mauritania) locatedIn text(Afrika) +text(موريتانيا) neighborOf text(Algerije) +text(मॉरीतानिया) neighborOf text(Mali) +text(Mauritanië) neighborOf text(撒拉威阿拉伯民主共和國) +text(毛里塔尼亞) neighborOf text(Senegal) +text(त्रिनिदाद:और:टोबैगो) locatedIn text(加勒比地区) +text(ترينيداد:وتوباغو) locatedIn text(Americas) +text(巴林) locatedIn text(Zuidwest-Azië) +text(बहरीन) locatedIn text(Asia) +text(Myanmar) neighborOf text(भारत) +text(म्यान्मार) neighborOf text(Bangladesh) +text(Myanmar) neighborOf text(चीनी:जनवादी:गणराज्य) +text(ميانمار) neighborOf text(लाओस) +text(緬甸) neighborOf text(Tailandia) +text(इराक) neighborOf text(Turkije) +text(Irak) neighborOf text(沙特阿拉伯) +text(伊拉克) neighborOf text(Irán) +text(Iraq) neighborOf text(Jordanië) +text(Irak) neighborOf text(Kuwait) +text(العراق) neighborOf text(Syria) +text(South:Georgia:and:the:South:Sandwich:Islands) locatedIn text(South:America) +text(جورجيا:الجنوبية:وجزر:ساندويتش:الجنوبية) locatedIn text(أمريكتان) +text(冰島) locatedIn text(Noord-Europa) +text(IJsland) locatedIn text(Europa) +text(Congo-Kinshasa) locatedIn text(中部非洲) +text(Democratic:Republic:of:the:Congo) locatedIn text(अफ्रीका) +text(刚果民主共和国) neighborOf text(Uganda) +text(جمهورية:الكونغو:الديمقراطية) neighborOf text(坦桑尼亞) +text(कांगो:लोकतान्त्रिक:गणराज्य) neighborOf text(剛果共和國) +text(República:Democrática:del:Congo) neighborOf text(Centraal-Afrikaanse:Republiek) +text(Congo-Kinshasa) neighborOf text(Angola) +text(Democratic:Republic:of:the:Congo) neighborOf text(卢旺达) +text(刚果民主共和国) neighborOf text(جنوب:السودان) +text(جمهورية:الكونغو:الديمقراطية) neighborOf text(Zambia) +text(कांगो:लोकतान्त्रिक:गणराज्य) neighborOf text(बुरुण्डी) +text(塞舌尔) locatedIn text(पूर्वी:अफ्रीका) +text(सेशेल्स) locatedIn text(非洲) +text(قرغيزستان) neighborOf text(Volksrepubliek:China) +text(Kyrgyzstan) neighborOf text(Kazajistán) +text(किर्गिज़स्तान) neighborOf text(Tayikistán) +text(Kirgizië) neighborOf text(أوزبكستان) +text(بوتسوانا) locatedIn text(Southern:Africa) +text(Botswana) locatedIn text(إفريقيا) +text(波札那) neighborOf text(Zimbabue) +text(Botsuana) neighborOf text(纳米比亚) +text(Botswana) neighborOf text(زامبيا) +text(बोत्सवाना) neighborOf text(दक्षिण:अफ़्रीका) +text(फ़रो:द्वीपसमूह) locatedIn text(Europa:del:Norte) +text(法罗群岛) locatedIn text(यूरोप) +text(Jamaica) locatedIn text(कैरिबिया) +text(जमैका) locatedIn text(美洲) +text(Samoa:Americana) locatedIn text(Polinesia) +text(अमेरिकी:समोआ) locatedIn text(Oceania) +text(莱索托) locatedIn text(दक्षिणी:अफ्रीका) +text(Lesoto) locatedIn text(Africa) +text(लेसोथो) neighborOf text(Zuid-Afrika) +text(Sri:Lanka) neighborOf text(印度) +text(Belgium) locatedIn text(أوروبا:الغربية) +text(比利時) locatedIn text(Europe) +text(बेल्जियम) neighborOf text(ألمانيا) +text(Bélgica) neighborOf text(Luxembourg) +text(بلجيكا) neighborOf text(فرنسا) +text(België) neighborOf text(هولندا) +text(قطر) locatedIn text(Asia:Occidental) +text(卡塔尔) locatedIn text(亞洲) +text(Qatar) neighborOf text(السعودية) +text(Islas:Salomón) locatedIn text(ميلانيزيا) +text(所罗门群岛) locatedIn text(Oceanië) +text(敘利亞) locatedIn text(西亚) +text(سوريا) locatedIn text(آسيا) +text(सीरिया) neighborOf text(以色列) +text(Siria) neighborOf text(土耳其) +text(Syrië) neighborOf text(जॉर्डन) +text(Syria) neighborOf text(黎巴嫩) +text(敘利亞) neighborOf text(इराक) +text(India) locatedIn text(南亚) +text(India) locatedIn text(एशिया) +text(الهند) neighborOf text(Afganistán) +text(India) neighborOf text(Bhutan) +text(भारत) neighborOf text(Bangladesh) +text(印度) neighborOf text(People's:Republic:of:China) +text(India) neighborOf text(नेपाल) +text(India) neighborOf text(Birmania) +text(الهند) neighborOf text(Pakistan) +text(India) neighborOf text(斯里蘭卡) +text(المغرب) neighborOf text(Algeria) +text(मोरक्को) neighborOf text(España) +text(摩洛哥) neighborOf text(Sahrawi:Arabische:Democratische:Republiek) +text(Kenia) locatedIn text(East:Africa) +text(Kenya) locatedIn text(África) +text(कीनिया) neighborOf text(أوغندا) +text(肯尼亚) neighborOf text(Tanzania) +text(كينيا) neighborOf text(Somalia) +text(Kenia) neighborOf text(South:Sudan) +text(Kenia) neighborOf text(Ethiopië) +text(दक्षिण:सूडान) locatedIn text(Centraal-Afrika) +text(Sudán:del:Sur) locatedIn text(Afrika) +text(南蘇丹) neighborOf text(Oeganda) +text(Zuid-Soedan) neighborOf text(República:Democrática:del:Congo) +text(جنوب:السودان) neighborOf text(Kenya) +text(South:Sudan) neighborOf text(República:Centroafricana) +text(दक्षिण:सूडान) neighborOf text(Sudan) +text(Sudán:del:Sur) neighborOf text(Ethiopia) +text(Ghana) neighborOf text(Burkina:Faso) +text(迦納) neighborOf text(Costa:de:Marfil) +text(غانا) neighborOf text(Togo) +text(塔吉克斯坦) locatedIn text(मध्य:एशिया) +text(Tajikistan) locatedIn text(Azië) +text(Tadzjikistan) neighborOf text(中华人民共和国) +text(طاجيكستان) neighborOf text(Kirguistán) +text(ताजीकिस्तान) neighborOf text(أفغانستان) +text(Tayikistán) neighborOf text(乌兹别克斯坦) +text(Islas:Marshall) locatedIn text(Micronesië) +text(Marshall:Islands) locatedIn text(大洋洲) +text(الكاميرون) locatedIn text(África:Central) +text(Kameroen) locatedIn text(अफ्रीका) +text(Cameroon) neighborOf text(चाड) +text(Camerún) neighborOf text(Congo-Brazzaville) +text(कैमरुन) neighborOf text(Gabon) +text(喀麦隆) neighborOf text(赤道几内亚) +text(الكاميرون) neighborOf text(मध्य:अफ़्रीकी:गणराज्य) +text(Kameroen) neighborOf text(नाइजीरिया) +text(नौरु) locatedIn text(密克羅尼西亞群島) +text(瑙鲁) locatedIn text(أوقيانوسيا) +text(Thailand) neighborOf text(Camboya) +text(تايلاند) neighborOf text(Myanmar) +text(Thailand) neighborOf text(Laos) +text(थाईलैंड) neighborOf text(馬來西亞) +text(Sudán) neighborOf text(Chad) +text(सूडान) neighborOf text(लीबिया) +text(苏丹) neighborOf text(南蘇丹) +text(Soedan) neighborOf text(Eritrea) +text(السودان) neighborOf text(中非共和國) +text(Sudan) neighborOf text(埃及) +text(Sudán) neighborOf text(Etiopía) +text(Tsjaad) locatedIn text(وسط:إفريقيا) +text(Chad) locatedIn text(非洲) +text(تشاد) neighborOf text(Libië) +text(乍得) neighborOf text(Niger) +text(चाड) neighborOf text(Zuid-Soedan) +text(Chad) neighborOf text(Cameroon) +text(Tsjaad) neighborOf text(جمهورية:إفريقيا:الوسطى) +text(Chad) neighborOf text(奈及利亞) +text(Vanuatu) locatedIn text(मॅलानिशिया) +text(萬那杜) locatedIn text(Oceanía) +text(الرأس:الأخضر) locatedIn text(西非) +text(佛得角) locatedIn text(إفريقيا) +text(Islas:Malvinas) locatedIn text(أمريكا:الجنوبية) +text(福克蘭群島) locatedIn text(महाअमेरिका) +text(Liberia) locatedIn text(África:Occidental) +text(Liberia) locatedIn text(Africa) +text(Liberia) neighborOf text(Ivory:Coast) +text(लाइबेरिया) neighborOf text(Sierra:Leone) +text(利比里亞) neighborOf text(गिनी) +text(कम्बोडिया) locatedIn text(东南亚) +text(Cambodja) locatedIn text(Asia) +text(كمبوديا) neighborOf text(Vietnam) +text(柬埔寨) neighborOf text(泰國) +text(Cambodia) neighborOf text(لاوس) +text(زيمبابوي) neighborOf text(ज़ाम्बिया) +text(津巴布韦) neighborOf text(South:Africa) +text(ज़िम्बाब्वे) neighborOf text(بوتسوانا) +text(Zimbabwe) neighborOf text(मोज़ाम्बीक) +text(جزر:القمر) locatedIn text(شرق:إفريقيا) +text(कोमोरोस) locatedIn text(África) +text(Guam) locatedIn text(Micronesia) +text(關島) locatedIn text(ओशिआनिया) +text(The:Bahamas) locatedIn text(Caribbean) +text(جزر:البهاما) locatedIn text(Amerika) +text(लेबनॉन) locatedIn text(West:Asia) +text(Libanon) locatedIn text(Asia) +text(Líbano) neighborOf text(Israel) +text(Lebanon) neighborOf text(سوريا) +text(Sint:Maarten) locatedIn text(Caraïben) +text(सेंट:मार्टिन) locatedIn text(América) +text(Saint:Martin) neighborOf text(सेंट:मार्टिन:की:सामूहिकता) +text(إثيوبيا) locatedIn text(Oost-Afrika) +text(埃塞俄比亚) locatedIn text(Afrika) +text(इथियोपिया) neighborOf text(索馬里) +text(Ethiopië) neighborOf text(कीनिया) +text(Ethiopia) neighborOf text(Eritrea) +text(Etiopía) neighborOf text(جنوب:السودان) +text(إثيوبيا) neighborOf text(जिबूती) +text(埃塞俄比亚) neighborOf text(सूडान) +text(美屬維爾京群島) locatedIn text(Caribe) +text(संयुक्त:राज्य:वर्जिन:द्वीपसमूह) locatedIn text(Americas) +text(Guinea-Bisáu) locatedIn text(West-Afrika) +text(Guinea-Bissau) locatedIn text(अफ्रीका) +text(畿內亞比紹) neighborOf text(Guinee) +text(Guinee-Bissau) neighborOf text(塞内加尔) +text(ليبيا) locatedIn text(شمال:إفريقيا) +text(利比亞) locatedIn text(非洲) +text(Libya) neighborOf text(تشاد) +text(Libia) neighborOf text(تونس) +text(लीबिया) neighborOf text(Niger) +text(Libië) neighborOf text(阿爾及利亞) +text(ليبيا) neighborOf text(مصر) +text(利比亞) neighborOf text(苏丹) +text(Bhutan) locatedIn text(Asia:del:Sur) +text(भूटान) locatedIn text(亞洲) +text(不丹) neighborOf text(الصين) +text(بوتان) neighborOf text(भारत) +text(澳門) locatedIn text(شرق:آسيا) +text(Macau) locatedIn text(آسيا) +text(मकाउ) neighborOf text(República:Popular:China) +text(Frans-Polynesië) locatedIn text(Polynesia) +text(French:Polynesia) locatedIn text(Oceania) +text(Somalië) locatedIn text(东部非洲) +text(Somalia) locatedIn text(إفريقيا) +text(الصومال) neighborOf text(吉布提) +text(सोमालिया) neighborOf text(肯尼亚) +text(Somalia) neighborOf text(इथियोपिया) +text(सेंट:बार्थेलेमी) locatedIn text(الكاريبي) +text(Saint-Barthélemy) locatedIn text(أمريكتان) +text(روسيا) locatedIn text(东欧) +text(Rusia) locatedIn text(Europa) +text(Rusland) neighborOf text(烏克蘭) +text(Russia) neighborOf text(Belarus) +text(रूस) neighborOf text(चीनी:जनवादी:गणराज्य) +text(俄罗斯) neighborOf text(哈萨克斯坦) +text(روسيا) neighborOf text(挪威) +text(Rusia) neighborOf text(Poland) +text(Rusland) neighborOf text(Azerbaiyán) +text(Russia) neighborOf text(ليتوانيا) +text(रूस) neighborOf text(إستونيا) +text(俄罗斯) neighborOf text(Corea:del:Norte) +text(روسيا) neighborOf text(फ़िनलैण्ड) +text(Rusia) neighborOf text(Mongolia) +text(Rusland) neighborOf text(लातविया) +text(Russia) neighborOf text(格鲁吉亚) +text(نيوزيلندا) locatedIn text(nan) +text(New:Zealand) locatedIn text(Oceanië) +text(Panamá) locatedIn text(América:Central) +text(Panama) locatedIn text(美洲) +text(巴拿馬) neighborOf text(कोस्टा:रीका) +text(पनामा) neighborOf text(哥伦比亚) +text(Papua:New:Guinea) locatedIn text(美拉尼西亞) +text(Papúa:Nueva:Guinea) locatedIn text(大洋洲) +text(巴布亚新几内亚) neighborOf text(Indonesië) +text(उत्तर:कोरिया) neighborOf text(Volksrepubliek:China) +text(كوريا:الشمالية) neighborOf text(Zuid-Korea) +text(朝鮮民主主義人民共和國) neighborOf text(रूस) +text(Letland) locatedIn text(北歐) +text(لاتفيا) locatedIn text(أوروبا) +text(Latvia) neighborOf text(立陶宛) +text(拉脫維亞) neighborOf text(Wit-Rusland) +text(Letonia) neighborOf text(俄罗斯) +text(लातविया) neighborOf text(Estonia) +text(Omán) locatedIn text(غرب:آسيا) +text(Oman) locatedIn text(एशिया) +text(سلطنة:عمان) neighborOf text(सउदी:अरब) +text(ओमान) neighborOf text(Yemen) +text(阿曼) neighborOf text(阿拉伯联合酋长国) +text(सन्त:पियर:और:मिकलान) locatedIn text(أمريكا:الشمالية) +text(San:Pedro:y:Miquelón) locatedIn text(महाअमेरिका) +text(मार्टीनिक) locatedIn text(加勒比地区) +text(馬提尼克) locatedIn text(Amerika) +text(Verenigd:Koninkrijk) locatedIn text(أوروبا:الشمالية) +text(यूनाइटेड:किंगडम) locatedIn text(欧洲) +text(Reino:Unido) neighborOf text(英国) +text(Israel) locatedIn text(पश्चिमी:एशिया) +text(इज़राइल) locatedIn text(Azië) +text(Israël) neighborOf text(لبنان) +text(إسرائيل) neighborOf text(Egypt) +text(以色列) neighborOf text(Jordan) +text(Israel) neighborOf text(सीरिया) +text(Jersey) locatedIn text(Northern:Europe) +text(Jersey) locatedIn text(Europa) +text(Islas:Pitcairn) locatedIn text(بولنيزيا) +text(جزر:بيتكيرن) locatedIn text(أوقيانوسيا) +text(Togo) locatedIn text(غرب:إفريقيا) +text(多哥) locatedIn text(Africa) +text(टोगो) neighborOf text(بوركينا:فاسو) +text(توغو) neighborOf text(Ghana) +text(Togo) neighborOf text(Benin) +text(كيريباتي) locatedIn text(Micronesia) +text(Kiribati) locatedIn text(Oceanía) +text(伊朗) locatedIn text(Zuid-Azië) +text(Iran) locatedIn text(Asia) +text(إيران) neighborOf text(阿富汗) +text(Iran) neighborOf text(Turkmenistan) +text(ईरान) neighborOf text(تركيا) +text(Irán) neighborOf text(आर्मीनिया) +text(伊朗) neighborOf text(Azerbaijan) +text(Iran) neighborOf text(باكستان) +text(إيران) neighborOf text(Irak) +text(تجمع:سان:مارتين) locatedIn text(कैरिबिया) +text(法屬聖馬丁) locatedIn text(América) +text(Saint-Martin) neighborOf text(圣马丁岛) +text(República:Dominicana) locatedIn text(Caribbean) +text(Dominican:Republic) locatedIn text(Americas) +text(多明尼加) neighborOf text(هايتي) +text(丹麥) neighborOf text(德國) +text(बरमूडा) locatedIn text(América:del:Norte) +text(Bermuda) locatedIn text(أمريكتان) +text(تشيلي) neighborOf text(الأرجنتين) +text(चिली) neighborOf text(Bolivia) +text(Chile) neighborOf text(Peru) +text(Kosovo) locatedIn text(أوروبا:الشرقية) +text(Kosovo) locatedIn text(यूरोप) +text(كوسوفو) neighborOf text(صربيا) +text(科索沃) neighborOf text(Albania) +text(Kosovo) neighborOf text(Noord-Macedonië) +text(कोसोवो:गणराज्य) neighborOf text(Montenegro) +text(सन्त:किट्स:और:नेविस) locatedIn text(Caraïben) +text(Saint:Kitts:en:Nevis) locatedIn text(美洲) +text(इरित्रिया) neighborOf text(Djibouti) +text(厄立特里亞) neighborOf text(Soedan) +text(Eritrea) neighborOf text(Ethiopië) +text(भूमध्यरेखीय:गिनी) locatedIn text(Central:Africa) +text(Guinea:Ecuatorial) locatedIn text(África) +text(Equatorial:Guinea) neighborOf text(الغابون) +text(غينيا:الاستوائية) neighborOf text(Camerún) +text(尼日尔) locatedIn text(पश्चिमी:अफ्रीका) +text(नाइजर) locatedIn text(Afrika) +text(Níger) neighborOf text(乍得) +text(النيجر) neighborOf text(Libya) +text(Niger) neighborOf text(Burkina:Faso) +text(Niger) neighborOf text(Benín) +text(尼日尔) neighborOf text(مالي) +text(नाइजर) neighborOf text(Argelia) +text(Níger) neighborOf text(نيجيريا) +text(Anguila) locatedIn text(Caribe) +text(Anguilla) locatedIn text(महाअमेरिका) +text(Rwanda) locatedIn text(África:Oriental) +text(रवाण्डा) locatedIn text(अफ्रीका) +text(Ruanda) neighborOf text(Burundi) +text(Rwanda) neighborOf text(تنزانيا) +text(رواندا) neighborOf text(烏干達) +text(卢旺达) neighborOf text(Congo-Kinshasa) +text(الإمارات:العربية:المتحدة) locatedIn text(Zuidwest-Azië) +text(Verenigde:Arabische:Emiraten) locatedIn text(Asia) +text(United:Arab:Emirates) neighborOf text(Oman) +text(Emiratos:Árabes:Unidos) neighborOf text(Saudi:Arabia) +text(Estland) locatedIn text(उत्तरी:यूरोप) +text(एस्टोनिया) locatedIn text(Europe) +text(Estonia) neighborOf text(Letland) +text(愛沙尼亞) neighborOf text(روسيا) +text(希腊) locatedIn text(दक्षिणी:यूरोप) +text(اليونان) locatedIn text(Europa) +text(Greece) neighborOf text(बुल्गारिया) +text(यूनान) neighborOf text(ألبانيا) +text(Griekenland) neighborOf text(North:Macedonia) +text(Grecia) neighborOf text(Turquía) +text(Senegal) locatedIn text(West:Africa) +text(सेनेगल) locatedIn text(非洲) +text(السنغال) neighborOf text(गिनी-बिसाऊ) +text(Senegal) neighborOf text(Mauritania) +text(Senegal) neighborOf text(Mali) +text(塞内加尔) neighborOf text(岡比亞) +text(Senegal) neighborOf text(几内亚) +text(Guadeloupe) locatedIn text(الكاريبي) +text(Guadalupe) locatedIn text(Amerika) +text(मोनाको) neighborOf text(फ़्रान्स) +text(Djibouti) neighborOf text(إرتريا) +text(Yibuti) neighborOf text(索馬里) +text(جيبوتي) neighborOf text(Ethiopia) +text(इंडोनेशिया) neighborOf text(पापुआ:न्यू:गिनी) +text(Indonesia) neighborOf text(Timor-Leste) +text(印度尼西亚) neighborOf text(Maleisië) +text(جزر:عذراء:بريطانية) locatedIn text(加勒比地区) +text(英屬維爾京群島) locatedIn text(América) +text(Islas:Cook) locatedIn text(पोलीनेशिया) +text(جزر:كوك) locatedIn text(ओशिआनिया) +text(युगाण्डा) locatedIn text(पूर्वी:अफ्रीका) +text(Uganda) locatedIn text(إفريقيا) +text(Uganda) neighborOf text(Tanzania) +text(أوغندا) neighborOf text(Democratic:Republic:of:the:Congo) +text(Oeganda) neighborOf text(كينيا) +text(烏干達) neighborOf text(South:Sudan) +text(युगाण्डा) neighborOf text(Rwanda) +text(مقدونيا:الشمالية) locatedIn text(Southern:Europe) +text(उत्तर:मैसिडोनिया) locatedIn text(أوروبا) +text(Macedonia:del:Norte) neighborOf text(Kosovo) +text(北马其顿) neighborOf text(希腊) +text(Noord-Macedonië) neighborOf text(阿爾巴尼亞) +text(North:Macedonia) neighborOf text(Serbia) +text(مقدونيا:الشمالية) neighborOf text(بلغاريا) +text(Túnez) locatedIn text(北部非洲) +text(突尼西亞) locatedIn text(Africa) +text(Tunisia) neighborOf text(Libia) +text(ट्यूनिशिया) neighborOf text(الجزائر) +text(الإكوادور) neighborOf text(पेरू) +text(Ecuador) neighborOf text(Colombia) +text(巴西) locatedIn text(南美洲) +text(Brazilië) locatedIn text(Americas) +text(ब्राज़ील) neighborOf text(बोलिविया) +text(البرازيل) neighborOf text(कोलम्बिया) +text(Brasil) neighborOf text(Paraguay) +text(Brazil) neighborOf text(الأوروغواي) +text(巴西) neighborOf text(Frans-Guyana) +text(Brazilië) neighborOf text(Surinam) +text(ब्राज़ील) neighborOf text(Venezuela) +text(البرازيل) neighborOf text(Argentina) +text(Brasil) neighborOf text(Guyana) +text(Brazil) neighborOf text(秘鲁) +text(Paraguay) locatedIn text(América:del:Sur) +text(巴拉圭) locatedIn text(أمريكتان) +text(पैराग्वे) neighborOf text(Argentina) +text(Paraguay) neighborOf text(巴西) +text(باراغواي) neighborOf text(بوليفيا) +text(Finlandia) locatedIn text(Noord-Europa) +text(Finland) locatedIn text(欧洲) +text(芬蘭) neighborOf text(Norway) +text(فنلندا) neighborOf text(स्वीडन) +text(Finland) neighborOf text(Rusia) +text(Jordania) neighborOf text(Saoedi-Arabië) +text(الأردن) neighborOf text(Israel) +text(約旦) neighborOf text(伊拉克) +text(Jordanië) neighborOf text(Siria) +text(पूर्वी:तिमोर) neighborOf text(إندونيسيا) +text(الجبل:الأسود) locatedIn text(Zuid-Europa) +text(蒙特內哥羅) locatedIn text(Europa) +text(Montenegro) neighborOf text(Kosovo) +text(Montenegro) neighborOf text(البوسنة:والهرسك) +text(मॉन्टेनीग्रो) neighborOf text(Kroatië) +text(Montenegro) neighborOf text(塞爾維亞) +text(الجبل:الأسود) neighborOf text(अल्बानिया) +text(Peru) locatedIn text(दक्षिण:अमेरिका) +text(Perú) locatedIn text(美洲) +text(بيرو) neighborOf text(Ecuador) +text(Peru) neighborOf text(玻利維亞) +text(पेरू) neighborOf text(Chile) +text(秘鲁) neighborOf text(Brazilië) +text(Peru) neighborOf text(كولومبيا) +text(Montserrat) locatedIn text(कैरिबिया) +text(Montserrat) locatedIn text(महाअमेरिका) +text(युक्रेन) locatedIn text(Europa:Oriental) +text(أوكرانيا) locatedIn text(यूरोप) +text(Oekraïne) neighborOf text(स्लोवाकिया) +text(Ukraine) neighborOf text(بيلاروس) +text(Ucrania) neighborOf text(पोलैंड) +text(烏克蘭) neighborOf text(Rusland) +text(युक्रेन) neighborOf text(المجر) +text(أوكرانيا) neighborOf text(Moldova) +text(Oekraïne) neighborOf text(رومانيا) +text(Dominica) locatedIn text(Caribbean) +text(डोमिनिका) locatedIn text(Amerika) +text(तुर्कमेनिस्तान) neighborOf text(Kazakhstan) +text(Turkmenistán) neighborOf text(अफ़्ग़ानिस्तान) +text(Turkmenistan) neighborOf text(Uzbekistán) +text(تركمانستان) neighborOf text(Iran) +text(غيرنزي) locatedIn text(Europa:del:Norte) +text(ग्वेर्नसे) locatedIn text(Europe) +text(Gibraltar) locatedIn text(Europa:del:Sur) +text(जिब्राल्टर) locatedIn text(Europa) +text(Gibraltar) neighborOf text(स्पेन) +text(स्विट्ज़रलैण्ड) locatedIn text(Western:Europe) +text(瑞士) locatedIn text(أوروبا) +text(سويسرا) neighborOf text(जर्मनी) +text(Zwitserland) neighborOf text(Italia) +text(Switzerland) neighborOf text(Austria) +text(Suiza) neighborOf text(法國) +text(स्विट्ज़रलैण्ड) neighborOf text(लिक्टेन्स्टाइन) +text(Oostenrijk) locatedIn text(西欧) +text(النمسا) locatedIn text(欧洲) +text(ऑस्ट्रिया) neighborOf text(Duitsland) +text(奧地利) neighborOf text(سلوفاكيا) +text(Austria) neighborOf text(Slovenië) +text(Austria) neighborOf text(इटली) +text(Oostenrijk) neighborOf text(瑞士) +text(النمسا) neighborOf text(Hungary) +text(ऑस्ट्रिया) neighborOf text(Liechtenstein) +text(奧地利) neighborOf text(捷克) +text(匈牙利) neighborOf text(Ukraine) +text(Hongarije) neighborOf text(Slowakije) +text(हंगरी) neighborOf text(سلوفينيا) +text(Hungría) neighborOf text(Croatia) +text(المجر) neighborOf text(Austria) +text(Hungary) neighborOf text(Servië) +text(匈牙利) neighborOf text(रोमानिया) +text(Malaui) locatedIn text(East:Africa) +text(馬拉威) locatedIn text(África) +text(مالاوي) neighborOf text(Zambia) +text(Malawi) neighborOf text(Tanzania) +text(Malawi) neighborOf text(莫桑比克) +text(Hong:Kong) neighborOf text(People's:Republic:of:China) +text(ليختنشتاين) locatedIn text(पश्चिमी:यूरोप) +text(Liechtenstein) locatedIn text(Europa) +text(列支敦斯登) neighborOf text(سويسرا) +text(Liechtenstein) neighborOf text(Austria) +text(Barbados) locatedIn text(Caraïben) +text(巴巴多斯) locatedIn text(América) +text(Georgia) locatedIn text(Asia:Occidental) +text(جورجيا) locatedIn text(亞洲) +text(Georgië) neighborOf text(亞美尼亞) +text(Georgia) neighborOf text(阿塞拜疆) +text(जॉर्जिया) neighborOf text(Russia) +text(格鲁吉亚) neighborOf text(Turkey) +text(Albanië) locatedIn text(南欧) +text(Albania) locatedIn text(यूरोप) +text(Albania) neighborOf text(蒙特內哥羅) +text(ألبانيا) neighborOf text(उत्तर:मैसिडोनिया) +text(阿爾巴尼亞) neighborOf text(كوسوفو) +text(अल्बानिया) neighborOf text(اليونان) +text(Kuwait) locatedIn text(西亚) +text(कुवैत) locatedIn text(آسيا) +text(Koeweit) neighborOf text(Arabia:Saudí) +text(الكويت) neighborOf text(Iraq) +text(Sudáfrica) locatedIn text(南部非洲) +text(جنوب:إفريقيا) locatedIn text(Afrika) +text(南非) neighborOf text(Mozambique) +text(दक्षिण:अफ़्रीका) neighborOf text(Botswana) +text(Zuid-Afrika) neighborOf text(إسواتيني) +text(South:Africa) neighborOf text(Zimbabwe) +text(Sudáfrica) neighborOf text(Namibia) +text(جنوب:إفريقيا) neighborOf text(Lesotho) +text(海地) locatedIn text(Caribe) +text(Haití) locatedIn text(Americas) +text(Haïti) neighborOf text(جمهورية:الدومينيكان) +text(Afghanistan) locatedIn text(جنوب:آسيا) +text(Afghanistan) locatedIn text(एशिया) +text(Afganistán) neighborOf text(土庫曼斯坦) +text(أفغانستان) neighborOf text(中华人民共和国) +text(阿富汗) neighborOf text(塔吉克斯坦) +text(अफ़्ग़ानिस्तान) neighborOf text(Oezbekistan) +text(Afghanistan) neighborOf text(ईरान) +text(Afghanistan) neighborOf text(巴基斯坦) +text(Singapur) locatedIn text(Southeast:Asia) +text(सिंगापुर) locatedIn text(Azië) +text(बेनिन) locatedIn text(西非) +text(Benin) locatedIn text(अफ्रीका) +text(貝南) neighborOf text(النيجر) +text(بنين) neighborOf text(बुर्किना:फासो) +text(Benin) neighborOf text(Togo) +text(Benín) neighborOf text(Nigeria) +text(Åland) locatedIn text(北歐) +text(ऑलैण्ड:द्वीपसमूह) locatedIn text(Europe) +text(Croacia) locatedIn text(أوروبا:الجنوبية) +text(克羅地亞) locatedIn text(Europa) +text(كرواتيا) neighborOf text(Slovenia) +text(क्रोएशिया) neighborOf text(波斯尼亚和黑塞哥维那) +text(Kroatië) neighborOf text(Hongarije) +text(Croatia) neighborOf text(सर्बिया) +text(Croacia) neighborOf text(Montenegro) +text(Sweden) locatedIn text(أوروبا:الشمالية) +text(السويد) locatedIn text(أوروبا) +text(瑞典) neighborOf text(Noruega) +text(Suecia) neighborOf text(फ़िनलैण्ड) +text(México) neighborOf text(伯利兹) +text(Mexico) neighborOf text(संयुक्त:राज्य:अमेरिका) +text(Mexico) neighborOf text(Guatemala) +text(جرينلاند) locatedIn text(उत्तर:अमेरिका) +text(Greenland) locatedIn text(أمريكتان) +text(Pitcairn:Islands) locatedIn text(Australia:and:New:Zealand) +text(पिटकेर्न:द्वीपसमूह) locatedIn text(Oceania) +text(尼泊爾) locatedIn text(दक्षिण:एशिया) +text(Nepal) locatedIn text(Asia) +text(Nepal) neighborOf text(الصين) +text(Nepal) neighborOf text(印度) +text(Guatemala) neighborOf text(Belize) +text(危地马拉) neighborOf text(El:Salvador) +text(ग्वाटेमाला) neighborOf text(मेक्सिको) +text(غواتيمالا) neighborOf text(Honduras) +text(दक्षिण:कोरिया) locatedIn text(East:Asia) +text(Corea:del:Sur) locatedIn text(Asia) +text(大韩民国) neighborOf text(North:Korea) +text(Moldavië) locatedIn text(पूर्वी:यूरोप) +text(摩爾多瓦) locatedIn text(欧洲) +text(مولدوفا) neighborOf text(Ucrania) +text(Moldavia) neighborOf text(Rumania) +text(Mauritius) locatedIn text(شرق:إفريقيا) +text(毛里求斯) locatedIn text(非洲) +text(白俄羅斯) neighborOf text(烏克蘭) +text(बेलारूस) neighborOf text(بولندا) +text(Bielorrusia) neighborOf text(Lithuania) +text(Belarus) neighborOf text(रूस) +text(Wit-Rusland) neighborOf text(لاتفيا) +text(बांग्लादेश) neighborOf text(म्यान्मार) +text(بنغلاديش) neighborOf text(India) +text(Malaysia) locatedIn text(جنوب:شرق:آسيا) +text(Malasia) locatedIn text(亞洲) +text(मलेशिया) neighborOf text(Tailandia) +text(ماليزيا) neighborOf text(Indonesia) +text(馬來西亞) neighborOf text(汶莱) +text(Bosnia:and:Herzegovina) locatedIn text(दक्षिणी:यूरोप) +text(Bosnië:en:Herzegovina) locatedIn text(Europa) +text(Bosnia:y:Herzegovina) neighborOf text(Serbia) +text(बोस्निया:और:हर्ज़ेगोविना) neighborOf text(克羅地亞) +text(البوسنة:والهرسك) neighborOf text(Montenegro) +text(Luxemburgo) locatedIn text(West-Europa) +text(Luxemburg) locatedIn text(यूरोप) +text(लक्ज़मबर्ग) neighborOf text(Alemania) +text(卢森堡) neighborOf text(Belgium) +text(لوكسمبورغ) neighborOf text(Frankrijk) +text(Italy) locatedIn text(Southern:Europe) +text(إيطاليا) locatedIn text(Europe) +text(意大利) neighborOf text(स्लोवेनिया) +text(Italië) neighborOf text(Zwitserland) +text(Italia) neighborOf text(Oostenrijk) +text(इटली) neighborOf text(France) +text(Italy) neighborOf text(Ciudad:del:Vaticano) +text(إيطاليا) neighborOf text(圣马力诺) +text(अज़रबैजान) locatedIn text(West:Asia) +text(أذربيجان) locatedIn text(آسيا) +text(Azerbeidzjan) neighborOf text(तुर्की) +text(Azerbaiyán) neighborOf text(Armenia) +text(Azerbaijan) neighborOf text(俄罗斯) +text(阿塞拜疆) neighborOf text(Irán) +text(अज़रबैजान) neighborOf text(Georgia) +text(Honduras) locatedIn text(中美洲) +text(Honduras) locatedIn text(美洲) +text(हॉण्डुरस) neighborOf text(Guatemala) +text(هندوراس) neighborOf text(尼加拉瓜) +text(洪都拉斯) neighborOf text(El:Salvador) +text(马里) locatedIn text(África:Occidental) +text(माली) locatedIn text(إفريقيا) +text(Mali) neighborOf text(布吉納法索) +text(Mali) neighborOf text(Guinea) +text(مالي) neighborOf text(Mauritania) +text(Mali) neighborOf text(Niger) +text(马里) neighborOf text(सेनेगल) +text(माली) neighborOf text(अल्जीरिया) +text(Mali) neighborOf text(ساحل:العاج) +text(Taiwan) locatedIn text(Oost-Azië) +text(चीनी:गणराज्य) locatedIn text(एशिया) +text(Algerije) locatedIn text(Noord-Afrika) +text(Algeria) locatedIn text(Africa) +text(阿爾及利亞) neighborOf text(लीबिया) +text(Argelia) neighborOf text(Tunesië) +text(الجزائر) neighborOf text(موريتانيا) +text(अल्जीरिया) neighborOf text(Marokko) +text(Algerije) neighborOf text(Niger) +text(Algeria) neighborOf text(Mali) +text(阿爾及利亞) neighborOf text(الجمهورية:العربية:الصحراوية:الديمقراطية) +text(फ़्रान्सीसी:गुयाना) neighborOf text(ब्राज़ील) +text(French:Guiana) neighborOf text(蘇利南) +text(Jemen) locatedIn text(غرب:آسيا) +text(也门) locatedIn text(Azië) +text(Yemen) neighborOf text(Omán) +text(यमन) neighborOf text(沙特阿拉伯) +text(Puerto:Rico) locatedIn text(الكاريبي) +text(波多黎各) locatedIn text(महाअमेरिका) +text(سانت:فينسنت:والغرينادين) locatedIn text(加勒比地区) +text(圣文森特和格林纳丁斯) locatedIn text(Amerika) +text(वेनेज़ुएला) neighborOf text(البرازيل) +text(Venezuela) neighborOf text(गयाना) +text(Venezuela) neighborOf text(Colombia) +text(غرينادا) locatedIn text(कैरिबिया) +text(Grenada) locatedIn text(América) +text(Estados:Unidos) neighborOf text(Canada) +text(الولايات:المتحدة) neighborOf text(المكسيك) +text(توكيلاو) locatedIn text(玻里尼西亞) +text(Tokelau) locatedIn text(Oceanië) +text(斯洛文尼亞) locatedIn text(Zuid-Europa) +text(Eslovenia) locatedIn text(Europa) +text(Slovenië) neighborOf text(النمسا) +text(سلوفينيا) neighborOf text(كرواتيا) +text(Slovenia) neighborOf text(意大利) +text(स्लोवेनिया) neighborOf text(हंगरी) +text(الفلبين) locatedIn text(Sudeste:Asiático) +text(Filipinas) locatedIn text(Asia) +text(ميكرونيسيا) locatedIn text(माइक्रोनीशिया) +text(Micronesië) locatedIn text(大洋洲) +text(República:Popular:China) locatedIn text(पूर्वी:एशिया) +text(चीनी:जनवादी:गणराज्य) locatedIn text(Asia) +text(Volksrepubliek:China) neighborOf text(Afganistán) +text(People's:Republic:of:China) neighborOf text(Bután) +text(中华人民共和国) neighborOf text(ماكاو) +text(الصين) neighborOf text(India) +text(República:Popular:China) neighborOf text(كازاخستان) +text(चीनी:जनवादी:गणराज्य) neighborOf text(吉尔吉斯斯坦) +text(Volksrepubliek:China) neighborOf text(Tajikistan) +text(People's:Republic:of:China) neighborOf text(老撾) +text(中华人民共和国) neighborOf text(روسيا) +text(الصين) neighborOf text(Noord-Korea) +text(República:Popular:China) neighborOf text(Myanmar) +text(चीनी:जनवादी:गणराज्य) neighborOf text(Pakistan) +text(Volksrepubliek:China) neighborOf text(Mongolia) +text(People's:Republic:of:China) neighborOf text(हांगकांग) +text(中华人民共和国) neighborOf text(Vietnam) +text(गबॉन) locatedIn text(मध्य:अफ्रीका) +text(Gabon) locatedIn text(África) +text(Gabón) neighborOf text(Equatoriaal-Guinea) +text(加蓬) neighborOf text(Republic:of:the:Congo) +text(Gabon) neighborOf text(कैमरुन) +text(Amerikaanse:Kleinere:Afgelegen:Eilanden) locatedIn text(North:America) +text(United:States:Minor:Outlying:Islands) locatedIn text(Americas) +text(Andorra) locatedIn text(Europa:del:Sur) +text(安道尔) locatedIn text(أوروبا) +text(Andorra) neighborOf text(西班牙) +text(अण्डोरा) neighborOf text(Francia) +text(ساموا) locatedIn text(Polynesië) +text(Samoa) locatedIn text(أوقيانوسيا) +text(The:Gambia) locatedIn text(West-Afrika) +text(गाम्बिया) locatedIn text(Afrika) +text(غامبيا) neighborOf text(السنغال) +text(nan) locatedIn text(पश्चिमी:एशिया) +text(Pedro:Miguel) locatedIn text(亞洲) +text(Pedro:Miguel) neighborOf text(जॉर्डन) +text(nan) neighborOf text(मिस्र) +text(nan) neighborOf text(इज़राइल) +text(रेयूनियों) locatedIn text(Oost-Afrika) +text(留尼汪) locatedIn text(अफ्रीका) +text(فرنسا) locatedIn text(Europa:Occidental) +text(फ़्रान्स) locatedIn text(欧洲) +text(法國) neighborOf text(Germany) +text(Frankrijk) neighborOf text(Luxembourg) +text(France) neighborOf text(Italië) +text(Francia) neighborOf text(أندورا) +text(فرنسا) neighborOf text(Switzerland) +text(फ़्रान्स) neighborOf text(摩納哥) +text(法國) neighborOf text(比利時) +text(Frankrijk) neighborOf text(Spain) +text(منغوليا) locatedIn text(Asia:Oriental) +text(蒙古國) locatedIn text(آسيا) +text(Mongolië) neighborOf text(الصين) +text(मंगोलिया) neighborOf text(Rusia) +text(Lituania) locatedIn text(Northern:Europe) +text(Litouwen) locatedIn text(Europa) +text(लिथुआनिया) neighborOf text(Polonia) +text(ليتوانيا) neighborOf text(Latvia) +text(立陶宛) neighborOf text(بيلاروس) +text(Lithuania) neighborOf text(Rusland) +text(Kaaimaneilanden) locatedIn text(Caribbean) +text(開曼群島) locatedIn text(أمريكتان) +text(سانت:لوسيا) locatedIn text(Caraïben) +text(圣卢西亚) locatedIn text(美洲) +text(Curaçao) locatedIn text(Caribe) +text(كوراساو) locatedIn text(महाअमेरिका) +text(الكاريبي) locatedIn text(Amerika) +text(South:Asia) locatedIn text(एशिया) +text(中部非洲) locatedIn text(非洲) +text(उत्तरी:यूरोप) locatedIn text(यूरोप) +text(南欧) locatedIn text(Europe) +text(Zuidwest-Azië) locatedIn text(Azië) +text(Zuid-Amerika) locatedIn text(América) +text(Polinesia) locatedIn text(Oceanía) +text(nan) locatedIn text(ओशिआनिया) +text(أوروبا:الغربية) locatedIn text(Europa) +text(东部非洲) locatedIn text(إفريقيا) +text(غرب:إفريقيا) locatedIn text(Africa) +text(Oost-Europa) locatedIn text(أوروبا) +text(केंद्रीय:अमेरिका) locatedIn text(Americas) +text(Noord-Amerika) locatedIn text(أمريكتان) +text(दक्षिण:पूर्व:एशिया) locatedIn text(Asia) +text(África:austral) locatedIn text(África) +text(東亞) locatedIn text(Asia) +text(North:Africa) locatedIn text(Afrika) +text(Melanesië) locatedIn text(Oceania) +text(密克羅尼西亞群島) locatedIn text(Oceanië) +text(Asia:Central) locatedIn text(亞洲) +text(Centraal-Europa) locatedIn text(欧洲) \ No newline at end of file diff --git a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_country2text_relation2text.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_country2text_relation2text.tsv new file mode 100644 index 0000000..6de0f99 --- /dev/null +++ b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_country2text_relation2text.tsv @@ -0,0 +1,1063 @@ +text(पलाउ) text(was:localized:in) text(Micronesia) +text(帛琉) text(is:localized:in) text(أوقيانوسيا) +text(Maldivas) text(was:present:in) text(Zuid-Azië) +text(馬爾代夫) text(is:present:in) text(Asia) +text(Brunei) text(is:still:in) text(Sudeste:Asiático) +text(Brunéi) text(was:still:in) text(Azië) +text(汶莱) text(is:a:neighboring:state:to) text(मलेशिया) +text(जापान) text(was:currently:in) text(East:Asia) +text(Japan) text(is:currently:in) text(Asia) +text(Nederland) text(was:a:neighboring:state:to) text(जर्मनी) +text(荷蘭) text(borders:with) text(बेल्जियम) +text(Turkey) text(borders) text(Armenia) +text(تركيا) text(is:butted:against) text(अज़रबैजान) +text(तुर्की) text(was:butted:against) text(Irán) +text(Turquía) text(was:adjacent:to) text(اليونان) +text(土耳其) text(is:adjacent:to) text(Georgië) +text(Turkije) text(neighbors) text(Bulgaria) +text(Turkey) text(is:a:neighboring:country:of) text(Irak) +text(تركيا) text(was:a:neighboring:country:of) text(Syria) +text(अंगोला) text(is:placed:in) text(Centraal-Afrika) +text(Angola) text(was:placed:in) text(非洲) +text(Angola) text(neighbors:with) text(कांगो:लोकतान्त्रिक:गणराज्य) +text(Angola) text(was:a:neighbor:of) text(ناميبيا) +text(安哥拉) text(is:a:neighbor:of) text(Zambia) +text(أنغولا) text(is:a:neighboring:state:to) text(कांगो:गणराज्य) +text(亞美尼亞) text(can:be:found:in) text(पश्चिमी:एशिया) +text(أرمينيا) text(was:situated:in) text(亞洲) +text(Armenia) text(was:a:neighboring:state:to) text(Georgia) +text(Armenië) text(borders:with) text(阿塞拜疆) +text(आर्मीनिया) text(borders) text(Iran) +text(Armenia) text(is:butted:against) text(तुर्की) +text(अण्टीगुआ:और:बारबूडा) text(is:situated:in) text(Caribbean) +text(أنتيغوا:وباربودا) text(is:located:in) text(أمريكتان) +text(एस्वातीनी) text(was:located:in) text(南部非洲) +text(斯威士兰) text(can:be:found:in) text(Africa) +text(Eswatini) text(was:butted:against) text(南非) +text(Swaziland) text(was:adjacent:to) text(Mozambique) +text(Wallis:and:Futuna) text(was:positioned:in) text(पोलीनेशिया) +text(वालिस:और:फ़्यूचूना) text(is:positioned:in) text(Oceanía) +text(उरुग्वे) text(was:sited:in) text(Zuid-Amerika) +text(الأوروغواي) text(is:sited:in) text(Americas) +text(烏拉圭) text(is:adjacent:to) text(Argentina) +text(Uruguay) text(neighbors) text(Brasil) +text(Zambia) text(was:localized:in) text(东部非洲) +text(زامبيا) text(is:localized:in) text(Afrika) +text(Zambia) text(is:a:neighboring:country:of) text(تنزانيا) +text(ज़ाम्बिया) text(was:a:neighboring:country:of) text(موزمبيق) +text(贊比亞) text(neighbors:with) text(Congo-Kinshasa) +text(Zambia) text(was:a:neighbor:of) text(अंगोला) +text(Zambia) text(is:a:neighbor:of) text(Botsuana) +text(زامبيا) text(is:a:neighboring:state:to) text(Zimbabwe) +text(Zambia) text(was:a:neighboring:state:to) text(Namibia) +text(ज़ाम्बिया) text(borders:with) text(مالاوي) +text(Cyprus) text(was:present:in) text(东欧) +text(साइप्रस) text(is:present:in) text(Europe) +text(塞浦路斯) text(borders) text(Reino:Unido) +text(Verenigd:Koninkrijk) text(is:still:in) text(Northern:Europe) +text(المملكة:المتحدة) text(was:still:in) text(Europa) +text(Reino:Unido) text(is:butted:against) text(Verenigd:Koninkrijk) +text(Burundi) text(was:currently:in) text(East:Africa) +text(बुरुण्डी) text(is:currently:in) text(África) +text(بوروندي) text(was:butted:against) text(Democratic:Republic:of:the:Congo) +text(Burundi) text(was:adjacent:to) text(رواندا) +text(Burundi) text(is:adjacent:to) text(Tanzania) +text(Centraal-Afrikaanse:Republiek) text(is:placed:in) text(中部非洲) +text(मध्य:अफ़्रीकी:गणराज्य) text(was:placed:in) text(अफ्रीका) +text(中非共和國) text(neighbors) text(Chad) +text(Central:African:Republic) text(is:a:neighboring:country:of) text(República:del:Congo) +text(جمهورية:إفريقيا:الوسطى) text(was:a:neighboring:country:of) text(República:Democrática:del:Congo) +text(República:Centroafricana) text(neighbors:with) text(दक्षिण:सूडान) +text(Centraal-Afrikaanse:Republiek) text(was:a:neighbor:of) text(Kameroen) +text(मध्य:अफ़्रीकी:गणराज्य) text(is:a:neighbor:of) text(सूडान) +text(Tonga) text(can:be:found:in) text(Polynesia) +text(東加) text(was:situated:in) text(大洋洲) +text(Ivoorkust) text(is:situated:in) text(West:Africa) +text(ساحل:العاج) text(is:located:in) text(إفريقيا) +text(Ivory:Coast) text(is:a:neighboring:state:to) text(Burkina:Faso) +text(Costa:de:Marfil) text(was:a:neighboring:state:to) text(Ghana) +text(कोत:दिव्वार) text(borders:with) text(ليبيريا) +text(科特迪瓦) text(borders) text(Mali) +text(Ivoorkust) text(is:butted:against) text(Guinea) +text(सिएरा:लियोन) text(was:butted:against) text(Liberia) +text(Sierra:Leone) text(was:adjacent:to) text(गिनी) +text(马约特) text(was:located:in) text(África:Oriental) +text(Mayotte) text(can:be:found:in) text(非洲) +text(波蘭) text(is:adjacent:to) text(Germany) +text(Poland) text(neighbors) text(烏克蘭) +text(بولندا) text(is:a:neighboring:country:of) text(Slowakije) +text(Polonia) text(was:a:neighboring:country:of) text(Bielorrusia) +text(पोलैंड) text(neighbors:with) text(रूस) +text(Polen) text(was:a:neighbor:of) text(立陶宛) +text(波蘭) text(is:a:neighbor:of) text(चेक:गणराज्य) +text(कज़ाख़िस्तान) text(was:positioned:in) text(آسيا:الوسطى) +text(Kazajistán) text(is:positioned:in) text(آسيا) +text(Kazachstan) text(is:a:neighboring:state:to) text(Turkmenistan) +text(哈萨克斯坦) text(was:a:neighboring:state:to) text(中华人民共和国) +text(كازاخستان) text(borders:with) text(Kirgizië) +text(Kazakhstan) text(borders) text(Uzbekistán) +text(कज़ाख़िस्तान) text(is:butted:against) text(روسيا) +text(उज़्बेकिस्तान) text(was:sited:in) text(Central:Asia) +text(乌兹别克斯坦) text(is:sited:in) text(एशिया) +text(Uzbekistan) text(was:butted:against) text(Afganistán) +text(أوزبكستان) text(was:adjacent:to) text(Turkmenistan) +text(Oezbekistan) text(is:adjacent:to) text(Kazajistán) +text(Uzbekistán) text(neighbors) text(Kirguistán) +text(उज़्बेकिस्तान) text(is:a:neighboring:country:of) text(Tajikistan) +text(Turks-:en:Caicoseilanden) text(was:localized:in) text(الكاريبي) +text(Islas:Turcas:y:Caicos) text(is:localized:in) text(美洲) +text(Nieuw-Caledonië) text(was:present:in) text(ميلانيزيا) +text(New:Caledonia) text(is:present:in) text(Oceanië) +text(Pakistan) text(was:a:neighboring:country:of) text(चीनी:जनवादी:गणराज्य) +text(Pakistan) text(neighbors:with) text(Afghanistan) +text(Pakistán) text(was:a:neighbor:of) text(ईरान) +text(巴基斯坦) text(is:a:neighbor:of) text(India) +text(Argentina) text(is:still:in) text(南美洲) +text(阿根廷) text(was:still:in) text(महाअमेरिका) +text(Argentinië) text(is:a:neighboring:state:to) text(Bolivia) +text(अर्जेण्टीना) text(was:a:neighboring:state:to) text(智利) +text(الأرجنتين) text(borders:with) text(Brazilië) +text(Argentina) text(borders) text(Paraguay) +text(Argentina) text(is:butted:against) text(Uruguay) +text(Cuba) text(was:currently:in) text(加勒比地区) +text(古巴) text(is:currently:in) text(Amerika) +text(Serbia) text(was:butted:against) text(Macedonia:del:Norte) +text(सर्बिया) text(was:adjacent:to) text(蒙特內哥羅) +text(صربيا) text(is:adjacent:to) text(Kosovo) +text(Serbia) text(neighbors) text(Bosnia:and:Herzegovina) +text(塞爾維亞) text(is:a:neighboring:country:of) text(كرواتيا) +text(Servië) text(was:a:neighboring:country:of) text(हंगरी) +text(Serbia) text(neighbors:with) text(保加利亚) +text(सर्बिया) text(was:a:neighbor:of) text(羅馬尼亞) +text(جمهورية:التشيك) text(is:placed:in) text(Eastern:Europe) +text(Tsjechië) text(was:placed:in) text(欧洲) +text(República:Checa) text(is:a:neighbor:of) text(Duitsland) +text(捷克) text(is:a:neighboring:state:to) text(Austria) +text(Czech:Republic) text(was:a:neighboring:state:to) text(Poland) +text(चेक:गणराज्य) text(borders:with) text(स्लोवाकिया) +text(निकारागुआ) text(borders) text(Honduras) +text(Nicaragua) text(is:butted:against) text(Costa:Rica) +text(Vietnam) text(can:be:found:in) text(جنوب:شرق:آسيا) +text(越南) text(was:situated:in) text(Asia) +text(Vietnam) text(was:butted:against) text(Cambodia) +text(Vietnam) text(was:adjacent:to) text(لاوس) +text(वियतनाम) text(is:adjacent:to) text(República:Popular:China) +text(نييوي) text(is:situated:in) text(Polynesië) +text(Niue) text(is:located:in) text(Oceania) +text(Canada) text(was:located:in) text(उत्तर:अमेरिका) +text(كندا) text(can:be:found:in) text(América) +text(Canadá) text(neighbors) text(संयुक्त:राज्य:अमेरिका) +text(Eslovaquia) text(is:a:neighboring:country:of) text(Ucrania) +text(Slovakia) text(was:a:neighboring:country:of) text(بولندا) +text(斯洛伐克) text(neighbors:with) text(奧地利) +text(سلوفاكيا) text(was:a:neighbor:of) text(Hongarije) +text(Slowakije) text(is:a:neighbor:of) text(جمهورية:التشيك) +text(मोज़ाम्बीक) text(is:a:neighboring:state:to) text(Tanzania) +text(莫桑比克) text(was:a:neighboring:state:to) text(Esuatini) +text(Mozambique) text(borders:with) text(زيمبابوي) +text(Mozambique) text(borders) text(贊比亞) +text(Mozambique) text(is:butted:against) text(मलावी) +text(موزمبيق) text(was:butted:against) text(South:Africa) +text(Aruba) text(was:positioned:in) text(Caraïben) +text(Aruba) text(is:positioned:in) text(أمريكتان) +text(Bolivia) text(was:sited:in) text(América:del:Sur) +text(Bolivia) text(is:sited:in) text(Americas) +text(玻利維亞) text(was:adjacent:to) text(Chili) +text(बोलिविया) text(is:adjacent:to) text(Brazil) +text(بوليفيا) text(neighbors) text(باراغواي) +text(Bolivia) text(is:a:neighboring:country:of) text(阿根廷) +text(Bolivia) text(was:a:neighboring:country:of) text(بيرو) +text(Colombia) text(was:localized:in) text(South:America) +text(كولومبيا) text(is:localized:in) text(美洲) +text(Colombia) text(neighbors:with) text(ईक्वाडोर) +text(कोलम्बिया) text(was:a:neighbor:of) text(ब्राज़ील) +text(哥伦比亚) text(is:a:neighbor:of) text(Panama) +text(Colombia) text(is:a:neighboring:state:to) text(Venezuela) +text(Colombia) text(was:a:neighboring:state:to) text(Peru) +text(فيجي) text(was:present:in) text(美拉尼西亞) +text(斐濟) text(is:present:in) text(ओशिआनिया) +text(Congo-Brazzaville) text(borders:with) text(Gabon) +text(Republic:of:the:Congo) text(borders) text(刚果民主共和国) +text(جمهورية:الكونغو) text(is:butted:against) text(Angola) +text(剛果共和國) text(was:butted:against) text(कैमरुन) +text(कांगो:गणराज्य) text(was:adjacent:to) text(中非共和國) +text(सउदी:अरब) text(is:adjacent:to) text(Qatar) +text(Arabia:Saudí) text(neighbors) text(United:Arab:Emirates) +text(Saoedi-Arabië) text(is:a:neighboring:country:of) text(約旦) +text(السعودية) text(was:a:neighboring:country:of) text(也门) +text(沙特阿拉伯) text(neighbors:with) text(Omán) +text(Saudi:Arabia) text(was:a:neighbor:of) text(कुवैत) +text(सउदी:अरब) text(is:a:neighbor:of) text(伊拉克) +text(السلفادور) text(is:still:in) text(أمريكا:الوسطى) +text(अल:साल्वाडोर) text(was:still:in) text(महाअमेरिका) +text(El:Salvador) text(is:a:neighboring:state:to) text(Guatemala) +text(El:Salvador) text(was:a:neighboring:state:to) text(Honduras) +text(Madagascar) text(was:currently:in) text(شرق:إفريقيا) +text(Madagascar) text(is:currently:in) text(Africa) +text(ऑस्ट्रेलिया) text(is:placed:in) text(Australia:and:New:Zealand) +text(澳大利亚) text(was:placed:in) text(أوقيانوسيا) +text(纳米比亚) text(can:be:found:in) text(दक्षिणी:अफ्रीका) +text(Namibië) text(was:situated:in) text(Afrika) +text(नामीबिया) text(borders:with) text(Zambia) +text(Namibia) text(borders) text(Angola) +text(ناميبيا) text(is:butted:against) text(Sudáfrica) +text(Namibia) text(was:butted:against) text(بوتسوانا) +text(Tuvalu) text(is:situated:in) text(Polinesia) +text(Tuvalu) text(is:located:in) text(Oceanía) +text(سفالبارد:ويان:ماين) text(was:located:in) text(Europa:del:Norte) +text(nan) text(can:be:found:in) text(Europa) +text(Man) text(was:positioned:in) text(Noord-Europa) +text(Isle:of:Man) text(is:positioned:in) text(यूरोप) +text(Guyana) text(was:adjacent:to) text(البرازيل) +text(Guyana) text(is:adjacent:to) text(Suriname) +text(圭亚那) text(neighbors) text(委內瑞拉) +text(الفاتيكان) text(was:sited:in) text(Southern:Europe) +text(梵蒂岡城國) text(is:sited:in) text(أوروبا) +text(Ciudad:del:Vaticano) text(is:a:neighboring:country:of) text(إيطاليا) +text(英屬印度洋領地) text(was:localized:in) text(Oost-Afrika) +text(Brits:Indische:Oceaanterritorium) text(is:localized:in) text(África) +text(Nigeria) text(was:present:in) text(África:Occidental) +text(奈及利亞) text(is:present:in) text(अफ्रीका) +text(नाइजीरिया) text(was:a:neighboring:country:of) text(Tsjaad) +text(Nigeria) text(neighbors:with) text(Niger) +text(نيجيريا) text(was:a:neighbor:of) text(Camerún) +text(Nigeria) text(is:a:neighbor:of) text(بنين) +text(Alemania) text(is:a:neighboring:state:to) text(डेनमार्क) +text(德國) text(was:a:neighboring:state:to) text(नीदरलैण्ड) +text(ألمانيا) text(borders:with) text(Polonia) +text(जर्मनी) text(borders) text(Luxembourg) +text(Germany) text(is:butted:against) text(Bélgica) +text(Duitsland) text(was:butted:against) text(Switzerland) +text(Alemania) text(was:adjacent:to) text(Austria) +text(德國) text(is:adjacent:to) text(Frankrijk) +text(ألمانيا) text(neighbors) text(Tsjechië) +text(Burkina:Faso) text(is:a:neighboring:country:of) text(多哥) +text(布吉納法索) text(was:a:neighboring:country:of) text(Benín) +text(बुर्किना:फासो) text(neighbors:with) text(尼日尔) +text(بوركينا:فاسو) text(was:a:neighbor:of) text(Ghana) +text(Burkina:Faso) text(is:a:neighbor:of) text(马里) +text(Burkina:Faso) text(is:a:neighboring:state:to) text(ساحل:العاج) +text(坦桑尼亞) text(was:a:neighboring:state:to) text(Uganda) +text(तंज़ानिया) text(borders:with) text(मोज़ाम्बीक) +text(Tanzania) text(borders) text(جمهورية:الكونغو:الديمقراطية) +text(تنزانيا) text(is:butted:against) text(Kenia) +text(Tanzania) text(was:butted:against) text(Ruanda) +text(Tanzania) text(was:adjacent:to) text(Zambia) +text(坦桑尼亞) text(is:adjacent:to) text(Malawi) +text(तंज़ानिया) text(neighbors) text(蒲隆地) +text(Islas:Marianas:del:Norte) text(is:still:in) text(Micronesië) +text(उत्तरी:मारियाना:द्वीप) text(was:still:in) text(大洋洲) +text(Belize) text(was:currently:in) text(América:Central) +text(伯利兹) text(is:currently:in) text(Amerika) +text(بليز) text(is:a:neighboring:country:of) text(ग्वाटेमाला) +text(Belice) text(was:a:neighboring:country:of) text(México) +text(Norway) text(neighbors:with) text(Suecia) +text(挪威) text(was:a:neighbor:of) text(Finland) +text(النرويج) text(is:a:neighbor:of) text(俄罗斯) +text(कोकोस:(कीलिंग):द्वीपसमूह) text(is:placed:in) text(nan) +text(islas:Cocos) text(was:placed:in) text(Oceanië) +text(Laos) text(can:be:found:in) text(东南亚) +text(लाओस) text(was:situated:in) text(Azië) +text(老撾) text(is:a:neighboring:state:to) text(الصين) +text(Laos) text(was:a:neighboring:state:to) text(柬埔寨) +text(Laos) text(borders:with) text(ميانمار) +text(لاوس) text(borders) text(فيتنام) +text(Laos) text(is:butted:against) text(Thailand) +text(República:Árabe:Saharaui:Democrática) text(is:situated:in) text(उत्तर:अफ़्रीका) +text(Sahrawi:Arab:Democratic:Republic) text(is:located:in) text(إفريقيا) +text(الجمهورية:العربية:الصحراوية:الديمقراطية) text(was:butted:against) text(Algeria) +text(Sahrawi:Arabische:Democratische:Republiek) text(was:adjacent:to) text(Mauritanië) +text(撒拉威阿拉伯民主共和國) text(is:adjacent:to) text(Morocco) +text(سورينام) text(was:located:in) text(أمريكا:الجنوبية) +text(सूरीनाम) text(can:be:found:in) text(América) +text(Suriname) text(neighbors) text(巴西) +text(Surinam) text(is:a:neighboring:country:of) text(Guayana:Francesa) +text(蘇利南) text(was:a:neighboring:country:of) text(गयाना) +text(聖誕島) text(was:positioned:in) text(Australië:en:Nieuw-Zeeland) +text(Christmas:Island) text(is:positioned:in) text(Oceania) +text(Sao:Tomé:en:Principe) text(was:sited:in) text(Central:Africa) +text(ساو:تومي:وبرينسيب) text(is:sited:in) text(非洲) +text(Egipto) text(neighbors:with) text(ليبيا) +text(埃及) text(was:a:neighbor:of) text(Israel) +text(Egypte) text(is:a:neighbor:of) text(苏丹) +text(बुल्गारिया) text(is:a:neighboring:state:to) text(North:Macedonia) +text(Bulgaria) text(was:a:neighboring:state:to) text(Turquía) +text(Bulgarije) text(borders:with) text(यूनान) +text(بلغاريا) text(borders) text(صربيا) +text(Bulgaria) text(is:butted:against) text(Rumania) +text(Guinee) text(was:localized:in) text(غرب:إفريقيا) +text(几内亚) text(is:localized:in) text(Africa) +text(Guinea) text(was:butted:against) text(Guinea-Bissau) +text(غينيا) text(was:adjacent:to) text(Sierra:Leone) +text(Guinea) text(is:adjacent:to) text(Mali) +text(गिनी) text(neighbors) text(Liberia) +text(Guinee) text(is:a:neighboring:country:of) text(Senegal) +text(几内亚) text(was:a:neighboring:country:of) text(Ivory:Coast) +text(إسبانيا) text(neighbors:with) text(मोरक्को) +text(Spanje) text(was:a:neighbor:of) text(جبل:طارق) +text(西班牙) text(is:a:neighbor:of) text(أندورا) +text(Spain) text(is:a:neighboring:state:to) text(فرنسا) +text(स्पेन) text(was:a:neighboring:state:to) text(葡萄牙) +text(कोस्टा:रीका) text(was:present:in) text(中美洲) +text(哥斯达黎加) text(is:present:in) text(أمريكتان) +text(Costa:Rica) text(borders:with) text(Panama) +text(Costa:Rica) text(borders) text(Nicaragua) +text(مالطا) text(is:still:in) text(أوروبا:الجنوبية) +text(माल्टा) text(was:still:in) text(Europe) +text(Portugal) text(was:currently:in) text(Zuid-Europa) +text(पुर्तगाल) text(is:currently:in) text(Europa) +text(Portugal) text(is:butted:against) text(España) +text(Romania) text(is:placed:in) text(पूर्वी:यूरोप) +text(रोमानिया) text(was:placed:in) text(欧洲) +text(Roemenië) text(was:butted:against) text(Ukraine) +text(رومانيا) text(was:adjacent:to) text(Hungría) +text(羅馬尼亞) text(is:adjacent:to) text(Moldova) +text(Rumania) text(neighbors) text(保加利亚) +text(Romania) text(is:a:neighboring:country:of) text(Serbia) +text(San:Marino) text(can:be:found:in) text(Europa:del:Sur) +text(San:Marino) text(was:situated:in) text(Europa) +text(圣马力诺) text(was:a:neighboring:country:of) text(Italy) +text(Mauritania) text(is:situated:in) text(West-Afrika) +text(मॉरीतानिया) text(is:located:in) text(Afrika) +text(毛里塔尼亞) text(neighbors:with) text(Argelia) +text(Mauritania) text(was:a:neighbor:of) text(مالي) +text(موريتانيا) text(is:a:neighbor:of) text(सहरावी:अरब:जनतांत्रिक:गणराज्य) +text(Mauritanië) text(is:a:neighboring:state:to) text(塞内加尔) +text(千里達及托巴哥) text(was:located:in) text(कैरिबिया) +text(Trinidad:and:Tobago) text(can:be:found:in) text(Americas) +text(巴林) text(was:positioned:in) text(西亚) +text(Bahrain) text(is:positioned:in) text(Asia) +text(緬甸) text(was:a:neighboring:state:to) text(الهند) +text(Birmania) text(borders:with) text(बांग्लादेश) +text(Myanmar) text(borders) text(People's:Republic:of:China) +text(म्यान्मार) text(is:butted:against) text(लाओस) +text(Myanmar) text(was:butted:against) text(Tailandia) +text(العراق) text(was:adjacent:to) text(土耳其) +text(इराक) text(is:adjacent:to) text(Arabia:Saudí) +text(Iraq) text(neighbors) text(Iran) +text(Irak) text(is:a:neighboring:country:of) text(Jordania) +text(Irak) text(was:a:neighboring:country:of) text(Kuwait) +text(伊拉克) text(neighbors:with) text(Siria) +text(南乔治亚和南桑威奇群岛) text(was:sited:in) text(दक्षिण:अमेरिका) +text(दक्षिण:जॉर्जिया:एवं:दक्षिण:सैंडविच:द्वीप:समूह) text(is:sited:in) text(美洲) +text(Iceland) text(was:localized:in) text(उत्तरी:यूरोप) +text(Islandia) text(is:localized:in) text(यूरोप) +text(कांगो:लोकतान्त्रिक:गणराज्य) text(was:present:in) text(मध्य:अफ्रीका) +text(Congo-Kinshasa) text(is:present:in) text(África) +text(Democratic:Republic:of:the:Congo) text(was:a:neighbor:of) text(Oeganda) +text(República:Democrática:del:Congo) text(is:a:neighbor:of) text(Tanzania) +text(刚果民主共和国) text(is:a:neighboring:state:to) text(República:del:Congo) +text(جمهورية:الكونغو:الديمقراطية) text(was:a:neighboring:state:to) text(Central:African:Republic) +text(कांगो:लोकतान्त्रिक:गणराज्य) text(borders:with) text(Angola) +text(Congo-Kinshasa) text(borders) text(卢旺达) +text(Democratic:Republic:of:the:Congo) text(is:butted:against) text(Zuid-Soedan) +text(República:Democrática:del:Congo) text(was:butted:against) text(زامبيا) +text(刚果民主共和国) text(was:adjacent:to) text(Burundi) +text(塞舌尔) text(is:still:in) text(पूर्वी:अफ्रीका) +text(سيشل) text(was:still:in) text(अफ्रीका) +text(吉尔吉斯斯坦) text(is:adjacent:to) text(Volksrepubliek:China) +text(Kyrgyzstan) text(neighbors) text(Kazachstan) +text(قرغيزستان) text(is:a:neighboring:country:of) text(Tayikistán) +text(किर्गिज़स्तान) text(was:a:neighboring:country:of) text(乌兹别克斯坦) +text(Botswana) text(was:currently:in) text(Zuidelijk:Afrika) +text(Botswana) text(is:currently:in) text(إفريقيا) +text(波札那) text(neighbors:with) text(津巴布韦) +text(बोत्सवाना) text(was:a:neighbor:of) text(纳米比亚) +text(Botsuana) text(is:a:neighbor:of) text(Zambia) +text(بوتسوانا) text(is:a:neighboring:state:to) text(Zuid-Afrika) +text(法罗群岛) text(is:placed:in) text(أوروبا:الشمالية) +text(Islas:Feroe) text(was:placed:in) text(أوروبا) +text(Jamaica) text(can:be:found:in) text(Caribe) +text(Jamaica) text(was:situated:in) text(महाअमेरिका) +text(ساموا:الأمريكية) text(is:situated:in) text(玻里尼西亞) +text(अमेरिकी:समोआ) text(is:located:in) text(ओशिआनिया) +text(莱索托) text(was:located:in) text(África:austral) +text(Lesotho) text(can:be:found:in) text(非洲) +text(ليسوتو) text(was:a:neighboring:state:to) text(جنوب:إفريقيا) +text(Sri:Lanka) text(borders:with) text(India) +text(بلجيكا) text(was:positioned:in) text(West-Europa) +text(Belgium) text(is:positioned:in) text(Europe) +text(België) text(borders) text(जर्मनी) +text(比利時) text(is:butted:against) text(Luxemburg) +text(बेल्जियम) text(was:butted:against) text(Francia) +text(Bélgica) text(was:adjacent:to) text(Países:Bajos) +text(قطر) text(was:sited:in) text(Zuidwest-Azië) +text(क़तर) text(is:sited:in) text(亞洲) +text(Catar) text(is:adjacent:to) text(Saoedi-Arabië) +text(Islas:Salomón) text(was:localized:in) text(Melanesië) +text(Salomonseilanden) text(is:localized:in) text(أوقيانوسيا) +text(सीरिया) text(was:present:in) text(Asia:Occidental) +text(敘利亞) text(is:present:in) text(آسيا) +text(Syrië) text(neighbors) text(以色列) +text(سوريا) text(is:a:neighboring:country:of) text(Turkije) +text(Syria) text(was:a:neighboring:country:of) text(الأردن) +text(Siria) text(neighbors:with) text(लेबनॉन) +text(सीरिया) text(was:a:neighbor:of) text(العراق) +text(भारत) text(is:still:in) text(South:Asia) +text(印度) text(was:still:in) text(एशिया) +text(India) text(is:a:neighbor:of) text(अफ़्ग़ानिस्तान) +text(India) text(is:a:neighboring:state:to) text(Bután) +text(الهند) text(was:a:neighboring:state:to) text(Bangladesh) +text(India) text(borders:with) text(中华人民共和国) +text(भारत) text(borders) text(Nepal) +text(印度) text(is:butted:against) text(ميانمار) +text(India) text(was:butted:against) text(باكستان) +text(India) text(was:adjacent:to) text(Sri:Lanka) +text(Marruecos) text(is:adjacent:to) text(अल्जीरिया) +text(المغرب) text(neighbors) text(إسبانيا) +text(摩洛哥) text(is:a:neighboring:country:of) text(República:Árabe:Saharaui:Democrática) +text(Kenya) text(was:currently:in) text(东部非洲) +text(肯尼亚) text(is:currently:in) text(Africa) +text(كينيا) text(was:a:neighboring:country:of) text(युगाण्डा) +text(Kenia) text(neighbors:with) text(تنزانيا) +text(कीनिया) text(was:a:neighbor:of) text(الصومال) +text(Kenia) text(is:a:neighbor:of) text(南蘇丹) +text(Kenya) text(is:a:neighboring:state:to) text(इथियोपिया) +text(South:Sudan) text(is:placed:in) text(وسط:إفريقيا) +text(Sudán:del:Sur) text(was:placed:in) text(Afrika) +text(جنوب:السودان) text(was:a:neighboring:state:to) text(Uganda) +text(दक्षिण:सूडान) text(borders:with) text(جمهورية:الكونغو:الديمقراطية) +text(Zuid-Soedan) text(borders) text(肯尼亚) +text(南蘇丹) text(is:butted:against) text(جمهورية:إفريقيا:الوسطى) +text(South:Sudan) text(was:butted:against) text(Sudán) +text(Sudán:del:Sur) text(was:adjacent:to) text(埃塞俄比亚) +text(घाना) text(is:adjacent:to) text(Burkina:Faso) +text(Ghana) text(neighbors) text(Costa:de:Marfil) +text(迦納) text(is:a:neighboring:country:of) text(Togo) +text(طاجيكستان) text(can:be:found:in) text(Asia:Central) +text(ताजीकिस्तान) text(was:situated:in) text(Asia) +text(塔吉克斯坦) text(was:a:neighboring:country:of) text(चीनी:जनवादी:गणराज्य) +text(Tadzjikistan) text(neighbors:with) text(Kirgizië) +text(Tajikistan) text(was:a:neighbor:of) text(أفغانستان) +text(Tayikistán) text(is:a:neighbor:of) text(Uzbekistan) +text(मार्शल:द्वीपसमूह) text(is:situated:in) text(密克羅尼西亞群島) +text(Marshalleilanden) text(is:located:in) text(Oceanía) +text(Cameroon) text(was:located:in) text(África:Central) +text(الكاميرون) text(can:be:found:in) text(África) +text(喀麦隆) text(is:a:neighboring:state:to) text(تشاد) +text(Kameroen) text(was:a:neighboring:state:to) text(Congo-Brazzaville) +text(कैमरुन) text(borders:with) text(Gabon) +text(Camerún) text(borders) text(भूमध्यरेखीय:गिनी) +text(Cameroon) text(is:butted:against) text(República:Centroafricana) +text(الكاميرون) text(was:butted:against) text(Nigeria) +text(Nauru) text(was:positioned:in) text(माइक्रोनीशिया) +text(瑙鲁) text(is:positioned:in) text(大洋洲) +text(泰國) text(was:adjacent:to) text(كمبوديا) +text(थाईलैंड) text(is:adjacent:to) text(緬甸) +text(Thailand) text(neighbors) text(老撾) +text(تايلاند) text(is:a:neighboring:country:of) text(Malaysia) +text(Sudan) text(was:a:neighboring:country:of) text(चाड) +text(Soedan) text(neighbors:with) text(लीबिया) +text(السودان) text(was:a:neighbor:of) text(جنوب:السودان) +text(सूडान) text(is:a:neighbor:of) text(Eritrea) +text(苏丹) text(is:a:neighboring:state:to) text(Centraal-Afrikaanse:Republiek) +text(Sudán) text(was:a:neighboring:state:to) text(مصر) +text(Sudan) text(borders:with) text(Etiopía) +text(乍得) text(was:sited:in) text(Centraal-Afrika) +text(Chad) text(is:sited:in) text(अफ्रीका) +text(Chad) text(borders) text(Libië) +text(Tsjaad) text(is:butted:against) text(नाइजर) +text(تشاد) text(was:butted:against) text(दक्षिण:सूडान) +text(चाड) text(was:adjacent:to) text(喀麦隆) +text(乍得) text(is:adjacent:to) text(मध्य:अफ़्रीकी:गणराज्य) +text(Chad) text(neighbors) text(奈及利亞) +text(萬那杜) text(was:localized:in) text(Melanesia) +text(Vanuatu) text(is:localized:in) text(Oceanië) +text(الرأس:الأخضر) text(was:present:in) text(पश्चिमी:अफ्रीका) +text(Kaapverdië) text(is:present:in) text(إفريقيا) +text(福克蘭群島) text(is:still:in) text(Zuid-Amerika) +text(Islas:Malvinas) text(was:still:in) text(Amerika) +text(利比里亞) text(was:currently:in) text(西非) +text(Liberia) text(is:currently:in) text(非洲) +text(लाइबेरिया) text(is:a:neighboring:country:of) text(कोत:दिव्वार) +text(ليبيريا) text(was:a:neighboring:country:of) text(塞拉利昂) +text(Liberia) text(neighbors:with) text(Guinea) +text(कम्बोडिया) text(is:placed:in) text(दक्षिण:पूर्व:एशिया) +text(Camboya) text(was:placed:in) text(Azië) +text(Cambodja) text(was:a:neighbor:of) text(Vietnam) +text(Cambodia) text(is:a:neighbor:of) text(Thailand) +text(柬埔寨) text(is:a:neighboring:state:to) text(Laos) +text(Zimbabwe) text(was:a:neighboring:state:to) text(ज़ाम्बिया) +text(ज़िम्बाब्वे) text(borders:with) text(दक्षिण:अफ़्रीका) +text(Zimbabue) text(borders) text(Botswana) +text(Zimbabwe) text(is:butted:against) text(莫桑比克) +text(कोमोरोस) text(can:be:found:in) text(East:Africa) +text(Comoras) text(was:situated:in) text(Africa) +text(關島) text(is:situated:in) text(ميكرونيسيا) +text(Guam) text(is:located:in) text(Oceania) +text(बहामास) text(was:located:in) text(Caribbean) +text(The:Bahamas) text(can:be:found:in) text(América) +text(Lebanon) text(was:positioned:in) text(West:Asia) +text(Líbano) text(is:positioned:in) text(Asia) +text(لبنان) text(was:butted:against) text(Israël) +text(Libanon) text(was:adjacent:to) text(敘利亞) +text(Saint:Martin) text(was:sited:in) text(الكاريبي) +text(सेंट:मार्टिन) text(is:sited:in) text(أمريكتان) +text(圣马丁岛) text(is:adjacent:to) text(San:Martín) +text(Ethiopia) text(was:localized:in) text(África:Oriental) +text(إثيوبيا) text(is:localized:in) text(Afrika) +text(Ethiopië) text(neighbors) text(Somalia) +text(इथियोपिया) text(is:a:neighboring:country:of) text(كينيا) +text(埃塞俄比亚) text(was:a:neighboring:country:of) text(Eritrea) +text(Etiopía) text(neighbors:with) text(Zuid-Soedan) +text(Ethiopia) text(was:a:neighbor:of) text(Djibouti) +text(إثيوبيا) text(is:a:neighbor:of) text(Soedan) +text(Amerikaanse:Maagdeneilanden) text(was:present:in) text(加勒比地区) +text(美屬維爾京群島) text(is:present:in) text(Americas) +text(गिनी-बिसाऊ) text(is:still:in) text(West:Africa) +text(Guinee-Bissau) text(was:still:in) text(África) +text(畿內亞比紹) text(is:a:neighboring:state:to) text(غينيا) +text(غينيا:بيساو) text(was:a:neighboring:state:to) text(السنغال) +text(Libya) text(was:currently:in) text(North:Africa) +text(利比亞) text(is:currently:in) text(अफ्रीका) +text(Libia) text(borders:with) text(Chad) +text(ليبيا) text(borders) text(Túnez) +text(लीबिया) text(is:butted:against) text(النيجر) +text(Libië) text(was:butted:against) text(الجزائر) +text(Libya) text(was:adjacent:to) text(Egypt) +text(利比亞) text(is:adjacent:to) text(السودان) +text(भूटान) text(is:placed:in) text(جنوب:آسيا) +text(بوتان) text(was:placed:in) text(亞洲) +text(Bhutan) text(neighbors) text(República:Popular:China) +text(不丹) text(is:a:neighboring:country:of) text(الهند) +text(ماكاو) text(can:be:found:in) text(شرق:آسيا) +text(Macao) text(was:situated:in) text(آسيا) +text(澳門) text(was:a:neighboring:country:of) text(الصين) +text(法屬玻里尼西亞) text(is:situated:in) text(بولنيزيا) +text(French:Polynesia) text(is:located:in) text(ओशिआनिया) +text(Somalië) text(was:located:in) text(شرق:إفريقيا) +text(索馬里) text(can:be:found:in) text(إفريقيا) +text(Somalia) text(neighbors:with) text(Yibuti) +text(सोमालिया) text(was:a:neighbor:of) text(Kenia) +text(الصومال) text(is:a:neighbor:of) text(Ethiopië) +text(Saint:Barthélemy) text(was:positioned:in) text(Caraïben) +text(聖巴泰勒米) text(is:positioned:in) text(美洲) +text(Rusia) text(was:sited:in) text(Europa:Oriental) +text(Russia) text(is:sited:in) text(Europa) +text(Rusland) text(is:a:neighboring:state:to) text(युक्रेन) +text(रूस) text(was:a:neighboring:state:to) text(Wit-Rusland) +text(روسيا) text(borders:with) text(People's:Republic:of:China) +text(俄罗斯) text(borders) text(哈萨克斯坦) +text(Rusia) text(is:butted:against) text(Noruega) +text(Russia) text(was:butted:against) text(पोलैंड) +text(Rusland) text(was:adjacent:to) text(Azerbaiyán) +text(रूस) text(is:adjacent:to) text(Lithuania) +text(روسيا) text(neighbors) text(إستونيا) +text(俄罗斯) text(is:a:neighboring:country:of) text(North:Korea) +text(Rusia) text(was:a:neighboring:country:of) text(फ़िनलैण्ड) +text(Russia) text(neighbors:with) text(Mongolië) +text(Rusland) text(was:a:neighbor:of) text(Letonia) +text(रूस) text(is:a:neighbor:of) text(جورجيا) +text(Nieuw-Zeeland) text(was:localized:in) text(nan) +text(Nueva:Zelanda) text(is:localized:in) text(أوقيانوسيا) +text(पनामा) text(was:present:in) text(Centraal-Amerika) +text(بنما) text(is:present:in) text(महाअमेरिका) +text(Panamá) text(is:a:neighboring:state:to) text(كوستاريكا) +text(巴拿馬) text(was:a:neighboring:state:to) text(كولومبيا) +text(Papúa:Nueva:Guinea) text(is:still:in) text(Melanesia) +text(पापुआ:न्यू:गिनी) text(was:still:in) text(Oceanía) +text(بابوا:غينيا:الجديدة) text(borders:with) text(Indonesia) +text(朝鮮民主主義人民共和國) text(borders) text(Volksrepubliek:China) +text(उत्तर:कोरिया) text(is:butted:against) text(Zuid-Korea) +text(Noord-Korea) text(was:butted:against) text(روسيا) +text(拉脫維亞) text(was:currently:in) text(北歐) +text(لاتفيا) text(is:currently:in) text(欧洲) +text(Letland) text(was:adjacent:to) text(Lituania) +text(लातविया) text(is:adjacent:to) text(بيلاروس) +text(Latvia) text(neighbors) text(俄罗斯) +text(Letonia) text(is:a:neighboring:country:of) text(愛沙尼亞) +text(Oman) text(is:placed:in) text(غرب:آسيا) +text(ओमान) text(was:placed:in) text(एशिया) +text(سلطنة:عمان) text(was:a:neighboring:country:of) text(السعودية) +text(阿曼) text(neighbors:with) text(اليمن) +text(Oman) text(was:a:neighbor:of) text(Emiratos:Árabes:Unidos) +text(圣皮埃尔和密克隆) text(can:be:found:in) text(North:America) +text(सन्त:पियर:और:मिकलान) text(was:situated:in) text(Amerika) +text(馬提尼克) text(is:situated:in) text(कैरिबिया) +text(मार्टीनिक) text(is:located:in) text(América) +text(المملكة:المتحدة) text(was:located:in) text(Northern:Europe) +text(United:Kingdom) text(can:be:found:in) text(Europa) +text(英国) text(is:a:neighbor:of) text(United:Kingdom) +text(इज़राइल) text(was:positioned:in) text(पश्चिमी:एशिया) +text(إسرائيل) text(is:positioned:in) text(Asia) +text(Israel) text(is:a:neighboring:state:to) text(黎巴嫩) +text(Israel) text(was:a:neighboring:state:to) text(मिस्र) +text(以色列) text(borders:with) text(Jordan) +text(Israël) text(borders) text(Syrië) +text(澤西) text(was:sited:in) text(Europa:del:Norte) +text(Jersey) text(is:sited:in) text(यूरोप) +text(पिटकेर्न:द्वीपसमूह) text(was:localized:in) text(पोलीनेशिया) +text(جزر:بيتكيرن) text(is:localized:in) text(大洋洲) +text(Togo) text(was:present:in) text(África:Occidental) +text(توغو) text(is:present:in) text(非洲) +text(Togo) text(is:butted:against) text(布吉納法索) +text(टोगो) text(was:butted:against) text(غانا) +text(多哥) text(was:adjacent:to) text(Benin) +text(كيريباتي) text(is:still:in) text(Micronesia) +text(किरिबाती) text(was:still:in) text(Oceanië) +text(伊朗) text(was:currently:in) text(南亚) +text(إيران) text(is:currently:in) text(Azië) +text(Irán) text(is:adjacent:to) text(Afghanistan) +text(Iran) text(neighbors) text(Turkmenistán) +text(ईरान) text(is:a:neighboring:country:of) text(Turkey) +text(Iran) text(was:a:neighboring:country:of) text(亞美尼亞) +text(伊朗) text(neighbors:with) text(Azerbaijan) +text(إيران) text(was:a:neighbor:of) text(पाकिस्तान) +text(Irán) text(is:a:neighbor:of) text(इराक) +text(सेंट:मार्टिन:की:सामूहिकता) text(is:placed:in) text(Caribe) +text(Sint-Maarten) text(was:placed:in) text(أمريكتان) +text(法屬聖馬丁) text(is:a:neighboring:state:to) text(San:Martín) +text(多明尼加) text(can:be:found:in) text(Caribbean) +text(Dominicaanse:Republiek) text(was:situated:in) text(Americas) +text(Dominican:Republic) text(was:a:neighboring:state:to) text(Haiti) +text(الدنمارك) text(borders:with) text(Germany) +text(Bermudas) text(is:situated:in) text(北美洲) +text(百慕大) text(is:located:in) text(美洲) +text(Chile) text(borders) text(Argentinië) +text(تشيلي) text(is:butted:against) text(Bolivia) +text(Chile) text(was:butted:against) text(Perú) +text(كوسوفو) text(was:located:in) text(Oost-Europa) +text(Kosovo) text(can:be:found:in) text(أوروبا) +text(科索沃) text(was:adjacent:to) text(塞爾維亞) +text(Kosovo) text(is:adjacent:to) text(Albania) +text(कोसोवो:गणराज्य) text(neighbors) text(مقدونيا:الشمالية) +text(Kosovo) text(is:a:neighboring:country:of) text(मॉन्टेनीग्रो) +text(سانت:كيتس:ونيفيس) text(was:positioned:in) text(الكاريبي) +text(San:Cristóbal:y:Nieves) text(is:positioned:in) text(महाअमेरिका) +text(Eritrea) text(was:a:neighboring:country:of) text(جيبوتي) +text(इरित्रिया) text(neighbors:with) text(सूडान) +text(إرتريا) text(was:a:neighbor:of) text(इथियोपिया) +text(赤道几内亚) text(was:sited:in) text(中部非洲) +text(غينيا:الاستوائية) text(is:sited:in) text(Africa) +text(Equatorial:Guinea) text(is:a:neighbor:of) text(加蓬) +text(Equatoriaal-Guinea) text(is:a:neighboring:state:to) text(Kameroen) +text(Níger) text(was:localized:in) text(غرب:إفريقيا) +text(Niger) text(is:localized:in) text(Afrika) +text(Niger) text(was:a:neighboring:state:to) text(Tsjaad) +text(尼日尔) text(borders:with) text(Libia) +text(नाइजर) text(borders) text(बुर्किना:फासो) +text(النيجر) text(is:butted:against) text(बेनिन) +text(Níger) text(was:butted:against) text(माली) +text(Niger) text(was:adjacent:to) text(阿爾及利亞) +text(Niger) text(is:adjacent:to) text(नाइजीरिया) +text(Anguilla) text(was:present:in) text(加勒比地区) +text(Anguila) text(is:present:in) text(Amerika) +text(Rwanda) text(is:still:in) text(Oost-Afrika) +text(Rwanda) text(was:still:in) text(África) +text(रवाण्डा) text(neighbors) text(बुरुण्डी) +text(رواندا) text(is:a:neighboring:country:of) text(Tanzania) +text(Ruanda) text(was:a:neighboring:country:of) text(烏干達) +text(卢旺达) text(neighbors:with) text(कांगो:लोकतान्त्रिक:गणराज्य) +text(الإمارات:العربية:المتحدة) text(was:currently:in) text(西亚) +text(阿拉伯联合酋长国) text(is:currently:in) text(Asia) +text(संयुक्त:अरब:अमीरात) text(was:a:neighbor:of) text(Omán) +text(Verenigde:Arabische:Emiraten) text(is:a:neighbor:of) text(沙特阿拉伯) +text(Estonia) text(is:placed:in) text(Noord-Europa) +text(एस्टोनिया) text(was:placed:in) text(Europe) +text(Estonia) text(is:a:neighboring:state:to) text(拉脫維亞) +text(Estland) text(was:a:neighboring:state:to) text(Rusia) +text(Greece) text(can:be:found:in) text(दक्षिणी:यूरोप) +text(希腊) text(was:situated:in) text(Europa) +text(Griekenland) text(borders:with) text(बुल्गारिया) +text(Grecia) text(borders) text(Albania) +text(اليونان) text(is:butted:against) text(उत्तर:मैसिडोनिया) +text(यूनान) text(was:butted:against) text(تركيا) +text(Senegal) text(is:situated:in) text(West-Afrika) +text(Senegal) text(is:located:in) text(अफ्रीका) +text(सेनेगल) text(was:adjacent:to) text(Guinea-Bisáu) +text(Senegal) text(is:adjacent:to) text(Mauritania) +text(塞内加尔) text(neighbors) text(Mali) +text(السنغال) text(is:a:neighboring:country:of) text(岡比亞) +text(Senegal) text(was:a:neighboring:country:of) text(Guinea) +text(गुआदेलूप) text(was:located:in) text(Caraïben) +text(Guadeloupe) text(can:be:found:in) text(América) +text(Monaco) text(neighbors:with) text(法國) +text(Djibouti) text(was:a:neighbor:of) text(厄立特里亞) +text(जिबूती) text(is:a:neighbor:of) text(Somalia) +text(吉布提) text(is:a:neighboring:state:to) text(埃塞俄比亚) +text(इंडोनेशिया) text(was:a:neighboring:state:to) text(Papoea-Nieuw-Guinea) +text(إندونيسيا) text(borders:with) text(東帝汶) +text(Indonesië) text(borders) text(Malasia) +text(Islas:Vírgenes:Británicas) text(was:positioned:in) text(कैरिबिया) +text(Britse:Maagdeneilanden) text(is:positioned:in) text(أمريكتان) +text(库克群岛) text(was:sited:in) text(Polynesia) +text(Cook:Islands) text(is:sited:in) text(Oceania) +text(أوغندا) text(was:localized:in) text(पूर्वी:अफ्रीका) +text(Uganda) text(is:localized:in) text(إفريقيا) +text(Oeganda) text(is:butted:against) text(Tanzania) +text(युगाण्डा) text(was:butted:against) text(Congo-Kinshasa) +text(Uganda) text(was:adjacent:to) text(कीनिया) +text(烏干達) text(is:adjacent:to) text(南蘇丹) +text(أوغندا) text(neighbors) text(Rwanda) +text(Noord-Macedonië) text(was:present:in) text(南欧) +text(北马其顿) text(is:present:in) text(欧洲) +text(Macedonia:del:Norte) text(is:a:neighboring:country:of) text(كوسوفو) +text(North:Macedonia) text(was:a:neighboring:country:of) text(Greece) +text(مقدونيا:الشمالية) text(neighbors:with) text(अल्बानिया) +text(उत्तर:मैसिडोनिया) text(was:a:neighbor:of) text(Servië) +text(Noord-Macedonië) text(is:a:neighbor:of) text(Bulgaria) +text(ट्यूनिशिया) text(is:still:in) text(Noord-Afrika) +text(突尼西亞) text(was:still:in) text(非洲) +text(Tunesië) text(is:a:neighboring:state:to) text(ليبيا) +text(Tunisia) text(was:a:neighboring:state:to) text(Algerije) +text(الإكوادور) text(borders:with) text(पेरू) +text(Ecuador) text(borders) text(Colombia) +text(Brasil) text(was:currently:in) text(南美洲) +text(Brazilië) text(is:currently:in) text(Americas) +text(Brazil) text(is:butted:against) text(玻利維亞) +text(ब्राज़ील) text(was:butted:against) text(कोलम्बिया) +text(البرازيل) text(was:adjacent:to) text(巴拉圭) +text(巴西) text(is:adjacent:to) text(Uruguay) +text(Brasil) text(neighbors) text(غويانا:الفرنسية) +text(Brazilië) text(is:a:neighboring:country:of) text(Suriname) +text(Brazil) text(was:a:neighboring:country:of) text(वेनेज़ुएला) +text(ब्राज़ील) text(neighbors:with) text(अर्जेण्टीना) +text(البرازيل) text(was:a:neighbor:of) text(غيانا) +text(巴西) text(is:a:neighbor:of) text(Peru) +text(Paraguay) text(is:placed:in) text(América:del:Sur) +text(पैराग्वे) text(was:placed:in) text(美洲) +text(Paraguay) text(is:a:neighboring:state:to) text(الأرجنتين) +text(Paraguay) text(was:a:neighboring:state:to) text(Brasil) +text(باراغواي) text(borders:with) text(बोलिविया) +text(فنلندا) text(can:be:found:in) text(उत्तरी:यूरोप) +text(Finlandia) text(was:situated:in) text(Europa) +text(Finland) text(borders) text(Noorwegen) +text(芬蘭) text(is:butted:against) text(स्वीडन) +text(Finland) text(was:butted:against) text(Russia) +text(Jordanië) text(was:adjacent:to) text(Saudi:Arabia) +text(जॉर्डन) text(is:adjacent:to) text(इज़राइल) +text(約旦) text(neighbors) text(Iraq) +text(Jordania) text(is:a:neighboring:country:of) text(سوريا) +text(تيمور:الشرقية) text(was:a:neighboring:country:of) text(印度尼西亚) +text(Montenegro) text(is:situated:in) text(Southern:Europe) +text(Montenegro) text(is:located:in) text(यूरोप) +text(الجبل:الأسود) text(neighbors:with) text(Kosovo) +text(Montenegro) text(was:a:neighbor:of) text(البوسنة:والهرسك) +text(蒙特內哥羅) text(is:a:neighbor:of) text(Kroatië) +text(मॉन्टेनीग्रो) text(is:a:neighboring:state:to) text(Serbia) +text(Montenegro) text(was:a:neighboring:state:to) text(ألبانيا) +text(秘鲁) text(was:located:in) text(South:America) +text(بيرو) text(can:be:found:in) text(महाअमेरिका) +text(Peru) text(borders:with) text(Ecuador) +text(Perú) text(borders) text(بوليفيا) +text(पेरू) text(is:butted:against) text(चिली) +text(Peru) text(was:butted:against) text(Brazilië) +text(秘鲁) text(was:adjacent:to) text(哥伦比亚) +text(مونتسيرات) text(was:positioned:in) text(Caribe) +text(Montserrat) text(is:positioned:in) text(Amerika) +text(Oekraïne) text(was:sited:in) text(أوروبا:الشرقية) +text(أوكرانيا) text(is:sited:in) text(أوروبا) +text(烏克蘭) text(is:adjacent:to) text(स्लोवाकिया) +text(Ucrania) text(neighbors) text(बेलारूस) +text(Ukraine) text(is:a:neighboring:country:of) text(Polen) +text(युक्रेन) text(was:a:neighboring:country:of) text(Rusland) +text(Oekraïne) text(neighbors:with) text(المجر) +text(أوكرانيا) text(was:a:neighbor:of) text(摩爾多瓦) +text(烏克蘭) text(is:a:neighbor:of) text(रोमानिया) +text(Dominica) text(was:localized:in) text(Caribbean) +text(多米尼克) text(is:localized:in) text(América) +text(تركمانستان) text(is:a:neighboring:state:to) text(كازاخستان) +text(तुर्कमेनिस्तान) text(was:a:neighboring:state:to) text(阿富汗) +text(土庫曼斯坦) text(borders:with) text(أوزبكستان) +text(Turkmenistan) text(borders) text(Iran) +text(ग्वेर्नसे) text(was:present:in) text(أوروبا:الشمالية) +text(Guernsey) text(is:present:in) text(Europe) +text(Gibraltar) text(is:still:in) text(أوروبا:الجنوبية) +text(Gibraltar) text(was:still:in) text(Europa) +text(直布羅陀) text(is:butted:against) text(Spanje) +text(स्विट्ज़रलैण्ड) text(was:currently:in) text(西欧) +text(瑞士) text(is:currently:in) text(欧洲) +text(Zwitserland) text(was:butted:against) text(Duitsland) +text(سويسرا) text(was:adjacent:to) text(Italië) +text(Suiza) text(is:adjacent:to) text(النمسا) +text(Switzerland) text(neighbors) text(फ़्रान्स) +text(स्विट्ज़रलैण्ड) text(is:a:neighboring:country:of) text(列支敦斯登) +text(ऑस्ट्रिया) text(is:placed:in) text(Europa:Occidental) +text(Oostenrijk) text(was:placed:in) text(Europa) +text(Austria) text(was:a:neighboring:country:of) text(Alemania) +text(奧地利) text(neighbors:with) text(Eslovaquia) +text(Austria) text(was:a:neighbor:of) text(سلوفينيا) +text(النمسا) text(is:a:neighbor:of) text(Italia) +text(ऑस्ट्रिया) text(is:a:neighboring:state:to) text(瑞士) +text(Oostenrijk) text(was:a:neighboring:state:to) text(Hungary) +text(Austria) text(borders:with) text(Liechtenstein) +text(奧地利) text(borders) text(República:Checa) +text(匈牙利) text(is:butted:against) text(Ucrania) +text(हंगरी) text(was:butted:against) text(Slovakia) +text(Hongarije) text(was:adjacent:to) text(斯洛文尼亞) +text(Hungría) text(is:adjacent:to) text(Croatia) +text(المجر) text(neighbors) text(Austria) +text(Hungary) text(is:a:neighboring:country:of) text(सर्बिया) +text(匈牙利) text(was:a:neighboring:country:of) text(Roemenië) +text(馬拉威) text(can:be:found:in) text(东部非洲) +text(Malaui) text(was:situated:in) text(Africa) +text(Malawi) text(neighbors:with) text(贊比亞) +text(مالاوي) text(was:a:neighbor:of) text(坦桑尼亞) +text(मलावी) text(is:a:neighbor:of) text(Mozambique) +text(Hong:Kong) text(is:a:neighboring:state:to) text(中华人民共和国) +text(Liechtenstein) text(is:situated:in) text(पश्चिमी:यूरोप) +text(Liechtenstein) text(is:located:in) text(यूरोप) +text(ليختنشتاين) text(was:a:neighboring:state:to) text(Zwitserland) +text(लिक्टेन्स्टाइन) text(borders:with) text(النمسا) +text(बारबाडोस) text(was:located:in) text(الكاريبي) +text(باربادوس) text(can:be:found:in) text(أمريكتان) +text(जॉर्जिया) text(was:positioned:in) text(Zuidwest-Azië) +text(Georgia) text(is:positioned:in) text(亞洲) +text(格鲁吉亚) text(borders) text(أرمينيا) +text(Georgië) text(is:butted:against) text(Azerbeidzjan) +text(Georgia) text(was:butted:against) text(रूस) +text(جورجيا) text(was:adjacent:to) text(तुर्की) +text(Albanië) text(was:sited:in) text(Zuid-Europa) +text(阿爾巴尼亞) text(is:sited:in) text(أوروبا) +text(Albania) text(is:adjacent:to) text(Montenegro) +text(Albania) text(neighbors) text(北马其顿) +text(अल्बानिया) text(is:a:neighboring:country:of) text(科索沃) +text(ألبانيا) text(was:a:neighboring:country:of) text(希腊) +text(科威特) text(was:localized:in) text(Asia:Occidental) +text(الكويت) text(is:localized:in) text(آسيا) +text(Koeweit) text(neighbors:with) text(सउदी:अरब) +text(Kuwait) text(was:a:neighbor:of) text(Irak) +text(南非) text(was:present:in) text(إفريقيا:الجنوبية) +text(South:Africa) text(is:present:in) text(Afrika) +text(Sudáfrica) text(is:a:neighbor:of) text(Mozambique) +text(Zuid-Afrika) text(is:a:neighboring:state:to) text(Botswana) +text(جنوب:إفريقيا) text(was:a:neighboring:state:to) text(إسواتيني) +text(दक्षिण:अफ़्रीका) text(borders:with) text(زيمبابوي) +text(南非) text(borders) text(Namibië) +text(South:Africa) text(is:butted:against) text(Lesotho) +text(هايتي) text(is:still:in) text(加勒比地区) +text(हैती) text(was:still:in) text(Americas) +text(Haïti) text(was:butted:against) text(جمهورية:الدومينيكان) +text(Afganistán) text(was:currently:in) text(दक्षिण:एशिया) +text(Afghanistan) text(is:currently:in) text(एशिया) +text(अफ़्ग़ानिस्तान) text(was:adjacent:to) text(Turkmenistan) +text(أفغانستان) text(is:adjacent:to) text(चीनी:जनवादी:गणराज्य) +text(Afghanistan) text(neighbors) text(طاجيكستان) +text(阿富汗) text(is:a:neighboring:country:of) text(Oezbekistan) +text(Afganistán) text(was:a:neighboring:country:of) text(ईरान) +text(Afghanistan) text(neighbors:with) text(Pakistan) +text(सिंगापुर) text(is:placed:in) text(Southeast:Asia) +text(Singapore) text(was:placed:in) text(Asia) +text(貝南) text(can:be:found:in) text(पश्चिमी:अफ्रीका) +text(Benin) text(was:situated:in) text(África) +text(بنين) text(was:a:neighbor:of) text(尼日尔) +text(Benín) text(is:a:neighbor:of) text(بوركينا:فاسو) +text(Benin) text(is:a:neighboring:state:to) text(Togo) +text(बेनिन) text(was:a:neighboring:state:to) text(Nigeria) +text(ऑलैण्ड:द्वीपसमूह) text(is:situated:in) text(北歐) +text(Åland) text(is:located:in) text(Europe) +text(Croacia) text(was:located:in) text(Europa:del:Sur) +text(克羅地亞) text(can:be:found:in) text(Europa) +text(क्रोएशिया) text(borders:with) text(स्लोवेनिया) +text(كرواتيا) text(borders) text(Bosnia:y:Herzegovina) +text(Kroatië) text(is:butted:against) text(हंगरी) +text(Croatia) text(was:butted:against) text(صربيا) +text(Croacia) text(was:adjacent:to) text(الجبل:الأسود) +text(Zweden) text(was:positioned:in) text(Northern:Europe) +text(Sweden) text(is:positioned:in) text(欧洲) +text(السويد) text(is:adjacent:to) text(नॉर्वे) +text(瑞典) text(neighbors) text(फ़िनलैण्ड) +text(मेक्सिको) text(is:a:neighboring:country:of) text(Belize) +text(墨西哥) text(was:a:neighboring:country:of) text(Estados:Unidos) +text(المكسيك) text(neighbors:with) text(غواتيمالا) +text(格陵兰) text(was:sited:in) text(Noord-Amerika) +text(جرينلاند) text(is:sited:in) text(美洲) +text(皮特凯恩群岛) text(was:localized:in) text(nan) +text(पिटकेर्न:द्वीपसमूह) text(is:localized:in) text(ओशिआनिया) +text(Nepal) text(was:present:in) text(Asia:del:Sur) +text(नेपाल) text(is:present:in) text(Azië) +text(نيبال) text(was:a:neighbor:of) text(República:Popular:China) +text(Nepal) text(is:a:neighbor:of) text(India) +text(Guatemala) text(is:a:neighboring:state:to) text(बेलीज़) +text(危地马拉) text(was:a:neighboring:state:to) text(薩爾瓦多) +text(Guatemala) text(borders:with) text(Mexico) +text(Guatemala) text(borders) text(洪都拉斯) +text(South:Korea) text(is:still:in) text(Oost-Azië) +text(كوريا:الجنوبية) text(was:still:in) text(Asia) +text(大韩民国) text(is:butted:against) text(كوريا:الشمالية) +text(Moldavië) text(was:currently:in) text(东欧) +text(Moldavia) text(is:currently:in) text(Europa) +text(مولدوفا) text(was:butted:against) text(Ukraine) +text(मोल्डोवा) text(was:adjacent:to) text(رومانيا) +text(Mauritius) text(is:placed:in) text(East:Africa) +text(Mauritius) text(was:placed:in) text(अफ्रीका) +text(白俄羅斯) text(is:adjacent:to) text(युक्रेन) +text(Belarus) text(neighbors) text(波蘭) +text(Bielorrusia) text(is:a:neighboring:country:of) text(Litouwen) +text(Wit-Rusland) text(was:a:neighboring:country:of) text(روسيا) +text(بيلاروس) text(neighbors:with) text(لاتفيا) +text(Bangladesh) text(was:a:neighbor:of) text(Birmania) +text(孟加拉國) text(is:a:neighbor:of) text(भारत) +text(Maleisië) text(can:be:found:in) text(Zuidoost-Azië) +text(ماليزيا) text(was:situated:in) text(亞洲) +text(馬來西亞) text(is:a:neighboring:state:to) text(Tailandia) +text(मलेशिया) text(was:a:neighboring:state:to) text(Indonesia) +text(Malaysia) text(borders:with) text(Brunei) +text(波斯尼亚和黑塞哥维那) text(is:situated:in) text(दक्षिणी:यूरोप) +text(Bosnië:en:Herzegovina) text(is:located:in) text(यूरोप) +text(बोस्निया:और:हर्ज़ेगोविना) text(borders) text(Serbia) +text(Bosnia:and:Herzegovina) text(is:butted:against) text(克羅地亞) +text(البوسنة:والهرسك) text(was:butted:against) text(Montenegro) +text(卢森堡) text(was:located:in) text(Western:Europe) +text(Luxemburgo) text(can:be:found:in) text(أوروبا) +text(لوكسمبورغ) text(was:adjacent:to) text(德國) +text(लक्ज़मबर्ग) text(is:adjacent:to) text(بلجيكا) +text(Luxembourg) text(neighbors) text(France) +text(意大利) text(was:positioned:in) text(南欧) +text(इटली) text(is:positioned:in) text(Europe) +text(إيطاليا) text(is:a:neighboring:country:of) text(Eslovenia) +text(Italy) text(was:a:neighboring:country:of) text(سويسرا) +text(Italië) text(neighbors:with) text(ऑस्ट्रिया) +text(Italia) text(was:a:neighbor:of) text(Frankrijk) +text(意大利) text(is:a:neighbor:of) text(वैटिकन:नगर) +text(इटली) text(is:a:neighboring:state:to) text(San:Marino) +text(أذربيجان) text(was:sited:in) text(West:Asia) +text(अज़रबैजान) text(is:sited:in) text(آسيا) +text(阿塞拜疆) text(was:a:neighboring:state:to) text(Turquía) +text(Azerbaiyán) text(borders:with) text(Armenia) +text(Azerbaijan) text(borders) text(俄罗斯) +text(Azerbeidzjan) text(is:butted:against) text(Iran) +text(أذربيجان) text(was:butted:against) text(जॉर्जिया) +text(हॉण्डुरस) text(was:localized:in) text(Central:America) +text(Honduras) text(is:localized:in) text(महाअमेरिका) +text(هندوراس) text(was:adjacent:to) text(ग्वाटेमाला) +text(Honduras) text(is:adjacent:to) text(尼加拉瓜) +text(Honduras) text(neighbors) text(El:Salvador) +text(Mali) text(was:present:in) text(西非) +text(马里) text(is:present:in) text(إفريقيا) +text(Mali) text(is:a:neighboring:country:of) text(Burkina:Faso) +text(مالي) text(was:a:neighboring:country:of) text(गिनी) +text(माली) text(neighbors:with) text(मॉरीतानिया) +text(Mali) text(was:a:neighbor:of) text(नाइजर) +text(Mali) text(is:a:neighbor:of) text(Senegal) +text(马里) text(is:a:neighboring:state:to) text(Algeria) +text(Mali) text(was:a:neighboring:state:to) text(科特迪瓦) +text(中華民國) text(is:still:in) text(पूर्वी:एशिया) +text(Taiwan) text(was:still:in) text(एशिया) +text(Argelia) text(was:currently:in) text(Norte:de:África) +text(अल्जीरिया) text(is:currently:in) text(非洲) +text(الجزائر) text(borders:with) text(लीबिया) +text(阿爾及利亞) text(borders) text(تونس) +text(Algerije) text(is:butted:against) text(毛里塔尼亞) +text(Algeria) text(was:butted:against) text(Marokko) +text(Argelia) text(was:adjacent:to) text(النيجر) +text(अल्जीरिया) text(is:adjacent:to) text(مالي) +text(الجزائر) text(neighbors) text(Sahrawi:Arab:Democratic:Republic) +text(Frans-Guyana) text(is:a:neighboring:country:of) text(Brazil) +text(फ़्रान्सीसी:गुयाना) text(was:a:neighboring:country:of) text(سورينام) +text(Jemen) text(is:placed:in) text(غرب:آسيا) +text(Yemen) text(was:placed:in) text(Asia) +text(Yemen) text(neighbors:with) text(Oman) +text(यमन) text(was:a:neighbor:of) text(Arabia:Saudí) +text(Puerto:Rico) text(can:be:found:in) text(Caraïben) +text(波多黎各) text(was:situated:in) text(Amerika) +text(سانت:فينسنت:والغرينادين) text(is:situated:in) text(कैरिबिया) +text(सन्त:विन्सेण्ट:और:ग्रेनाडाइन्स) text(is:located:in) text(América) +text(Venezuela) text(is:a:neighbor:of) text(ब्राज़ील) +text(Venezuela) text(is:a:neighboring:state:to) text(Guyana) +text(فنزويلا) text(was:a:neighboring:state:to) text(Colombia) +text(格瑞那達) text(was:located:in) text(Caribe) +text(Grenada) text(can:be:found:in) text(أمريكتان) +text(美國) text(borders:with) text(加拿大) +text(الولايات:المتحدة) text(borders) text(Mexico) +text(Tokelau) text(was:positioned:in) text(Polynesië) +text(توكيلاو) text(is:positioned:in) text(أوقيانوسيا) +text(Slovenië) text(was:sited:in) text(Southern:Europe) +text(Slovenia) text(is:sited:in) text(Europa) +text(سلوفينيا) text(is:butted:against) text(Oostenrijk) +text(斯洛文尼亞) text(was:butted:against) text(क्रोएशिया) +text(स्लोवेनिया) text(was:adjacent:to) text(إيطاليا) +text(Eslovenia) text(is:adjacent:to) text(Hongarije) +text(الفلبين) text(was:localized:in) text(Sudeste:Asiático) +text(फ़िलीपीन्स) text(is:localized:in) text(Azië) +text(Micronesia) text(was:present:in) text(Micronesië) +text(密克羅尼西亞群島) text(is:present:in) text(Oceanía) +text(الصين) text(is:still:in) text(Asia:Oriental) +text(People's:Republic:of:China) text(was:still:in) text(Asia) +text(Volksrepubliek:China) text(neighbors) text(अफ़्ग़ानिस्तान) +text(中华人民共和国) text(is:a:neighboring:country:of) text(Bhutan) +text(चीनी:जनवादी:गणराज्य) text(was:a:neighboring:country:of) text(Macau) +text(República:Popular:China) text(neighbors:with) text(印度) +text(الصين) text(was:a:neighbor:of) text(Kazakhstan) +text(People's:Republic:of:China) text(is:a:neighbor:of) text(Kirguistán) +text(Volksrepubliek:China) text(is:a:neighboring:state:to) text(ताजीकिस्तान) +text(中华人民共和国) text(was:a:neighboring:state:to) text(Laos) +text(चीनी:जनवादी:गणराज्य) text(borders:with) text(Rusia) +text(República:Popular:China) text(borders) text(Corea:del:Norte) +text(الصين) text(is:butted:against) text(Myanmar) +text(People's:Republic:of:China) text(was:butted:against) text(Pakistan) +text(Volksrepubliek:China) text(was:adjacent:to) text(मंगोलिया) +text(中华人民共和国) text(is:adjacent:to) text(हांगकांग) +text(चीनी:जनवादी:गणराज्य) text(neighbors) text(越南) +text(الغابون) text(was:currently:in) text(Central:Africa) +text(गबॉन) text(is:currently:in) text(Africa) +text(Gabón) text(is:a:neighboring:country:of) text(Guinea:Ecuatorial) +text(Gabon) text(was:a:neighboring:country:of) text(Republic:of:the:Congo) +text(Gabon) text(neighbors:with) text(कैमरुन) +text(United:States:Minor:Outlying:Islands) text(is:placed:in) text(أمريكا:الشمالية) +text(संयुक्त:राज्य:अमेरिका:के:छोटे:दूरस्थ:द्वीपसमूह) text(was:placed:in) text(Americas) +text(Andorra) text(can:be:found:in) text(أوروبا:الجنوبية) +text(Andorra) text(was:situated:in) text(欧洲) +text(安道尔) text(was:a:neighbor:of) text(西班牙) +text(Andorra) text(is:a:neighbor:of) text(فرنسا) +text(Samoa) text(is:situated:in) text(Polinesia) +text(Samoa) text(is:located:in) text(大洋洲) +text(The:Gambia) text(was:located:in) text(West:Africa) +text(غامبيا) text(can:be:found:in) text(Afrika) +text(गाम्बिया) text(is:a:neighboring:state:to) text(सेनेगल) +text(Pedro:Miguel) text(was:positioned:in) text(पश्चिमी:एशिया) +text(nan) text(is:positioned:in) text(亞洲) +text(Pedro:Miguel) text(was:a:neighboring:state:to) text(الأردن) +text(nan) text(borders:with) text(Egipto) +text(Pedro:Miguel) text(borders) text(إسرائيل) +text(Reunión) text(was:sited:in) text(África:Oriental) +text(ريونيون) text(is:sited:in) text(África) +text(Francia) text(was:localized:in) text(أوروبا:الغربية) +text(法國) text(is:localized:in) text(Europa) +text(फ़्रान्स) text(is:butted:against) text(ألمانيا) +text(France) text(was:butted:against) text(Luxemburg) +text(Frankrijk) text(was:adjacent:to) text(Italy) +text(فرنسا) text(is:adjacent:to) text(अण्डोरा) +text(Francia) text(neighbors) text(Suiza) +text(法國) text(is:a:neighboring:country:of) text(موناكو) +text(फ़्रान्स) text(was:a:neighboring:country:of) text(Belgium) +text(France) text(neighbors:with) text(Spain) +text(منغوليا) text(was:present:in) text(東亞) +text(Mongolia) text(is:present:in) text(آسيا) +text(蒙古國) text(was:a:neighbor:of) text(República:Popular:China) +text(Mongolia) text(is:a:neighbor:of) text(Russia) +text(लिथुआनिया) text(is:still:in) text(Europa:del:Norte) +text(ليتوانيا) text(was:still:in) text(यूरोप) +text(立陶宛) text(is:a:neighboring:state:to) text(Poland) +text(Lithuania) text(was:a:neighboring:state:to) text(Letland) +text(Lituania) text(borders:with) text(बेलारूस) +text(Litouwen) text(borders) text(Rusland) +text(Kaaimaneilanden) text(was:currently:in) text(Caribbean) +text(جزر:كايمان) text(is:currently:in) text(美洲) +text(圣卢西亚) text(is:placed:in) text(الكاريبي) +text(Santa:Lucía) text(was:placed:in) text(महाअमेरिका) +text(Curaçao) text(can:be:found:in) text(加勒比地区) +text(库拉索) text(was:situated:in) text(Amerika) +text(Caraïben) text(is:situated:in) text(América) +text(Zuid-Azië) text(is:located:in) text(एशिया) +text(मध्य:अफ्रीका) text(was:located:in) text(अफ्रीका) +text(Noord-Europa) text(can:be:found:in) text(أوروبا) +text(Zuid-Europa) text(was:positioned:in) text(Europe) +text(西亚) text(is:positioned:in) text(Asia) +text(أمريكا:الجنوبية) text(was:sited:in) text(أمريكتان) +text(玻里尼西亞) text(is:sited:in) text(Oceanië) +text(nan) text(was:localized:in) text(Oceania) +text(West-Europa) text(is:localized:in) text(Europa) +text(شرق:إفريقيا) text(was:present:in) text(إفريقيا) +text(África:Occidental) text(is:present:in) text(非洲) +text(Eastern:Europe) text(is:still:in) text(欧洲) +text(केंद्रीय:अमेरिका) text(was:still:in) text(Americas) +text(América:del:Norte) text(was:currently:in) text(美洲) +text(جنوب:شرق:آسيا) text(is:currently:in) text(Azië) +text(Southern:Africa) text(is:placed:in) text(Africa) +text(East:Asia) text(was:placed:in) text(Asia) +text(北部非洲) text(can:be:found:in) text(Afrika) +text(मॅलानिशिया) text(was:situated:in) text(ओशिआनिया) +text(माइक्रोनीशिया) text(is:situated:in) text(أوقيانوسيا) +text(中亚) text(is:located:in) text(亞洲) +text(Centraal-Europa) text(was:located:in) text(Europa) \ No newline at end of file diff --git a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_relation2text.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_relation2text.tsv index 4b80f8e..3520a42 100644 --- a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_relation2text.tsv +++ b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_relation2text.tsv @@ -1,1063 +1,1063 @@ -palau text(is:positioned:in) micronesia -palau text(was:sited:in) oceania -maldives text(is:sited:in) southern_asia -maldives text(is:placed:in) asia -brunei text(was:placed:in) south-eastern_asia -brunei text(was:localized:in) asia -brunei text(was:a:neighboring:country:of) malaysia -japan text(is:localized:in) eastern_asia -japan text(was:present:in) asia -netherlands text(was:adjacent:to) germany -netherlands text(is:adjacent:to) belgium -turkey text(was:a:neighbor:of) armenia -turkey text(is:a:neighbor:of) azerbaijan -turkey text(is:a:neighboring:state:to) iran -turkey text(was:a:neighboring:state:to) greece -turkey text(borders:with) georgia -turkey text(neighbors:withborders) bulgaria -turkey text(neighbors) iraq -turkey text(is:butted:against) syria -angola text(is:present:in) middle_africa -angola text(is:still:in) africa -angola text(was:butted:against) dr_congo -angola text(is:a:neighboring:country:of) namibia -angola text(was:a:neighboring:country:of) zambia -angola text(was:adjacent:to) republic_of_the_congo -armenia text(was:still:in) western_asia -armenia text(was:currently:in) asia -armenia text(is:adjacent:to) georgia -armenia text(was:a:neighbor:of) azerbaijan -armenia text(is:a:neighbor:of) iran -armenia text(is:a:neighboring:state:to) turkey -antigua_and_barbuda text(is:currently:in) caribbean -antigua_and_barbuda text(was:situated:in) americas -swaziland text(is:situated:in) southern_africa -swaziland text(is:located:in) africa -swaziland text(was:a:neighboring:state:to) south_africa -swaziland text(borders:with) mozambique -wallis_and_futuna text(was:located:in) polynesia -wallis_and_futuna text(could:be:found:in) oceania -uruguay text(can:be:found:in) south_america -uruguay text(was:positioned:in) americas -uruguay text(neighbors:withborders) argentina +palau text(was:localized:in) micronesia +palau text(is:localized:in) oceania +maldives text(was:present:in) southern_asia +maldives text(is:present:in) asia +brunei text(is:still:in) south-eastern_asia +brunei text(was:still:in) asia +brunei text(is:a:neighboring:state:to) malaysia +japan text(was:currently:in) eastern_asia +japan text(is:currently:in) asia +netherlands text(was:a:neighboring:state:to) germany +netherlands text(borders:with) belgium +turkey text(borders) armenia +turkey text(is:butted:against) azerbaijan +turkey text(was:butted:against) iran +turkey text(was:adjacent:to) greece +turkey text(is:adjacent:to) georgia +turkey text(neighbors) bulgaria +turkey text(is:a:neighboring:country:of) iraq +turkey text(was:a:neighboring:country:of) syria +angola text(is:placed:in) middle_africa +angola text(was:placed:in) africa +angola text(neighbors:with) dr_congo +angola text(was:a:neighbor:of) namibia +angola text(is:a:neighbor:of) zambia +angola text(is:a:neighboring:state:to) republic_of_the_congo +armenia text(can:be:found:in) western_asia +armenia text(was:situated:in) asia +armenia text(was:a:neighboring:state:to) georgia +armenia text(borders:with) azerbaijan +armenia text(borders) iran +armenia text(is:butted:against) turkey +antigua_and_barbuda text(is:situated:in) caribbean +antigua_and_barbuda text(is:located:in) americas +swaziland text(was:located:in) southern_africa +swaziland text(can:be:found:in) africa +swaziland text(was:butted:against) south_africa +swaziland text(was:adjacent:to) mozambique +wallis_and_futuna text(was:positioned:in) polynesia +wallis_and_futuna text(is:positioned:in) oceania +uruguay text(was:sited:in) south_america +uruguay text(is:sited:in) americas +uruguay text(is:adjacent:to) argentina uruguay text(neighbors) brazil -zambia text(is:positioned:in) eastern_africa -zambia text(was:sited:in) africa -zambia text(is:butted:against) tanzania -zambia text(was:butted:against) mozambique -zambia text(is:a:neighboring:country:of) dr_congo -zambia text(was:a:neighboring:country:of) angola -zambia text(was:adjacent:to) botswana -zambia text(is:adjacent:to) zimbabwe -zambia text(was:a:neighbor:of) namibia -zambia text(is:a:neighbor:of) malawi -cyprus text(is:sited:in) eastern_europe -cyprus text(is:placed:in) europe -cyprus text(is:a:neighboring:state:to) united_kingdom -ireland text(was:placed:in) northern_europe -ireland text(was:localized:in) europe -ireland text(was:a:neighboring:state:to) united_kingdom -burundi text(is:localized:in) eastern_africa -burundi text(was:present:in) africa -burundi text(borders:with) dr_congo -burundi text(neighbors:withborders) rwanda -burundi text(neighbors) tanzania -central_african_republic text(is:present:in) middle_africa -central_african_republic text(is:still:in) africa -central_african_republic text(is:butted:against) chad -central_african_republic text(was:butted:against) republic_of_the_congo -central_african_republic text(is:a:neighboring:country:of) dr_congo -central_african_republic text(was:a:neighboring:country:of) south_sudan -central_african_republic text(was:adjacent:to) cameroon -central_african_republic text(is:adjacent:to) sudan -tonga text(was:still:in) polynesia -tonga text(was:currently:in) oceania -ivory_coast text(is:currently:in) western_africa -ivory_coast text(was:situated:in) africa -ivory_coast text(was:a:neighbor:of) burkina_faso -ivory_coast text(is:a:neighbor:of) ghana -ivory_coast text(is:a:neighboring:state:to) liberia -ivory_coast text(was:a:neighboring:state:to) mali -ivory_coast text(borders:with) guinea -sierra_leone text(neighbors:withborders) liberia -sierra_leone text(neighbors) guinea -mayotte text(is:situated:in) eastern_africa -mayotte text(is:located:in) africa -poland text(is:butted:against) germany -poland text(was:butted:against) ukraine +zambia text(was:localized:in) eastern_africa +zambia text(is:localized:in) africa +zambia text(is:a:neighboring:country:of) tanzania +zambia text(was:a:neighboring:country:of) mozambique +zambia text(neighbors:with) dr_congo +zambia text(was:a:neighbor:of) angola +zambia text(is:a:neighbor:of) botswana +zambia text(is:a:neighboring:state:to) zimbabwe +zambia text(was:a:neighboring:state:to) namibia +zambia text(borders:with) malawi +cyprus text(was:present:in) eastern_europe +cyprus text(is:present:in) europe +cyprus text(borders) united_kingdom +ireland text(is:still:in) northern_europe +ireland text(was:still:in) europe +ireland text(is:butted:against) united_kingdom +burundi text(was:currently:in) eastern_africa +burundi text(is:currently:in) africa +burundi text(was:butted:against) dr_congo +burundi text(was:adjacent:to) rwanda +burundi text(is:adjacent:to) tanzania +central_african_republic text(is:placed:in) middle_africa +central_african_republic text(was:placed:in) africa +central_african_republic text(neighbors) chad +central_african_republic text(is:a:neighboring:country:of) republic_of_the_congo +central_african_republic text(was:a:neighboring:country:of) dr_congo +central_african_republic text(neighbors:with) south_sudan +central_african_republic text(was:a:neighbor:of) cameroon +central_african_republic text(is:a:neighbor:of) sudan +tonga text(can:be:found:in) polynesia +tonga text(was:situated:in) oceania +ivory_coast text(is:situated:in) western_africa +ivory_coast text(is:located:in) africa +ivory_coast text(is:a:neighboring:state:to) burkina_faso +ivory_coast text(was:a:neighboring:state:to) ghana +ivory_coast text(borders:with) liberia +ivory_coast text(borders) mali +ivory_coast text(is:butted:against) guinea +sierra_leone text(was:butted:against) liberia +sierra_leone text(was:adjacent:to) guinea +mayotte text(was:located:in) eastern_africa +mayotte text(can:be:found:in) africa +poland text(is:adjacent:to) germany +poland text(neighbors) ukraine poland text(is:a:neighboring:country:of) slovakia poland text(was:a:neighboring:country:of) belarus -poland text(was:adjacent:to) russia -poland text(is:adjacent:to) lithuania -poland text(was:a:neighbor:of) czechia -kazakhstan text(was:located:in) central_asia -kazakhstan text(could:be:found:in) asia -kazakhstan text(is:a:neighbor:of) turkmenistan -kazakhstan text(is:a:neighboring:state:to) china -kazakhstan text(was:a:neighboring:state:to) kyrgyzstan -kazakhstan text(borders:with) uzbekistan -kazakhstan text(neighbors:withborders) russia -uzbekistan text(can:be:found:in) central_asia -uzbekistan text(was:positioned:in) asia -uzbekistan text(neighbors) afghanistan -uzbekistan text(is:butted:against) turkmenistan -uzbekistan text(was:butted:against) kazakhstan -uzbekistan text(is:a:neighboring:country:of) kyrgyzstan -uzbekistan text(was:a:neighboring:country:of) tajikistan -turks_and_caicos_islands text(is:positioned:in) caribbean -turks_and_caicos_islands text(was:sited:in) americas -new_caledonia text(is:sited:in) melanesia -new_caledonia text(is:placed:in) oceania -pakistan text(was:adjacent:to) china -pakistan text(is:adjacent:to) afghanistan +poland text(neighbors:with) russia +poland text(was:a:neighbor:of) lithuania +poland text(is:a:neighbor:of) czechia +kazakhstan text(was:positioned:in) central_asia +kazakhstan text(is:positioned:in) asia +kazakhstan text(is:a:neighboring:state:to) turkmenistan +kazakhstan text(was:a:neighboring:state:to) china +kazakhstan text(borders:with) kyrgyzstan +kazakhstan text(borders) uzbekistan +kazakhstan text(is:butted:against) russia +uzbekistan text(was:sited:in) central_asia +uzbekistan text(is:sited:in) asia +uzbekistan text(was:butted:against) afghanistan +uzbekistan text(was:adjacent:to) turkmenistan +uzbekistan text(is:adjacent:to) kazakhstan +uzbekistan text(neighbors) kyrgyzstan +uzbekistan text(is:a:neighboring:country:of) tajikistan +turks_and_caicos_islands text(was:localized:in) caribbean +turks_and_caicos_islands text(is:localized:in) americas +new_caledonia text(was:present:in) melanesia +new_caledonia text(is:present:in) oceania +pakistan text(was:a:neighboring:country:of) china +pakistan text(neighbors:with) afghanistan pakistan text(was:a:neighbor:of) iran pakistan text(is:a:neighbor:of) india -argentina text(was:placed:in) south_america -argentina text(was:localized:in) americas +argentina text(is:still:in) south_america +argentina text(was:still:in) americas argentina text(is:a:neighboring:state:to) bolivia argentina text(was:a:neighboring:state:to) chile argentina text(borders:with) brazil -argentina text(neighbors:withborders) paraguay -argentina text(neighbors) uruguay -cuba text(is:localized:in) caribbean -cuba text(was:present:in) americas -serbia text(is:butted:against) macedonia -serbia text(was:butted:against) montenegro -serbia text(is:a:neighboring:country:of) kosovo -serbia text(was:a:neighboring:country:of) bosnia_and_herzegovina -serbia text(was:adjacent:to) croatia -serbia text(is:adjacent:to) hungary -serbia text(was:a:neighbor:of) bulgaria -serbia text(is:a:neighbor:of) romania -czechia text(is:present:in) eastern_europe -czechia text(is:still:in) europe -czechia text(is:a:neighboring:state:to) germany -czechia text(was:a:neighboring:state:to) austria -czechia text(borders:with) poland -czechia text(neighbors:withborders) slovakia -nicaragua text(neighbors) honduras +argentina text(borders) paraguay +argentina text(is:butted:against) uruguay +cuba text(was:currently:in) caribbean +cuba text(is:currently:in) americas +serbia text(was:butted:against) macedonia +serbia text(was:adjacent:to) montenegro +serbia text(is:adjacent:to) kosovo +serbia text(neighbors) bosnia_and_herzegovina +serbia text(is:a:neighboring:country:of) croatia +serbia text(was:a:neighboring:country:of) hungary +serbia text(neighbors:with) bulgaria +serbia text(was:a:neighbor:of) romania +czechia text(is:placed:in) eastern_europe +czechia text(was:placed:in) europe +czechia text(is:a:neighbor:of) germany +czechia text(is:a:neighboring:state:to) austria +czechia text(was:a:neighboring:state:to) poland +czechia text(borders:with) slovakia +nicaragua text(borders) honduras nicaragua text(is:butted:against) costa_rica -vietnam text(was:still:in) south-eastern_asia -vietnam text(was:currently:in) asia +vietnam text(can:be:found:in) south-eastern_asia +vietnam text(was:situated:in) asia vietnam text(was:butted:against) cambodia -vietnam text(is:a:neighboring:country:of) laos -vietnam text(was:a:neighboring:country:of) china -niue text(is:currently:in) polynesia -niue text(was:situated:in) oceania -canada text(is:situated:in) northern_america -canada text(is:located:in) americas -canada text(was:adjacent:to) united_states -slovakia text(is:adjacent:to) ukraine -slovakia text(was:a:neighbor:of) poland -slovakia text(is:a:neighbor:of) austria -slovakia text(is:a:neighboring:state:to) hungary -slovakia text(was:a:neighboring:state:to) czechia -mozambique text(borders:with) tanzania -mozambique text(neighbors:withborders) swaziland -mozambique text(neighbors) zimbabwe -mozambique text(is:butted:against) zambia -mozambique text(was:butted:against) malawi -mozambique text(is:a:neighboring:country:of) south_africa -aruba text(was:located:in) caribbean -aruba text(could:be:found:in) americas -bolivia text(can:be:found:in) south_america -bolivia text(was:positioned:in) americas -bolivia text(was:a:neighboring:country:of) chile -bolivia text(was:adjacent:to) brazil -bolivia text(is:adjacent:to) paraguay -bolivia text(was:a:neighbor:of) argentina -bolivia text(is:a:neighbor:of) peru -colombia text(is:positioned:in) south_america -colombia text(was:sited:in) americas -colombia text(is:a:neighboring:state:to) ecuador -colombia text(was:a:neighboring:state:to) brazil -colombia text(borders:with) panama -colombia text(neighbors:withborders) venezuela -colombia text(neighbors) peru -fiji text(is:sited:in) melanesia -fiji text(is:placed:in) oceania -republic_of_the_congo text(is:butted:against) gabon -republic_of_the_congo text(was:butted:against) dr_congo -republic_of_the_congo text(is:a:neighboring:country:of) angola -republic_of_the_congo text(was:a:neighboring:country:of) cameroon +vietnam text(was:adjacent:to) laos +vietnam text(is:adjacent:to) china +niue text(is:situated:in) polynesia +niue text(is:located:in) oceania +canada text(was:located:in) northern_america +canada text(can:be:found:in) americas +canada text(neighbors) united_states +slovakia text(is:a:neighboring:country:of) ukraine +slovakia text(was:a:neighboring:country:of) poland +slovakia text(neighbors:with) austria +slovakia text(was:a:neighbor:of) hungary +slovakia text(is:a:neighbor:of) czechia +mozambique text(is:a:neighboring:state:to) tanzania +mozambique text(was:a:neighboring:state:to) swaziland +mozambique text(borders:with) zimbabwe +mozambique text(borders) zambia +mozambique text(is:butted:against) malawi +mozambique text(was:butted:against) south_africa +aruba text(was:positioned:in) caribbean +aruba text(is:positioned:in) americas +bolivia text(was:sited:in) south_america +bolivia text(is:sited:in) americas +bolivia text(was:adjacent:to) chile +bolivia text(is:adjacent:to) brazil +bolivia text(neighbors) paraguay +bolivia text(is:a:neighboring:country:of) argentina +bolivia text(was:a:neighboring:country:of) peru +colombia text(was:localized:in) south_america +colombia text(is:localized:in) americas +colombia text(neighbors:with) ecuador +colombia text(was:a:neighbor:of) brazil +colombia text(is:a:neighbor:of) panama +colombia text(is:a:neighboring:state:to) venezuela +colombia text(was:a:neighboring:state:to) peru +fiji text(was:present:in) melanesia +fiji text(is:present:in) oceania +republic_of_the_congo text(borders:with) gabon +republic_of_the_congo text(borders) dr_congo +republic_of_the_congo text(is:butted:against) angola +republic_of_the_congo text(was:butted:against) cameroon republic_of_the_congo text(was:adjacent:to) central_african_republic saudi_arabia text(is:adjacent:to) qatar -saudi_arabia text(was:a:neighbor:of) united_arab_emirates -saudi_arabia text(is:a:neighbor:of) jordan -saudi_arabia text(is:a:neighboring:state:to) yemen -saudi_arabia text(was:a:neighboring:state:to) oman -saudi_arabia text(borders:with) kuwait -saudi_arabia text(neighbors:withborders) iraq -el_salvador text(was:placed:in) central_america -el_salvador text(was:localized:in) americas -el_salvador text(neighbors) guatemala -el_salvador text(is:butted:against) honduras -madagascar text(is:localized:in) eastern_africa -madagascar text(was:present:in) africa -australia text(is:present:in) australia_and_new_zealand -australia text(is:still:in) oceania -namibia text(was:still:in) southern_africa -namibia text(was:currently:in) africa -namibia text(was:butted:against) zambia -namibia text(is:a:neighboring:country:of) angola -namibia text(was:a:neighboring:country:of) south_africa -namibia text(was:adjacent:to) botswana -tuvalu text(is:currently:in) polynesia -tuvalu text(was:situated:in) oceania -svalbard_and_jan_mayen text(is:situated:in) northern_europe -svalbard_and_jan_mayen text(is:located:in) europe -isle_of_man text(was:located:in) northern_europe -isle_of_man text(could:be:found:in) europe -guyana text(is:adjacent:to) brazil -guyana text(was:a:neighbor:of) suriname -guyana text(is:a:neighbor:of) venezuela -vatican_city text(can:be:found:in) southern_europe -vatican_city text(was:positioned:in) europe -vatican_city text(is:a:neighboring:state:to) italy -british_indian_ocean_territory text(is:positioned:in) eastern_africa -british_indian_ocean_territory text(was:sited:in) africa -nigeria text(is:sited:in) western_africa -nigeria text(is:placed:in) africa -nigeria text(was:a:neighboring:state:to) chad -nigeria text(borders:with) niger -nigeria text(neighbors:withborders) cameroon -nigeria text(neighbors) benin -germany text(is:butted:against) denmark -germany text(was:butted:against) netherlands -germany text(is:a:neighboring:country:of) poland -germany text(was:a:neighboring:country:of) luxembourg -germany text(was:adjacent:to) belgium -germany text(is:adjacent:to) switzerland -germany text(was:a:neighbor:of) austria -germany text(is:a:neighbor:of) france -germany text(is:a:neighboring:state:to) czechia -burkina_faso text(was:a:neighboring:state:to) togo -burkina_faso text(borders:with) benin -burkina_faso text(neighbors:withborders) niger -burkina_faso text(neighbors) ghana -burkina_faso text(is:butted:against) mali -burkina_faso text(was:butted:against) ivory_coast -tanzania text(is:a:neighboring:country:of) uganda -tanzania text(was:a:neighboring:country:of) mozambique -tanzania text(was:adjacent:to) dr_congo -tanzania text(is:adjacent:to) kenya -tanzania text(was:a:neighbor:of) rwanda -tanzania text(is:a:neighbor:of) zambia -tanzania text(is:a:neighboring:state:to) malawi -tanzania text(was:a:neighboring:state:to) burundi -northern_mariana_islands text(was:placed:in) micronesia -northern_mariana_islands text(was:localized:in) oceania -belize text(is:localized:in) central_america -belize text(was:present:in) americas -belize text(borders:with) guatemala -belize text(neighbors:withborders) mexico -norway text(neighbors) sweden -norway text(is:butted:against) finland -norway text(was:butted:against) russia -cocos_keeling_islands text(is:present:in) australia_and_new_zealand -cocos_keeling_islands text(is:still:in) oceania -laos text(was:still:in) south-eastern_asia -laos text(was:currently:in) asia -laos text(is:a:neighboring:country:of) china -laos text(was:a:neighboring:country:of) cambodia -laos text(was:adjacent:to) myanmar -laos text(is:adjacent:to) vietnam -laos text(was:a:neighbor:of) thailand -western_sahara text(is:currently:in) northern_africa -western_sahara text(was:situated:in) africa -western_sahara text(is:a:neighbor:of) algeria -western_sahara text(is:a:neighboring:state:to) mauritania -western_sahara text(was:a:neighboring:state:to) morocco -suriname text(is:situated:in) south_america -suriname text(is:located:in) americas -suriname text(borders:with) brazil -suriname text(neighbors:withborders) french_guiana -suriname text(neighbors) guyana -christmas_island text(was:located:in) australia_and_new_zealand -christmas_island text(could:be:found:in) oceania -são_tomé_and_príncipe text(can:be:found:in) middle_africa -são_tomé_and_príncipe text(was:positioned:in) africa -egypt text(is:butted:against) libya -egypt text(was:butted:against) israel -egypt text(is:a:neighboring:country:of) sudan -bulgaria text(was:a:neighboring:country:of) macedonia -bulgaria text(was:adjacent:to) turkey -bulgaria text(is:adjacent:to) greece -bulgaria text(was:a:neighbor:of) serbia -bulgaria text(is:a:neighbor:of) romania -guinea text(is:positioned:in) western_africa -guinea text(was:sited:in) africa -guinea text(is:a:neighboring:state:to) guinea-bissau -guinea text(was:a:neighboring:state:to) sierra_leone -guinea text(borders:with) mali -guinea text(neighbors:withborders) liberia -guinea text(neighbors) senegal -guinea text(is:butted:against) ivory_coast -spain text(was:butted:against) morocco -spain text(is:a:neighboring:country:of) gibraltar -spain text(was:a:neighboring:country:of) andorra -spain text(was:adjacent:to) france -spain text(is:adjacent:to) portugal -costa_rica text(is:sited:in) central_america -costa_rica text(is:placed:in) americas -costa_rica text(was:a:neighbor:of) panama -costa_rica text(is:a:neighbor:of) nicaragua -malta text(was:placed:in) southern_europe -malta text(was:localized:in) europe -portugal text(is:localized:in) southern_europe -portugal text(was:present:in) europe -portugal text(is:a:neighboring:state:to) spain -romania text(is:present:in) eastern_europe -romania text(is:still:in) europe -romania text(was:a:neighboring:state:to) ukraine -romania text(borders:with) hungary -romania text(neighbors:withborders) moldova +saudi_arabia text(neighbors) united_arab_emirates +saudi_arabia text(is:a:neighboring:country:of) jordan +saudi_arabia text(was:a:neighboring:country:of) yemen +saudi_arabia text(neighbors:with) oman +saudi_arabia text(was:a:neighbor:of) kuwait +saudi_arabia text(is:a:neighbor:of) iraq +el_salvador text(is:still:in) central_america +el_salvador text(was:still:in) americas +el_salvador text(is:a:neighboring:state:to) guatemala +el_salvador text(was:a:neighboring:state:to) honduras +madagascar text(was:currently:in) eastern_africa +madagascar text(is:currently:in) africa +australia text(is:placed:in) australia_and_new_zealand +australia text(was:placed:in) oceania +namibia text(can:be:found:in) southern_africa +namibia text(was:situated:in) africa +namibia text(borders:with) zambia +namibia text(borders) angola +namibia text(is:butted:against) south_africa +namibia text(was:butted:against) botswana +tuvalu text(is:situated:in) polynesia +tuvalu text(is:located:in) oceania +svalbard_and_jan_mayen text(was:located:in) northern_europe +svalbard_and_jan_mayen text(can:be:found:in) europe +isle_of_man text(was:positioned:in) northern_europe +isle_of_man text(is:positioned:in) europe +guyana text(was:adjacent:to) brazil +guyana text(is:adjacent:to) suriname +guyana text(neighbors) venezuela +vatican_city text(was:sited:in) southern_europe +vatican_city text(is:sited:in) europe +vatican_city text(is:a:neighboring:country:of) italy +british_indian_ocean_territory text(was:localized:in) eastern_africa +british_indian_ocean_territory text(is:localized:in) africa +nigeria text(was:present:in) western_africa +nigeria text(is:present:in) africa +nigeria text(was:a:neighboring:country:of) chad +nigeria text(neighbors:with) niger +nigeria text(was:a:neighbor:of) cameroon +nigeria text(is:a:neighbor:of) benin +germany text(is:a:neighboring:state:to) denmark +germany text(was:a:neighboring:state:to) netherlands +germany text(borders:with) poland +germany text(borders) luxembourg +germany text(is:butted:against) belgium +germany text(was:butted:against) switzerland +germany text(was:adjacent:to) austria +germany text(is:adjacent:to) france +germany text(neighbors) czechia +burkina_faso text(is:a:neighboring:country:of) togo +burkina_faso text(was:a:neighboring:country:of) benin +burkina_faso text(neighbors:with) niger +burkina_faso text(was:a:neighbor:of) ghana +burkina_faso text(is:a:neighbor:of) mali +burkina_faso text(is:a:neighboring:state:to) ivory_coast +tanzania text(was:a:neighboring:state:to) uganda +tanzania text(borders:with) mozambique +tanzania text(borders) dr_congo +tanzania text(is:butted:against) kenya +tanzania text(was:butted:against) rwanda +tanzania text(was:adjacent:to) zambia +tanzania text(is:adjacent:to) malawi +tanzania text(neighbors) burundi +northern_mariana_islands text(is:still:in) micronesia +northern_mariana_islands text(was:still:in) oceania +belize text(was:currently:in) central_america +belize text(is:currently:in) americas +belize text(is:a:neighboring:country:of) guatemala +belize text(was:a:neighboring:country:of) mexico +norway text(neighbors:with) sweden +norway text(was:a:neighbor:of) finland +norway text(is:a:neighbor:of) russia +cocos_keeling_islands text(is:placed:in) australia_and_new_zealand +cocos_keeling_islands text(was:placed:in) oceania +laos text(can:be:found:in) south-eastern_asia +laos text(was:situated:in) asia +laos text(is:a:neighboring:state:to) china +laos text(was:a:neighboring:state:to) cambodia +laos text(borders:with) myanmar +laos text(borders) vietnam +laos text(is:butted:against) thailand +western_sahara text(is:situated:in) northern_africa +western_sahara text(is:located:in) africa +western_sahara text(was:butted:against) algeria +western_sahara text(was:adjacent:to) mauritania +western_sahara text(is:adjacent:to) morocco +suriname text(was:located:in) south_america +suriname text(can:be:found:in) americas +suriname text(neighbors) brazil +suriname text(is:a:neighboring:country:of) french_guiana +suriname text(was:a:neighboring:country:of) guyana +christmas_island text(was:positioned:in) australia_and_new_zealand +christmas_island text(is:positioned:in) oceania +são_tomé_and_príncipe text(was:sited:in) middle_africa +são_tomé_and_príncipe text(is:sited:in) africa +egypt text(neighbors:with) libya +egypt text(was:a:neighbor:of) israel +egypt text(is:a:neighbor:of) sudan +bulgaria text(is:a:neighboring:state:to) macedonia +bulgaria text(was:a:neighboring:state:to) turkey +bulgaria text(borders:with) greece +bulgaria text(borders) serbia +bulgaria text(is:butted:against) romania +guinea text(was:localized:in) western_africa +guinea text(is:localized:in) africa +guinea text(was:butted:against) guinea-bissau +guinea text(was:adjacent:to) sierra_leone +guinea text(is:adjacent:to) mali +guinea text(neighbors) liberia +guinea text(is:a:neighboring:country:of) senegal +guinea text(was:a:neighboring:country:of) ivory_coast +spain text(neighbors:with) morocco +spain text(was:a:neighbor:of) gibraltar +spain text(is:a:neighbor:of) andorra +spain text(is:a:neighboring:state:to) france +spain text(was:a:neighboring:state:to) portugal +costa_rica text(was:present:in) central_america +costa_rica text(is:present:in) americas +costa_rica text(borders:with) panama +costa_rica text(borders) nicaragua +malta text(is:still:in) southern_europe +malta text(was:still:in) europe +portugal text(was:currently:in) southern_europe +portugal text(is:currently:in) europe +portugal text(is:butted:against) spain +romania text(is:placed:in) eastern_europe +romania text(was:placed:in) europe +romania text(was:butted:against) ukraine +romania text(was:adjacent:to) hungary +romania text(is:adjacent:to) moldova romania text(neighbors) bulgaria -romania text(is:butted:against) serbia -san_marino text(was:still:in) southern_europe -san_marino text(was:currently:in) europe -san_marino text(was:butted:against) italy -mauritania text(is:currently:in) western_africa -mauritania text(was:situated:in) africa -mauritania text(is:a:neighboring:country:of) algeria -mauritania text(was:a:neighboring:country:of) mali -mauritania text(was:adjacent:to) western_sahara -mauritania text(is:adjacent:to) senegal -trinidad_and_tobago text(is:situated:in) caribbean -trinidad_and_tobago text(is:located:in) americas -bahrain text(was:located:in) western_asia -bahrain text(could:be:found:in) asia -myanmar text(was:a:neighbor:of) india -myanmar text(is:a:neighbor:of) bangladesh -myanmar text(is:a:neighboring:state:to) china -myanmar text(was:a:neighboring:state:to) laos -myanmar text(borders:with) thailand -iraq text(neighbors:withborders) turkey -iraq text(neighbors) saudi_arabia -iraq text(is:butted:against) iran -iraq text(was:butted:against) jordan -iraq text(is:a:neighboring:country:of) kuwait -iraq text(was:a:neighboring:country:of) syria -south_georgia text(can:be:found:in) south_america -south_georgia text(was:positioned:in) americas -iceland text(is:positioned:in) northern_europe -iceland text(was:sited:in) europe -dr_congo text(is:sited:in) middle_africa -dr_congo text(is:placed:in) africa -dr_congo text(was:adjacent:to) uganda -dr_congo text(is:adjacent:to) tanzania -dr_congo text(was:a:neighbor:of) republic_of_the_congo -dr_congo text(is:a:neighbor:of) central_african_republic -dr_congo text(is:a:neighboring:state:to) angola -dr_congo text(was:a:neighboring:state:to) rwanda -dr_congo text(borders:with) south_sudan -dr_congo text(neighbors:withborders) zambia -dr_congo text(neighbors) burundi -seychelles text(was:placed:in) eastern_africa -seychelles text(was:localized:in) africa -kyrgyzstan text(is:butted:against) china -kyrgyzstan text(was:butted:against) kazakhstan +romania text(is:a:neighboring:country:of) serbia +san_marino text(can:be:found:in) southern_europe +san_marino text(was:situated:in) europe +san_marino text(was:a:neighboring:country:of) italy +mauritania text(is:situated:in) western_africa +mauritania text(is:located:in) africa +mauritania text(neighbors:with) algeria +mauritania text(was:a:neighbor:of) mali +mauritania text(is:a:neighbor:of) western_sahara +mauritania text(is:a:neighboring:state:to) senegal +trinidad_and_tobago text(was:located:in) caribbean +trinidad_and_tobago text(can:be:found:in) americas +bahrain text(was:positioned:in) western_asia +bahrain text(is:positioned:in) asia +myanmar text(was:a:neighboring:state:to) india +myanmar text(borders:with) bangladesh +myanmar text(borders) china +myanmar text(is:butted:against) laos +myanmar text(was:butted:against) thailand +iraq text(was:adjacent:to) turkey +iraq text(is:adjacent:to) saudi_arabia +iraq text(neighbors) iran +iraq text(is:a:neighboring:country:of) jordan +iraq text(was:a:neighboring:country:of) kuwait +iraq text(neighbors:with) syria +south_georgia text(was:sited:in) south_america +south_georgia text(is:sited:in) americas +iceland text(was:localized:in) northern_europe +iceland text(is:localized:in) europe +dr_congo text(was:present:in) middle_africa +dr_congo text(is:present:in) africa +dr_congo text(was:a:neighbor:of) uganda +dr_congo text(is:a:neighbor:of) tanzania +dr_congo text(is:a:neighboring:state:to) republic_of_the_congo +dr_congo text(was:a:neighboring:state:to) central_african_republic +dr_congo text(borders:with) angola +dr_congo text(borders) rwanda +dr_congo text(is:butted:against) south_sudan +dr_congo text(was:butted:against) zambia +dr_congo text(was:adjacent:to) burundi +seychelles text(is:still:in) eastern_africa +seychelles text(was:still:in) africa +kyrgyzstan text(is:adjacent:to) china +kyrgyzstan text(neighbors) kazakhstan kyrgyzstan text(is:a:neighboring:country:of) tajikistan kyrgyzstan text(was:a:neighboring:country:of) uzbekistan -botswana text(is:localized:in) southern_africa -botswana text(was:present:in) africa -botswana text(was:adjacent:to) zimbabwe -botswana text(is:adjacent:to) namibia -botswana text(was:a:neighbor:of) zambia -botswana text(is:a:neighbor:of) south_africa -faroe_islands text(is:present:in) northern_europe -faroe_islands text(is:still:in) europe -jamaica text(was:still:in) caribbean -jamaica text(was:currently:in) americas -american_samoa text(is:currently:in) polynesia -american_samoa text(was:situated:in) oceania -lesotho text(is:situated:in) southern_africa -lesotho text(is:located:in) africa -lesotho text(is:a:neighboring:state:to) south_africa -sri_lanka text(was:a:neighboring:state:to) india -belgium text(was:located:in) western_europe -belgium text(could:be:found:in) europe -belgium text(borders:with) germany -belgium text(neighbors:withborders) luxembourg -belgium text(neighbors) france -belgium text(is:butted:against) netherlands -qatar text(can:be:found:in) western_asia -qatar text(was:positioned:in) asia -qatar text(was:butted:against) saudi_arabia -solomon_islands text(is:positioned:in) melanesia -solomon_islands text(was:sited:in) oceania -syria text(is:sited:in) western_asia -syria text(is:placed:in) asia -syria text(is:a:neighboring:country:of) israel -syria text(was:a:neighboring:country:of) turkey -syria text(was:adjacent:to) jordan -syria text(is:adjacent:to) lebanon +botswana text(was:currently:in) southern_africa +botswana text(is:currently:in) africa +botswana text(neighbors:with) zimbabwe +botswana text(was:a:neighbor:of) namibia +botswana text(is:a:neighbor:of) zambia +botswana text(is:a:neighboring:state:to) south_africa +faroe_islands text(is:placed:in) northern_europe +faroe_islands text(was:placed:in) europe +jamaica text(can:be:found:in) caribbean +jamaica text(was:situated:in) americas +american_samoa text(is:situated:in) polynesia +american_samoa text(is:located:in) oceania +lesotho text(was:located:in) southern_africa +lesotho text(can:be:found:in) africa +lesotho text(was:a:neighboring:state:to) south_africa +sri_lanka text(borders:with) india +belgium text(was:positioned:in) western_europe +belgium text(is:positioned:in) europe +belgium text(borders) germany +belgium text(is:butted:against) luxembourg +belgium text(was:butted:against) france +belgium text(was:adjacent:to) netherlands +qatar text(was:sited:in) western_asia +qatar text(is:sited:in) asia +qatar text(is:adjacent:to) saudi_arabia +solomon_islands text(was:localized:in) melanesia +solomon_islands text(is:localized:in) oceania +syria text(was:present:in) western_asia +syria text(is:present:in) asia +syria text(neighbors) israel +syria text(is:a:neighboring:country:of) turkey +syria text(was:a:neighboring:country:of) jordan +syria text(neighbors:with) lebanon syria text(was:a:neighbor:of) iraq -india text(was:placed:in) southern_asia -india text(was:localized:in) asia +india text(is:still:in) southern_asia +india text(was:still:in) asia india text(is:a:neighbor:of) afghanistan india text(is:a:neighboring:state:to) bhutan india text(was:a:neighboring:state:to) bangladesh india text(borders:with) china -india text(neighbors:withborders) nepal -india text(neighbors) myanmar -india text(is:butted:against) pakistan -india text(was:butted:against) sri_lanka -morocco text(is:a:neighboring:country:of) algeria -morocco text(was:a:neighboring:country:of) spain -morocco text(was:adjacent:to) western_sahara -kenya text(is:localized:in) eastern_africa -kenya text(was:present:in) africa -kenya text(is:adjacent:to) uganda -kenya text(was:a:neighbor:of) tanzania -kenya text(is:a:neighbor:of) somalia -kenya text(is:a:neighboring:state:to) south_sudan -kenya text(was:a:neighboring:state:to) ethiopia -south_sudan text(is:present:in) middle_africa -south_sudan text(is:still:in) africa -south_sudan text(borders:with) uganda -south_sudan text(neighbors:withborders) dr_congo -south_sudan text(neighbors) kenya +india text(borders) nepal +india text(is:butted:against) myanmar +india text(was:butted:against) pakistan +india text(was:adjacent:to) sri_lanka +morocco text(is:adjacent:to) algeria +morocco text(neighbors) spain +morocco text(is:a:neighboring:country:of) western_sahara +kenya text(was:currently:in) eastern_africa +kenya text(is:currently:in) africa +kenya text(was:a:neighboring:country:of) uganda +kenya text(neighbors:with) tanzania +kenya text(was:a:neighbor:of) somalia +kenya text(is:a:neighbor:of) south_sudan +kenya text(is:a:neighboring:state:to) ethiopia +south_sudan text(is:placed:in) middle_africa +south_sudan text(was:placed:in) africa +south_sudan text(was:a:neighboring:state:to) uganda +south_sudan text(borders:with) dr_congo +south_sudan text(borders) kenya south_sudan text(is:butted:against) central_african_republic south_sudan text(was:butted:against) sudan -south_sudan text(is:a:neighboring:country:of) ethiopia -ghana text(was:a:neighboring:country:of) burkina_faso -ghana text(was:adjacent:to) ivory_coast -ghana text(is:adjacent:to) togo -tajikistan text(was:still:in) central_asia -tajikistan text(was:currently:in) asia -tajikistan text(was:a:neighbor:of) china -tajikistan text(is:a:neighbor:of) kyrgyzstan -tajikistan text(is:a:neighboring:state:to) afghanistan -tajikistan text(was:a:neighboring:state:to) uzbekistan -marshall_islands text(is:currently:in) micronesia -marshall_islands text(was:situated:in) oceania -cameroon text(is:situated:in) middle_africa -cameroon text(is:located:in) africa -cameroon text(borders:with) chad -cameroon text(neighbors:withborders) republic_of_the_congo -cameroon text(neighbors) gabon -cameroon text(is:butted:against) equatorial_guinea -cameroon text(was:butted:against) central_african_republic -cameroon text(is:a:neighboring:country:of) nigeria -nauru text(was:located:in) micronesia -nauru text(could:be:found:in) oceania -thailand text(was:a:neighboring:country:of) cambodia -thailand text(was:adjacent:to) myanmar -thailand text(is:adjacent:to) laos -thailand text(was:a:neighbor:of) malaysia -sudan text(is:a:neighbor:of) chad -sudan text(is:a:neighboring:state:to) libya -sudan text(was:a:neighboring:state:to) south_sudan -sudan text(borders:with) eritrea -sudan text(neighbors:withborders) central_african_republic -sudan text(neighbors) egypt -sudan text(is:butted:against) ethiopia -chad text(can:be:found:in) middle_africa -chad text(was:positioned:in) africa -chad text(was:butted:against) libya -chad text(is:a:neighboring:country:of) niger -chad text(was:a:neighboring:country:of) south_sudan +south_sudan text(was:adjacent:to) ethiopia +ghana text(is:adjacent:to) burkina_faso +ghana text(neighbors) ivory_coast +ghana text(is:a:neighboring:country:of) togo +tajikistan text(can:be:found:in) central_asia +tajikistan text(was:situated:in) asia +tajikistan text(was:a:neighboring:country:of) china +tajikistan text(neighbors:with) kyrgyzstan +tajikistan text(was:a:neighbor:of) afghanistan +tajikistan text(is:a:neighbor:of) uzbekistan +marshall_islands text(is:situated:in) micronesia +marshall_islands text(is:located:in) oceania +cameroon text(was:located:in) middle_africa +cameroon text(can:be:found:in) africa +cameroon text(is:a:neighboring:state:to) chad +cameroon text(was:a:neighboring:state:to) republic_of_the_congo +cameroon text(borders:with) gabon +cameroon text(borders) equatorial_guinea +cameroon text(is:butted:against) central_african_republic +cameroon text(was:butted:against) nigeria +nauru text(was:positioned:in) micronesia +nauru text(is:positioned:in) oceania +thailand text(was:adjacent:to) cambodia +thailand text(is:adjacent:to) myanmar +thailand text(neighbors) laos +thailand text(is:a:neighboring:country:of) malaysia +sudan text(was:a:neighboring:country:of) chad +sudan text(neighbors:with) libya +sudan text(was:a:neighbor:of) south_sudan +sudan text(is:a:neighbor:of) eritrea +sudan text(is:a:neighboring:state:to) central_african_republic +sudan text(was:a:neighboring:state:to) egypt +sudan text(borders:with) ethiopia +chad text(was:sited:in) middle_africa +chad text(is:sited:in) africa +chad text(borders) libya +chad text(is:butted:against) niger +chad text(was:butted:against) south_sudan chad text(was:adjacent:to) cameroon chad text(is:adjacent:to) central_african_republic -chad text(was:a:neighbor:of) nigeria -vanuatu text(is:positioned:in) melanesia -vanuatu text(was:sited:in) oceania -cape_verde text(is:sited:in) western_africa -cape_verde text(is:placed:in) africa -falkland_islands text(was:placed:in) south_america -falkland_islands text(was:localized:in) americas -liberia text(is:localized:in) western_africa -liberia text(was:present:in) africa -liberia text(is:a:neighbor:of) ivory_coast -liberia text(is:a:neighboring:state:to) sierra_leone -liberia text(was:a:neighboring:state:to) guinea -cambodia text(is:present:in) south-eastern_asia -cambodia text(is:still:in) asia -cambodia text(borders:with) vietnam -cambodia text(neighbors:withborders) thailand -cambodia text(neighbors) laos -zimbabwe text(is:butted:against) zambia -zimbabwe text(was:butted:against) south_africa -zimbabwe text(is:a:neighboring:country:of) botswana -zimbabwe text(was:a:neighboring:country:of) mozambique -comoros text(was:still:in) eastern_africa -comoros text(was:currently:in) africa -guam text(is:currently:in) micronesia -guam text(was:situated:in) oceania -bahamas text(is:situated:in) caribbean -bahamas text(is:located:in) americas -lebanon text(was:located:in) western_asia -lebanon text(could:be:found:in) asia -lebanon text(was:adjacent:to) israel -lebanon text(is:adjacent:to) syria -sint_maarten text(can:be:found:in) caribbean -sint_maarten text(was:positioned:in) americas -sint_maarten text(was:a:neighbor:of) saint_martin -ethiopia text(is:positioned:in) eastern_africa -ethiopia text(was:sited:in) africa -ethiopia text(is:a:neighbor:of) somalia -ethiopia text(is:a:neighboring:state:to) kenya -ethiopia text(was:a:neighboring:state:to) eritrea -ethiopia text(borders:with) south_sudan -ethiopia text(neighbors:withborders) djibouti -ethiopia text(neighbors) sudan -united_states_virgin_islands text(is:sited:in) caribbean -united_states_virgin_islands text(is:placed:in) americas -guinea-bissau text(was:placed:in) western_africa -guinea-bissau text(was:localized:in) africa -guinea-bissau text(is:butted:against) guinea -guinea-bissau text(was:butted:against) senegal -libya text(is:localized:in) northern_africa -libya text(was:present:in) africa -libya text(is:a:neighboring:country:of) chad -libya text(was:a:neighboring:country:of) tunisia -libya text(was:adjacent:to) niger -libya text(is:adjacent:to) algeria -libya text(was:a:neighbor:of) egypt -libya text(is:a:neighbor:of) sudan -bhutan text(is:present:in) southern_asia -bhutan text(is:still:in) asia -bhutan text(is:a:neighboring:state:to) china -bhutan text(was:a:neighboring:state:to) india -macau text(was:still:in) eastern_asia -macau text(was:currently:in) asia -macau text(borders:with) china -french_polynesia text(is:currently:in) polynesia -french_polynesia text(was:situated:in) oceania -somalia text(is:situated:in) eastern_africa -somalia text(is:located:in) africa -somalia text(neighbors:withborders) djibouti -somalia text(neighbors) kenya -somalia text(is:butted:against) ethiopia -saint_barthélemy text(was:located:in) caribbean -saint_barthélemy text(could:be:found:in) americas -russia text(can:be:found:in) eastern_europe -russia text(was:positioned:in) europe -russia text(was:butted:against) ukraine -russia text(is:a:neighboring:country:of) belarus -russia text(was:a:neighboring:country:of) china -russia text(was:adjacent:to) kazakhstan -russia text(is:adjacent:to) norway -russia text(was:a:neighbor:of) poland -russia text(is:a:neighbor:of) azerbaijan -russia text(is:a:neighboring:state:to) lithuania -russia text(was:a:neighboring:state:to) estonia -russia text(borders:with) north_korea -russia text(neighbors:withborders) finland -russia text(neighbors) mongolia -russia text(is:butted:against) latvia -russia text(was:butted:against) georgia -new_zealand text(is:positioned:in) australia_and_new_zealand -new_zealand text(was:sited:in) oceania -panama text(is:sited:in) central_america -panama text(is:placed:in) americas -panama text(is:a:neighboring:country:of) costa_rica -panama text(was:a:neighboring:country:of) colombia -papua_new_guinea text(was:placed:in) melanesia -papua_new_guinea text(was:localized:in) oceania -papua_new_guinea text(was:adjacent:to) indonesia -north_korea text(is:adjacent:to) china -north_korea text(was:a:neighbor:of) south_korea -north_korea text(is:a:neighbor:of) russia -latvia text(is:localized:in) northern_europe -latvia text(was:present:in) europe -latvia text(is:a:neighboring:state:to) lithuania -latvia text(was:a:neighboring:state:to) belarus -latvia text(borders:with) russia -latvia text(neighbors:withborders) estonia -oman text(is:present:in) western_asia -oman text(is:still:in) asia -oman text(neighbors) saudi_arabia -oman text(is:butted:against) yemen -oman text(was:butted:against) united_arab_emirates -saint_pierre_and_miquelon text(was:still:in) northern_america -saint_pierre_and_miquelon text(was:currently:in) americas -martinique text(is:currently:in) caribbean -martinique text(was:situated:in) americas -united_kingdom text(is:situated:in) northern_europe -united_kingdom text(is:located:in) europe -united_kingdom text(is:a:neighboring:country:of) ireland -israel text(was:located:in) western_asia -israel text(could:be:found:in) asia -israel text(was:a:neighboring:country:of) lebanon -israel text(was:adjacent:to) egypt -israel text(is:adjacent:to) jordan -israel text(was:a:neighbor:of) syria -jersey text(can:be:found:in) northern_europe -jersey text(was:positioned:in) europe -pitcairn_islands text(is:positioned:in) polynesia -pitcairn_islands text(was:sited:in) oceania -togo text(is:sited:in) western_africa -togo text(is:placed:in) africa -togo text(is:a:neighbor:of) burkina_faso -togo text(is:a:neighboring:state:to) ghana -togo text(was:a:neighboring:state:to) benin -kiribati text(was:placed:in) micronesia -kiribati text(was:localized:in) oceania -iran text(is:localized:in) southern_asia -iran text(was:present:in) asia -iran text(borders:with) afghanistan -iran text(neighbors:withborders) turkmenistan -iran text(neighbors) turkey -iran text(is:butted:against) armenia -iran text(was:butted:against) azerbaijan -iran text(is:a:neighboring:country:of) pakistan -iran text(was:a:neighboring:country:of) iraq -saint_martin text(is:present:in) caribbean -saint_martin text(is:still:in) americas -saint_martin text(was:adjacent:to) sint_maarten -dominican_republic text(was:still:in) caribbean -dominican_republic text(was:currently:in) americas -dominican_republic text(is:adjacent:to) haiti -denmark text(was:a:neighbor:of) germany -bermuda text(is:currently:in) northern_america -bermuda text(was:situated:in) americas -chile text(is:a:neighbor:of) argentina -chile text(is:a:neighboring:state:to) bolivia -chile text(was:a:neighboring:state:to) peru -kosovo text(is:situated:in) eastern_europe -kosovo text(is:located:in) europe -kosovo text(borders:with) serbia -kosovo text(neighbors:withborders) albania +chad text(neighbors) nigeria +vanuatu text(was:localized:in) melanesia +vanuatu text(is:localized:in) oceania +cape_verde text(was:present:in) western_africa +cape_verde text(is:present:in) africa +falkland_islands text(is:still:in) south_america +falkland_islands text(was:still:in) americas +liberia text(was:currently:in) western_africa +liberia text(is:currently:in) africa +liberia text(is:a:neighboring:country:of) ivory_coast +liberia text(was:a:neighboring:country:of) sierra_leone +liberia text(neighbors:with) guinea +cambodia text(is:placed:in) south-eastern_asia +cambodia text(was:placed:in) asia +cambodia text(was:a:neighbor:of) vietnam +cambodia text(is:a:neighbor:of) thailand +cambodia text(is:a:neighboring:state:to) laos +zimbabwe text(was:a:neighboring:state:to) zambia +zimbabwe text(borders:with) south_africa +zimbabwe text(borders) botswana +zimbabwe text(is:butted:against) mozambique +comoros text(can:be:found:in) eastern_africa +comoros text(was:situated:in) africa +guam text(is:situated:in) micronesia +guam text(is:located:in) oceania +bahamas text(was:located:in) caribbean +bahamas text(can:be:found:in) americas +lebanon text(was:positioned:in) western_asia +lebanon text(is:positioned:in) asia +lebanon text(was:butted:against) israel +lebanon text(was:adjacent:to) syria +sint_maarten text(was:sited:in) caribbean +sint_maarten text(is:sited:in) americas +sint_maarten text(is:adjacent:to) saint_martin +ethiopia text(was:localized:in) eastern_africa +ethiopia text(is:localized:in) africa +ethiopia text(neighbors) somalia +ethiopia text(is:a:neighboring:country:of) kenya +ethiopia text(was:a:neighboring:country:of) eritrea +ethiopia text(neighbors:with) south_sudan +ethiopia text(was:a:neighbor:of) djibouti +ethiopia text(is:a:neighbor:of) sudan +united_states_virgin_islands text(was:present:in) caribbean +united_states_virgin_islands text(is:present:in) americas +guinea-bissau text(is:still:in) western_africa +guinea-bissau text(was:still:in) africa +guinea-bissau text(is:a:neighboring:state:to) guinea +guinea-bissau text(was:a:neighboring:state:to) senegal +libya text(was:currently:in) northern_africa +libya text(is:currently:in) africa +libya text(borders:with) chad +libya text(borders) tunisia +libya text(is:butted:against) niger +libya text(was:butted:against) algeria +libya text(was:adjacent:to) egypt +libya text(is:adjacent:to) sudan +bhutan text(is:placed:in) southern_asia +bhutan text(was:placed:in) asia +bhutan text(neighbors) china +bhutan text(is:a:neighboring:country:of) india +macau text(can:be:found:in) eastern_asia +macau text(was:situated:in) asia +macau text(was:a:neighboring:country:of) china +french_polynesia text(is:situated:in) polynesia +french_polynesia text(is:located:in) oceania +somalia text(was:located:in) eastern_africa +somalia text(can:be:found:in) africa +somalia text(neighbors:with) djibouti +somalia text(was:a:neighbor:of) kenya +somalia text(is:a:neighbor:of) ethiopia +saint_barthélemy text(was:positioned:in) caribbean +saint_barthélemy text(is:positioned:in) americas +russia text(was:sited:in) eastern_europe +russia text(is:sited:in) europe +russia text(is:a:neighboring:state:to) ukraine +russia text(was:a:neighboring:state:to) belarus +russia text(borders:with) china +russia text(borders) kazakhstan +russia text(is:butted:against) norway +russia text(was:butted:against) poland +russia text(was:adjacent:to) azerbaijan +russia text(is:adjacent:to) lithuania +russia text(neighbors) estonia +russia text(is:a:neighboring:country:of) north_korea +russia text(was:a:neighboring:country:of) finland +russia text(neighbors:with) mongolia +russia text(was:a:neighbor:of) latvia +russia text(is:a:neighbor:of) georgia +new_zealand text(was:localized:in) australia_and_new_zealand +new_zealand text(is:localized:in) oceania +panama text(was:present:in) central_america +panama text(is:present:in) americas +panama text(is:a:neighboring:state:to) costa_rica +panama text(was:a:neighboring:state:to) colombia +papua_new_guinea text(is:still:in) melanesia +papua_new_guinea text(was:still:in) oceania +papua_new_guinea text(borders:with) indonesia +north_korea text(borders) china +north_korea text(is:butted:against) south_korea +north_korea text(was:butted:against) russia +latvia text(was:currently:in) northern_europe +latvia text(is:currently:in) europe +latvia text(was:adjacent:to) lithuania +latvia text(is:adjacent:to) belarus +latvia text(neighbors) russia +latvia text(is:a:neighboring:country:of) estonia +oman text(is:placed:in) western_asia +oman text(was:placed:in) asia +oman text(was:a:neighboring:country:of) saudi_arabia +oman text(neighbors:with) yemen +oman text(was:a:neighbor:of) united_arab_emirates +saint_pierre_and_miquelon text(can:be:found:in) northern_america +saint_pierre_and_miquelon text(was:situated:in) americas +martinique text(is:situated:in) caribbean +martinique text(is:located:in) americas +united_kingdom text(was:located:in) northern_europe +united_kingdom text(can:be:found:in) europe +united_kingdom text(is:a:neighbor:of) ireland +israel text(was:positioned:in) western_asia +israel text(is:positioned:in) asia +israel text(is:a:neighboring:state:to) lebanon +israel text(was:a:neighboring:state:to) egypt +israel text(borders:with) jordan +israel text(borders) syria +jersey text(was:sited:in) northern_europe +jersey text(is:sited:in) europe +pitcairn_islands text(was:localized:in) polynesia +pitcairn_islands text(is:localized:in) oceania +togo text(was:present:in) western_africa +togo text(is:present:in) africa +togo text(is:butted:against) burkina_faso +togo text(was:butted:against) ghana +togo text(was:adjacent:to) benin +kiribati text(is:still:in) micronesia +kiribati text(was:still:in) oceania +iran text(was:currently:in) southern_asia +iran text(is:currently:in) asia +iran text(is:adjacent:to) afghanistan +iran text(neighbors) turkmenistan +iran text(is:a:neighboring:country:of) turkey +iran text(was:a:neighboring:country:of) armenia +iran text(neighbors:with) azerbaijan +iran text(was:a:neighbor:of) pakistan +iran text(is:a:neighbor:of) iraq +saint_martin text(is:placed:in) caribbean +saint_martin text(was:placed:in) americas +saint_martin text(is:a:neighboring:state:to) sint_maarten +dominican_republic text(can:be:found:in) caribbean +dominican_republic text(was:situated:in) americas +dominican_republic text(was:a:neighboring:state:to) haiti +denmark text(borders:with) germany +bermuda text(is:situated:in) northern_america +bermuda text(is:located:in) americas +chile text(borders) argentina +chile text(is:butted:against) bolivia +chile text(was:butted:against) peru +kosovo text(was:located:in) eastern_europe +kosovo text(can:be:found:in) europe +kosovo text(was:adjacent:to) serbia +kosovo text(is:adjacent:to) albania kosovo text(neighbors) macedonia -kosovo text(is:butted:against) montenegro -saint_kitts_and_nevis text(was:located:in) caribbean -saint_kitts_and_nevis text(could:be:found:in) americas -eritrea text(was:butted:against) djibouti -eritrea text(is:a:neighboring:country:of) sudan -eritrea text(was:a:neighboring:country:of) ethiopia -equatorial_guinea text(can:be:found:in) middle_africa -equatorial_guinea text(was:positioned:in) africa -equatorial_guinea text(was:adjacent:to) gabon -equatorial_guinea text(is:adjacent:to) cameroon -niger text(is:positioned:in) western_africa -niger text(was:sited:in) africa -niger text(was:a:neighbor:of) chad -niger text(is:a:neighbor:of) libya -niger text(is:a:neighboring:state:to) burkina_faso -niger text(was:a:neighboring:state:to) benin -niger text(borders:with) mali -niger text(neighbors:withborders) algeria -niger text(neighbors) nigeria -anguilla text(is:sited:in) caribbean -anguilla text(is:placed:in) americas -rwanda text(was:placed:in) eastern_africa -rwanda text(was:localized:in) africa -rwanda text(is:butted:against) burundi -rwanda text(was:butted:against) tanzania -rwanda text(is:a:neighboring:country:of) uganda -rwanda text(was:a:neighboring:country:of) dr_congo -united_arab_emirates text(is:localized:in) western_asia -united_arab_emirates text(was:present:in) asia -united_arab_emirates text(was:adjacent:to) oman -united_arab_emirates text(is:adjacent:to) saudi_arabia -estonia text(is:present:in) northern_europe -estonia text(is:still:in) europe -estonia text(was:a:neighbor:of) latvia -estonia text(is:a:neighbor:of) russia -greece text(was:still:in) southern_europe -greece text(was:currently:in) europe -greece text(is:a:neighboring:state:to) bulgaria -greece text(was:a:neighboring:state:to) albania -greece text(borders:with) macedonia -greece text(neighbors:withborders) turkey -senegal text(is:currently:in) western_africa -senegal text(was:situated:in) africa -senegal text(neighbors) guinea-bissau -senegal text(is:butted:against) mauritania -senegal text(was:butted:against) mali +kosovo text(is:a:neighboring:country:of) montenegro +saint_kitts_and_nevis text(was:positioned:in) caribbean +saint_kitts_and_nevis text(is:positioned:in) americas +eritrea text(was:a:neighboring:country:of) djibouti +eritrea text(neighbors:with) sudan +eritrea text(was:a:neighbor:of) ethiopia +equatorial_guinea text(was:sited:in) middle_africa +equatorial_guinea text(is:sited:in) africa +equatorial_guinea text(is:a:neighbor:of) gabon +equatorial_guinea text(is:a:neighboring:state:to) cameroon +niger text(was:localized:in) western_africa +niger text(is:localized:in) africa +niger text(was:a:neighboring:state:to) chad +niger text(borders:with) libya +niger text(borders) burkina_faso +niger text(is:butted:against) benin +niger text(was:butted:against) mali +niger text(was:adjacent:to) algeria +niger text(is:adjacent:to) nigeria +anguilla text(was:present:in) caribbean +anguilla text(is:present:in) americas +rwanda text(is:still:in) eastern_africa +rwanda text(was:still:in) africa +rwanda text(neighbors) burundi +rwanda text(is:a:neighboring:country:of) tanzania +rwanda text(was:a:neighboring:country:of) uganda +rwanda text(neighbors:with) dr_congo +united_arab_emirates text(was:currently:in) western_asia +united_arab_emirates text(is:currently:in) asia +united_arab_emirates text(was:a:neighbor:of) oman +united_arab_emirates text(is:a:neighbor:of) saudi_arabia +estonia text(is:placed:in) northern_europe +estonia text(was:placed:in) europe +estonia text(is:a:neighboring:state:to) latvia +estonia text(was:a:neighboring:state:to) russia +greece text(can:be:found:in) southern_europe +greece text(was:situated:in) europe +greece text(borders:with) bulgaria +greece text(borders) albania +greece text(is:butted:against) macedonia +greece text(was:butted:against) turkey +senegal text(is:situated:in) western_africa +senegal text(is:located:in) africa +senegal text(was:adjacent:to) guinea-bissau +senegal text(is:adjacent:to) mauritania +senegal text(neighbors) mali senegal text(is:a:neighboring:country:of) gambia senegal text(was:a:neighboring:country:of) guinea -guadeloupe text(is:situated:in) caribbean -guadeloupe text(is:located:in) americas -monaco text(was:adjacent:to) france -djibouti text(is:adjacent:to) eritrea -djibouti text(was:a:neighbor:of) somalia -djibouti text(is:a:neighbor:of) ethiopia -indonesia text(is:a:neighboring:state:to) papua_new_guinea -indonesia text(was:a:neighboring:state:to) timor-leste -indonesia text(borders:with) malaysia -british_virgin_islands text(was:located:in) caribbean -british_virgin_islands text(could:be:found:in) americas -cook_islands text(can:be:found:in) polynesia -cook_islands text(was:positioned:in) oceania -uganda text(is:positioned:in) eastern_africa -uganda text(was:sited:in) africa -uganda text(neighbors:withborders) tanzania -uganda text(neighbors) dr_congo -uganda text(is:butted:against) kenya -uganda text(was:butted:against) south_sudan -uganda text(is:a:neighboring:country:of) rwanda -macedonia text(is:sited:in) southern_europe -macedonia text(is:placed:in) europe -macedonia text(was:a:neighboring:country:of) kosovo -macedonia text(was:adjacent:to) greece -macedonia text(is:adjacent:to) albania +guadeloupe text(was:located:in) caribbean +guadeloupe text(can:be:found:in) americas +monaco text(neighbors:with) france +djibouti text(was:a:neighbor:of) eritrea +djibouti text(is:a:neighbor:of) somalia +djibouti text(is:a:neighboring:state:to) ethiopia +indonesia text(was:a:neighboring:state:to) papua_new_guinea +indonesia text(borders:with) timor-leste +indonesia text(borders) malaysia +british_virgin_islands text(was:positioned:in) caribbean +british_virgin_islands text(is:positioned:in) americas +cook_islands text(was:sited:in) polynesia +cook_islands text(is:sited:in) oceania +uganda text(was:localized:in) eastern_africa +uganda text(is:localized:in) africa +uganda text(is:butted:against) tanzania +uganda text(was:butted:against) dr_congo +uganda text(was:adjacent:to) kenya +uganda text(is:adjacent:to) south_sudan +uganda text(neighbors) rwanda +macedonia text(was:present:in) southern_europe +macedonia text(is:present:in) europe +macedonia text(is:a:neighboring:country:of) kosovo +macedonia text(was:a:neighboring:country:of) greece +macedonia text(neighbors:with) albania macedonia text(was:a:neighbor:of) serbia macedonia text(is:a:neighbor:of) bulgaria -tunisia text(was:placed:in) northern_africa -tunisia text(was:localized:in) africa +tunisia text(is:still:in) northern_africa +tunisia text(was:still:in) africa tunisia text(is:a:neighboring:state:to) libya tunisia text(was:a:neighboring:state:to) algeria ecuador text(borders:with) peru -ecuador text(neighbors:withborders) colombia -brazil text(is:localized:in) south_america -brazil text(was:present:in) americas -brazil text(neighbors) bolivia -brazil text(is:butted:against) colombia -brazil text(was:butted:against) paraguay -brazil text(is:a:neighboring:country:of) uruguay -brazil text(was:a:neighboring:country:of) french_guiana -brazil text(was:adjacent:to) suriname -brazil text(is:adjacent:to) venezuela -brazil text(was:a:neighbor:of) argentina -brazil text(is:a:neighbor:of) guyana -brazil text(is:a:neighboring:state:to) peru -paraguay text(is:present:in) south_america -paraguay text(is:still:in) americas -paraguay text(was:a:neighboring:state:to) argentina -paraguay text(borders:with) brazil -paraguay text(neighbors:withborders) bolivia -finland text(was:still:in) northern_europe -finland text(was:currently:in) europe -finland text(neighbors) norway +ecuador text(borders) colombia +brazil text(was:currently:in) south_america +brazil text(is:currently:in) americas +brazil text(is:butted:against) bolivia +brazil text(was:butted:against) colombia +brazil text(was:adjacent:to) paraguay +brazil text(is:adjacent:to) uruguay +brazil text(neighbors) french_guiana +brazil text(is:a:neighboring:country:of) suriname +brazil text(was:a:neighboring:country:of) venezuela +brazil text(neighbors:with) argentina +brazil text(was:a:neighbor:of) guyana +brazil text(is:a:neighbor:of) peru +paraguay text(is:placed:in) south_america +paraguay text(was:placed:in) americas +paraguay text(is:a:neighboring:state:to) argentina +paraguay text(was:a:neighboring:state:to) brazil +paraguay text(borders:with) bolivia +finland text(can:be:found:in) northern_europe +finland text(was:situated:in) europe +finland text(borders) norway finland text(is:butted:against) sweden finland text(was:butted:against) russia -jordan text(is:a:neighboring:country:of) saudi_arabia -jordan text(was:a:neighboring:country:of) israel -jordan text(was:adjacent:to) iraq -jordan text(is:adjacent:to) syria -timor-leste text(was:a:neighbor:of) indonesia -montenegro text(is:currently:in) southern_europe -montenegro text(was:situated:in) europe -montenegro text(is:a:neighbor:of) kosovo -montenegro text(is:a:neighboring:state:to) bosnia_and_herzegovina -montenegro text(was:a:neighboring:state:to) croatia -montenegro text(borders:with) serbia -montenegro text(neighbors:withborders) albania -peru text(is:situated:in) south_america -peru text(is:located:in) americas -peru text(neighbors) ecuador -peru text(is:butted:against) bolivia -peru text(was:butted:against) chile -peru text(is:a:neighboring:country:of) brazil -peru text(was:a:neighboring:country:of) colombia -montserrat text(was:located:in) caribbean -montserrat text(could:be:found:in) americas -ukraine text(can:be:found:in) eastern_europe -ukraine text(was:positioned:in) europe -ukraine text(was:adjacent:to) slovakia -ukraine text(is:adjacent:to) belarus -ukraine text(was:a:neighbor:of) poland -ukraine text(is:a:neighbor:of) russia -ukraine text(is:a:neighboring:state:to) hungary -ukraine text(was:a:neighboring:state:to) moldova -ukraine text(borders:with) romania -dominica text(is:positioned:in) caribbean -dominica text(was:sited:in) americas -turkmenistan text(neighbors:withborders) kazakhstan -turkmenistan text(neighbors) afghanistan -turkmenistan text(is:butted:against) uzbekistan -turkmenistan text(was:butted:against) iran -guernsey text(is:sited:in) northern_europe -guernsey text(is:placed:in) europe -gibraltar text(was:placed:in) southern_europe -gibraltar text(was:localized:in) europe -gibraltar text(is:a:neighboring:country:of) spain -switzerland text(is:localized:in) western_europe -switzerland text(was:present:in) europe -switzerland text(was:a:neighboring:country:of) germany +jordan text(was:adjacent:to) saudi_arabia +jordan text(is:adjacent:to) israel +jordan text(neighbors) iraq +jordan text(is:a:neighboring:country:of) syria +timor-leste text(was:a:neighboring:country:of) indonesia +montenegro text(is:situated:in) southern_europe +montenegro text(is:located:in) europe +montenegro text(neighbors:with) kosovo +montenegro text(was:a:neighbor:of) bosnia_and_herzegovina +montenegro text(is:a:neighbor:of) croatia +montenegro text(is:a:neighboring:state:to) serbia +montenegro text(was:a:neighboring:state:to) albania +peru text(was:located:in) south_america +peru text(can:be:found:in) americas +peru text(borders:with) ecuador +peru text(borders) bolivia +peru text(is:butted:against) chile +peru text(was:butted:against) brazil +peru text(was:adjacent:to) colombia +montserrat text(was:positioned:in) caribbean +montserrat text(is:positioned:in) americas +ukraine text(was:sited:in) eastern_europe +ukraine text(is:sited:in) europe +ukraine text(is:adjacent:to) slovakia +ukraine text(neighbors) belarus +ukraine text(is:a:neighboring:country:of) poland +ukraine text(was:a:neighboring:country:of) russia +ukraine text(neighbors:with) hungary +ukraine text(was:a:neighbor:of) moldova +ukraine text(is:a:neighbor:of) romania +dominica text(was:localized:in) caribbean +dominica text(is:localized:in) americas +turkmenistan text(is:a:neighboring:state:to) kazakhstan +turkmenistan text(was:a:neighboring:state:to) afghanistan +turkmenistan text(borders:with) uzbekistan +turkmenistan text(borders) iran +guernsey text(was:present:in) northern_europe +guernsey text(is:present:in) europe +gibraltar text(is:still:in) southern_europe +gibraltar text(was:still:in) europe +gibraltar text(is:butted:against) spain +switzerland text(was:currently:in) western_europe +switzerland text(is:currently:in) europe +switzerland text(was:butted:against) germany switzerland text(was:adjacent:to) italy switzerland text(is:adjacent:to) austria -switzerland text(was:a:neighbor:of) france -switzerland text(is:a:neighbor:of) liechtenstein -austria text(is:present:in) western_europe -austria text(is:still:in) europe -austria text(is:a:neighboring:state:to) germany -austria text(was:a:neighboring:state:to) slovakia -austria text(borders:with) slovenia -austria text(neighbors:withborders) italy -austria text(neighbors) switzerland -austria text(is:butted:against) hungary -austria text(was:butted:against) liechtenstein -austria text(is:a:neighboring:country:of) czechia -hungary text(was:a:neighboring:country:of) ukraine -hungary text(was:adjacent:to) slovakia -hungary text(is:adjacent:to) slovenia -hungary text(was:a:neighbor:of) croatia -hungary text(is:a:neighbor:of) austria -hungary text(is:a:neighboring:state:to) serbia -hungary text(was:a:neighboring:state:to) romania -malawi text(was:still:in) eastern_africa -malawi text(was:currently:in) africa -malawi text(borders:with) zambia -malawi text(neighbors:withborders) tanzania -malawi text(neighbors) mozambique -hong_kong text(is:butted:against) china -liechtenstein text(is:currently:in) western_europe -liechtenstein text(was:situated:in) europe -liechtenstein text(was:butted:against) switzerland -liechtenstein text(is:a:neighboring:country:of) austria -barbados text(is:situated:in) caribbean -barbados text(is:located:in) americas -georgia text(was:located:in) western_asia -georgia text(could:be:found:in) asia -georgia text(was:a:neighboring:country:of) armenia -georgia text(was:adjacent:to) azerbaijan -georgia text(is:adjacent:to) russia -georgia text(was:a:neighbor:of) turkey -albania text(can:be:found:in) southern_europe -albania text(was:positioned:in) europe -albania text(is:a:neighbor:of) montenegro -albania text(is:a:neighboring:state:to) macedonia -albania text(was:a:neighboring:state:to) kosovo -albania text(borders:with) greece -kuwait text(is:positioned:in) western_asia -kuwait text(was:sited:in) asia -kuwait text(neighbors:withborders) saudi_arabia -kuwait text(neighbors) iraq -south_africa text(is:sited:in) southern_africa -south_africa text(is:placed:in) africa -south_africa text(is:butted:against) mozambique -south_africa text(was:butted:against) botswana -south_africa text(is:a:neighboring:country:of) swaziland -south_africa text(was:a:neighboring:country:of) zimbabwe -south_africa text(was:adjacent:to) namibia -south_africa text(is:adjacent:to) lesotho -haiti text(was:placed:in) caribbean -haiti text(was:localized:in) americas -haiti text(was:a:neighbor:of) dominican_republic -afghanistan text(is:localized:in) southern_asia -afghanistan text(was:present:in) asia -afghanistan text(is:a:neighbor:of) turkmenistan -afghanistan text(is:a:neighboring:state:to) china -afghanistan text(was:a:neighboring:state:to) tajikistan -afghanistan text(borders:with) uzbekistan -afghanistan text(neighbors:withborders) iran -afghanistan text(neighbors) pakistan -singapore text(is:present:in) south-eastern_asia -singapore text(is:still:in) asia -benin text(was:still:in) western_africa -benin text(was:currently:in) africa -benin text(is:butted:against) niger -benin text(was:butted:against) burkina_faso -benin text(is:a:neighboring:country:of) togo -benin text(was:a:neighboring:country:of) nigeria -åland_islands text(is:currently:in) northern_europe -åland_islands text(was:situated:in) europe -croatia text(is:situated:in) southern_europe -croatia text(is:located:in) europe -croatia text(was:adjacent:to) slovenia -croatia text(is:adjacent:to) bosnia_and_herzegovina -croatia text(was:a:neighbor:of) hungary -croatia text(is:a:neighbor:of) serbia -croatia text(is:a:neighboring:state:to) montenegro -sweden text(was:located:in) northern_europe -sweden text(could:be:found:in) europe -sweden text(was:a:neighboring:state:to) norway -sweden text(borders:with) finland -mexico text(neighbors:withborders) belize -mexico text(neighbors) united_states -mexico text(is:butted:against) guatemala -greenland text(can:be:found:in) northern_america -greenland text(was:positioned:in) americas -norfolk_island text(is:positioned:in) australia_and_new_zealand -norfolk_island text(was:sited:in) oceania -nepal text(is:sited:in) southern_asia -nepal text(is:placed:in) asia -nepal text(was:butted:against) china -nepal text(is:a:neighboring:country:of) india -guatemala text(was:a:neighboring:country:of) belize -guatemala text(was:adjacent:to) el_salvador -guatemala text(is:adjacent:to) mexico -guatemala text(was:a:neighbor:of) honduras -south_korea text(was:placed:in) eastern_asia -south_korea text(was:localized:in) asia -south_korea text(is:a:neighbor:of) north_korea -moldova text(is:localized:in) eastern_europe -moldova text(was:present:in) europe -moldova text(is:a:neighboring:state:to) ukraine -moldova text(was:a:neighboring:state:to) romania -mauritius text(is:present:in) eastern_africa -mauritius text(is:still:in) africa -belarus text(borders:with) ukraine -belarus text(neighbors:withborders) poland -belarus text(neighbors) lithuania -belarus text(is:butted:against) russia -belarus text(was:butted:against) latvia -bangladesh text(is:a:neighboring:country:of) myanmar -bangladesh text(was:a:neighboring:country:of) india -malaysia text(was:still:in) south-eastern_asia -malaysia text(was:currently:in) asia -malaysia text(was:adjacent:to) thailand -malaysia text(is:adjacent:to) indonesia -malaysia text(was:a:neighbor:of) brunei -bosnia_and_herzegovina text(is:currently:in) southern_europe -bosnia_and_herzegovina text(was:situated:in) europe -bosnia_and_herzegovina text(is:a:neighbor:of) serbia -bosnia_and_herzegovina text(is:a:neighboring:state:to) croatia -bosnia_and_herzegovina text(was:a:neighboring:state:to) montenegro -luxembourg text(is:situated:in) western_europe -luxembourg text(is:located:in) europe -luxembourg text(borders:with) germany -luxembourg text(neighbors:withborders) belgium +switzerland text(neighbors) france +switzerland text(is:a:neighboring:country:of) liechtenstein +austria text(is:placed:in) western_europe +austria text(was:placed:in) europe +austria text(was:a:neighboring:country:of) germany +austria text(neighbors:with) slovakia +austria text(was:a:neighbor:of) slovenia +austria text(is:a:neighbor:of) italy +austria text(is:a:neighboring:state:to) switzerland +austria text(was:a:neighboring:state:to) hungary +austria text(borders:with) liechtenstein +austria text(borders) czechia +hungary text(is:butted:against) ukraine +hungary text(was:butted:against) slovakia +hungary text(was:adjacent:to) slovenia +hungary text(is:adjacent:to) croatia +hungary text(neighbors) austria +hungary text(is:a:neighboring:country:of) serbia +hungary text(was:a:neighboring:country:of) romania +malawi text(can:be:found:in) eastern_africa +malawi text(was:situated:in) africa +malawi text(neighbors:with) zambia +malawi text(was:a:neighbor:of) tanzania +malawi text(is:a:neighbor:of) mozambique +hong_kong text(is:a:neighboring:state:to) china +liechtenstein text(is:situated:in) western_europe +liechtenstein text(is:located:in) europe +liechtenstein text(was:a:neighboring:state:to) switzerland +liechtenstein text(borders:with) austria +barbados text(was:located:in) caribbean +barbados text(can:be:found:in) americas +georgia text(was:positioned:in) western_asia +georgia text(is:positioned:in) asia +georgia text(borders) armenia +georgia text(is:butted:against) azerbaijan +georgia text(was:butted:against) russia +georgia text(was:adjacent:to) turkey +albania text(was:sited:in) southern_europe +albania text(is:sited:in) europe +albania text(is:adjacent:to) montenegro +albania text(neighbors) macedonia +albania text(is:a:neighboring:country:of) kosovo +albania text(was:a:neighboring:country:of) greece +kuwait text(was:localized:in) western_asia +kuwait text(is:localized:in) asia +kuwait text(neighbors:with) saudi_arabia +kuwait text(was:a:neighbor:of) iraq +south_africa text(was:present:in) southern_africa +south_africa text(is:present:in) africa +south_africa text(is:a:neighbor:of) mozambique +south_africa text(is:a:neighboring:state:to) botswana +south_africa text(was:a:neighboring:state:to) swaziland +south_africa text(borders:with) zimbabwe +south_africa text(borders) namibia +south_africa text(is:butted:against) lesotho +haiti text(is:still:in) caribbean +haiti text(was:still:in) americas +haiti text(was:butted:against) dominican_republic +afghanistan text(was:currently:in) southern_asia +afghanistan text(is:currently:in) asia +afghanistan text(was:adjacent:to) turkmenistan +afghanistan text(is:adjacent:to) china +afghanistan text(neighbors) tajikistan +afghanistan text(is:a:neighboring:country:of) uzbekistan +afghanistan text(was:a:neighboring:country:of) iran +afghanistan text(neighbors:with) pakistan +singapore text(is:placed:in) south-eastern_asia +singapore text(was:placed:in) asia +benin text(can:be:found:in) western_africa +benin text(was:situated:in) africa +benin text(was:a:neighbor:of) niger +benin text(is:a:neighbor:of) burkina_faso +benin text(is:a:neighboring:state:to) togo +benin text(was:a:neighboring:state:to) nigeria +åland_islands text(is:situated:in) northern_europe +åland_islands text(is:located:in) europe +croatia text(was:located:in) southern_europe +croatia text(can:be:found:in) europe +croatia text(borders:with) slovenia +croatia text(borders) bosnia_and_herzegovina +croatia text(is:butted:against) hungary +croatia text(was:butted:against) serbia +croatia text(was:adjacent:to) montenegro +sweden text(was:positioned:in) northern_europe +sweden text(is:positioned:in) europe +sweden text(is:adjacent:to) norway +sweden text(neighbors) finland +mexico text(is:a:neighboring:country:of) belize +mexico text(was:a:neighboring:country:of) united_states +mexico text(neighbors:with) guatemala +greenland text(was:sited:in) northern_america +greenland text(is:sited:in) americas +norfolk_island text(was:localized:in) australia_and_new_zealand +norfolk_island text(is:localized:in) oceania +nepal text(was:present:in) southern_asia +nepal text(is:present:in) asia +nepal text(was:a:neighbor:of) china +nepal text(is:a:neighbor:of) india +guatemala text(is:a:neighboring:state:to) belize +guatemala text(was:a:neighboring:state:to) el_salvador +guatemala text(borders:with) mexico +guatemala text(borders) honduras +south_korea text(is:still:in) eastern_asia +south_korea text(was:still:in) asia +south_korea text(is:butted:against) north_korea +moldova text(was:currently:in) eastern_europe +moldova text(is:currently:in) europe +moldova text(was:butted:against) ukraine +moldova text(was:adjacent:to) romania +mauritius text(is:placed:in) eastern_africa +mauritius text(was:placed:in) africa +belarus text(is:adjacent:to) ukraine +belarus text(neighbors) poland +belarus text(is:a:neighboring:country:of) lithuania +belarus text(was:a:neighboring:country:of) russia +belarus text(neighbors:with) latvia +bangladesh text(was:a:neighbor:of) myanmar +bangladesh text(is:a:neighbor:of) india +malaysia text(can:be:found:in) south-eastern_asia +malaysia text(was:situated:in) asia +malaysia text(is:a:neighboring:state:to) thailand +malaysia text(was:a:neighboring:state:to) indonesia +malaysia text(borders:with) brunei +bosnia_and_herzegovina text(is:situated:in) southern_europe +bosnia_and_herzegovina text(is:located:in) europe +bosnia_and_herzegovina text(borders) serbia +bosnia_and_herzegovina text(is:butted:against) croatia +bosnia_and_herzegovina text(was:butted:against) montenegro +luxembourg text(was:located:in) western_europe +luxembourg text(can:be:found:in) europe +luxembourg text(was:adjacent:to) germany +luxembourg text(is:adjacent:to) belgium luxembourg text(neighbors) france -italy text(was:located:in) southern_europe -italy text(could:be:found:in) europe -italy text(is:butted:against) slovenia -italy text(was:butted:against) switzerland -italy text(is:a:neighboring:country:of) austria -italy text(was:a:neighboring:country:of) france -italy text(was:adjacent:to) vatican_city -italy text(is:adjacent:to) san_marino -azerbaijan text(can:be:found:in) western_asia -azerbaijan text(was:positioned:in) asia -azerbaijan text(was:a:neighbor:of) turkey -azerbaijan text(is:a:neighbor:of) armenia -azerbaijan text(is:a:neighboring:state:to) russia -azerbaijan text(was:a:neighboring:state:to) iran -azerbaijan text(borders:with) georgia -honduras text(is:positioned:in) central_america -honduras text(was:sited:in) americas -honduras text(neighbors:withborders) guatemala -honduras text(neighbors) nicaragua -honduras text(is:butted:against) el_salvador -mali text(is:sited:in) western_africa -mali text(is:placed:in) africa -mali text(was:butted:against) burkina_faso -mali text(is:a:neighboring:country:of) guinea -mali text(was:a:neighboring:country:of) mauritania -mali text(was:adjacent:to) niger -mali text(is:adjacent:to) senegal -mali text(was:a:neighbor:of) algeria -mali text(is:a:neighbor:of) ivory_coast -taiwan text(was:placed:in) eastern_asia -taiwan text(was:localized:in) asia -algeria text(is:localized:in) northern_africa -algeria text(was:present:in) africa -algeria text(is:a:neighboring:state:to) libya -algeria text(was:a:neighboring:state:to) tunisia -algeria text(borders:with) mauritania -algeria text(neighbors:withborders) morocco -algeria text(neighbors) niger -algeria text(is:butted:against) mali -algeria text(was:butted:against) western_sahara +italy text(was:positioned:in) southern_europe +italy text(is:positioned:in) europe +italy text(is:a:neighboring:country:of) slovenia +italy text(was:a:neighboring:country:of) switzerland +italy text(neighbors:with) austria +italy text(was:a:neighbor:of) france +italy text(is:a:neighbor:of) vatican_city +italy text(is:a:neighboring:state:to) san_marino +azerbaijan text(was:sited:in) western_asia +azerbaijan text(is:sited:in) asia +azerbaijan text(was:a:neighboring:state:to) turkey +azerbaijan text(borders:with) armenia +azerbaijan text(borders) russia +azerbaijan text(is:butted:against) iran +azerbaijan text(was:butted:against) georgia +honduras text(was:localized:in) central_america +honduras text(is:localized:in) americas +honduras text(was:adjacent:to) guatemala +honduras text(is:adjacent:to) nicaragua +honduras text(neighbors) el_salvador +mali text(was:present:in) western_africa +mali text(is:present:in) africa +mali text(is:a:neighboring:country:of) burkina_faso +mali text(was:a:neighboring:country:of) guinea +mali text(neighbors:with) mauritania +mali text(was:a:neighbor:of) niger +mali text(is:a:neighbor:of) senegal +mali text(is:a:neighboring:state:to) algeria +mali text(was:a:neighboring:state:to) ivory_coast +taiwan text(is:still:in) eastern_asia +taiwan text(was:still:in) asia +algeria text(was:currently:in) northern_africa +algeria text(is:currently:in) africa +algeria text(borders:with) libya +algeria text(borders) tunisia +algeria text(is:butted:against) mauritania +algeria text(was:butted:against) morocco +algeria text(was:adjacent:to) niger +algeria text(is:adjacent:to) mali +algeria text(neighbors) western_sahara french_guiana text(is:a:neighboring:country:of) brazil french_guiana text(was:a:neighboring:country:of) suriname -yemen text(is:present:in) western_asia -yemen text(is:still:in) asia -yemen text(was:adjacent:to) oman -yemen text(is:adjacent:to) saudi_arabia -puerto_rico text(was:still:in) caribbean -puerto_rico text(was:currently:in) americas -saint_vincent_and_the_grenadines text(is:currently:in) caribbean -saint_vincent_and_the_grenadines text(was:situated:in) americas -venezuela text(was:a:neighbor:of) brazil -venezuela text(is:a:neighbor:of) guyana -venezuela text(is:a:neighboring:state:to) colombia -grenada text(is:situated:in) caribbean -grenada text(is:located:in) americas -united_states text(was:a:neighboring:state:to) canada -united_states text(borders:with) mexico -tokelau text(was:located:in) polynesia -tokelau text(could:be:found:in) oceania -slovenia text(can:be:found:in) southern_europe -slovenia text(was:positioned:in) europe -slovenia text(neighbors:withborders) austria -slovenia text(neighbors) croatia -slovenia text(is:butted:against) italy -slovenia text(was:butted:against) hungary -philippines text(is:positioned:in) south-eastern_asia -philippines text(was:sited:in) asia -micronesia text(is:sited:in) micronesia -micronesia text(is:placed:in) oceania -china text(was:placed:in) eastern_asia -china text(was:localized:in) asia -china text(is:a:neighboring:country:of) afghanistan -china text(was:a:neighboring:country:of) bhutan -china text(was:adjacent:to) macau -china text(is:adjacent:to) india +yemen text(is:placed:in) western_asia +yemen text(was:placed:in) asia +yemen text(neighbors:with) oman +yemen text(was:a:neighbor:of) saudi_arabia +puerto_rico text(can:be:found:in) caribbean +puerto_rico text(was:situated:in) americas +saint_vincent_and_the_grenadines text(is:situated:in) caribbean +saint_vincent_and_the_grenadines text(is:located:in) americas +venezuela text(is:a:neighbor:of) brazil +venezuela text(is:a:neighboring:state:to) guyana +venezuela text(was:a:neighboring:state:to) colombia +grenada text(was:located:in) caribbean +grenada text(can:be:found:in) americas +united_states text(borders:with) canada +united_states text(borders) mexico +tokelau text(was:positioned:in) polynesia +tokelau text(is:positioned:in) oceania +slovenia text(was:sited:in) southern_europe +slovenia text(is:sited:in) europe +slovenia text(is:butted:against) austria +slovenia text(was:butted:against) croatia +slovenia text(was:adjacent:to) italy +slovenia text(is:adjacent:to) hungary +philippines text(was:localized:in) south-eastern_asia +philippines text(is:localized:in) asia +micronesia text(was:present:in) micronesia +micronesia text(is:present:in) oceania +china text(is:still:in) eastern_asia +china text(was:still:in) asia +china text(neighbors) afghanistan +china text(is:a:neighboring:country:of) bhutan +china text(was:a:neighboring:country:of) macau +china text(neighbors:with) india china text(was:a:neighbor:of) kazakhstan china text(is:a:neighbor:of) kyrgyzstan china text(is:a:neighboring:state:to) tajikistan china text(was:a:neighboring:state:to) laos china text(borders:with) russia -china text(neighbors:withborders) north_korea -china text(neighbors) myanmar -china text(is:butted:against) pakistan -china text(was:butted:against) mongolia -china text(is:a:neighboring:country:of) hong_kong -china text(was:a:neighboring:country:of) vietnam -gabon text(is:localized:in) middle_africa -gabon text(was:present:in) africa -gabon text(was:adjacent:to) equatorial_guinea -gabon text(is:adjacent:to) republic_of_the_congo -gabon text(was:a:neighbor:of) cameroon -united_states_minor_outlying_islands text(is:present:in) northern_america -united_states_minor_outlying_islands text(is:still:in) americas -andorra text(was:still:in) southern_europe -andorra text(was:currently:in) europe -andorra text(is:a:neighbor:of) spain -andorra text(is:a:neighboring:state:to) france -samoa text(is:currently:in) polynesia -samoa text(was:situated:in) oceania -gambia text(is:situated:in) western_africa -gambia text(is:located:in) africa -gambia text(was:a:neighboring:state:to) senegal -palestine text(was:located:in) western_asia -palestine text(could:be:found:in) asia -palestine text(borders:with) jordan -palestine text(neighbors:withborders) egypt -palestine text(neighbors) israel -réunion text(can:be:found:in) eastern_africa -réunion text(was:positioned:in) africa -france text(is:positioned:in) western_europe -france text(was:sited:in) europe +china text(borders) north_korea +china text(is:butted:against) myanmar +china text(was:butted:against) pakistan +china text(was:adjacent:to) mongolia +china text(is:adjacent:to) hong_kong +china text(neighbors) vietnam +gabon text(was:currently:in) middle_africa +gabon text(is:currently:in) africa +gabon text(is:a:neighboring:country:of) equatorial_guinea +gabon text(was:a:neighboring:country:of) republic_of_the_congo +gabon text(neighbors:with) cameroon +united_states_minor_outlying_islands text(is:placed:in) northern_america +united_states_minor_outlying_islands text(was:placed:in) americas +andorra text(can:be:found:in) southern_europe +andorra text(was:situated:in) europe +andorra text(was:a:neighbor:of) spain +andorra text(is:a:neighbor:of) france +samoa text(is:situated:in) polynesia +samoa text(is:located:in) oceania +gambia text(was:located:in) western_africa +gambia text(can:be:found:in) africa +gambia text(is:a:neighboring:state:to) senegal +palestine text(was:positioned:in) western_asia +palestine text(is:positioned:in) asia +palestine text(was:a:neighboring:state:to) jordan +palestine text(borders:with) egypt +palestine text(borders) israel +réunion text(was:sited:in) eastern_africa +réunion text(is:sited:in) africa +france text(was:localized:in) western_europe +france text(is:localized:in) europe france text(is:butted:against) germany france text(was:butted:against) luxembourg -france text(is:a:neighboring:country:of) italy -france text(was:a:neighboring:country:of) andorra -france text(was:adjacent:to) switzerland -france text(is:adjacent:to) monaco -france text(was:a:neighbor:of) belgium -france text(is:a:neighbor:of) spain -mongolia text(is:sited:in) eastern_asia -mongolia text(is:placed:in) asia -mongolia text(is:a:neighboring:state:to) china -mongolia text(was:a:neighboring:state:to) russia -lithuania text(was:placed:in) northern_europe -lithuania text(was:localized:in) europe -lithuania text(borders:with) poland -lithuania text(neighbors:withborders) latvia -lithuania text(neighbors) belarus -lithuania text(is:butted:against) russia -cayman_islands text(is:localized:in) caribbean -cayman_islands text(was:present:in) americas -saint_lucia text(is:present:in) caribbean -saint_lucia text(is:still:in) americas -curaçao text(was:still:in) caribbean -curaçao text(was:currently:in) americas -caribbean text(is:currently:in) americas -southern_asia text(was:situated:in) asia -middle_africa text(is:situated:in) africa -northern_europe text(is:located:in) europe -southern_europe text(was:located:in) europe -western_asia text(could:be:found:in) asia -south_america text(can:be:found:in) americas -polynesia text(was:positioned:in) oceania -australia_and_new_zealand text(is:positioned:in) oceania -western_europe text(was:sited:in) europe -eastern_africa text(is:sited:in) africa -western_africa text(is:placed:in) africa -eastern_europe text(was:placed:in) europe -central_america text(was:localized:in) americas -northern_america text(is:localized:in) americas -south-eastern_asia text(was:present:in) asia -southern_africa text(is:present:in) africa -eastern_asia text(is:still:in) asia -northern_africa text(was:still:in) africa -melanesia text(was:currently:in) oceania -micronesia text(is:currently:in) oceania -central_asia text(was:situated:in) asia -central_europe text(is:situated:in) europe \ No newline at end of file +france text(was:adjacent:to) italy +france text(is:adjacent:to) andorra +france text(neighbors) switzerland +france text(is:a:neighboring:country:of) monaco +france text(was:a:neighboring:country:of) belgium +france text(neighbors:with) spain +mongolia text(was:present:in) eastern_asia +mongolia text(is:present:in) asia +mongolia text(was:a:neighbor:of) china +mongolia text(is:a:neighbor:of) russia +lithuania text(is:still:in) northern_europe +lithuania text(was:still:in) europe +lithuania text(is:a:neighboring:state:to) poland +lithuania text(was:a:neighboring:state:to) latvia +lithuania text(borders:with) belarus +lithuania text(borders) russia +cayman_islands text(was:currently:in) caribbean +cayman_islands text(is:currently:in) americas +saint_lucia text(is:placed:in) caribbean +saint_lucia text(was:placed:in) americas +curaçao text(can:be:found:in) caribbean +curaçao text(was:situated:in) americas +caribbean text(is:situated:in) americas +southern_asia text(is:located:in) asia +middle_africa text(was:located:in) africa +northern_europe text(can:be:found:in) europe +southern_europe text(was:positioned:in) europe +western_asia text(is:positioned:in) asia +south_america text(was:sited:in) americas +polynesia text(is:sited:in) oceania +australia_and_new_zealand text(was:localized:in) oceania +western_europe text(is:localized:in) europe +eastern_africa text(was:present:in) africa +western_africa text(is:present:in) africa +eastern_europe text(is:still:in) europe +central_america text(was:still:in) americas +northern_america text(was:currently:in) americas +south-eastern_asia text(is:currently:in) asia +southern_africa text(is:placed:in) africa +eastern_asia text(was:placed:in) asia +northern_africa text(can:be:found:in) africa +melanesia text(was:situated:in) oceania +micronesia text(is:situated:in) oceania +central_asia text(is:located:in) asia +central_europe text(was:located:in) europe \ No newline at end of file diff --git a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_relation2text_traintest.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_relation2text_traintest.tsv deleted file mode 100644 index b5a2883..0000000 --- a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S2_relation2text_traintest.tsv +++ /dev/null @@ -1,1063 +0,0 @@ -palau text(is:positioned:in) micronesia -palau text(was:localized:in) oceania -maldives text(is:localized:in) southern_asia -maldives text(was:present:in) asia -brunei text(is:present:in) south-eastern_asia -brunei text(is:still:in) asia -brunei text(was:a:neighboring:country:of) malaysia -japan text(was:still:in) eastern_asia -japan text(was:currently:in) asia -netherlands text(was:a:neighbor:of) belgium -turkey text(is:a:neighbor:of) armenia -turkey text(is:a:neighboring:state:to) azerbaijan -turkey text(was:a:neighboring:state:to) iran -turkey text(borders:with) greece -turkey text(neighbors:withborders) georgia -angola text(is:currently:in) middle_africa -angola text(was:situated:in) africa -angola text(neighbors) dr_congo -angola text(is:butted:against) namibia -angola text(was:butted:against) republic_of_the_congo -armenia text(is:situated:in) western_asia -armenia text(is:located:in) asia -armenia text(is:a:neighboring:country:of) georgia -armenia text(was:a:neighboring:country:of) azerbaijan -armenia text(was:a:neighbor:of) iran -armenia text(is:a:neighbor:of) turkey -antigua_and_barbuda text(was:located:in) caribbean -antigua_and_barbuda text(could:be:found:in) americas -swaziland text(can:be:found:in) southern_africa -swaziland text(was:positioned:in) africa -swaziland text(is:a:neighboring:state:to) south_africa -swaziland text(was:a:neighboring:state:to) mozambique -wallis_and_futuna text(is:positioned:in) polynesia -wallis_and_futuna text(was:localized:in) oceania -uruguay text(is:localized:in) south_america -uruguay text(was:present:in) americas -uruguay text(borders:with) argentina -uruguay text(neighbors:withborders) brazil -cyprus text(is:present:in) eastern_europe -cyprus text(is:still:in) europe -cyprus text(neighbors) united_kingdom -ireland text(was:still:in) northern_europe -ireland text(was:currently:in) europe -ireland text(is:butted:against) united_kingdom -burundi text(is:currently:in) eastern_africa -burundi text(was:situated:in) africa -burundi text(was:butted:against) dr_congo -burundi text(is:a:neighboring:country:of) rwanda -central_african_republic text(is:situated:in) middle_africa -central_african_republic text(is:located:in) africa -central_african_republic text(was:a:neighboring:country:of) chad -central_african_republic text(was:a:neighbor:of) republic_of_the_congo -central_african_republic text(is:a:neighbor:of) dr_congo -central_african_republic text(is:a:neighboring:state:to) south_sudan -central_african_republic text(was:a:neighboring:state:to) cameroon -tonga text(was:located:in) polynesia -tonga text(could:be:found:in) oceania -ivory_coast text(can:be:found:in) western_africa -ivory_coast text(was:positioned:in) africa -ivory_coast text(borders:with) liberia -ivory_coast text(neighbors:withborders) mali -ivory_coast text(neighbors) guinea -sierra_leone text(is:butted:against) liberia -sierra_leone text(was:butted:against) guinea -mayotte text(is:positioned:in) eastern_africa -mayotte text(was:localized:in) africa -poland text(is:a:neighboring:country:of) ukraine -poland text(was:a:neighboring:country:of) slovakia -poland text(was:a:neighbor:of) belarus -poland text(is:a:neighbor:of) russia -poland text(is:a:neighboring:state:to) lithuania -uzbekistan text(is:localized:in) central_asia -uzbekistan text(was:present:in) asia -uzbekistan text(was:a:neighboring:state:to) afghanistan -uzbekistan text(borders:with) turkmenistan -uzbekistan text(neighbors:withborders) kyrgyzstan -uzbekistan text(neighbors) tajikistan -turks_and_caicos_islands text(is:present:in) caribbean -turks_and_caicos_islands text(is:still:in) americas -new_caledonia text(was:still:in) melanesia -new_caledonia text(was:currently:in) oceania -pakistan text(is:butted:against) china -pakistan text(was:butted:against) afghanistan -pakistan text(is:a:neighboring:country:of) iran -pakistan text(was:a:neighboring:country:of) india -argentina text(is:currently:in) south_america -argentina text(was:situated:in) americas -argentina text(was:a:neighbor:of) bolivia -argentina text(is:a:neighbor:of) chile -argentina text(is:a:neighboring:state:to) brazil -argentina text(was:a:neighboring:state:to) paraguay -argentina text(borders:with) uruguay -cuba text(is:situated:in) caribbean -cuba text(is:located:in) americas -serbia text(neighbors:withborders) macedonia -serbia text(neighbors) montenegro -serbia text(is:butted:against) bosnia_and_herzegovina -serbia text(was:butted:against) croatia -serbia text(is:a:neighboring:country:of) romania -vietnam text(was:located:in) south-eastern_asia -vietnam text(could:be:found:in) asia -vietnam text(was:a:neighboring:country:of) cambodia -vietnam text(was:a:neighbor:of) laos -vietnam text(is:a:neighbor:of) china -niue text(can:be:found:in) polynesia -niue text(was:positioned:in) oceania -canada text(is:positioned:in) northern_america -canada text(was:localized:in) americas -slovakia text(is:a:neighboring:state:to) ukraine -slovakia text(was:a:neighboring:state:to) poland -slovakia text(borders:with) austria -mozambique text(neighbors:withborders) swaziland -mozambique text(neighbors) malawi -mozambique text(is:butted:against) south_africa -aruba text(is:localized:in) caribbean -aruba text(was:present:in) americas -bolivia text(is:present:in) south_america -bolivia text(is:still:in) americas -bolivia text(was:butted:against) chile -bolivia text(is:a:neighboring:country:of) brazil -bolivia text(was:a:neighboring:country:of) paraguay -bolivia text(was:a:neighbor:of) argentina -bolivia text(is:a:neighbor:of) peru -colombia text(was:still:in) south_america -colombia text(was:currently:in) americas -colombia text(is:a:neighboring:state:to) brazil -colombia text(was:a:neighboring:state:to) peru -fiji text(is:currently:in) melanesia -fiji text(was:situated:in) oceania -republic_of_the_congo text(borders:with) gabon -republic_of_the_congo text(neighbors:withborders) dr_congo -republic_of_the_congo text(neighbors) angola -republic_of_the_congo text(is:butted:against) cameroon -republic_of_the_congo text(was:butted:against) central_african_republic -el_salvador text(is:situated:in) central_america -el_salvador text(is:located:in) americas -el_salvador text(is:a:neighboring:country:of) guatemala -el_salvador text(was:a:neighboring:country:of) honduras -madagascar text(was:located:in) eastern_africa -madagascar text(could:be:found:in) africa -australia text(can:be:found:in) australia_and_new_zealand -australia text(was:positioned:in) oceania -namibia text(is:positioned:in) southern_africa -namibia text(was:localized:in) africa -namibia text(was:a:neighbor:of) angola -namibia text(is:a:neighbor:of) south_africa -tuvalu text(is:localized:in) polynesia -tuvalu text(was:present:in) oceania -svalbard_and_jan_mayen text(is:present:in) northern_europe -svalbard_and_jan_mayen text(is:still:in) europe -isle_of_man text(was:still:in) northern_europe -isle_of_man text(was:currently:in) europe -vatican_city text(is:currently:in) southern_europe -vatican_city text(was:situated:in) europe -vatican_city text(is:a:neighboring:state:to) italy -british_indian_ocean_territory text(is:situated:in) eastern_africa -british_indian_ocean_territory text(is:located:in) africa -nigeria text(was:located:in) western_africa -nigeria text(could:be:found:in) africa -nigeria text(was:a:neighboring:state:to) chad -nigeria text(borders:with) niger -nigeria text(neighbors:withborders) cameroon -nigeria text(neighbors) benin -northern_mariana_islands text(can:be:found:in) micronesia -northern_mariana_islands text(was:positioned:in) oceania -belize text(is:positioned:in) central_america -belize text(was:localized:in) americas -belize text(is:butted:against) guatemala -belize text(was:butted:against) mexico -cocos_keeling_islands text(is:localized:in) australia_and_new_zealand -cocos_keeling_islands text(was:present:in) oceania -laos text(is:present:in) south-eastern_asia -laos text(is:still:in) asia -laos text(is:a:neighboring:country:of) china -laos text(was:a:neighboring:country:of) cambodia -laos text(was:a:neighbor:of) vietnam -western_sahara text(was:still:in) northern_africa -western_sahara text(was:currently:in) africa -western_sahara text(is:a:neighbor:of) algeria -western_sahara text(is:a:neighboring:state:to) mauritania -western_sahara text(was:a:neighboring:state:to) morocco -christmas_island text(is:currently:in) australia_and_new_zealand -christmas_island text(was:situated:in) oceania -são_tomé_and_príncipe text(is:situated:in) middle_africa -são_tomé_and_príncipe text(is:located:in) africa -guinea text(was:located:in) western_africa -guinea text(could:be:found:in) africa -guinea text(borders:with) sierra_leone -guinea text(neighbors:withborders) mali -guinea text(neighbors) liberia -guinea text(is:butted:against) senegal -guinea text(was:butted:against) ivory_coast -costa_rica text(can:be:found:in) central_america -costa_rica text(was:positioned:in) americas -malta text(is:positioned:in) southern_europe -malta text(was:localized:in) europe -portugal text(is:localized:in) southern_europe -portugal text(was:present:in) europe -romania text(is:present:in) eastern_europe -romania text(is:still:in) europe -romania text(is:a:neighboring:country:of) ukraine -romania text(was:a:neighboring:country:of) moldova -romania text(was:a:neighbor:of) serbia -san_marino text(was:still:in) southern_europe -san_marino text(was:currently:in) europe -san_marino text(is:a:neighbor:of) italy -mauritania text(is:currently:in) western_africa -mauritania text(was:situated:in) africa -mauritania text(is:a:neighboring:state:to) algeria -mauritania text(was:a:neighboring:state:to) mali -mauritania text(borders:with) western_sahara -mauritania text(neighbors:withborders) senegal -trinidad_and_tobago text(is:situated:in) caribbean -trinidad_and_tobago text(is:located:in) americas -bahrain text(was:located:in) western_asia -bahrain text(could:be:found:in) asia -south_georgia text(can:be:found:in) south_america -south_georgia text(was:positioned:in) americas -iceland text(is:positioned:in) northern_europe -iceland text(was:localized:in) europe -dr_congo text(is:localized:in) middle_africa -dr_congo text(was:present:in) africa -dr_congo text(neighbors) uganda -dr_congo text(is:butted:against) republic_of_the_congo -dr_congo text(was:butted:against) central_african_republic -dr_congo text(is:a:neighboring:country:of) angola -dr_congo text(was:a:neighboring:country:of) rwanda -dr_congo text(was:a:neighbor:of) south_sudan -dr_congo text(is:a:neighbor:of) burundi -seychelles text(is:present:in) eastern_africa -seychelles text(is:still:in) africa -kyrgyzstan text(is:a:neighboring:state:to) china -kyrgyzstan text(was:a:neighboring:state:to) tajikistan -kyrgyzstan text(borders:with) uzbekistan -faroe_islands text(was:still:in) northern_europe -faroe_islands text(was:currently:in) europe -jamaica text(is:currently:in) caribbean -jamaica text(was:situated:in) americas -american_samoa text(is:situated:in) polynesia -american_samoa text(is:located:in) oceania -lesotho text(was:located:in) southern_africa -lesotho text(could:be:found:in) africa -lesotho text(neighbors:withborders) south_africa -sri_lanka text(neighbors) india -belgium text(can:be:found:in) western_europe -belgium text(was:positioned:in) europe -belgium text(is:butted:against) luxembourg -belgium text(was:butted:against) france -belgium text(is:a:neighboring:country:of) netherlands -qatar text(is:positioned:in) western_asia -qatar text(was:localized:in) asia -solomon_islands text(is:localized:in) melanesia -solomon_islands text(was:present:in) oceania -india text(is:present:in) southern_asia -india text(is:still:in) asia -india text(was:a:neighboring:country:of) afghanistan -india text(was:a:neighbor:of) bangladesh -india text(is:a:neighbor:of) china -india text(is:a:neighboring:state:to) nepal -india text(was:a:neighboring:state:to) pakistan -india text(borders:with) sri_lanka -morocco text(neighbors:withborders) algeria -morocco text(neighbors) western_sahara -kenya text(was:still:in) eastern_africa -kenya text(was:currently:in) africa -kenya text(is:butted:against) uganda -kenya text(was:butted:against) somalia -kenya text(is:a:neighboring:country:of) south_sudan -kenya text(was:a:neighboring:country:of) ethiopia -south_sudan text(is:currently:in) middle_africa -south_sudan text(was:situated:in) africa -south_sudan text(was:a:neighbor:of) uganda -south_sudan text(is:a:neighbor:of) dr_congo -south_sudan text(is:a:neighboring:state:to) kenya -south_sudan text(was:a:neighboring:state:to) central_african_republic -south_sudan text(borders:with) ethiopia -tajikistan text(is:situated:in) central_asia -tajikistan text(is:located:in) asia -tajikistan text(neighbors:withborders) china -tajikistan text(neighbors) kyrgyzstan -tajikistan text(is:butted:against) afghanistan -tajikistan text(was:butted:against) uzbekistan -marshall_islands text(was:located:in) micronesia -marshall_islands text(could:be:found:in) oceania -cameroon text(can:be:found:in) middle_africa -cameroon text(was:positioned:in) africa -cameroon text(is:a:neighboring:country:of) chad -cameroon text(was:a:neighboring:country:of) republic_of_the_congo -cameroon text(was:a:neighbor:of) gabon -cameroon text(is:a:neighbor:of) equatorial_guinea -cameroon text(is:a:neighboring:state:to) central_african_republic -cameroon text(was:a:neighboring:state:to) nigeria -nauru text(is:positioned:in) micronesia -nauru text(was:localized:in) oceania -chad text(is:localized:in) middle_africa -chad text(was:present:in) africa -chad text(borders:with) libya -chad text(neighbors:withborders) niger -chad text(neighbors) south_sudan -chad text(is:butted:against) cameroon -chad text(was:butted:against) central_african_republic -chad text(is:a:neighboring:country:of) nigeria -vanuatu text(is:present:in) melanesia -vanuatu text(is:still:in) oceania -cape_verde text(was:still:in) western_africa -cape_verde text(was:currently:in) africa -falkland_islands text(is:currently:in) south_america -falkland_islands text(was:situated:in) americas -liberia text(is:situated:in) western_africa -liberia text(is:located:in) africa -liberia text(was:a:neighboring:country:of) ivory_coast -liberia text(was:a:neighbor:of) sierra_leone -liberia text(is:a:neighbor:of) guinea -cambodia text(was:located:in) south-eastern_asia -cambodia text(could:be:found:in) asia -cambodia text(is:a:neighboring:state:to) vietnam -cambodia text(was:a:neighboring:state:to) laos -comoros text(can:be:found:in) eastern_africa -comoros text(was:positioned:in) africa -guam text(is:positioned:in) micronesia -guam text(was:localized:in) oceania -bahamas text(is:localized:in) caribbean -bahamas text(was:present:in) americas -lebanon text(is:present:in) western_asia -lebanon text(is:still:in) asia -lebanon text(borders:with) israel -sint_maarten text(was:still:in) caribbean -sint_maarten text(was:currently:in) americas -ethiopia text(is:currently:in) eastern_africa -ethiopia text(was:situated:in) africa -ethiopia text(neighbors:withborders) somalia -ethiopia text(neighbors) kenya -ethiopia text(is:butted:against) south_sudan -united_states_virgin_islands text(is:situated:in) caribbean -united_states_virgin_islands text(is:located:in) americas -libya text(was:located:in) northern_africa -libya text(could:be:found:in) africa -libya text(was:butted:against) chad -libya text(is:a:neighboring:country:of) tunisia -libya text(was:a:neighboring:country:of) niger -libya text(was:a:neighbor:of) algeria -french_polynesia text(can:be:found:in) polynesia -french_polynesia text(was:positioned:in) oceania -somalia text(is:positioned:in) eastern_africa -somalia text(was:localized:in) africa -somalia text(is:a:neighbor:of) kenya -somalia text(is:a:neighboring:state:to) ethiopia -saint_barthélemy text(is:localized:in) caribbean -saint_barthélemy text(was:present:in) americas -russia text(is:present:in) eastern_europe -russia text(is:still:in) europe -russia text(was:a:neighboring:state:to) ukraine -russia text(borders:with) belarus -russia text(neighbors:withborders) china -russia text(neighbors) poland -russia text(is:butted:against) azerbaijan -russia text(was:butted:against) lithuania -russia text(is:a:neighboring:country:of) estonia -russia text(was:a:neighboring:country:of) north_korea -russia text(was:a:neighbor:of) finland -russia text(is:a:neighbor:of) latvia -russia text(is:a:neighboring:state:to) georgia -new_zealand text(was:still:in) australia_and_new_zealand -new_zealand text(was:currently:in) oceania -papua_new_guinea text(is:currently:in) melanesia -papua_new_guinea text(was:situated:in) oceania -north_korea text(was:a:neighboring:state:to) china -north_korea text(borders:with) south_korea -north_korea text(neighbors:withborders) russia -latvia text(is:situated:in) northern_europe -latvia text(is:located:in) europe -latvia text(neighbors) lithuania -latvia text(is:butted:against) belarus -latvia text(was:butted:against) russia -latvia text(is:a:neighboring:country:of) estonia -oman text(was:located:in) western_asia -oman text(could:be:found:in) asia -oman text(was:a:neighboring:country:of) yemen -oman text(was:a:neighbor:of) united_arab_emirates -saint_pierre_and_miquelon text(can:be:found:in) northern_america -saint_pierre_and_miquelon text(was:positioned:in) americas -martinique text(is:positioned:in) caribbean -martinique text(was:localized:in) americas -united_kingdom text(is:localized:in) northern_europe -united_kingdom text(was:present:in) europe -united_kingdom text(is:a:neighbor:of) ireland -israel text(is:present:in) western_asia -israel text(is:still:in) asia -israel text(is:a:neighboring:state:to) lebanon -jersey text(was:still:in) northern_europe -jersey text(was:currently:in) europe -pitcairn_islands text(is:currently:in) polynesia -pitcairn_islands text(was:situated:in) oceania -togo text(is:situated:in) western_africa -togo text(is:located:in) africa -togo text(was:a:neighboring:state:to) benin -kiribati text(was:located:in) micronesia -kiribati text(could:be:found:in) oceania -iran text(can:be:found:in) southern_asia -iran text(was:positioned:in) asia -iran text(borders:with) afghanistan -iran text(neighbors:withborders) turkmenistan -iran text(neighbors) turkey -iran text(is:butted:against) armenia -iran text(was:butted:against) azerbaijan -iran text(is:a:neighboring:country:of) pakistan -dominican_republic text(is:positioned:in) caribbean -dominican_republic text(was:localized:in) americas -dominican_republic text(was:a:neighboring:country:of) haiti -bermuda text(is:localized:in) northern_america -bermuda text(was:present:in) americas -chile text(was:a:neighbor:of) argentina -chile text(is:a:neighbor:of) bolivia -chile text(is:a:neighboring:state:to) peru -saint_kitts_and_nevis text(is:present:in) caribbean -saint_kitts_and_nevis text(is:still:in) americas -equatorial_guinea text(was:still:in) middle_africa -equatorial_guinea text(was:currently:in) africa -equatorial_guinea text(was:a:neighboring:state:to) gabon -equatorial_guinea text(borders:with) cameroon -niger text(is:currently:in) western_africa -niger text(was:situated:in) africa -niger text(neighbors:withborders) chad -niger text(neighbors) libya -niger text(is:butted:against) benin -niger text(was:butted:against) mali -niger text(is:a:neighboring:country:of) algeria -niger text(was:a:neighboring:country:of) nigeria -anguilla text(is:situated:in) caribbean -anguilla text(is:located:in) americas -rwanda text(was:located:in) eastern_africa -rwanda text(could:be:found:in) africa -rwanda text(was:a:neighbor:of) burundi -rwanda text(is:a:neighbor:of) uganda -rwanda text(is:a:neighboring:state:to) dr_congo -united_arab_emirates text(can:be:found:in) western_asia -united_arab_emirates text(was:positioned:in) asia -united_arab_emirates text(was:a:neighboring:state:to) oman -estonia text(is:positioned:in) northern_europe -estonia text(was:localized:in) europe -estonia text(borders:with) latvia -estonia text(neighbors:withborders) russia -greece text(is:localized:in) southern_europe -greece text(was:present:in) europe -greece text(neighbors) albania -greece text(is:butted:against) macedonia -greece text(was:butted:against) turkey -senegal text(is:present:in) western_africa -senegal text(is:still:in) africa -senegal text(is:a:neighboring:country:of) mauritania -senegal text(was:a:neighboring:country:of) mali -senegal text(was:a:neighbor:of) gambia -senegal text(is:a:neighbor:of) guinea -guadeloupe text(was:still:in) caribbean -guadeloupe text(was:currently:in) americas -british_virgin_islands text(is:currently:in) caribbean -british_virgin_islands text(was:situated:in) americas -cook_islands text(is:situated:in) polynesia -cook_islands text(is:located:in) oceania -uganda text(was:located:in) eastern_africa -uganda text(could:be:found:in) africa -uganda text(is:a:neighboring:state:to) dr_congo -uganda text(was:a:neighboring:state:to) kenya -uganda text(borders:with) south_sudan -uganda text(neighbors:withborders) rwanda -macedonia text(can:be:found:in) southern_europe -macedonia text(was:positioned:in) europe -macedonia text(neighbors) greece -macedonia text(is:butted:against) albania -macedonia text(was:butted:against) serbia -tunisia text(is:positioned:in) northern_africa -tunisia text(was:localized:in) africa -tunisia text(is:a:neighboring:country:of) libya -tunisia text(was:a:neighboring:country:of) algeria -brazil text(is:localized:in) south_america -brazil text(was:present:in) americas -brazil text(was:a:neighbor:of) bolivia -brazil text(is:a:neighbor:of) colombia -brazil text(is:a:neighboring:state:to) paraguay -brazil text(was:a:neighboring:state:to) uruguay -brazil text(borders:with) argentina -brazil text(neighbors:withborders) peru -paraguay text(is:present:in) south_america -paraguay text(is:still:in) americas -paraguay text(neighbors) argentina -paraguay text(is:butted:against) brazil -paraguay text(was:butted:against) bolivia -finland text(was:still:in) northern_europe -finland text(was:currently:in) europe -finland text(is:a:neighboring:country:of) sweden -finland text(was:a:neighboring:country:of) russia -montenegro text(is:currently:in) southern_europe -montenegro text(was:situated:in) europe -montenegro text(was:a:neighbor:of) bosnia_and_herzegovina -montenegro text(is:a:neighbor:of) croatia -montenegro text(is:a:neighboring:state:to) serbia -montenegro text(was:a:neighboring:state:to) albania -peru text(is:situated:in) south_america -peru text(is:located:in) americas -peru text(borders:with) bolivia -peru text(neighbors:withborders) chile -peru text(neighbors) brazil -peru text(is:butted:against) colombia -montserrat text(was:located:in) caribbean -montserrat text(could:be:found:in) americas -ukraine text(can:be:found:in) eastern_europe -ukraine text(was:positioned:in) europe -ukraine text(was:butted:against) slovakia -ukraine text(is:a:neighboring:country:of) belarus -ukraine text(was:a:neighboring:country:of) poland -ukraine text(was:a:neighbor:of) russia -ukraine text(is:a:neighbor:of) moldova -ukraine text(is:a:neighboring:state:to) romania -dominica text(is:positioned:in) caribbean -dominica text(was:localized:in) americas -turkmenistan text(was:a:neighboring:state:to) afghanistan -turkmenistan text(borders:with) uzbekistan -turkmenistan text(neighbors:withborders) iran -guernsey text(is:localized:in) northern_europe -guernsey text(was:present:in) europe -gibraltar text(is:present:in) southern_europe -gibraltar text(is:still:in) europe -switzerland text(was:still:in) western_europe -switzerland text(was:currently:in) europe -switzerland text(neighbors) italy -switzerland text(is:butted:against) austria -switzerland text(was:butted:against) france -switzerland text(is:a:neighboring:country:of) liechtenstein -austria text(is:currently:in) western_europe -austria text(was:situated:in) europe -austria text(was:a:neighboring:country:of) slovakia -austria text(was:a:neighbor:of) slovenia -austria text(is:a:neighbor:of) italy -austria text(is:a:neighboring:state:to) switzerland -austria text(was:a:neighboring:state:to) liechtenstein -malawi text(is:situated:in) eastern_africa -malawi text(is:located:in) africa -malawi text(borders:with) mozambique -hong_kong text(neighbors:withborders) china -liechtenstein text(was:located:in) western_europe -liechtenstein text(could:be:found:in) europe -liechtenstein text(neighbors) switzerland -liechtenstein text(is:butted:against) austria -barbados text(can:be:found:in) caribbean -barbados text(was:positioned:in) americas -georgia text(is:positioned:in) western_asia -georgia text(was:localized:in) asia -georgia text(was:butted:against) armenia -georgia text(is:a:neighboring:country:of) azerbaijan -georgia text(was:a:neighboring:country:of) russia -georgia text(was:a:neighbor:of) turkey -albania text(is:localized:in) southern_europe -albania text(was:present:in) europe -albania text(is:a:neighbor:of) montenegro -albania text(is:a:neighboring:state:to) macedonia -albania text(was:a:neighboring:state:to) greece -kuwait text(is:present:in) western_asia -kuwait text(is:still:in) asia -south_africa text(was:still:in) southern_africa -south_africa text(was:currently:in) africa -south_africa text(borders:with) mozambique -south_africa text(neighbors:withborders) swaziland -south_africa text(neighbors) namibia -south_africa text(is:butted:against) lesotho -haiti text(is:currently:in) caribbean -haiti text(was:situated:in) americas -haiti text(was:butted:against) dominican_republic -afghanistan text(is:situated:in) southern_asia -afghanistan text(is:located:in) asia -afghanistan text(is:a:neighboring:country:of) turkmenistan -afghanistan text(was:a:neighboring:country:of) china -afghanistan text(was:a:neighbor:of) tajikistan -afghanistan text(is:a:neighbor:of) uzbekistan -afghanistan text(is:a:neighboring:state:to) iran -afghanistan text(was:a:neighboring:state:to) pakistan -singapore text(was:located:in) south-eastern_asia -singapore text(could:be:found:in) asia -benin text(can:be:found:in) western_africa -benin text(was:positioned:in) africa -benin text(borders:with) niger -benin text(neighbors:withborders) togo -benin text(neighbors) nigeria -åland_islands text(is:positioned:in) northern_europe -åland_islands text(was:localized:in) europe -croatia text(is:localized:in) southern_europe -croatia text(was:present:in) europe -croatia text(is:butted:against) slovenia -croatia text(was:butted:against) bosnia_and_herzegovina -croatia text(is:a:neighboring:country:of) serbia -croatia text(was:a:neighboring:country:of) montenegro -sweden text(is:present:in) northern_europe -sweden text(is:still:in) europe -sweden text(was:a:neighbor:of) finland -mexico text(is:a:neighbor:of) belize -mexico text(is:a:neighboring:state:to) guatemala -greenland text(was:still:in) northern_america -greenland text(was:currently:in) americas -norfolk_island text(is:currently:in) australia_and_new_zealand -norfolk_island text(was:situated:in) oceania -nepal text(is:situated:in) southern_asia -nepal text(is:located:in) asia -nepal text(was:a:neighboring:state:to) china -nepal text(borders:with) india -guatemala text(neighbors:withborders) belize -guatemala text(neighbors) el_salvador -guatemala text(is:butted:against) mexico -guatemala text(was:butted:against) honduras -south_korea text(was:located:in) eastern_asia -south_korea text(could:be:found:in) asia -south_korea text(is:a:neighboring:country:of) north_korea -moldova text(can:be:found:in) eastern_europe -moldova text(was:positioned:in) europe -moldova text(was:a:neighboring:country:of) ukraine -moldova text(was:a:neighbor:of) romania -mauritius text(is:positioned:in) eastern_africa -mauritius text(was:localized:in) africa -belarus text(is:a:neighbor:of) ukraine -belarus text(is:a:neighboring:state:to) poland -belarus text(was:a:neighboring:state:to) lithuania -belarus text(borders:with) russia -belarus text(neighbors:withborders) latvia -bangladesh text(neighbors) india -malaysia text(is:localized:in) south-eastern_asia -malaysia text(was:present:in) asia -malaysia text(is:butted:against) brunei -bosnia_and_herzegovina text(is:present:in) southern_europe -bosnia_and_herzegovina text(is:still:in) europe -bosnia_and_herzegovina text(was:butted:against) serbia -bosnia_and_herzegovina text(is:a:neighboring:country:of) croatia -bosnia_and_herzegovina text(was:a:neighboring:country:of) montenegro -luxembourg text(was:still:in) western_europe -luxembourg text(was:currently:in) europe -luxembourg text(was:a:neighbor:of) belgium -luxembourg text(is:a:neighbor:of) france -italy text(is:currently:in) southern_europe -italy text(was:situated:in) europe -italy text(is:a:neighboring:state:to) slovenia -italy text(was:a:neighboring:state:to) switzerland -italy text(borders:with) austria -italy text(neighbors:withborders) france -italy text(neighbors) vatican_city -italy text(is:butted:against) san_marino -azerbaijan text(is:situated:in) western_asia -azerbaijan text(is:located:in) asia -azerbaijan text(was:butted:against) turkey -azerbaijan text(is:a:neighboring:country:of) armenia -azerbaijan text(was:a:neighboring:country:of) russia -azerbaijan text(was:a:neighbor:of) iran -azerbaijan text(is:a:neighbor:of) georgia -honduras text(was:located:in) central_america -honduras text(could:be:found:in) americas -honduras text(is:a:neighboring:state:to) guatemala -honduras text(was:a:neighboring:state:to) el_salvador -mali text(can:be:found:in) western_africa -mali text(was:positioned:in) africa -mali text(borders:with) guinea -mali text(neighbors:withborders) mauritania -mali text(neighbors) niger -mali text(is:butted:against) senegal -mali text(was:butted:against) algeria -mali text(is:a:neighboring:country:of) ivory_coast -taiwan text(is:positioned:in) eastern_asia -taiwan text(was:localized:in) asia -algeria text(is:localized:in) northern_africa -algeria text(was:present:in) africa -algeria text(was:a:neighboring:country:of) libya -algeria text(was:a:neighbor:of) tunisia -algeria text(is:a:neighbor:of) mauritania -algeria text(is:a:neighboring:state:to) morocco -algeria text(was:a:neighboring:state:to) niger -algeria text(borders:with) mali -algeria text(neighbors:withborders) western_sahara -yemen text(is:present:in) western_asia -yemen text(is:still:in) asia -yemen text(neighbors) oman -puerto_rico text(was:still:in) caribbean -puerto_rico text(was:currently:in) americas -saint_vincent_and_the_grenadines text(is:currently:in) caribbean -saint_vincent_and_the_grenadines text(was:situated:in) americas -grenada text(is:situated:in) caribbean -grenada text(is:located:in) americas -tokelau text(was:located:in) polynesia -tokelau text(could:be:found:in) oceania -slovenia text(can:be:found:in) southern_europe -slovenia text(was:positioned:in) europe -slovenia text(is:butted:against) austria -slovenia text(was:butted:against) croatia -slovenia text(is:a:neighboring:country:of) italy -philippines text(is:positioned:in) south-eastern_asia -philippines text(was:localized:in) asia -micronesia text(is:localized:in) micronesia -micronesia text(was:present:in) oceania -china text(is:present:in) eastern_asia -china text(is:still:in) asia -china text(was:a:neighboring:country:of) afghanistan -china text(was:a:neighbor:of) india -china text(is:a:neighbor:of) kyrgyzstan -china text(is:a:neighboring:state:to) tajikistan -china text(was:a:neighboring:state:to) laos -china text(borders:with) russia -china text(neighbors:withborders) north_korea -china text(neighbors) pakistan -china text(is:butted:against) hong_kong -china text(was:butted:against) vietnam -gabon text(was:still:in) middle_africa -gabon text(was:currently:in) africa -gabon text(is:a:neighboring:country:of) equatorial_guinea -gabon text(was:a:neighboring:country:of) republic_of_the_congo -gabon text(was:a:neighbor:of) cameroon -united_states_minor_outlying_islands text(is:currently:in) northern_america -united_states_minor_outlying_islands text(was:situated:in) americas -andorra text(is:situated:in) southern_europe -andorra text(is:located:in) europe -andorra text(is:a:neighbor:of) france -samoa text(was:located:in) polynesia -samoa text(could:be:found:in) oceania -gambia text(can:be:found:in) western_africa -gambia text(was:positioned:in) africa -gambia text(is:a:neighboring:state:to) senegal -palestine text(is:positioned:in) western_asia -palestine text(was:localized:in) asia -palestine text(was:a:neighboring:state:to) israel -réunion text(is:localized:in) eastern_africa -réunion text(was:present:in) africa -france text(is:present:in) western_europe -france text(is:still:in) europe -france text(borders:with) luxembourg -france text(neighbors:withborders) italy -france text(neighbors) andorra -france text(is:butted:against) switzerland -france text(was:butted:against) belgium -lithuania text(was:still:in) northern_europe -lithuania text(was:currently:in) europe -lithuania text(is:a:neighboring:country:of) poland -lithuania text(was:a:neighboring:country:of) latvia -lithuania text(was:a:neighbor:of) belarus -lithuania text(is:a:neighbor:of) russia -cayman_islands text(is:currently:in) caribbean -cayman_islands text(was:situated:in) americas -saint_lucia text(is:situated:in) caribbean -saint_lucia text(is:located:in) americas -curaçao text(was:located:in) caribbean -curaçao text(could:be:found:in) americas -caribbean text(can:be:found:in) americas -southern_asia text(was:positioned:in) asia -middle_africa text(is:positioned:in) africa -northern_europe text(was:localized:in) europe -southern_europe text(is:localized:in) europe -western_asia text(was:present:in) asia -south_america text(is:present:in) americas -polynesia text(is:still:in) oceania -australia_and_new_zealand text(was:still:in) oceania -western_europe text(was:currently:in) europe -eastern_africa text(is:currently:in) africa -western_africa text(was:situated:in) africa -eastern_europe text(is:situated:in) europe -central_america text(is:located:in) americas -northern_america text(was:located:in) americas -south-eastern_asia text(could:be:found:in) asia -southern_africa text(can:be:found:in) africa -eastern_asia text(was:positioned:in) asia -northern_africa text(is:positioned:in) africa -melanesia text(was:localized:in) oceania -micronesia text(is:localized:in) oceania -central_asia text(was:present:in) asia -central_europe text(is:present:in) europe -netherlands text(was:a:neighboring:country:of) germany -turkey text(was:a:neighbor:of) bulgaria -turkey text(is:a:neighbor:of) iraq -turkey text(is:a:neighboring:state:to) syria -angola text(was:a:neighboring:state:to) zambia -zambia text(is:positioned:in) eastern_africa -zambia text(was:localized:in) africa -zambia text(borders:with) tanzania -zambia text(neighbors:withborders) mozambique -zambia text(neighbors) dr_congo -zambia text(is:butted:against) angola -zambia text(was:butted:against) botswana -zambia text(is:a:neighboring:country:of) zimbabwe -zambia text(was:a:neighboring:country:of) namibia -zambia text(was:a:neighbor:of) malawi -burundi text(is:a:neighbor:of) tanzania -central_african_republic text(is:a:neighboring:state:to) sudan -ivory_coast text(was:a:neighboring:state:to) burkina_faso -ivory_coast text(borders:with) ghana -poland text(neighbors:withborders) germany -poland text(neighbors) czechia -kazakhstan text(is:localized:in) central_asia -kazakhstan text(was:present:in) asia -kazakhstan text(is:butted:against) turkmenistan -kazakhstan text(was:butted:against) china -kazakhstan text(is:a:neighboring:country:of) kyrgyzstan -kazakhstan text(was:a:neighboring:country:of) uzbekistan -kazakhstan text(was:a:neighbor:of) russia -uzbekistan text(is:a:neighbor:of) kazakhstan -serbia text(is:a:neighboring:state:to) kosovo -serbia text(was:a:neighboring:state:to) hungary -serbia text(borders:with) bulgaria -czechia text(is:present:in) eastern_europe -czechia text(is:still:in) europe -czechia text(neighbors:withborders) germany -czechia text(neighbors) austria -czechia text(is:butted:against) poland -czechia text(was:butted:against) slovakia -nicaragua text(is:a:neighboring:country:of) honduras -nicaragua text(was:a:neighboring:country:of) costa_rica -canada text(was:a:neighbor:of) united_states -slovakia text(is:a:neighbor:of) hungary -slovakia text(is:a:neighboring:state:to) czechia -mozambique text(was:a:neighboring:state:to) tanzania -mozambique text(borders:with) zimbabwe -mozambique text(neighbors:withborders) zambia -colombia text(neighbors) ecuador -colombia text(is:butted:against) panama -colombia text(was:butted:against) venezuela -saudi_arabia text(is:a:neighboring:country:of) qatar -saudi_arabia text(was:a:neighboring:country:of) united_arab_emirates -saudi_arabia text(was:a:neighbor:of) jordan -saudi_arabia text(is:a:neighbor:of) yemen -saudi_arabia text(is:a:neighboring:state:to) oman -saudi_arabia text(was:a:neighboring:state:to) kuwait -saudi_arabia text(borders:with) iraq -namibia text(neighbors:withborders) zambia -namibia text(neighbors) botswana -guyana text(is:butted:against) brazil -guyana text(was:butted:against) suriname -guyana text(is:a:neighboring:country:of) venezuela -germany text(was:a:neighboring:country:of) denmark -germany text(was:a:neighbor:of) netherlands -germany text(is:a:neighbor:of) poland -germany text(is:a:neighboring:state:to) luxembourg -germany text(was:a:neighboring:state:to) belgium -germany text(borders:with) switzerland -germany text(neighbors:withborders) austria -germany text(neighbors) france -germany text(is:butted:against) czechia -burkina_faso text(was:butted:against) togo -burkina_faso text(is:a:neighboring:country:of) benin -burkina_faso text(was:a:neighboring:country:of) niger -burkina_faso text(was:a:neighbor:of) ghana -burkina_faso text(is:a:neighbor:of) mali -burkina_faso text(is:a:neighboring:state:to) ivory_coast -tanzania text(was:a:neighboring:state:to) uganda -tanzania text(borders:with) mozambique -tanzania text(neighbors:withborders) dr_congo -tanzania text(neighbors) kenya -tanzania text(is:butted:against) rwanda -tanzania text(was:butted:against) zambia -tanzania text(is:a:neighboring:country:of) malawi -tanzania text(was:a:neighboring:country:of) burundi -norway text(was:a:neighbor:of) sweden -norway text(is:a:neighbor:of) finland -norway text(is:a:neighboring:state:to) russia -laos text(was:a:neighboring:state:to) myanmar -laos text(borders:with) thailand -suriname text(was:still:in) south_america -suriname text(was:currently:in) americas -suriname text(neighbors:withborders) brazil -suriname text(neighbors) french_guiana -suriname text(is:butted:against) guyana -egypt text(was:butted:against) libya -egypt text(is:a:neighboring:country:of) israel -egypt text(was:a:neighboring:country:of) sudan -bulgaria text(was:a:neighbor:of) macedonia -bulgaria text(is:a:neighbor:of) turkey -bulgaria text(is:a:neighboring:state:to) greece -bulgaria text(was:a:neighboring:state:to) serbia -bulgaria text(borders:with) romania -guinea text(neighbors:withborders) guinea-bissau -spain text(neighbors) morocco -spain text(is:butted:against) gibraltar -spain text(was:butted:against) andorra -spain text(is:a:neighboring:country:of) france -spain text(was:a:neighboring:country:of) portugal -costa_rica text(was:a:neighbor:of) panama -costa_rica text(is:a:neighbor:of) nicaragua -portugal text(is:a:neighboring:state:to) spain -romania text(was:a:neighboring:state:to) hungary -romania text(borders:with) bulgaria -myanmar text(neighbors:withborders) india -myanmar text(neighbors) bangladesh -myanmar text(is:butted:against) china -myanmar text(was:butted:against) laos -myanmar text(is:a:neighboring:country:of) thailand -iraq text(was:a:neighboring:country:of) turkey -iraq text(was:a:neighbor:of) saudi_arabia -iraq text(is:a:neighbor:of) iran -iraq text(is:a:neighboring:state:to) jordan -iraq text(was:a:neighboring:state:to) kuwait -iraq text(borders:with) syria -dr_congo text(neighbors:withborders) tanzania -dr_congo text(neighbors) zambia -kyrgyzstan text(is:butted:against) kazakhstan -botswana text(is:currently:in) southern_africa -botswana text(was:situated:in) africa -botswana text(was:butted:against) zimbabwe -botswana text(is:a:neighboring:country:of) namibia -botswana text(was:a:neighboring:country:of) zambia -botswana text(was:a:neighbor:of) south_africa -belgium text(is:a:neighbor:of) germany -qatar text(is:a:neighboring:state:to) saudi_arabia -syria text(is:situated:in) western_asia -syria text(is:located:in) asia -syria text(was:a:neighboring:state:to) israel -syria text(borders:with) turkey -syria text(neighbors:withborders) jordan -syria text(neighbors) lebanon -syria text(is:butted:against) iraq -india text(was:butted:against) bhutan -india text(is:a:neighboring:country:of) myanmar -morocco text(was:a:neighboring:country:of) spain -kenya text(was:a:neighbor:of) tanzania -south_sudan text(is:a:neighbor:of) sudan -ghana text(is:a:neighboring:state:to) burkina_faso -ghana text(was:a:neighboring:state:to) ivory_coast -ghana text(borders:with) togo -thailand text(neighbors:withborders) cambodia -thailand text(neighbors) myanmar -thailand text(is:butted:against) laos -thailand text(was:butted:against) malaysia -sudan text(is:a:neighboring:country:of) chad -sudan text(was:a:neighboring:country:of) libya -sudan text(was:a:neighbor:of) south_sudan -sudan text(is:a:neighbor:of) eritrea -sudan text(is:a:neighboring:state:to) central_african_republic -sudan text(was:a:neighboring:state:to) egypt -sudan text(borders:with) ethiopia -cambodia text(neighbors:withborders) thailand -zimbabwe text(neighbors) zambia -zimbabwe text(is:butted:against) south_africa -zimbabwe text(was:butted:against) botswana -zimbabwe text(is:a:neighboring:country:of) mozambique -lebanon text(was:a:neighboring:country:of) syria -sint_maarten text(was:a:neighbor:of) saint_martin -ethiopia text(is:a:neighbor:of) eritrea -ethiopia text(is:a:neighboring:state:to) djibouti -ethiopia text(was:a:neighboring:state:to) sudan -guinea-bissau text(was:located:in) western_africa -guinea-bissau text(could:be:found:in) africa -guinea-bissau text(borders:with) guinea -guinea-bissau text(neighbors:withborders) senegal -libya text(neighbors) egypt -libya text(is:butted:against) sudan -bhutan text(can:be:found:in) southern_asia -bhutan text(was:positioned:in) asia -bhutan text(was:butted:against) china -bhutan text(is:a:neighboring:country:of) india -macau text(is:positioned:in) eastern_asia -macau text(was:localized:in) asia -macau text(was:a:neighboring:country:of) china -somalia text(was:a:neighbor:of) djibouti -russia text(is:a:neighbor:of) kazakhstan -russia text(is:a:neighboring:state:to) norway -russia text(was:a:neighboring:state:to) mongolia -panama text(is:localized:in) central_america -panama text(was:present:in) americas -panama text(borders:with) costa_rica -panama text(neighbors:withborders) colombia -papua_new_guinea text(neighbors) indonesia -oman text(is:butted:against) saudi_arabia -israel text(was:butted:against) egypt -israel text(is:a:neighboring:country:of) jordan -israel text(was:a:neighboring:country:of) syria -togo text(was:a:neighbor:of) burkina_faso -togo text(is:a:neighbor:of) ghana -iran text(is:a:neighboring:state:to) iraq -saint_martin text(is:present:in) caribbean -saint_martin text(is:still:in) americas -saint_martin text(was:a:neighboring:state:to) sint_maarten -denmark text(borders:with) germany -kosovo text(was:still:in) eastern_europe -kosovo text(was:currently:in) europe -kosovo text(neighbors:withborders) serbia -kosovo text(neighbors) albania -kosovo text(is:butted:against) macedonia -kosovo text(was:butted:against) montenegro -eritrea text(is:a:neighboring:country:of) djibouti -eritrea text(was:a:neighboring:country:of) sudan -eritrea text(was:a:neighbor:of) ethiopia -niger text(is:a:neighbor:of) burkina_faso -rwanda text(is:a:neighboring:state:to) tanzania -united_arab_emirates text(was:a:neighboring:state:to) saudi_arabia -greece text(borders:with) bulgaria -senegal text(neighbors:withborders) guinea-bissau -monaco text(neighbors) france -djibouti text(is:butted:against) eritrea -djibouti text(was:butted:against) somalia -djibouti text(is:a:neighboring:country:of) ethiopia -indonesia text(was:a:neighboring:country:of) papua_new_guinea -indonesia text(was:a:neighbor:of) timor-leste -indonesia text(is:a:neighbor:of) malaysia -uganda text(is:a:neighboring:state:to) tanzania -macedonia text(was:a:neighboring:state:to) kosovo -macedonia text(borders:with) bulgaria -ecuador text(neighbors:withborders) peru -ecuador text(neighbors) colombia -brazil text(is:butted:against) french_guiana -brazil text(was:butted:against) suriname -brazil text(is:a:neighboring:country:of) venezuela -brazil text(was:a:neighboring:country:of) guyana -finland text(was:a:neighbor:of) norway -jordan text(is:a:neighbor:of) saudi_arabia -jordan text(is:a:neighboring:state:to) israel -jordan text(was:a:neighboring:state:to) iraq -jordan text(borders:with) syria -timor-leste text(neighbors:withborders) indonesia -montenegro text(neighbors) kosovo -peru text(is:butted:against) ecuador -ukraine text(was:butted:against) hungary -turkmenistan text(is:a:neighboring:country:of) kazakhstan -gibraltar text(was:a:neighboring:country:of) spain -switzerland text(was:a:neighbor:of) germany -austria text(is:a:neighbor:of) germany -austria text(is:a:neighboring:state:to) hungary -austria text(was:a:neighboring:state:to) czechia -hungary text(borders:with) ukraine -hungary text(neighbors:withborders) slovakia -hungary text(neighbors) slovenia -hungary text(is:butted:against) croatia -hungary text(was:butted:against) austria -hungary text(is:a:neighboring:country:of) serbia -hungary text(was:a:neighboring:country:of) romania -malawi text(was:a:neighbor:of) zambia -malawi text(is:a:neighbor:of) tanzania -albania text(is:a:neighboring:state:to) kosovo -kuwait text(was:a:neighboring:state:to) saudi_arabia -kuwait text(borders:with) iraq -south_africa text(neighbors:withborders) botswana -south_africa text(neighbors) zimbabwe -benin text(is:butted:against) burkina_faso -croatia text(was:butted:against) hungary -sweden text(is:a:neighboring:country:of) norway -mexico text(was:a:neighboring:country:of) united_states -bangladesh text(was:a:neighbor:of) myanmar -malaysia text(is:a:neighbor:of) thailand -malaysia text(is:a:neighboring:state:to) indonesia -luxembourg text(was:a:neighboring:state:to) germany -honduras text(borders:with) nicaragua -mali text(neighbors:withborders) burkina_faso -french_guiana text(neighbors) brazil -french_guiana text(is:butted:against) suriname -yemen text(was:butted:against) saudi_arabia -venezuela text(is:a:neighboring:country:of) brazil -venezuela text(was:a:neighboring:country:of) guyana -venezuela text(was:a:neighbor:of) colombia -united_states text(is:a:neighbor:of) canada -united_states text(is:a:neighboring:state:to) mexico -slovenia text(was:a:neighboring:state:to) hungary -china text(borders:with) bhutan -china text(neighbors:withborders) macau -china text(neighbors) kazakhstan -china text(is:butted:against) myanmar -china text(was:butted:against) mongolia -andorra text(is:a:neighboring:country:of) spain -palestine text(was:a:neighboring:country:of) jordan -palestine text(was:a:neighbor:of) egypt -france text(is:a:neighbor:of) germany -france text(is:a:neighboring:state:to) monaco -france text(was:a:neighboring:state:to) spain -mongolia text(is:currently:in) eastern_asia -mongolia text(was:situated:in) asia -mongolia text(borders:with) china -mongolia text(neighbors:withborders) russia \ No newline at end of file diff --git a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_country2text.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_country2text.tsv new file mode 100644 index 0000000..b37c3b8 --- /dev/null +++ b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_country2text.tsv @@ -0,0 +1,979 @@ +text(بالاو) locatedIn text(Micronesia) +text(Palau) locatedIn text(大洋洲) +text(मालदीव) locatedIn text(南亚) +text(Maldivas) locatedIn text(آسيا) +text(ब्रुनेई) locatedIn text(Zuidoost-Azië) +text(Brunéi) locatedIn text(एशिया) +text(Brunei) neighborOf text(Maleisië) +text(日本) locatedIn text(شرق:آسيا) +text(Japan) locatedIn text(Azië) +text(Nederland) neighborOf text(ألمانيا) +text(नीदरलैण्ड) neighborOf text(बेल्जियम) +text(Turkije) neighborOf text(أرمينيا) +text(土耳其) neighborOf text(أذربيجان) +text(تركيا) neighborOf text(伊朗) +text(Turquía) neighborOf text(Greece) +text(Turkey) neighborOf text(جورجيا) +text(तुर्की) neighborOf text(保加利亚) +text(Turkije) neighborOf text(Irak) +text(土耳其) neighborOf text(Syrië) +text(अंगोला) locatedIn text(Centraal-Afrika) +text(Angola) neighborOf text(刚果民主共和国) +text(Angola) neighborOf text(Namibia) +text(安哥拉) neighborOf text(贊比亞) +text(أنغولا) neighborOf text(कांगो:गणराज्य) +text(Armenië) locatedIn text(Asia:Occidental) +text(Armenia) neighborOf text(Georgië) +text(आर्मीनिया) neighborOf text(Azerbeidzjan) +text(亞美尼亞) neighborOf text(Iran) +text(Armenia) neighborOf text(تركيا) +text(أنتيغوا:وباربودا) locatedIn text(加勒比地区) +text(Antigua:and:Barbuda) locatedIn text(美洲) +text(Esuatini) locatedIn text(إفريقيا:الجنوبية) +text(Swaziland) neighborOf text(南非) +text(एस्वातीनी) neighborOf text(موزمبيق) +text(واليس:وفوتونا) locatedIn text(Polynesia) +text(瓦利斯和富圖納) locatedIn text(أوقيانوسيا) +text(उरुग्वे) locatedIn text(South:America) +text(Uruguay) locatedIn text(महाअमेरिका) +text(Uruguay) neighborOf text(阿根廷) +text(Uruguay) neighborOf text(Brasil) +text(Zambia) locatedIn text(África:Oriental) +text(Zambia) neighborOf text(तंज़ानिया) +text(زامبيا) neighborOf text(Mozambique) +text(ज़ाम्बिया) neighborOf text(جمهورية:الكونغو:الديمقراطية) +text(Zambia) neighborOf text(Angola) +text(贊比亞) neighborOf text(波札那) +text(Zambia) neighborOf text(Zimbabue) +text(Zambia) neighborOf text(ناميبيا) +text(زامبيا) neighborOf text(मलावी) +text(塞浦路斯) locatedIn text(Eastern:Europe) +text(Chipre) locatedIn text(Europa) +text(Cyprus) neighborOf text(المملكة:المتحدة) +text(Verenigd:Koninkrijk) locatedIn text(Noord-Europa) +text(यूनाइटेड:किंगडम) locatedIn text(यूरोप) +text(المملكة:المتحدة) neighborOf text(United:Kingdom) +text(Burundi) locatedIn text(पूर्वी:अफ्रीका) +text(بوروندي) neighborOf text(कांगो:लोकतान्त्रिक:गणराज्य) +text(蒲隆地) neighborOf text(रवाण्डा) +text(Burundi) neighborOf text(坦桑尼亞) +text(Central:African:Republic) locatedIn text(África:Central) +text(Centraal-Afrikaanse:Republiek) neighborOf text(चाड) +text(República:Centroafricana) neighborOf text(República:del:Congo) +text(मध्य:अफ़्रीकी:गणराज्य) neighborOf text(República:Democrática:del:Congo) +text(中非共和國) neighborOf text(दक्षिण:सूडान) +text(جمهورية:إفريقيا:الوسطى) neighborOf text(喀麦隆) +text(Central:African:Republic) neighborOf text(السودان) +text(تونغا) locatedIn text(بولنيزيا) +text(Tonga) locatedIn text(Oceanía) +text(कोत:दिव्वार) locatedIn text(पश्चिमी:अफ्रीका) +text(科特迪瓦) neighborOf text(Burkina:Faso) +text(Ivoorkust) neighborOf text(घाना) +text(Costa:de:Marfil) neighborOf text(ليبيريا) +text(Ivory:Coast) neighborOf text(مالي) +text(ساحل:العاج) neighborOf text(غينيا) +text(Sierra:Leona) neighborOf text(Liberia) +text(塞拉利昂) neighborOf text(Guinea) +text(Mayotte) locatedIn text(East:Africa) +text(मेयोट) locatedIn text(अफ्रीका) +text(Polen) neighborOf text(德國) +text(波蘭) neighborOf text(युक्रेन) +text(Poland) neighborOf text(Slovakia) +text(पोलैंड) neighborOf text(白俄羅斯) +text(بولندا) neighborOf text(Russia) +text(Polonia) neighborOf text(Lituania) +text(Polen) neighborOf text(Czech:Republic) +text(कज़ाख़िस्तान) locatedIn text(آسيا:الوسطى) +text(Kazachstan) neighborOf text(Turkmenistan) +text(Kazajistán) neighborOf text(República:Popular:China) +text(哈萨克斯坦) neighborOf text(قرغيزستان) +text(Kazakhstan) neighborOf text(उज़्बेकिस्तान) +text(كازاخستان) neighborOf text(रूस) +text(Uzbekistan) locatedIn text(Central:Asia) +text(أوزبكستان) neighborOf text(أفغانستان) +text(乌兹别克斯坦) neighborOf text(तुर्कमेनिस्तान) +text(Uzbekistán) neighborOf text(कज़ाख़िस्तान) +text(Oezbekistan) neighborOf text(Kyrgyzstan) +text(उज़्बेकिस्तान) neighborOf text(Tadzjikistan) +text(جزر:توركس:وكايكوس) locatedIn text(कैरिबिया) +text(特克斯和凯科斯群岛) locatedIn text(Amerika) +text(新喀里多尼亞) locatedIn text(Melanesia) +text(Nieuw-Caledonië) locatedIn text(ओशिआनिया) +text(Pakistán) neighborOf text(चीनी:जनवादी:गणराज्य) +text(पाकिस्तान) neighborOf text(阿富汗) +text(Pakistan) neighborOf text(إيران) +text(باكستان) neighborOf text(الهند) +text(अर्जेण्टीना) locatedIn text(أمريكا:الجنوبية) +text(Argentinië) neighborOf text(Bolivia) +text(الأرجنتين) neighborOf text(Chili) +text(Argentina) neighborOf text(Brazil) +text(Argentina) neighborOf text(Paraguay) +text(阿根廷) neighborOf text(烏拉圭) +text(Cuba) locatedIn text(Caribbean) +text(क्यूबा) locatedIn text(América) +text(صربيا) neighborOf text(Macedonia:del:Norte) +text(Serbia) neighborOf text(मॉन्टेनीग्रो) +text(塞爾維亞) neighborOf text(科索沃) +text(Servië) neighborOf text(波斯尼亚和黑塞哥维那) +text(सर्बिया) neighborOf text(क्रोएशिया) +text(Serbia) neighborOf text(Hungría) +text(صربيا) neighborOf text(Bulgaria) +text(Serbia) neighborOf text(Romania) +text(Tsjechië) locatedIn text(东欧) +text(جمهورية:التشيك) neighborOf text(जर्मनी) +text(República:Checa) neighborOf text(ऑस्ट्रिया) +text(चेक:गणराज्य) neighborOf text(波蘭) +text(捷克) neighborOf text(Eslovaquia) +text(نيكاراغوا) neighborOf text(Honduras) +text(Nicaragua) neighborOf text(Costa:Rica) +text(Vietnam) locatedIn text(东南亚) +text(越南) locatedIn text(Asia) +text(فيتنام) neighborOf text(Camboya) +text(वियतनाम) neighborOf text(Laos) +text(Vietnam) neighborOf text(Volksrepubliek:China) +text(Niue) locatedIn text(पोलीनेशिया) +text(Niue) locatedIn text(Oceania) +text(कनाडा) locatedIn text(北美洲) +text(كندا) neighborOf text(Verenigde:Staten) +text(斯洛伐克) neighborOf text(أوكرانيا) +text(स्लोवाकिया) neighborOf text(Poland) +text(سلوفاكيا) neighborOf text(奧地利) +text(Slowakije) neighborOf text(المجر) +text(Slovakia) neighborOf text(Czech:Republic) +text(Mozambique) neighborOf text(Tanzania) +text(मोज़ाम्बीक) neighborOf text(Eswatini) +text(莫桑比克) neighborOf text(زيمبابوي) +text(Mozambique) neighborOf text(ज़ाम्बिया) +text(موزمبيق) neighborOf text(Malaui) +text(Mozambique) neighborOf text(दक्षिण:अफ़्रीका) +text(أروبا) locatedIn text(Caraïben) +text(अरूबा) locatedIn text(Americas) +text(Bolivia) locatedIn text(南美洲) +text(Bolivia) neighborOf text(智利) +text(बोलिविया) neighborOf text(巴西) +text(بوليفيا) neighborOf text(Paraguay) +text(玻利維亞) neighborOf text(अर्जेण्टीना) +text(Bolivia) neighborOf text(Perú) +text(Colombia) locatedIn text(América:del:Sur) +text(哥伦比亚) neighborOf text(厄瓜多尔) +text(Colombia) neighborOf text(Brazilië) +text(कोलम्बिया) neighborOf text(Panama) +text(كولومبيا) neighborOf text(فنزويلا) +text(Colombia) neighborOf text(بيرو) +text(斐濟) locatedIn text(Melanesia) +text(फ़िजी) locatedIn text(Oceanië) +text(جمهورية:الكونغو) neighborOf text(الغابون) +text(剛果共和國) neighborOf text(Congo-Kinshasa) +text(Congo-Brazzaville) neighborOf text(अंगोला) +text(Republic:of:the:Congo) neighborOf text(الكاميرون) +text(कांगो:गणराज्य) neighborOf text(Centraal-Afrikaanse:Republiek) +text(السعودية) neighborOf text(Catar) +text(सउदी:अरब) neighborOf text(संयुक्त:अरब:अमीरात) +text(Saudi:Arabia) neighborOf text(Jordan) +text(Saoedi-Arabië) neighborOf text(اليمن) +text(Arabia:Saudí) neighborOf text(Oman) +text(沙特阿拉伯) neighborOf text(科威特) +text(السعودية) neighborOf text(العراق) +text(El:Salvador) locatedIn text(Central:America) +text(अल:साल्वाडोर) neighborOf text(Guatemala) +text(السلفادور) neighborOf text(Honduras) +text(Madagascar) locatedIn text(شرق:إفريقيا) +text(Madagaskar) locatedIn text(非洲) +text(Australië) locatedIn text(nan) +text(澳大利亚) locatedIn text(大洋洲) +text(नामीबिया) locatedIn text(Zuidelijk:Afrika) +text(Namibië) locatedIn text(إفريقيا) +text(纳米比亚) neighborOf text(Zambia) +text(Namibia) neighborOf text(Angola) +text(Namibia) neighborOf text(Zuid-Afrika) +text(ناميبيا) neighborOf text(Botsuana) +text(吐瓦魯) locatedIn text(玻里尼西亞) +text(Tuvalu) locatedIn text(أوقيانوسيا) +text(سفالبارد:ويان:ماين) locatedIn text(Europa:del:Norte) +text(Svalbard:and:Jan:Mayen) locatedIn text(Europe) +text(马恩岛) locatedIn text(北歐) +text(आइल:ऑफ़:मैन) locatedIn text(Europa) +text(圭亚那) neighborOf text(ब्राज़ील) +text(Guyana) neighborOf text(سورينام) +text(غيانا) neighborOf text(委內瑞拉) +text(الفاتيكان) locatedIn text(أوروبا:الجنوبية) +text(Vatican:City) locatedIn text(أوروبا) +text(वैटिकन:नगर) neighborOf text(Italia) +text(ब्रिटिश:हिंद:महासागर:क्षेत्र) locatedIn text(Oost-Afrika) +text(إقليم:المحيط:الهندي:البريطاني) locatedIn text(Africa) +text(Nigeria) locatedIn text(West:Africa) +text(Nigeria) locatedIn text(África) +text(नाइजीरिया) neighborOf text(Chad) +text(奈及利亞) neighborOf text(尼日尔) +text(نيجيريا) neighborOf text(Kameroen) +text(Nigeria) neighborOf text(बेनिन) +text(Duitsland) neighborOf text(Dinamarca) +text(Alemania) neighborOf text(Países:Bajos) +text(Germany) neighborOf text(पोलैंड) +text(ألمانيا) neighborOf text(Luxemburgo) +text(德國) neighborOf text(Bélgica) +text(जर्मनी) neighborOf text(Suiza) +text(Duitsland) neighborOf text(Austria) +text(Alemania) neighborOf text(France) +text(Germany) neighborOf text(Tsjechië) +text(Burkina:Faso) neighborOf text(Togo) +text(بوركينا:فاسو) neighborOf text(Benin) +text(Burkina:Faso) neighborOf text(नाइजर) +text(बुर्किना:फासो) neighborOf text(Ghana) +text(布吉納法索) neighborOf text(Mali) +text(Burkina:Faso) neighborOf text(कोत:दिव्वार) +text(تنزانيا) neighborOf text(Uganda) +text(Tanzania) neighborOf text(Mozambique) +text(Tanzania) neighborOf text(Democratic:Republic:of:the:Congo) +text(तंज़ानिया) neighborOf text(Kenia) +text(坦桑尼亞) neighborOf text(Ruanda) +text(Tanzania) neighborOf text(贊比亞) +text(تنزانيا) neighborOf text(馬拉威) +text(Tanzania) neighborOf text(बुरुण्डी) +text(Northern:Mariana:Islands) locatedIn text(Micronesia) +text(北马里亚纳群岛) locatedIn text(Oceanía) +text(Belize) locatedIn text(أمريكا:الوسطى) +text(बेलीज़) neighborOf text(Guatemala) +text(Belice) neighborOf text(墨西哥) +text(नॉर्वे) neighborOf text(Zweden) +text(النرويج) neighborOf text(Finlandia) +text(Noorwegen) neighborOf text(俄罗斯) +text(islas:Cocos) locatedIn text(nan) +text(科科斯(基林)群島) locatedIn text(ओशिआनिया) +text(Laos) locatedIn text(Southeast:Asia) +text(लाओस) neighborOf text(People's:Republic:of:China) +text(Laos) neighborOf text(कम्बोडिया) +text(لاوس) neighborOf text(ميانمار) +text(老撾) neighborOf text(Vietnam) +text(Laos) neighborOf text(Thailand) +text(Sahrawi:Arab:Democratic:Republic) locatedIn text(उत्तर:अफ़्रीका) +text(República:Árabe:Saharaui:Democrática) neighborOf text(Argelia) +text(सहरावी:अरब:जनतांत्रिक:गणराज्य) neighborOf text(मॉरीतानिया) +text(撒拉威阿拉伯民主共和國) neighborOf text(Marruecos) +text(Suriname) locatedIn text(दक्षिण:अमेरिका) +text(सूरीनाम) neighborOf text(البرازيل) +text(Suriname) neighborOf text(غويانا:الفرنسية) +text(Surinam) neighborOf text(Guyana) +text(جزيرة:عيد:الميلاد) locatedIn text(Australië:en:Nieuw-Zeeland) +text(क्रिसमस:द्वीप) locatedIn text(Oceania) +text(圣多美和普林西比) locatedIn text(وسط:إفريقيا) +text(Sao:Tomé:en:Principe) locatedIn text(Afrika) +text(Egipto) neighborOf text(Libië) +text(Egypte) neighborOf text(Israël) +text(埃及) neighborOf text(Sudan) +text(Bulgaria) neighborOf text(北马其顿) +text(Bulgarije) neighborOf text(Turquía) +text(बुल्गारिया) neighborOf text(यूनान) +text(بلغاريا) neighborOf text(塞爾維亞) +text(保加利亚) neighborOf text(羅馬尼亞) +text(गिनी) locatedIn text(西非) +text(Guinee) neighborOf text(غينيا:بيساو) +text(几内亚) neighborOf text(सिएरा:लियोन) +text(Guinea) neighborOf text(马里) +text(غينيا) neighborOf text(Liberia) +text(Guinea) neighborOf text(Senegal) +text(गिनी) neighborOf text(科特迪瓦) +text(Spanje) neighborOf text(Morocco) +text(إسبانيا) neighborOf text(Gibraltar) +text(España) neighborOf text(Andorra) +text(स्पेन) neighborOf text(Francia) +text(西班牙) neighborOf text(Portugal) +text(كوستاريكا) locatedIn text(Centraal-Amerika) +text(Costa:Rica) neighborOf text(بنما) +text(哥斯达黎加) neighborOf text(Nicaragua) +text(馬耳他) locatedIn text(दक्षिणी:यूरोप) +text(Malta) locatedIn text(欧洲) +text(Portugal) locatedIn text(Southern:Europe) +text(पुर्तगाल) neighborOf text(Spain) +text(Roemenië) locatedIn text(أوروبا:الشرقية) +text(رومانيا) neighborOf text(Oekraïne) +text(रोमानिया) neighborOf text(Hungary) +text(Rumania) neighborOf text(मोल्डोवा) +text(Romania) neighborOf text(Bulgaria) +text(羅馬尼亞) neighborOf text(Servië) +text(San:Marino) locatedIn text(Zuid-Europa) +text(San:Marino) locatedIn text(Europa) +text(सान:मारिनो) neighborOf text(इटली) +text(Mauritanië) locatedIn text(África:Occidental) +text(毛里塔尼亞) locatedIn text(अफ्रीका) +text(Mauritania) neighborOf text(الجزائر) +text(Mauritania) neighborOf text(माली) +text(موريتانيا) neighborOf text(Sahrawi:Arabische:Democratische:Republiek) +text(मॉरीतानिया) neighborOf text(Senegal) +text(千里達及托巴哥) locatedIn text(Caribe) +text(Trinidad:and:Tobago) locatedIn text(أمريكتان) +text(Bahrein) locatedIn text(西亚) +text(البحرين) locatedIn text(Asia) +text(緬甸) neighborOf text(India) +text(Birmania) neighborOf text(Bangladés) +text(Myanmar) neighborOf text(中华人民共和国) +text(म्यान्मार) neighborOf text(Laos) +text(Myanmar) neighborOf text(تايلاند) +text(इराक) neighborOf text(Turkey) +text(Irak) neighborOf text(सउदी:अरब) +text(伊拉克) neighborOf text(Iran) +text(Iraq) neighborOf text(Jordania) +text(Irak) neighborOf text(Kuwait) +text(العراق) neighborOf text(Syria) +text(Islas:Georgias:del:Sur:y:Sandwich:del:Sur) locatedIn text(Zuid-Amerika) +text(दक्षिण:जॉर्जिया:एवं:दक्षिण:सैंडविच:द्वीप:समूह) locatedIn text(美洲) +text(आइसलैण्ड) locatedIn text(أوروبا:الشمالية) +text(Iceland) locatedIn text(यूरोप) +text(刚果民主共和国) locatedIn text(Central:Africa) +text(جمهورية:الكونغو:الديمقراطية) neighborOf text(Uganda) +text(कांगो:लोकतान्त्रिक:गणराज्य) neighborOf text(Tanzania) +text(República:Democrática:del:Congo) neighborOf text(República:del:Congo) +text(Congo-Kinshasa) neighborOf text(República:Centroafricana) +text(Democratic:Republic:of:the:Congo) neighborOf text(Angola) +text(刚果民主共和国) neighborOf text(Rwanda) +text(جمهورية:الكونغو:الديمقراطية) neighborOf text(Sudán:del:Sur) +text(कांगो:लोकतान्त्रिक:गणराज्य) neighborOf text(Zambia) +text(República:Democrática:del:Congo) neighborOf text(Burundi) +text(Seychelles) locatedIn text(东部非洲) +text(سيشل) locatedIn text(非洲) +text(किर्गिज़स्तान) neighborOf text(الصين) +text(Kirgizië) neighborOf text(Kazachstan) +text(Kirguistán) neighborOf text(طاجيكستان) +text(吉尔吉斯斯坦) neighborOf text(Uzbekistan) +text(Botswana) locatedIn text(Southern:Africa) +text(बोत्सवाना) neighborOf text(津巴布韦) +text(بوتسوانا) neighborOf text(नामीबिया) +text(Botswana) neighborOf text(Zambia) +text(波札那) neighborOf text(South:Africa) +text(Islas:Feroe) locatedIn text(Northern:Europe) +text(Faroe:Islands) locatedIn text(Europe) +text(جامايكا) locatedIn text(الكاريبي) +text(牙買加) locatedIn text(महाअमेरिका) +text(美屬薩摩亞) locatedIn text(Polynesië) +text(American:Samoa) locatedIn text(Oceanië) +text(ليسوتو) locatedIn text(दक्षिणी:अफ्रीका) +text(Lesotho) locatedIn text(إفريقيا) +text(莱索托) neighborOf text(Sudáfrica) +text(Sri:Lanka) neighborOf text(भारत) +text(بلجيكا) locatedIn text(Western:Europe) +text(België) neighborOf text(ألمانيا) +text(Belgium) neighborOf text(Luxemburg) +text(比利時) neighborOf text(فرنسا) +text(बेल्जियम) neighborOf text(荷蘭) +text(क़तर) locatedIn text(West:Asia) +text(Qatar) neighborOf text(Saudi:Arabia) +text(सोलोमन:द्वीपसमूह) locatedIn text(ميلانيزيا) +text(Salomonseilanden) locatedIn text(大洋洲) +text(敘利亞) locatedIn text(غرب:آسيا) +text(سوريا) neighborOf text(إسرائيل) +text(सीरिया) neighborOf text(तुर्की) +text(Siria) neighborOf text(الأردن) +text(Syrië) neighborOf text(黎巴嫩) +text(Syria) neighborOf text(इराक) +text(印度) locatedIn text(Asia:del:Sur) +text(India) neighborOf text(अफ़्ग़ानिस्तान) +text(India) neighborOf text(Bhutan) +text(الهند) neighborOf text(孟加拉國) +text(India) neighborOf text(República:Popular:China) +text(भारत) neighborOf text(نيبال) +text(印度) neighborOf text(ميانمار) +text(India) neighborOf text(巴基斯坦) +text(India) neighborOf text(سريلانكا) +text(المغرب) neighborOf text(अल्जीरिया) +text(मोरक्को) neighborOf text(Spanje) +text(摩洛哥) neighborOf text(الجمهورية:العربية:الصحراوية:الديمقراطية) +text(Kenia) locatedIn text(África:Oriental) +text(Kenya) neighborOf text(أوغندا) +text(कीनिया) neighborOf text(तंज़ानिया) +text(肯尼亚) neighborOf text(Somalië) +text(كينيا) neighborOf text(南蘇丹) +text(Kenia) neighborOf text(Etiopía) +text(Zuid-Soedan) locatedIn text(मध्य:अफ्रीका) +text(جنوب:السودان) neighborOf text(Oeganda) +text(South:Sudan) neighborOf text(Congo-Kinshasa) +text(दक्षिण:सूडान) neighborOf text(Kenia) +text(Sudán:del:Sur) neighborOf text(मध्य:अफ़्रीकी:गणराज्य) +text(南蘇丹) neighborOf text(Sudán) +text(Zuid-Soedan) neighborOf text(إثيوبيا) +text(Ghana) neighborOf text(Burkina:Faso) +text(迦納) neighborOf text(Ivoorkust) +text(غانا) neighborOf text(多哥) +text(ताजीकिस्तान) locatedIn text(Centraal-Azië) +text(Tayikistán) neighborOf text(चीनी:जनवादी:गणराज्य) +text(塔吉克斯坦) neighborOf text(قرغيزستان) +text(Tajikistan) neighborOf text(Afghanistan) +text(Tadzjikistan) neighborOf text(أوزبكستان) +text(馬紹爾群島) locatedIn text(ميكرونيسيا) +text(मार्शल:द्वीपसमूह) locatedIn text(أوقيانوسيا) +text(Cameroon) locatedIn text(中部非洲) +text(Camerún) neighborOf text(Tsjaad) +text(कैमरुन) neighborOf text(جمهورية:الكونغو) +text(喀麦隆) neighborOf text(गबॉन) +text(الكاميرون) neighborOf text(赤道几内亚) +text(Kameroen) neighborOf text(中非共和國) +text(Cameroon) neighborOf text(Nigeria) +text(Nauru) locatedIn text(माइक्रोनीशिया) +text(Nauru) locatedIn text(Oceanía) +text(Thailand) neighborOf text(Cambodja) +text(थाईलैंड) neighborOf text(緬甸) +text(泰國) neighborOf text(लाओस) +text(Tailandia) neighborOf text(Malaysia) +text(सूडान) neighborOf text(Chad) +text(苏丹) neighborOf text(ليبيا) +text(Soedan) neighborOf text(جنوب:السودان) +text(السودان) neighborOf text(Eritrea) +text(Sudan) neighborOf text(جمهورية:إفريقيا:الوسطى) +text(Sudán) neighborOf text(مصر) +text(सूडान) neighborOf text(埃塞俄比亚) +text(تشاد) locatedIn text(Centraal-Afrika) +text(乍得) neighborOf text(利比亞) +text(चाड) neighborOf text(Níger) +text(Chad) neighborOf text(South:Sudan) +text(Tsjaad) neighborOf text(Camerún) +text(Chad) neighborOf text(Central:African:Republic) +text(تشاد) neighborOf text(Nigeria) +text(Vanuatu) locatedIn text(मॅलानिशिया) +text(Vanuatu) locatedIn text(ओशिआनिया) +text(केप:वर्दे) locatedIn text(West-Afrika) +text(Cabo:Verde) locatedIn text(Africa) +text(Falkland:Islands) locatedIn text(South:America) +text(Falklandeilanden) locatedIn text(Amerika) +text(Liberia) locatedIn text(غرب:إفريقيا) +text(लाइबेरिया) neighborOf text(Costa:de:Marfil) +text(利比里亞) neighborOf text(سيراليون) +text(ليبيريا) neighborOf text(Guinee) +text(كمبوديا) locatedIn text(جنوب:شرق:آسيا) +text(柬埔寨) neighborOf text(Vietnam) +text(Cambodia) neighborOf text(Thailand) +text(Camboya) neighborOf text(Laos) +text(ज़िम्बाब्वे) neighborOf text(زامبيا) +text(Zimbabwe) neighborOf text(جنوب:إفريقيا) +text(Zimbabwe) neighborOf text(Botsuana) +text(Zimbabue) neighborOf text(मोज़ाम्बीक) +text(Comoren) locatedIn text(पूर्वी:अफ्रीका) +text(葛摩) locatedIn text(África) +text(Guam) locatedIn text(Micronesië) +text(Guam) locatedIn text(Oceania) +text(Bahama's) locatedIn text(加勒比地区) +text(Bahamas) locatedIn text(América) +text(लेबनॉन) locatedIn text(पश्चिमी:एशिया) +text(Libanon) locatedIn text(亞洲) +text(Líbano) neighborOf text(以色列) +text(Lebanon) neighborOf text(敘利亞) +text(سانت:مارتن) locatedIn text(कैरिबिया) +text(San:Martín) locatedIn text(Americas) +text(Sint:Maarten) neighborOf text(San:Martín) +text(इथियोपिया) locatedIn text(East:Africa) +text(Ethiopië) neighborOf text(Somalia) +text(Ethiopia) neighborOf text(Kenya) +text(Etiopía) neighborOf text(Eritrea) +text(إثيوبيا) neighborOf text(दक्षिण:सूडान) +text(埃塞俄比亚) neighborOf text(जिबूती) +text(इथियोपिया) neighborOf text(苏丹) +text(United:States:Virgin:Islands) locatedIn text(Caribbean) +text(Amerikaanse:Maagdeneilanden) locatedIn text(أمريكتان) +text(Guinea-Bisáu) locatedIn text(पश्चिमी:अफ्रीका) +text(Guinea-Bissau) locatedIn text(Afrika) +text(畿內亞比紹) neighborOf text(几内亚) +text(Guinee-Bissau) neighborOf text(塞内加尔) +text(Libya) locatedIn text(Norte:de:África) +text(Libia) neighborOf text(乍得) +text(लीबिया) neighborOf text(تونس) +text(Libië) neighborOf text(النيجر) +text(ليبيا) neighborOf text(Algerije) +text(利比亞) neighborOf text(Egypt) +text(Libya) neighborOf text(Soedan) +text(Bhutan) locatedIn text(Zuid-Azië) +text(भूटान) locatedIn text(آسيا) +text(不丹) neighborOf text(Volksrepubliek:China) +text(بوتان) neighborOf text(الهند) +text(Macau) locatedIn text(East:Asia) +text(Macao) locatedIn text(एशिया) +text(澳門) neighborOf text(People's:Republic:of:China) +text(Polinesia:Francesa) locatedIn text(Polinesia) +text(بولنيزيا:الفرنسية) locatedIn text(Oceanië) +text(الصومال) locatedIn text(شرق:إفريقيا) +text(सोमालिया) neighborOf text(吉布提) +text(Somalia) neighborOf text(कीनिया) +text(索馬里) neighborOf text(Ethiopië) +text(聖巴泰勒米) locatedIn text(Caraïben) +text(San:Bartolomé) locatedIn text(美洲) +text(روسيا) locatedIn text(Europa:Oriental) +text(Rusia) neighborOf text(Ukraine) +text(Rusland) neighborOf text(बेलारूस) +text(Russia) neighborOf text(中华人民共和国) +text(रूस) neighborOf text(Kazajistán) +text(俄罗斯) neighborOf text(挪威) +text(روسيا) neighborOf text(بولندا) +text(Rusia) neighborOf text(Azerbaiyán) +text(Rusland) neighborOf text(Litouwen) +text(Russia) neighborOf text(إستونيا) +text(रूस) neighborOf text(Corea:del:Norte) +text(俄罗斯) neighborOf text(Finland) +text(روسيا) neighborOf text(Mongolia) +text(Rusia) neighborOf text(拉脫維亞) +text(Rusland) neighborOf text(Georgia) +text(न्यूज़ीलैंड) locatedIn text(nan) +text(Nueva:Zelanda) locatedIn text(大洋洲) +text(Panamá) locatedIn text(América:Central) +text(Panama) locatedIn text(महाअमेरिका) +text(巴拿馬) neighborOf text(Costa:Rica) +text(पनामा) neighborOf text(Colombia) +text(بابوا:غينيا:الجديدة) locatedIn text(美拉尼西亞) +text(Papoea-Nieuw-Guinea) neighborOf text(Indonesië) +text(उत्तर:कोरिया) neighborOf text(الصين) +text(كوريا:الشمالية) neighborOf text(South:Korea) +text(朝鮮民主主義人民共和國) neighborOf text(Russia) +text(Letonia) locatedIn text(उत्तरी:यूरोप) +text(लातविया) neighborOf text(लिथुआनिया) +text(Letland) neighborOf text(Bielorrusia) +text(لاتفيا) neighborOf text(रूस) +text(Latvia) neighborOf text(Estonia) +text(سلطنة:عمان) locatedIn text(Zuidwest-Azië) +text(ओमान) neighborOf text(Saoedi-Arabië) +text(阿曼) neighborOf text(Yemen) +text(Oman) neighborOf text(阿拉伯联合酋长国) +text(Saint-Pierre:en:Miquelon) locatedIn text(أمريكا:الشمالية) +text(Saint:Pierre:and:Miquelon) locatedIn text(Amerika) +text(Martinica) locatedIn text(Caribe) +text(Martinique) locatedIn text(América) +text(英国) locatedIn text(Noord-Europa) +text(Verenigd:Koninkrijk) locatedIn text(Europa) +text(यूनाइटेड:किंगडम) neighborOf text(United:Kingdom) +text(Israel) locatedIn text(Asia:Occidental) +text(Israel) neighborOf text(لبنان) +text(इज़राइल) neighborOf text(मिस्र) +text(Israël) neighborOf text(約旦) +text(إسرائيل) neighborOf text(سوريا) +text(جيرزي) locatedIn text(Europa:del:Norte) +text(जर्सी) locatedIn text(أوروبا) +text(Pitcairn:Islands) locatedIn text(Polynesia) +text(皮特凯恩群岛) locatedIn text(أوقيانوسيا) +text(टोगो) locatedIn text(West:Africa) +text(توغو) neighborOf text(بوركينا:فاسو) +text(Togo) neighborOf text(Ghana) +text(Togo) neighborOf text(貝南) +text(किरिबाती) locatedIn text(密克羅尼西亞群島) +text(吉里巴斯) locatedIn text(Oceanía) +text(ईरान) locatedIn text(جنوب:آسيا) +text(Irán) neighborOf text(Afghanistan) +text(伊朗) neighborOf text(Turkmenistán) +text(Iran) neighborOf text(Turkije) +text(إيران) neighborOf text(أرمينيا) +text(Iran) neighborOf text(Azerbaijan) +text(ईरान) neighborOf text(Pakistan) +text(Irán) neighborOf text(Irak) +text(Sint-Maarten) locatedIn text(الكاريبي) +text(सेंट:मार्टिन:की:सामूहिकता) locatedIn text(Americas) +text(تجمع:سان:مارتين) neighborOf text(सेंट:मार्टिन) +text(Dominicaanse:Republiek) locatedIn text(加勒比地区) +text(डोमिनिकन:गणराज्य) locatedIn text(أمريكتان) +text(República:Dominicana) neighborOf text(Haiti) +text(डेनमार्क) neighborOf text(德國) +text(Bermuda) locatedIn text(América:del:Norte) +text(Bermudas) locatedIn text(美洲) +text(تشيلي) neighborOf text(Argentinië) +text(चिली) neighborOf text(Bolivia) +text(Chile) neighborOf text(Peru) +text(Kosovo) locatedIn text(पूर्वी:यूरोप) +text(कोसोवो:गणराज्य) neighborOf text(सर्बिया) +text(Kosovo) neighborOf text(Albanië) +text(Kosovo) neighborOf text(Noord-Macedonië) +text(كوسوفو) neighborOf text(Montenegro) +text(Saint:Kitts:and:Nevis) locatedIn text(कैरिबिया) +text(سانت:كيتس:ونيفيس) locatedIn text(महाअमेरिका) +text(इरित्रिया) neighborOf text(Djibouti) +text(厄立特里亞) neighborOf text(السودان) +text(Eritrea) neighborOf text(Ethiopia) +text(भूमध्यरेखीय:गिनी) locatedIn text(África:Central) +text(Guinea:Ecuatorial) locatedIn text(अफ्रीका) +text(Equatorial:Guinea) neighborOf text(Gabon) +text(غينيا:الاستوائية) neighborOf text(कैमरुन) +text(Niger) locatedIn text(西非) +text(Niger) neighborOf text(चाड) +text(尼日尔) neighborOf text(Libia) +text(नाइजर) neighborOf text(Burkina:Faso) +text(Níger) neighborOf text(بنين) +text(النيجر) neighborOf text(Mali) +text(Niger) neighborOf text(Algeria) +text(Niger) neighborOf text(नाइजीरिया) +text(安圭拉) locatedIn text(Caribbean) +text(Anguilla) locatedIn text(Amerika) +text(رواندا) locatedIn text(Oost-Afrika) +text(卢旺达) neighborOf text(Burundi) +text(Rwanda) neighborOf text(坦桑尼亞) +text(रवाण्डा) neighborOf text(烏干達) +text(Ruanda) neighborOf text(Democratic:Republic:of:the:Congo) +text(الإمارات:العربية:المتحدة) locatedIn text(西亚) +text(Verenigde:Arabische:Emiraten) neighborOf text(Omán) +text(United:Arab:Emirates) neighborOf text(Arabia:Saudí) +text(Estland) locatedIn text(北歐) +text(एस्टोनिया) locatedIn text(欧洲) +text(Estonia) neighborOf text(拉脫維亞) +text(愛沙尼亞) neighborOf text(俄罗斯) +text(Griekenland) locatedIn text(Europa:del:Sur) +text(Grecia) neighborOf text(Bulgaria) +text(希腊) neighborOf text(Albania) +text(اليونان) neighborOf text(North:Macedonia) +text(Greece) neighborOf text(土耳其) +text(Senegal) locatedIn text(África:Occidental) +text(सेनेगल) locatedIn text(非洲) +text(السنغال) neighborOf text(गिनी-बिसाऊ) +text(Senegal) neighborOf text(Mauritanië) +text(Senegal) neighborOf text(Mali) +text(塞内加尔) neighborOf text(Gambia) +text(Senegal) neighborOf text(Guinea) +text(غوادلوب) locatedIn text(Caraïben) +text(瓜德羅普) locatedIn text(América) +text(Monaco) neighborOf text(फ़्रान्स) +text(Djibouti) neighborOf text(إرتريا) +text(Yibuti) neighborOf text(Somalië) +text(جيبوتي) neighborOf text(Etiopía) +text(इंडोनेशिया) neighborOf text(Papua:New:Guinea) +text(Indonesia) neighborOf text(Oost-Timor) +text(印度尼西亚) neighborOf text(Malasia) +text(Islas:Vírgenes:Británicas) locatedIn text(Caribe) +text(ब्रिटिश:वर्जिन:द्वीपसमूह) locatedIn text(Americas) +text(库克群岛) locatedIn text(بولنيزيا) +text(Cookeilanden) locatedIn text(ओशिआनिया) +text(युगाण्डा) locatedIn text(东部非洲) +text(Uganda) neighborOf text(Tanzania) +text(Uganda) neighborOf text(刚果民主共和国) +text(أوغندا) neighborOf text(肯尼亚) +text(Oeganda) neighborOf text(Sudán:del:Sur) +text(烏干達) neighborOf text(Rwanda) +text(مقدونيا:الشمالية) locatedIn text(南欧) +text(उत्तर:मैसिडोनिया) neighborOf text(科索沃) +text(Macedonia:del:Norte) neighborOf text(यूनान) +text(北马其顿) neighborOf text(Albania) +text(Noord-Macedonië) neighborOf text(Serbia) +text(North:Macedonia) neighborOf text(Bulgarije) +text(Túnez) locatedIn text(شمال:إفريقيا) +text(突尼西亞) locatedIn text(إفريقيا) +text(Tunisia) neighborOf text(लीबिया) +text(ट्यूनिशिया) neighborOf text(阿爾及利亞) +text(Ecuador) neighborOf text(पेरू) +text(ईक्वाडोर) neighborOf text(哥伦比亚) +text(Brasil) locatedIn text(أمريكا:الجنوبية) +text(Brazil) neighborOf text(Bolivia) +text(巴西) neighborOf text(Colombia) +text(Brazilië) neighborOf text(巴拉圭) +text(ब्राज़ील) neighborOf text(الأوروغواي) +text(البرازيل) neighborOf text(法屬圭亞那) +text(Brasil) neighborOf text(蘇利南) +text(Brazil) neighborOf text(Venezuela) +text(巴西) neighborOf text(الأرجنتين) +text(Brazilië) neighborOf text(Guyana) +text(ब्राज़ील) neighborOf text(秘鲁) +text(पैराग्वे) locatedIn text(南美洲) +text(Paraguay) locatedIn text(أمريكتان) +text(باراغواي) neighborOf text(Argentina) +text(Paraguay) neighborOf text(البرازيل) +text(Paraguay) neighborOf text(बोलिविया) +text(芬蘭) locatedIn text(أوروبا:الشمالية) +text(فنلندا) neighborOf text(Norway) +text(Finland) neighborOf text(स्वीडन) +text(फ़िनलैण्ड) neighborOf text(روسيا) +text(Jordanië) neighborOf text(沙特阿拉伯) +text(जॉर्डन) neighborOf text(以色列) +text(Jordan) neighborOf text(伊拉克) +text(Jordania) neighborOf text(सीरिया) +text(تيمور:الشرقية) neighborOf text(إندونيسيا) +text(الجبل:الأسود) locatedIn text(أوروبا:الجنوبية) +text(蒙特內哥羅) neighborOf text(Kosovo) +text(Montenegro) neighborOf text(Bosnia:and:Herzegovina) +text(Montenegro) neighborOf text(Kroatië) +text(मॉन्टेनीग्रो) neighborOf text(صربيا) +text(Montenegro) neighborOf text(ألبانيا) +text(Peru) locatedIn text(América:del:Sur) +text(Perú) neighborOf text(الإكوادور) +text(بيرو) neighborOf text(بوليفيا) +text(Peru) neighborOf text(Chile) +text(पेरू) neighborOf text(Brasil) +text(秘鲁) neighborOf text(कोलम्बिया) +text(Montserrat) locatedIn text(الكاريبي) +text(蒙塞拉特島) locatedIn text(美洲) +text(Ucrania) locatedIn text(Oost-Europa) +text(烏克蘭) neighborOf text(Eslovaquia) +text(युक्रेन) neighborOf text(Belarus) +text(أوكرانيا) neighborOf text(Polonia) +text(Oekraïne) neighborOf text(Rusia) +text(Ukraine) neighborOf text(匈牙利) +text(Ucrania) neighborOf text(Moldova) +text(烏克蘭) neighborOf text(Roemenië) +text(Dominica) locatedIn text(加勒比地区) +text(多米尼克) locatedIn text(महाअमेरिका) +text(Turkmenistan) neighborOf text(哈萨克斯坦) +text(تركمانستان) neighborOf text(Afganistán) +text(土庫曼斯坦) neighborOf text(乌兹别克斯坦) +text(Turkmenistan) neighborOf text(伊朗) +text(Guernsey) locatedIn text(Northern:Europe) +text(Guernsey) locatedIn text(Europa) +text(直布羅陀) locatedIn text(दक्षिणी:यूरोप) +text(جبل:طارق) neighborOf text(إسبانيا) +text(स्विट्ज़रलैण्ड) locatedIn text(西欧) +text(瑞士) neighborOf text(जर्मनी) +text(سويسرا) neighborOf text(Italy) +text(Zwitserland) neighborOf text(Austria) +text(Switzerland) neighborOf text(法國) +text(Suiza) neighborOf text(लिक्टेन्स्टाइन) +text(Oostenrijk) locatedIn text(पश्चिमी:यूरोप) +text(النمسا) neighborOf text(Duitsland) +text(ऑस्ट्रिया) neighborOf text(斯洛伐克) +text(奧地利) neighborOf text(斯洛文尼亞) +text(Austria) neighborOf text(إيطاليا) +text(Austria) neighborOf text(स्विट्ज़रलैण्ड) +text(Oostenrijk) neighborOf text(Hongarije) +text(النمسا) neighborOf text(Liechtenstein) +text(ऑस्ट्रिया) neighborOf text(جمهورية:التشيك) +text(हंगरी) neighborOf text(युक्रेन) +text(Hungría) neighborOf text(स्लोवाकिया) +text(المجر) neighborOf text(Eslovenia) +text(Hungary) neighborOf text(Croatia) +text(匈牙利) neighborOf text(奧地利) +text(Hongarije) neighborOf text(Serbia) +text(हंगरी) neighborOf text(رومانيا) +text(مالاوي) locatedIn text(África:Oriental) +text(Malawi) neighborOf text(ज़ाम्बिया) +text(Malawi) neighborOf text(تنزانيا) +text(मलावी) neighborOf text(莫桑比克) +text(هونغ:كونغ) neighborOf text(República:Popular:China) +text(ليختنشتاين) locatedIn text(West-Europa) +text(Liechtenstein) locatedIn text(यूरोप) +text(列支敦斯登) neighborOf text(瑞士) +text(Liechtenstein) neighborOf text(Austria) +text(Barbados) locatedIn text(कैरिबिया) +text(باربادوس) locatedIn text(Amerika) +text(जॉर्जिया) locatedIn text(West:Asia) +text(格鲁吉亚) neighborOf text(Armenië) +text(Georgia) neighborOf text(阿塞拜疆) +text(جورجيا) neighborOf text(Rusland) +text(Georgië) neighborOf text(تركيا) +text(阿爾巴尼亞) locatedIn text(Southern:Europe) +text(अल्बानिया) locatedIn text(Europe) +text(Albanië) neighborOf text(الجبل:الأسود) +text(Albania) neighborOf text(مقدونيا:الشمالية) +text(Albania) neighborOf text(कोसोवो:गणराज्य) +text(ألبانيا) neighborOf text(Griekenland) +text(Kuwait) locatedIn text(غرب:آسيا) +text(कुवैत) neighborOf text(السعودية) +text(Koeweit) neighborOf text(Iraq) +text(南非) locatedIn text(南部非洲) +text(दक्षिण:अफ़्रीका) neighborOf text(Mozambique) +text(Zuid-Afrika) neighborOf text(Botswana) +text(South:Africa) neighborOf text(斯威士兰) +text(Sudáfrica) neighborOf text(زيمبابوي) +text(جنوب:إفريقيا) neighborOf text(Namibië) +text(南非) neighborOf text(Lesoto) +text(हैती) locatedIn text(Caribbean) +text(هايتي) locatedIn text(América) +text(海地) neighborOf text(Dominican:Republic) +text(أفغانستان) locatedIn text(दक्षिण:एशिया) +text(阿富汗) neighborOf text(तुर्कमेनिस्तान) +text(अफ़्ग़ानिस्तान) neighborOf text(चीनी:जनवादी:गणराज्य) +text(Afghanistan) neighborOf text(طاجيكستان) +text(Afghanistan) neighborOf text(Uzbekistán) +text(Afganistán) neighborOf text(Iran) +text(أفغانستان) neighborOf text(Pakistán) +text(新加坡) locatedIn text(Sudeste:Asiático) +text(Singapore) locatedIn text(Azië) +text(Benin) locatedIn text(West-Afrika) +text(Benín) neighborOf text(尼日尔) +text(बेनिन) neighborOf text(बुर्किना:फासो) +text(Benin) neighborOf text(Togo) +text(貝南) neighborOf text(奈及利亞) +text(Åland) locatedIn text(उत्तरी:यूरोप) +text(جزر:أولاند) locatedIn text(Europa) +text(Croacia) locatedIn text(Zuid-Europa) +text(克羅地亞) neighborOf text(Slovenië) +text(كرواتيا) neighborOf text(Bosnië:en:Herzegovina) +text(क्रोएशिया) neighborOf text(Hungría) +text(Kroatië) neighborOf text(塞爾維亞) +text(Croatia) neighborOf text(蒙特內哥羅) +text(Sweden) locatedIn text(Noord-Europa) +text(السويد) neighborOf text(Noruega) +text(瑞典) neighborOf text(Finlandia) +text(México) neighborOf text(بليز) +text(Mexico) neighborOf text(美國) +text(Mexico) neighborOf text(危地马拉) +text(Groenlandia) locatedIn text(उत्तर:अमेरिका) +text(ग्रीनलैण्ड) locatedIn text(Americas) +text(皮特凯恩群岛) locatedIn text(Australia:and:New:Zealand) +text(Islas:Pitcairn) locatedIn text(Oceania) +text(नेपाल) locatedIn text(South:Asia) +text(尼泊爾) locatedIn text(Asia) +text(Nepal) neighborOf text(Volksrepubliek:China) +text(Nepal) neighborOf text(India) +text(ग्वाटेमाला) neighborOf text(伯利兹) +text(غواتيمالا) neighborOf text(薩爾瓦多) +text(Guatemala) neighborOf text(मेक्सिको) +text(Guatemala) neighborOf text(Honduras) +text(كوريا:الجنوبية) locatedIn text(Oost-Azië) +text(Zuid-Korea) neighborOf text(North:Korea) +text(Moldavië) locatedIn text(Eastern:Europe) +text(摩爾多瓦) locatedIn text(أوروبا) +text(مولدوفا) neighborOf text(أوكرانيا) +text(Moldavia) neighborOf text(रोमानिया) +text(Mauricio) locatedIn text(पूर्वी:अफ्रीका) +text(मॉरिशस) locatedIn text(Africa) +text(Wit-Rusland) neighborOf text(Oekraïne) +text(بيلاروس) neighborOf text(Polen) +text(白俄羅斯) neighborOf text(ليتوانيا) +text(बेलारूस) neighborOf text(Russia) +text(Bielorrusia) neighborOf text(Letonia) +text(Bangladesh) neighborOf text(Birmania) +text(Bangladesh) neighborOf text(भारत) +text(मलेशिया) locatedIn text(दक्षिण:पूर्व:एशिया) +text(ماليزيا) neighborOf text(تايلاند) +text(馬來西亞) neighborOf text(Indonesia) +text(Maleisië) neighborOf text(بروناي) +text(Bosnia:y:Herzegovina) locatedIn text(Europa:del:Sur) +text(बोस्निया:और:हर्ज़ेगोविना) neighborOf text(Servië) +text(البوسنة:والهرسك) neighborOf text(Croacia) +text(波斯尼亚和黑塞哥维那) neighborOf text(Montenegro) +text(लक्ज़मबर्ग) locatedIn text(Europa:Occidental) +text(卢森堡) neighborOf text(Alemania) +text(لوكسمبورغ) neighborOf text(Bélgica) +text(Luxembourg) neighborOf text(Frankrijk) +text(意大利) locatedIn text(南欧) +text(Italië) locatedIn text(欧洲) +text(Italia) neighborOf text(سلوفينيا) +text(इटली) neighborOf text(سويسرا) +text(Italy) neighborOf text(Austria) +text(إيطاليا) neighborOf text(France) +text(意大利) neighborOf text(梵蒂岡城國) +text(Italië) neighborOf text(San:Marino) +text(अज़रबैजान) locatedIn text(पश्चिमी:एशिया) +text(أذربيجان) neighborOf text(Turquía) +text(Azerbeidzjan) neighborOf text(Armenia) +text(Azerbaiyán) neighborOf text(रूस) +text(Azerbaijan) neighborOf text(إيران) +text(阿塞拜疆) neighborOf text(Georgia) +text(हॉण्डुरस) locatedIn text(中美洲) +text(هندوراس) neighborOf text(Guatemala) +text(洪都拉斯) neighborOf text(निकारागुआ) +text(Honduras) neighborOf text(El:Salvador) +text(مالي) locatedIn text(غرب:إفريقيا) +text(Mali) neighborOf text(布吉納法索) +text(马里) neighborOf text(غينيا) +text(माली) neighborOf text(毛里塔尼亞) +text(Mali) neighborOf text(नाइजर) +text(Mali) neighborOf text(सेनेगल) +text(مالي) neighborOf text(Argelia) +text(Mali) neighborOf text(Ivory:Coast) +text(República:de:China) locatedIn text(पूर्वी:एशिया) +text(Taiwan) locatedIn text(Asia) +text(الجزائر) locatedIn text(北部非洲) +text(अल्जीरिया) neighborOf text(Libië) +text(Algerije) neighborOf text(Tunesië) +text(Algeria) neighborOf text(Mauritania) +text(阿爾及利亞) neighborOf text(Marokko) +text(Argelia) neighborOf text(Níger) +text(الجزائر) neighborOf text(马里) +text(अल्जीरिया) neighborOf text(Sahrawi:Arab:Democratic:Republic) +text(Guayana:Francesa) neighborOf text(Brazil) +text(Frans-Guyana) neighborOf text(سورينام) +text(Jemen) locatedIn text(Zuidwest-Azië) +text(也门) neighborOf text(Oman) +text(Yemen) neighborOf text(सउदी:अरब) +text(Puerto:Rico) locatedIn text(Caraïben) +text(Puerto:Rico) locatedIn text(أمريكتان) +text(Saint:Vincent:en:de:Grenadines) locatedIn text(Caribe) +text(Saint:Vincent:and:the:Grenadines) locatedIn text(美洲) +text(वेनेज़ुएला) neighborOf text(巴西) +text(Venezuela) neighborOf text(गयाना) +text(Venezuela) neighborOf text(كولومبيا) +text(格瑞那達) locatedIn text(الكاريبي) +text(Grenada) locatedIn text(महाअमेरिका) +text(United:States) neighborOf text(加拿大) +text(संयुक्त:राज्य:अमेरिका) neighborOf text(المكسيك) +text(Tokelau) locatedIn text(पोलीनेशिया) +text(टोकेलाऊ) locatedIn text(Oceanië) +text(Slovenia) locatedIn text(أوروبا:الجنوبية) +text(स्लोवेनिया) neighborOf text(Oostenrijk) +text(斯洛文尼亞) neighborOf text(克羅地亞) +text(Eslovenia) neighborOf text(Italia) +text(Slovenië) neighborOf text(المجر) +text(फ़िलीपीन्स) locatedIn text(Zuidoost-Azië) +text(菲律賓) locatedIn text(亞洲) +text(Micronesia) locatedIn text(Micronesia) +text(ميكرونيسيا) locatedIn text(大洋洲) +text(People's:Republic:of:China) locatedIn text(Asia:Oriental) +text(中华人民共和国) neighborOf text(阿富汗) +text(الصين) neighborOf text(Bután) +text(República:Popular:China) neighborOf text(Macau) +text(चीनी:जनवादी:गणराज्य) neighborOf text(印度) +text(Volksrepubliek:China) neighborOf text(Kazakhstan) +text(People's:Republic:of:China) neighborOf text(Kyrgyzstan) +text(中华人民共和国) neighborOf text(ताजीकिस्तान) +text(الصين) neighborOf text(لاوس) +text(República:Popular:China) neighborOf text(俄罗斯) +text(चीनी:जनवादी:गणराज्य) neighborOf text(Noord-Korea) +text(Volksrepubliek:China) neighborOf text(Myanmar) +text(People's:Republic:of:China) neighborOf text(पाकिस्तान) +text(中华人民共和国) neighborOf text(Mongolia) +text(الصين) neighborOf text(香港) +text(República:Popular:China) neighborOf text(越南) +text(Gabón) locatedIn text(وسط:إفريقيا) +text(加蓬) neighborOf text(Equatoriaal-Guinea) +text(Gabon) neighborOf text(剛果共和國) +text(الغابون) neighborOf text(喀麦隆) +text(Islas:ultramarinas:de:Estados:Unidos) locatedIn text(North:America) +text(美国本土外小岛屿) locatedIn text(Amerika) +text(Andorra) locatedIn text(दक्षिणी:यूरोप) +text(安道尔) neighborOf text(España) +text(Andorra) neighborOf text(Francia) +text(समोआ) locatedIn text(玻里尼西亞) +text(Samoa) locatedIn text(أوقيانوسيا) +text(Gambia) locatedIn text(पश्चिमी:अफ्रीका) +text(岡比亞) locatedIn text(África) +text(The:Gambia) neighborOf text(السنغال) +text(Pedro:Miguel) locatedIn text(Asia:Occidental) +text(nan) locatedIn text(آسيا) +text(Pedro:Miguel) neighborOf text(الأردن) +text(Pedro:Miguel) neighborOf text(Egipto) +text(nan) neighborOf text(Israel) +text(ريونيون) locatedIn text(East:Africa) +text(Réunion) locatedIn text(Afrika) +text(فرنسا) locatedIn text(أوروبا:الغربية) +text(फ़्रान्स) neighborOf text(Germany) +text(法國) neighborOf text(Luxemburgo) +text(Frankrijk) neighborOf text(इटली) +text(France) neighborOf text(अण्डोरा) +text(Francia) neighborOf text(Zwitserland) +text(فرنسا) neighborOf text(Mónaco) +text(फ़्रान्स) neighborOf text(بلجيكا) +text(法國) neighborOf text(स्पेन) +text(منغوليا) locatedIn text(東亞) +text(蒙古國) locatedIn text(एशिया) +text(Mongolië) neighborOf text(चीनी:जनवादी:गणराज्य) +text(मंगोलिया) neighborOf text(روسيا) +text(立陶宛) locatedIn text(Europa:del:Norte) +text(Lithuania) neighborOf text(波蘭) +text(Lituania) neighborOf text(लातविया) +text(Litouwen) neighborOf text(Belarus) +text(लिथुआनिया) neighborOf text(Rusia) +text(Cayman:Islands) locatedIn text(加勒比地区) +text(केमन:द्वीपसमूह) locatedIn text(América) +text(Saint:Lucia) locatedIn text(कैरिबिया) +text(Saint:Lucia) locatedIn text(Americas) +text(Curazao) locatedIn text(Caribbean) +text(Curaçao) locatedIn text(أمريكتان) +text(Caraïben) locatedIn text(美洲) +text(南亚) locatedIn text(Azië) +text(Central:Africa) locatedIn text(अफ्रीका) +text(北歐) locatedIn text(Europa) +text(Southern:Europe) locatedIn text(यूरोप) +text(西亚) locatedIn text(Asia) +text(दक्षिण:अमेरिका) locatedIn text(महाअमेरिका) +text(Polynesië) locatedIn text(Oceanía) +text(nan) locatedIn text(ओशिआनिया) +text(Western:Europe) locatedIn text(Europe) +text(شرق:إفريقيا) locatedIn text(非洲) +text(West:Africa) locatedIn text(إفريقيا) +text(东欧) locatedIn text(Europa) +text(केंद्रीय:अमेरिका) locatedIn text(Amerika) +text(Noord-Amerika) locatedIn text(América) +text(东南亚) locatedIn text(Asia) +text(África:austral) locatedIn text(Africa) +text(شرق:آسيا) locatedIn text(亞洲) +text(Noord-Afrika) locatedIn text(África) +text(Melanesië) locatedIn text(Oceania) +text(माइक्रोनीशिया) locatedIn text(Oceanië) +text(中亚) locatedIn text(آسيا) +text(中欧) locatedIn text(أوروبا) \ No newline at end of file diff --git a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_country2text_relation2text.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_country2text_relation2text.tsv new file mode 100644 index 0000000..7741b5d --- /dev/null +++ b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_country2text_relation2text.tsv @@ -0,0 +1,979 @@ +text(Palaos) text(can:be:found:in) text(ميكرونيسيا) +text(بالاو) text(was:positioned:in) text(Oceanía) +text(المالديف) text(is:positioned:in) text(South:Asia) +text(Maldives) text(was:sited:in) text(آسيا) +text(بروناي) text(is:sited:in) text(东南亚) +text(ब्रुनेई) text(was:localized:in) text(एशिया) +text(Brunei) text(is:butted:against) text(Malasia) +text(Japan) text(is:localized:in) text(شرق:آسيا) +text(Japón) text(was:present:in) text(Asia) +text(هولندا) text(was:butted:against) text(जर्मनी) +text(Netherlands) text(was:adjacent:to) text(België) +text(土耳其) text(is:adjacent:to) text(Armenië) +text(Turkije) text(neighbors) text(अज़रबैजान) +text(Turkey) text(is:a:neighboring:country:of) text(伊朗) +text(تركيا) text(was:a:neighboring:country:of) text(Griekenland) +text(तुर्की) text(neighbors:with) text(Georgia) +text(Turquía) text(was:a:neighbor:of) text(Bulgarije) +text(土耳其) text(is:a:neighbor:of) text(Irak) +text(Turkije) text(is:a:neighboring:state:to) text(Syria) +text(安哥拉) text(is:present:in) text(وسط:إفريقيا) +text(أنغولا) text(was:a:neighboring:state:to) text(Democratic:Republic:of:the:Congo) +text(अंगोला) text(borders:with) text(नामीबिया) +text(Angola) text(borders) text(Zambia) +text(Angola) text(is:butted:against) text(جمهورية:الكونغو) +text(आर्मीनिया) text(is:still:in) text(Zuidwest-Azië) +text(Armenia) text(was:butted:against) text(格鲁吉亚) +text(亞美尼亞) text(was:adjacent:to) text(阿塞拜疆) +text(أرمينيا) text(is:adjacent:to) text(إيران) +text(Armenia) text(neighbors) text(Turkey) +text(安提瓜和巴布达) text(was:still:in) text(कैरिबिया) +text(Antigua:y:Barbuda) text(was:currently:in) text(महाअमेरिका) +text(एस्वातीनी) text(is:currently:in) text(南部非洲) +text(斯威士兰) text(is:a:neighboring:country:of) text(Sudáfrica) +text(Eswatini) text(was:a:neighboring:country:of) text(Mozambique) +text(瓦利斯和富圖納) text(is:placed:in) text(بولنيزيا) +text(واليس:وفوتونا) text(was:placed:in) text(大洋洲) +text(उरुग्वे) text(can:be:found:in) text(दक्षिण:अमेरिका) +text(الأوروغواي) text(was:situated:in) text(Amerika) +text(烏拉圭) text(neighbors:with) text(Argentina) +text(Uruguay) text(was:a:neighbor:of) text(البرازيل) +text(Zambia) text(is:situated:in) text(Oost-Afrika) +text(زامبيا) text(is:a:neighbor:of) text(तंज़ानिया) +text(Zambia) text(is:a:neighboring:state:to) text(موزمبيق) +text(ज़ाम्बिया) text(was:a:neighboring:state:to) text(República:Democrática:del:Congo) +text(贊比亞) text(borders:with) text(Angola) +text(Zambia) text(borders) text(波札那) +text(Zambia) text(is:butted:against) text(津巴布韦) +text(زامبيا) text(was:butted:against) text(Namibia) +text(Zambia) text(was:adjacent:to) text(Malawi) +text(قبرص) text(is:located:in) text(पूर्वी:यूरोप) +text(Chipre) text(was:located:in) text(यूरोप) +text(Cyprus) text(is:adjacent:to) text(यूनाइटेड:किंगडम) +text(यूनाइटेड:किंगडम) text(can:be:found:in) text(उत्तरी:यूरोप) +text(英国) text(was:positioned:in) text(أوروبا) +text(Verenigd:Koninkrijk) text(neighbors) text(Reino:Unido) +text(بوروندي) text(is:positioned:in) text(पूर्वी:अफ्रीका) +text(Burundi) text(is:a:neighboring:country:of) text(刚果民主共和国) +text(Burundi) text(was:a:neighboring:country:of) text(Rwanda) +text(蒲隆地) text(neighbors:with) text(Tanzania) +text(中非共和國) text(was:sited:in) text(África:Central) +text(Central:African:Republic) text(was:a:neighbor:of) text(تشاد) +text(جمهورية:إفريقيا:الوسطى) text(is:a:neighbor:of) text(剛果共和國) +text(República:Centroafricana) text(is:a:neighboring:state:to) text(جمهورية:الكونغو:الديمقراطية) +text(Centraal-Afrikaanse:Republiek) text(was:a:neighboring:state:to) text(South:Sudan) +text(मध्य:अफ़्रीकी:गणराज्य) text(borders:with) text(Camerún) +text(中非共和國) text(borders) text(苏丹) +text(تونغا) text(is:sited:in) text(पोलीनेशिया) +text(टोंगा) text(was:localized:in) text(Oceanië) +text(Ivoorkust) text(is:localized:in) text(غرب:إفريقيا) +text(ساحل:العاج) text(is:butted:against) text(Burkina:Faso) +text(Ivory:Coast) text(was:butted:against) text(Ghana) +text(Costa:de:Marfil) text(was:adjacent:to) text(Liberia) +text(कोत:दिव्वार) text(is:adjacent:to) text(माली) +text(科特迪瓦) text(neighbors) text(Guinee) +text(سيراليون) text(is:a:neighboring:country:of) text(利比里亞) +text(Sierra:Leona) text(was:a:neighboring:country:of) text(几内亚) +text(مايوت) text(was:present:in) text(东部非洲) +text(Mayotte) text(is:present:in) text(África) +text(بولندا) text(neighbors:with) text(Germany) +text(Polonia) text(was:a:neighbor:of) text(Oekraïne) +text(पोलैंड) text(is:a:neighbor:of) text(斯洛伐克) +text(Polen) text(is:a:neighboring:state:to) text(白俄羅斯) +text(波蘭) text(was:a:neighboring:state:to) text(रूस) +text(Poland) text(borders:with) text(लिथुआनिया) +text(بولندا) text(borders) text(捷克) +text(कज़ाख़िस्तान) text(is:still:in) text(Centraal-Azië) +text(Kazajistán) text(is:butted:against) text(Turkmenistán) +text(Kazachstan) text(was:butted:against) text(الصين) +text(哈萨克斯坦) text(was:adjacent:to) text(吉尔吉斯斯坦) +text(كازاخستان) text(is:adjacent:to) text(Uzbekistán) +text(Kazakhstan) text(neighbors) text(روسيا) +text(उज़्बेकिस्तान) text(was:still:in) text(मध्य:एशिया) +text(乌兹别克斯坦) text(is:a:neighboring:country:of) text(أفغانستان) +text(Uzbekistan) text(was:a:neighboring:country:of) text(تركمانستان) +text(أوزبكستان) text(neighbors:with) text(कज़ाख़िस्तान) +text(Oezbekistan) text(was:a:neighbor:of) text(Kyrgyzstan) +text(Uzbekistán) text(is:a:neighbor:of) text(塔吉克斯坦) +text(तुर्क:और:केकोस:द्वीपसमूह) text(was:currently:in) text(Caribe) +text(جزر:توركس:وكايكوس) text(is:currently:in) text(América) +text(Nueva:Caledonia) text(is:placed:in) text(ميلانيزيا) +text(كاليدونيا:الجديدة) text(was:placed:in) text(Oceania) +text(Pakistán) text(is:a:neighboring:state:to) text(People's:Republic:of:China) +text(巴基斯坦) text(was:a:neighboring:state:to) text(Afghanistan) +text(باكستان) text(borders:with) text(Irán) +text(पाकिस्तान) text(borders) text(India) +text(Argentina) text(can:be:found:in) text(Zuid-Amerika) +text(阿根廷) text(is:butted:against) text(Bolivia) +text(Argentinië) text(was:butted:against) text(智利) +text(अर्जेण्टीना) text(was:adjacent:to) text(巴西) +text(الأرجنتين) text(is:adjacent:to) text(巴拉圭) +text(Argentina) text(neighbors) text(Uruguay) +text(क्यूबा) text(was:situated:in) text(Caribbean) +text(Cuba) text(is:situated:in) text(أمريكتان) +text(塞爾維亞) text(is:a:neighboring:country:of) text(Macedonia:del:Norte) +text(Servië) text(was:a:neighboring:country:of) text(蒙特內哥羅) +text(Serbia) text(neighbors:with) text(Kosovo) +text(सर्बिया) text(was:a:neighbor:of) text(Bosnia:y:Herzegovina) +text(صربيا) text(is:a:neighbor:of) text(كرواتيا) +text(Serbia) text(is:a:neighboring:state:to) text(Hungría) +text(塞爾維亞) text(was:a:neighboring:state:to) text(بلغاريا) +text(Servië) text(borders:with) text(羅馬尼亞) +text(Czech:Republic) text(is:located:in) text(Europa:Oriental) +text(चेक:गणराज्य) text(borders) text(Duitsland) +text(جمهورية:التشيك) text(is:butted:against) text(Austria) +text(Tsjechië) text(was:butted:against) text(Polonia) +text(República:Checa) text(was:adjacent:to) text(سلوفاكيا) +text(Nicaragua) text(is:adjacent:to) text(洪都拉斯) +text(نيكاراغوا) text(neighbors) text(Costa:Rica) +text(Vietnam) text(was:located:in) text(दक्षिण:पूर्व:एशिया) +text(Vietnam) text(can:be:found:in) text(Azië) +text(वियतनाम) text(is:a:neighboring:country:of) text(كمبوديا) +text(فيتنام) text(was:a:neighboring:country:of) text(لاوس) +text(Vietnam) text(neighbors:with) text(Volksrepubliek:China) +text(निउए) text(was:positioned:in) text(Polynesia) +text(Niue) text(is:positioned:in) text(ओशिआनिया) +text(कनाडा) text(was:sited:in) text(उत्तर:अमेरिका) +text(Canada) text(was:a:neighbor:of) text(Verenigde:Staten) +text(Slowakije) text(is:a:neighbor:of) text(أوكرانيا) +text(स्लोवाकिया) text(is:a:neighboring:state:to) text(पोलैंड) +text(Eslovaquia) text(was:a:neighboring:state:to) text(奧地利) +text(Slovakia) text(borders:with) text(المجر) +text(斯洛伐克) text(borders) text(捷克) +text(मोज़ाम्बीक) text(is:butted:against) text(تنزانيا) +text(莫桑比克) text(was:butted:against) text(Swaziland) +text(Mozambique) text(was:adjacent:to) text(Zimbabwe) +text(Mozambique) text(is:adjacent:to) text(ज़ाम्बिया) +text(Mozambique) text(neighbors) text(馬拉威) +text(موزمبيق) text(is:a:neighboring:country:of) text(Zuid-Afrika) +text(أروبا) text(is:sited:in) text(الكاريبي) +text(अरूबा) text(was:localized:in) text(Americas) +text(Bolivia) text(is:localized:in) text(南美洲) +text(Bolivia) text(was:a:neighboring:country:of) text(Chili) +text(玻利維亞) text(neighbors:with) text(Brasil) +text(बोलिविया) text(was:a:neighbor:of) text(Paraguay) +text(بوليفيا) text(is:a:neighbor:of) text(Argentina) +text(Bolivia) text(is:a:neighboring:state:to) text(بيرو) +text(Colombia) text(was:present:in) text(América:del:Sur) +text(كولومبيا) text(was:a:neighboring:state:to) text(厄瓜多尔) +text(Colombia) text(borders:with) text(Brazilië) +text(कोलम्बिया) text(borders) text(Panama) +text(哥伦比亚) text(is:butted:against) text(Venezuela) +text(Colombia) text(was:butted:against) text(Peru) +text(फ़िजी) text(is:present:in) text(美拉尼西亞) +text(Fiyi) text(is:still:in) text(أوقيانوسيا) +text(कांगो:गणराज्य) text(was:adjacent:to) text(加蓬) +text(República:del:Congo) text(is:adjacent:to) text(कांगो:लोकतान्त्रिक:गणराज्य) +text(Congo-Brazzaville) text(neighbors) text(安哥拉) +text(Republic:of:the:Congo) text(is:a:neighboring:country:of) text(Cameroon) +text(جمهورية:الكونغو) text(was:a:neighboring:country:of) text(Central:African:Republic) +text(Saoedi-Arabië) text(neighbors:with) text(卡塔尔) +text(السعودية) text(was:a:neighbor:of) text(United:Arab:Emirates) +text(沙特阿拉伯) text(is:a:neighbor:of) text(Jordan) +text(Saudi:Arabia) text(is:a:neighboring:state:to) text(也门) +text(सउदी:अरब) text(was:a:neighboring:state:to) text(ओमान) +text(Arabia:Saudí) text(borders:with) text(कुवैत) +text(Saoedi-Arabië) text(borders) text(伊拉克) +text(السلفادور) text(was:still:in) text(أمريكا:الوسطى) +text(अल:साल्वाडोर) text(is:butted:against) text(غواتيمالا) +text(El:Salvador) text(was:butted:against) text(हॉण्डुरस) +text(Madagaskar) text(was:currently:in) text(East:Africa) +text(مدغشقر) text(is:currently:in) text(अफ्रीका) +text(Australië) text(is:placed:in) text(Australia:and:New:Zealand) +text(أستراليا) text(was:placed:in) text(Oceanía) +text(ناميبيا) text(can:be:found:in) text(दक्षिणी:अफ्रीका) +text(Namibia) text(was:situated:in) text(إفريقيا) +text(纳米比亚) text(was:adjacent:to) text(贊比亞) +text(Namibië) text(is:adjacent:to) text(أنغولا) +text(नामीबिया) text(neighbors) text(جنوب:إفريقيا) +text(Namibia) text(is:a:neighboring:country:of) text(बोत्सवाना) +text(توفالو) text(is:situated:in) text(Polynesië) +text(吐瓦魯) text(is:located:in) text(大洋洲) +text(Svalbard:and:Jan:Mayen) text(was:located:in) text(أوروبا:الشمالية) +text(Svalbard:y:Jan:Mayen) text(can:be:found:in) text(Europe) +text(Isla:de:Man) text(was:positioned:in) text(北歐) +text(جزيرة:مان) text(is:positioned:in) text(Europa) +text(Guyana) text(was:a:neighboring:country:of) text(Brazil) +text(Guyana) text(neighbors:with) text(सूरीनाम) +text(圭亚那) text(was:a:neighbor:of) text(委內瑞拉) +text(Vaticaanstad) text(was:sited:in) text(Europa:del:Sur) +text(Vatican:City) text(is:sited:in) text(欧洲) +text(الفاتيكان) text(is:a:neighbor:of) text(Italië) +text(British:Indian:Ocean:Territory) text(was:localized:in) text(África:Oriental) +text(ब्रिटिश:हिंद:महासागर:क्षेत्र) text(is:localized:in) text(非洲) +text(نيجيريا) text(was:present:in) text(West-Afrika) +text(Nigeria) text(is:present:in) text(Africa) +text(Nigeria) text(is:a:neighboring:state:to) text(चाड) +text(奈及利亞) text(was:a:neighboring:state:to) text(Níger) +text(नाइजीरिया) text(borders:with) text(الكاميرون) +text(Nigeria) text(borders) text(貝南) +text(Alemania) text(is:butted:against) text(丹麥) +text(德國) text(was:butted:against) text(Nederland) +text(ألمانيا) text(was:adjacent:to) text(Polen) +text(जर्मनी) text(is:adjacent:to) text(卢森堡) +text(Germany) text(neighbors) text(比利時) +text(Duitsland) text(is:a:neighboring:country:of) text(Switzerland) +text(Alemania) text(was:a:neighboring:country:of) text(Austria) +text(德國) text(neighbors:with) text(Frankrijk) +text(ألمانيا) text(was:a:neighbor:of) text(Czech:Republic) +text(Burkina:Faso) text(is:a:neighbor:of) text(Togo) +text(布吉納法索) text(is:a:neighboring:state:to) text(Benin) +text(बुर्किना:फासो) text(was:a:neighboring:state:to) text(Niger) +text(بوركينا:فاسو) text(borders:with) text(Ghana) +text(Burkina:Faso) text(borders) text(Mali) +text(Burkina:Faso) text(is:butted:against) text(Ivoorkust) +text(Tanzania) text(was:butted:against) text(Uganda) +text(Tanzania) text(was:adjacent:to) text(मोज़ाम्बीक) +text(坦桑尼亞) text(is:adjacent:to) text(Congo-Kinshasa) +text(तंज़ानिया) text(neighbors) text(Kenia) +text(Tanzania) text(is:a:neighboring:country:of) text(रवाण्डा) +text(تنزانيا) text(was:a:neighboring:country:of) text(Zambia) +text(Tanzania) text(neighbors:with) text(Malaui) +text(Tanzania) text(was:a:neighbor:of) text(Burundi) +text(Northern:Mariana:Islands) text(is:still:in) text(Micronesia) +text(جزر:ماريانا:الشمالية) text(was:still:in) text(Oceanië) +text(Belize) text(was:currently:in) text(América:Central) +text(伯利兹) text(is:a:neighbor:of) text(Guatemala) +text(بليز) text(is:a:neighboring:state:to) text(México) +text(Norway) text(was:a:neighboring:state:to) text(Suecia) +text(挪威) text(borders:with) text(فنلندا) +text(النرويج) text(borders) text(俄罗斯) +text(Cocos:(Keeling):Islands) text(is:currently:in) text(nan) +text(جزر:كوكوس) text(is:placed:in) text(Oceania) +text(Laos) text(was:placed:in) text(Southeast:Asia) +text(लाओस) text(is:butted:against) text(中华人民共和国) +text(老撾) text(was:butted:against) text(कम्बोडिया) +text(Laos) text(was:adjacent:to) text(म्यान्मार) +text(Laos) text(is:adjacent:to) text(越南) +text(لاوس) text(neighbors) text(泰國) +text(الجمهورية:العربية:الصحراوية:الديمقراطية) text(can:be:found:in) text(شمال:إفريقيا) +text(Sahrawi:Arabische:Democratische:Republiek) text(is:a:neighboring:country:of) text(阿爾及利亞) +text(撒拉威阿拉伯民主共和國) text(was:a:neighboring:country:of) text(Mauritania) +text(सहरावी:अरब:जनतांत्रिक:गणराज्य) text(neighbors:with) text(Morocco) +text(Suriname) text(was:situated:in) text(South:America) +text(Surinam) text(was:a:neighbor:of) text(ब्राज़ील) +text(蘇利南) text(is:a:neighbor:of) text(法屬圭亞那) +text(Suriname) text(is:a:neighboring:state:to) text(गयाना) +text(क्रिसमस:द्वीप) text(is:situated:in) text(Australië:en:Nieuw-Zeeland) +text(جزيرة:عيد:الميلاد) text(is:located:in) text(ओशिआनिया) +text(São:Tomé:and:Príncipe) text(was:located:in) text(Centraal-Afrika) +text(साओ:तोमे:और:प्रिन्सिपी) text(can:be:found:in) text(Afrika) +text(埃及) text(was:a:neighboring:state:to) text(Libië) +text(Egypte) text(borders:with) text(Israel) +text(مصر) text(borders) text(Sudán) +text(Bulgaria) text(is:butted:against) text(North:Macedonia) +text(保加利亚) text(was:butted:against) text(تركيا) +text(बुल्गारिया) text(was:adjacent:to) text(Grecia) +text(Bulgaria) text(is:adjacent:to) text(Serbia) +text(Bulgarije) text(neighbors) text(Rumania) +text(Guinea) text(was:positioned:in) text(पश्चिमी:अफ्रीका) +text(غينيا) text(is:a:neighboring:country:of) text(Guinea-Bissau) +text(Guinea) text(was:a:neighboring:country:of) text(सिएरा:लियोन) +text(गिनी) text(neighbors:with) text(Mali) +text(Guinee) text(was:a:neighbor:of) text(Liberia) +text(几内亚) text(is:a:neighbor:of) text(Senegal) +text(Guinea) text(is:a:neighboring:state:to) text(ساحل:العاج) +text(स्पेन) text(was:a:neighboring:state:to) text(मोरक्को) +text(España) text(borders:with) text(जिब्राल्टर) +text(إسبانيا) text(borders) text(أندورا) +text(Spanje) text(is:butted:against) text(فرنسا) +text(西班牙) text(was:butted:against) text(Portugal) +text(कोस्टा:रीका) text(is:positioned:in) text(中美洲) +text(哥斯达黎加) text(was:adjacent:to) text(Panama) +text(Costa:Rica) text(is:adjacent:to) text(निकारागुआ) +text(Malta) text(was:sited:in) text(दक्षिणी:यूरोप) +text(Malta) text(is:sited:in) text(Europa) +text(البرتغال) text(was:localized:in) text(南欧) +text(葡萄牙) text(neighbors) text(Spain) +text(Romania) text(is:localized:in) text(Oost-Europa) +text(रोमानिया) text(is:a:neighboring:country:of) text(烏克蘭) +text(Roemenië) text(was:a:neighboring:country:of) text(Hungary) +text(رومانيا) text(neighbors:with) text(Moldova) +text(羅馬尼亞) text(was:a:neighbor:of) text(بلغاريا) +text(Rumania) text(is:a:neighbor:of) text(सर्बिया) +text(سان:مارينو) text(was:present:in) text(Southern:Europe) +text(सान:मारिनो) text(is:present:in) text(यूरोप) +text(San:Marino) text(is:a:neighboring:state:to) text(Italia) +text(موريتانيا) text(is:still:in) text(西非) +text(Mauritanië) text(was:still:in) text(África) +text(Mauritania) text(was:a:neighboring:state:to) text(Algerije) +text(मॉरीतानिया) text(borders:with) text(马里) +text(毛里塔尼亞) text(borders) text(República:Árabe:Saharaui:Democrática) +text(Mauritania) text(is:butted:against) text(塞内加尔) +text(Trinidad:y:Tobago) text(was:currently:in) text(加勒比地区) +text(त्रिनिदाद:और:टोबैगो) text(is:currently:in) text(美洲) +text(बहरीन) text(is:placed:in) text(Asia:Occidental) +text(البحرين) text(was:placed:in) text(Asia) +text(Myanmar) text(was:butted:against) text(India) +text(ميانمار) text(was:adjacent:to) text(Bangladés) +text(緬甸) text(is:adjacent:to) text(चीनी:जनवादी:गणराज्य) +text(Birmania) text(neighbors) text(Laos) +text(Myanmar) text(is:a:neighboring:country:of) text(थाईलैंड) +text(العراق) text(was:a:neighboring:country:of) text(तुर्की) +text(इराक) text(neighbors:with) text(السعودية) +text(Iraq) text(was:a:neighbor:of) text(Iran) +text(Irak) text(is:a:neighbor:of) text(Jordanië) +text(Irak) text(is:a:neighboring:state:to) text(Kuwait) +text(伊拉克) text(was:a:neighboring:state:to) text(Siria) +text(Zuid-Georgia:en:de:Zuidelijke:Sandwicheilanden) text(can:be:found:in) text(أمريكا:الجنوبية) +text(جورجيا:الجنوبية:وجزر:ساندويتش:الجنوبية) text(was:situated:in) text(महाअमेरिका) +text(冰島) text(is:situated:in) text(Northern:Europe) +text(आइसलैण्ड) text(is:located:in) text(أوروبا) +text(Democratic:Republic:of:the:Congo) text(was:located:in) text(中部非洲) +text(República:Democrática:del:Congo) text(borders:with) text(Oeganda) +text(刚果民主共和国) text(borders) text(坦桑尼亞) +text(جمهورية:الكونغو:الديمقراطية) text(is:butted:against) text(剛果共和國) +text(कांगो:लोकतान्त्रिक:गणराज्य) text(was:butted:against) text(جمهورية:إفريقيا:الوسطى) +text(Congo-Kinshasa) text(was:adjacent:to) text(अंगोला) +text(Democratic:Republic:of:the:Congo) text(is:adjacent:to) text(رواندا) +text(República:Democrática:del:Congo) text(neighbors) text(Sudán:del:Sur) +text(刚果民主共和国) text(is:a:neighboring:country:of) text(Zambia) +text(جمهورية:الكونغو:الديمقراطية) text(was:a:neighboring:country:of) text(बुरुण्डी) +text(Seychellen) text(can:be:found:in) text(شرق:إفريقيا) +text(Seychelles) text(was:positioned:in) text(अफ्रीका) +text(قرغيزستان) text(neighbors:with) text(República:Popular:China) +text(किर्गिज़स्तान) text(was:a:neighbor:of) text(Kazajistán) +text(Kirgizië) text(is:a:neighbor:of) text(Tadzjikistan) +text(Kirguistán) text(is:a:neighboring:state:to) text(उज़्बेकिस्तान) +text(Botsuana) text(is:positioned:in) text(Zuidelijk:Afrika) +text(بوتسوانا) text(was:a:neighboring:state:to) text(ज़िम्बाब्वे) +text(Botswana) text(borders:with) text(ناميبيا) +text(Botswana) text(borders) text(زامبيا) +text(波札那) text(is:butted:against) text(दक्षिण:अफ़्रीका) +text(جزر:فارو) text(was:sited:in) text(Europa:del:Norte) +text(Faeröer) text(is:sited:in) text(Europe) +text(जमैका) text(was:localized:in) text(Caraïben) +text(牙買加) text(is:localized:in) text(Amerika) +text(Amerikaans-Samoa) text(was:present:in) text(Polinesia) +text(Samoa:Americana) text(is:present:in) text(أوقيانوسيا) +text(लेसोथो) text(is:still:in) text(África:austral) +text(Lesoto) text(was:still:in) text(إفريقيا) +text(莱索托) text(was:butted:against) text(南非) +text(श्रीलंका) text(was:adjacent:to) text(الهند) +text(बेल्जियम) text(was:currently:in) text(西欧) +text(Bélgica) text(is:adjacent:to) text(जर्मनी) +text(بلجيكا) text(neighbors) text(Luxemburgo) +text(Belgium) text(is:a:neighboring:country:of) text(Francia) +text(België) text(was:a:neighboring:country:of) text(荷蘭) +text(Qatar) text(is:currently:in) text(West:Asia) +text(Qatar) text(neighbors:with) text(沙特阿拉伯) +text(所罗门群岛) text(is:placed:in) text(Melanesië) +text(جزر:سليمان) text(was:placed:in) text(Oceanía) +text(सीरिया) text(can:be:found:in) text(غرب:آسيا) +text(敘利亞) text(was:a:neighbor:of) text(Israel) +text(Syrië) text(is:a:neighbor:of) text(Turquía) +text(سوريا) text(is:a:neighboring:state:to) text(जॉर्डन) +text(Syria) text(was:a:neighboring:state:to) text(लेबनॉन) +text(Siria) text(borders:with) text(العراق) +text(India) text(was:situated:in) text(جنوب:آسيا) +text(भारत) text(borders) text(阿富汗) +text(印度) text(is:butted:against) text(Bután) +text(India) text(was:butted:against) text(بنغلاديش) +text(India) text(was:adjacent:to) text(الصين) +text(الهند) text(is:adjacent:to) text(尼泊爾) +text(India) text(neighbors) text(म्यान्मार) +text(भारत) text(is:a:neighboring:country:of) text(Pakistan) +text(印度) text(was:a:neighboring:country:of) text(سريلانكا) +text(Marruecos) text(neighbors:with) text(Algeria) +text(المغرب) text(was:a:neighbor:of) text(स्पेन) +text(摩洛哥) text(is:a:neighbor:of) text(Sahrawi:Arab:Democratic:Republic) +text(Kenya) text(is:situated:in) text(Oost-Afrika) +text(肯尼亚) text(is:a:neighboring:state:to) text(युगाण्डा) +text(كينيا) text(was:a:neighboring:state:to) text(तंज़ानिया) +text(Kenia) text(borders:with) text(Somalië) +text(कीनिया) text(borders) text(جنوب:السودان) +text(Kenia) text(is:butted:against) text(Etiopía) +text(दक्षिण:सूडान) text(is:located:in) text(Central:Africa) +text(Zuid-Soedan) text(was:butted:against) text(Uganda) +text(南蘇丹) text(was:adjacent:to) text(कांगो:लोकतान्त्रिक:गणराज्य) +text(South:Sudan) text(is:adjacent:to) text(Kenya) +text(Sudán:del:Sur) text(neighbors) text(República:Centroafricana) +text(جنوب:السودان) text(is:a:neighboring:country:of) text(Sudan) +text(दक्षिण:सूडान) text(was:a:neighboring:country:of) text(Ethiopia) +text(घाना) text(neighbors:with) text(Burkina:Faso) +text(Ghana) text(was:a:neighbor:of) text(Ivory:Coast) +text(迦納) text(is:a:neighbor:of) text(توغو) +text(Tajikistan) text(was:located:in) text(آسيا:الوسطى) +text(Tayikistán) text(is:a:neighboring:state:to) text(People's:Republic:of:China) +text(طاجيكستان) text(was:a:neighboring:state:to) text(吉尔吉斯斯坦) +text(ताजीकिस्तान) text(borders:with) text(Afganistán) +text(塔吉克斯坦) text(borders) text(乌兹别克斯坦) +text(Marshall:Islands) text(can:be:found:in) text(Micronesia) +text(جزر:مارشال) text(was:positioned:in) text(大洋洲) +text(喀麦隆) text(is:positioned:in) text(मध्य:अफ्रीका) +text(Kameroen) text(is:butted:against) text(乍得) +text(कैमरुन) text(was:butted:against) text(कांगो:गणराज्य) +text(Camerún) text(was:adjacent:to) text(الغابون) +text(Cameroon) text(is:adjacent:to) text(भूमध्यरेखीय:गिनी) +text(الكاميرون) text(neighbors) text(Centraal-Afrikaanse:Republiek) +text(喀麦隆) text(is:a:neighboring:country:of) text(نيجيريا) +text(नौरु) text(was:sited:in) text(Micronesië) +text(Nauru) text(is:sited:in) text(Oceanië) +text(Thailand) text(was:a:neighboring:country:of) text(Camboya) +text(تايلاند) text(neighbors:with) text(Myanmar) +text(Thailand) text(was:a:neighbor:of) text(लाओस) +text(Tailandia) text(is:a:neighbor:of) text(Maleisië) +text(Soedan) text(is:a:neighboring:state:to) text(Chad) +text(السودان) text(was:a:neighboring:state:to) text(Libya) +text(सूडान) text(borders:with) text(Zuid-Soedan) +text(苏丹) text(borders) text(Eritrea) +text(Sudán) text(is:butted:against) text(मध्य:अफ़्रीकी:गणराज्य) +text(Sudan) text(was:butted:against) text(Egypt) +text(Soedan) text(was:adjacent:to) text(إثيوبيا) +text(Chad) text(was:localized:in) text(وسط:إفريقيا) +text(Tsjaad) text(is:adjacent:to) text(利比亞) +text(تشاد) text(neighbors) text(Niger) +text(चाड) text(is:a:neighboring:country:of) text(南蘇丹) +text(乍得) text(was:a:neighboring:country:of) text(Kameroen) +text(Chad) text(neighbors:with) text(中非共和國) +text(Chad) text(was:a:neighbor:of) text(Nigeria) +text(वानूआटू) text(is:localized:in) text(Melanesia) +text(Vanuatu) text(was:present:in) text(Oceania) +text(केप:वर्दे) text(is:present:in) text(West:Africa) +text(Cape:Verde) text(is:still:in) text(非洲) +text(Falkland:Islands) text(was:still:in) text(दक्षिण:अमेरिका) +text(جزر:فوكلاند) text(was:currently:in) text(América) +text(लाइबेरिया) text(is:currently:in) text(África:Occidental) +text(ليبيريا) text(is:a:neighbor:of) text(Costa:de:Marfil) +text(Liberia) text(is:a:neighboring:state:to) text(Sierra:Leone) +text(Liberia) text(was:a:neighboring:state:to) text(غينيا) +text(Cambodja) text(is:placed:in) text(Zuidoost-Azië) +text(Cambodia) text(borders:with) text(Vietnam) +text(柬埔寨) text(borders) text(泰國) +text(كمبوديا) text(is:butted:against) text(老撾) +text(Zimbabue) text(was:butted:against) text(Zambia) +text(Zimbabwe) text(was:adjacent:to) text(South:Africa) +text(زيمبابوي) text(is:adjacent:to) text(बोत्सवाना) +text(津巴布韦) text(neighbors) text(莫桑比克) +text(جزر:القمر) text(was:placed:in) text(पूर्वी:अफ्रीका) +text(葛摩) text(can:be:found:in) text(Africa) +text(Guam) text(was:situated:in) text(密克羅尼西亞群島) +text(Guam) text(is:situated:in) text(ओशिआनिया) +text(巴哈馬) text(is:located:in) text(कैरिबिया) +text(Bahamas) text(was:located:in) text(أمريكتان) +text(Lebanon) text(can:be:found:in) text(पश्चिमी:एशिया) +text(Líbano) text(was:positioned:in) text(亞洲) +text(لبنان) text(is:a:neighboring:country:of) text(以色列) +text(Libanon) text(was:a:neighboring:country:of) text(सीरिया) +text(سانت:مارتن) text(is:positioned:in) text(Caribe) +text(Sint:Maarten) text(was:sited:in) text(Americas) +text(Saint:Martin) text(neighbors:with) text(Saint-Martin) +text(Ethiopië) text(is:sited:in) text(东部非洲) +text(इथियोपिया) text(was:a:neighbor:of) text(索馬里) +text(埃塞俄比亚) text(is:a:neighbor:of) text(肯尼亚) +text(Etiopía) text(is:a:neighboring:state:to) text(Eritrea) +text(Ethiopia) text(was:a:neighboring:state:to) text(South:Sudan) +text(إثيوبيا) text(borders:with) text(Djibouti) +text(Ethiopië) text(borders) text(السودان) +text(Islas:Vírgenes:de:los:Estados:Unidos) text(was:localized:in) text(Caribbean) +text(جزر:العذراء:التابعة:الولايات:المتحدة) text(is:localized:in) text(美洲) +text(गिनी-बिसाऊ) text(was:present:in) text(غرب:إفريقيا) +text(Guinee-Bissau) text(is:present:in) text(Afrika) +text(畿內亞比紹) text(is:butted:against) text(Guinea) +text(غينيا:بيساو) text(was:butted:against) text(السنغال) +text(Libia) text(is:still:in) text(उत्तर:अफ़्रीका) +text(ليبيا) text(was:adjacent:to) text(Tsjaad) +text(लीबिया) text(is:adjacent:to) text(Túnez) +text(Libië) text(neighbors) text(尼日尔) +text(Libya) text(is:a:neighboring:country:of) text(Argelia) +text(利比亞) text(was:a:neighboring:country:of) text(मिस्र) +text(Libia) text(neighbors:with) text(सूडान) +text(भूटान) text(was:still:in) text(南亚) +text(بوتان) text(was:currently:in) text(آسيا) +text(Bhutan) text(was:a:neighbor:of) text(Volksrepubliek:China) +text(不丹) text(is:a:neighbor:of) text(India) +text(Macau) text(is:currently:in) text(Oost-Azië) +text(मकाउ) text(is:placed:in) text(एशिया) +text(ماكاو) text(is:a:neighboring:state:to) text(中华人民共和国) +text(फ़्रान्सीसी:पॉलिनेशिया) text(was:placed:in) text(玻里尼西亞) +text(Frans-Polynesië) text(can:be:found:in) text(أوقيانوسيا) +text(Somalia) text(was:situated:in) text(East:Africa) +text(सोमालिया) text(was:a:neighboring:state:to) text(Yibuti) +text(الصومال) text(borders:with) text(كينيا) +text(Somalia) text(borders) text(इथियोपिया) +text(सेंट:बार्थेलेमी) text(is:situated:in) text(الكاريبي) +text(San:Bartolomé) text(is:located:in) text(महाअमेरिका) +text(Rusia) text(was:located:in) text(أوروبا:الشرقية) +text(Russia) text(is:butted:against) text(Ucrania) +text(Rusland) text(was:butted:against) text(Belarus) +text(रूस) text(was:adjacent:to) text(चीनी:जनवादी:गणराज्य) +text(روسيا) text(is:adjacent:to) text(Kazachstan) +text(俄罗斯) text(neighbors) text(Noruega) +text(Rusia) text(is:a:neighboring:country:of) text(波蘭) +text(Russia) text(was:a:neighboring:country:of) text(Azerbaiyán) +text(Rusland) text(neighbors:with) text(ليتوانيا) +text(रूस) text(was:a:neighbor:of) text(إستونيا) +text(روسيا) text(is:a:neighbor:of) text(North:Korea) +text(俄罗斯) text(is:a:neighboring:state:to) text(Finlandia) +text(Rusia) text(was:a:neighboring:state:to) text(Mongolië) +text(Russia) text(borders:with) text(लातविया) +text(Rusland) text(borders) text(Georgië) +text(نيوزيلندا) text(can:be:found:in) text(nan) +text(New:Zealand) text(was:positioned:in) text(Oceanía) +text(पनामा) text(is:positioned:in) text(Centraal-Amerika) +text(بنما) text(was:sited:in) text(Amerika) +text(Panamá) text(is:butted:against) text(Costa:Rica) +text(巴拿馬) text(was:butted:against) text(Colombia) +text(巴布亚新几内亚) text(is:sited:in) text(Melanesia) +text(Papua:New:Guinea) text(was:adjacent:to) text(Indonesia) +text(朝鮮民主主義人民共和國) text(is:adjacent:to) text(República:Popular:China) +text(उत्तर:कोरिया) text(neighbors) text(Corea:del:Sur) +text(Noord-Korea) text(is:a:neighboring:country:of) text(रूस) +text(Latvia) text(was:localized:in) text(Noord-Europa) +text(Letonia) text(was:a:neighboring:country:of) text(立陶宛) +text(拉脫維亞) text(neighbors:with) text(Bielorrusia) +text(لاتفيا) text(was:a:neighbor:of) text(روسيا) +text(Letland) text(is:a:neighbor:of) text(愛沙尼亞) +text(سلطنة:عمان) text(is:localized:in) text(西亚) +text(阿曼) text(is:a:neighboring:state:to) text(Saudi:Arabia) +text(Oman) text(was:a:neighboring:state:to) text(اليمن) +text(Omán) text(borders:with) text(Emiratos:Árabes:Unidos) +text(San:Pedro:y:Miquelón) text(was:present:in) text(North:America) +text(Saint:Pierre:and:Miquelon) text(is:present:in) text(América) +text(Martinique) text(is:still:in) text(加勒比地区) +text(Martinica) text(was:still:in) text(أمريكتان) +text(Verenigd:Koninkrijk) text(was:currently:in) text(उत्तरी:यूरोप) +text(المملكة:المتحدة) text(is:currently:in) text(Europa) +text(United:Kingdom) text(borders) text(المملكة:المتحدة) +text(Israël) text(is:placed:in) text(Zuidwest-Azië) +text(इज़राइल) text(is:butted:against) text(黎巴嫩) +text(إسرائيل) text(was:butted:against) text(Egipto) +text(Israel) text(was:adjacent:to) text(約旦) +text(Israel) text(is:adjacent:to) text(敘利亞) +text(Jersey) text(was:placed:in) text(أوروبا:الشمالية) +text(जर्सी) text(can:be:found:in) text(欧洲) +text(Pitcairn:Islands) text(was:situated:in) text(بولنيزيا) +text(Pitcairneilanden) text(is:situated:in) text(大洋洲) +text(Togo) text(is:located:in) text(West-Afrika) +text(टोगो) text(neighbors) text(布吉納法索) +text(多哥) text(is:a:neighboring:country:of) text(غانا) +text(Togo) text(was:a:neighboring:country:of) text(بنين) +text(Kiribati) text(was:located:in) text(माइक्रोनीशिया) +text(Kiribati) text(can:be:found:in) text(Oceanië) +text(ईरान) text(was:positioned:in) text(दक्षिण:एशिया) +text(Iran) text(neighbors:with) text(Afghanistan) +text(伊朗) text(was:a:neighbor:of) text(तुर्कमेनिस्तान) +text(إيران) text(is:a:neighbor:of) text(土耳其) +text(Irán) text(is:a:neighboring:state:to) text(Armenië) +text(Iran) text(was:a:neighboring:state:to) text(Azerbaijan) +text(ईरान) text(borders:with) text(Pakistan) +text(Iran) text(borders) text(इराक) +text(تجمع:سان:مارتين) text(is:positioned:in) text(Caraïben) +text(San:Martín) text(was:sited:in) text(Americas) +text(सेंट:मार्टिन:की:सामूहिकता) text(is:butted:against) text(सेंट:मार्टिन) +text(República:Dominicana) text(is:sited:in) text(कैरिबिया) +text(डोमिनिकन:गणराज्य) text(was:localized:in) text(美洲) +text(多明尼加) text(was:butted:against) text(Haití) +text(Denmark) text(was:adjacent:to) text(Germany) +text(Bermuda) text(is:localized:in) text(北美洲) +text(برمودا) text(was:present:in) text(महाअमेरिका) +text(Chile) text(is:adjacent:to) text(阿根廷) +text(تشيلي) text(neighbors) text(Bolivia) +text(Chile) text(is:a:neighboring:country:of) text(Perú) +text(कोसोवो:गणराज्य) text(is:present:in) text(东欧) +text(Kosovo) text(was:a:neighboring:country:of) text(صربيا) +text(كوسوفو) text(neighbors:with) text(Albanië) +text(Kosovo) text(was:a:neighbor:of) text(مقدونيا:الشمالية) +text(科索沃) text(is:a:neighbor:of) text(मॉन्टेनीग्रो) +text(聖克里斯多福及尼維斯) text(is:still:in) text(Caribe) +text(Saint:Kitts:en:Nevis) text(was:still:in) text(Amerika) +text(Eritrea) text(is:a:neighboring:state:to) text(جيبوتي) +text(इरित्रिया) text(was:a:neighboring:state:to) text(苏丹) +text(إرتريا) text(borders:with) text(埃塞俄比亚) +text(赤道几内亚) text(was:currently:in) text(África:Central) +text(غينيا:الاستوائية) text(is:currently:in) text(África) +text(Equatorial:Guinea) text(borders) text(गबॉन) +text(Equatoriaal-Guinea) text(is:butted:against) text(कैमरुन) +text(नाइजर) text(is:placed:in) text(पश्चिमी:अफ्रीका) +text(النيجر) text(was:butted:against) text(تشاد) +text(Níger) text(was:adjacent:to) text(ليبيا) +text(Niger) text(is:adjacent:to) text(बुर्किना:फासो) +text(Niger) text(neighbors) text(Benín) +text(尼日尔) text(is:a:neighboring:country:of) text(Mali) +text(नाइजर) text(was:a:neighboring:country:of) text(अल्जीरिया) +text(النيجر) text(neighbors:with) text(Nigeria) +text(अंगुइला) text(was:placed:in) text(Caribbean) +text(أنغويلا) text(can:be:found:in) text(América) +text(Ruanda) text(was:situated:in) text(África:Oriental) +text(卢旺达) text(was:a:neighbor:of) text(بوروندي) +text(Rwanda) text(is:a:neighbor:of) text(Tanzania) +text(Rwanda) text(is:a:neighboring:state:to) text(烏干達) +text(रवाण्डा) text(was:a:neighboring:state:to) text(Congo-Kinshasa) +text(الإمارات:العربية:المتحدة) text(is:situated:in) text(Asia:Occidental) +text(阿拉伯联合酋长国) text(borders:with) text(Oman) +text(संयुक्त:अरब:अमीरात) text(borders) text(सउदी:अरब) +text(Estonia) text(is:located:in) text(北歐) +text(एस्टोनिया) text(was:located:in) text(Europa) +text(Estonia) text(is:butted:against) text(लातविया) +text(Estland) text(was:butted:against) text(俄罗斯) +text(اليونان) text(can:be:found:in) text(أوروبا:الجنوبية) +text(यूनान) text(was:adjacent:to) text(Bulgaria) +text(Greece) text(is:adjacent:to) text(阿爾巴尼亞) +text(希腊) text(neighbors) text(उत्तर:मैसिडोनिया) +text(Griekenland) text(is:a:neighboring:country:of) text(Turkije) +text(Senegal) text(was:positioned:in) text(西非) +text(Senegal) text(is:positioned:in) text(अफ्रीका) +text(सेनेगल) text(was:a:neighboring:country:of) text(Guinea-Bisáu) +text(Senegal) text(neighbors:with) text(موريتانيا) +text(塞内加尔) text(was:a:neighbor:of) text(مالي) +text(السنغال) text(is:a:neighbor:of) text(Gambia) +text(Senegal) text(is:a:neighboring:state:to) text(गिनी) +text(Guadeloupe) text(was:sited:in) text(الكاريبي) +text(غوادلوب) text(is:sited:in) text(أمريكتان) +text(मोनाको) text(was:a:neighboring:state:to) text(法國) +text(Djibouti) text(borders:with) text(厄立特里亞) +text(जिबूती) text(borders) text(Somalië) +text(吉布提) text(is:butted:against) text(Etiopía) +text(इंडोनेशिया) text(was:butted:against) text(Papúa:Nueva:Guinea) +text(إندونيسيا) text(was:adjacent:to) text(Oost-Timor) +text(Indonesië) text(is:adjacent:to) text(ماليزيا) +text(ब्रिटिश:वर्जिन:द्वीपसमूह) text(was:localized:in) text(加勒比地区) +text(英屬維爾京群島) text(is:localized:in) text(Americas) +text(جزر:كوك) text(was:present:in) text(पोलीनेशिया) +text(Islas:Cook) text(is:present:in) text(Oceania) +text(أوغندا) text(is:still:in) text(شرق:إفريقيا) +text(Uganda) text(neighbors) text(تنزانيا) +text(Oeganda) text(is:a:neighboring:country:of) text(Democratic:Republic:of:the:Congo) +text(युगाण्डा) text(was:a:neighboring:country:of) text(Kenia) +text(Uganda) text(neighbors:with) text(Sudán:del:Sur) +text(烏干達) text(was:a:neighbor:of) text(رواندا) +text(Noord-Macedonië) text(was:still:in) text(Zuid-Europa) +text(北马其顿) text(is:a:neighbor:of) text(Kosovo) +text(Macedonia:del:Norte) text(is:a:neighboring:state:to) text(Grecia) +text(North:Macedonia) text(was:a:neighboring:state:to) text(Albania) +text(مقدونيا:الشمالية) text(borders:with) text(Serbia) +text(उत्तर:मैसिडोनिया) text(borders) text(保加利亚) +text(ट्यूनिशिया) text(was:currently:in) text(North:Africa) +text(突尼西亞) text(is:currently:in) text(إفريقيا) +text(Tunesië) text(is:butted:against) text(लीबिया) +text(Tunisia) text(was:butted:against) text(الجزائر) +text(Ecuador) text(was:adjacent:to) text(पेरू) +text(ईक्वाडोर) text(is:adjacent:to) text(كولومبيا) +text(البرازيل) text(is:placed:in) text(Zuid-Amerika) +text(巴西) text(neighbors) text(Bolivia) +text(Brasil) text(is:a:neighboring:country:of) text(Colombia) +text(Brazilië) text(was:a:neighboring:country:of) text(पैराग्वे) +text(Brazil) text(neighbors:with) text(Uruguay) +text(ब्राज़ील) text(was:a:neighbor:of) text(French:Guiana) +text(البرازيل) text(is:a:neighbor:of) text(سورينام) +text(巴西) text(is:a:neighboring:state:to) text(वेनेज़ुएला) +text(Brasil) text(was:a:neighboring:state:to) text(Argentinië) +text(Brazilië) text(borders:with) text(غيانا) +text(Brazil) text(borders) text(Peru) +text(Paraguay) text(was:placed:in) text(南美洲) +text(Paraguay) text(can:be:found:in) text(美洲) +text(باراغواي) text(is:butted:against) text(अर्जेण्टीना) +text(巴拉圭) text(was:butted:against) text(ब्राज़ील) +text(Paraguay) text(was:adjacent:to) text(玻利維亞) +text(Finland) text(was:situated:in) text(Northern:Europe) +text(芬蘭) text(is:adjacent:to) text(Noorwegen) +text(Finland) text(neighbors) text(स्वीडन) +text(फ़िनलैण्ड) text(is:a:neighboring:country:of) text(Rusia) +text(Jordania) text(was:a:neighboring:country:of) text(Arabia:Saudí) +text(الأردن) text(neighbors:with) text(以色列) +text(Jordan) text(was:a:neighbor:of) text(Iraq) +text(Jordanië) text(is:a:neighbor:of) text(Syrië) +text(Timor:Oriental) text(is:a:neighboring:state:to) text(印度尼西亚) +text(Montenegro) text(is:situated:in) text(Europa:del:Sur) +text(Montenegro) text(was:a:neighboring:state:to) text(कोसोवो:गणराज्य) +text(الجبل:الأسود) text(borders:with) text(波斯尼亚和黑塞哥维那) +text(Montenegro) text(borders) text(Kroatië) +text(蒙特內哥羅) text(is:butted:against) text(塞爾維亞) +text(मॉन्टेनीग्रो) text(was:butted:against) text(Albania) +text(秘鲁) text(is:located:in) text(América:del:Sur) +text(بيرو) text(was:adjacent:to) text(الإكوادور) +text(Peru) text(is:adjacent:to) text(बोलिविया) +text(Perú) text(neighbors) text(चिली) +text(पेरू) text(is:a:neighboring:country:of) text(البرازيل) +text(Peru) text(was:a:neighboring:country:of) text(कोलम्बिया) +text(Montserrat) text(was:located:in) text(Caraïben) +text(Montserrat) text(can:be:found:in) text(महाअमेरिका) +text(Ukraine) text(was:positioned:in) text(Eastern:Europe) +text(युक्रेन) text(neighbors:with) text(سلوفاكيا) +text(Oekraïne) text(was:a:neighbor:of) text(Wit-Rusland) +text(أوكرانيا) text(is:a:neighbor:of) text(Poland) +text(烏克蘭) text(is:a:neighboring:state:to) text(Russia) +text(Ucrania) text(was:a:neighboring:state:to) text(匈牙利) +text(Ukraine) text(borders:with) text(摩爾多瓦) +text(युक्रेन) text(borders) text(Romania) +text(Dominica) text(is:positioned:in) text(कैरिबिया) +text(دومينيكا) text(was:sited:in) text(Amerika) +text(土庫曼斯坦) text(is:butted:against) text(哈萨克斯坦) +text(Turkmenistan) text(was:butted:against) text(अफ़्ग़ानिस्तान) +text(Turkmenistan) text(was:adjacent:to) text(Uzbekistan) +text(Turkmenistán) text(is:adjacent:to) text(伊朗) +text(根西) text(is:sited:in) text(Europa:del:Norte) +text(Guernsey) text(was:localized:in) text(यूरोप) +text(Gibraltar) text(is:localized:in) text(दक्षिणी:यूरोप) +text(جبل:طارق) text(neighbors) text(España) +text(स्विट्ज़रलैण्ड) text(was:present:in) text(Europa:Occidental) +text(瑞士) text(is:a:neighboring:country:of) text(Duitsland) +text(Zwitserland) text(was:a:neighboring:country:of) text(意大利) +text(سويسرا) text(neighbors:with) text(النمسا) +text(Suiza) text(was:a:neighbor:of) text(फ़्रान्स) +text(Switzerland) text(is:a:neighbor:of) text(列支敦斯登) +text(ऑस्ट्रिया) text(is:present:in) text(पश्चिमी:यूरोप) +text(Oostenrijk) text(is:a:neighboring:state:to) text(Alemania) +text(Austria) text(was:a:neighboring:state:to) text(Slowakije) +text(奧地利) text(borders:with) text(Slovenië) +text(Austria) text(borders) text(इटली) +text(النمسا) text(is:butted:against) text(स्विट्ज़रलैण्ड) +text(ऑस्ट्रिया) text(was:butted:against) text(हंगरी) +text(Oostenrijk) text(was:adjacent:to) text(Liechtenstein) +text(Austria) text(is:adjacent:to) text(चेक:गणराज्य) +text(Hongarije) text(neighbors) text(Oekraïne) +text(Hungría) text(is:a:neighboring:country:of) text(स्लोवाकिया) +text(المجر) text(was:a:neighboring:country:of) text(Slovenia) +text(Hungary) text(neighbors:with) text(Croatia) +text(匈牙利) text(was:a:neighbor:of) text(奧地利) +text(हंगरी) text(is:a:neighbor:of) text(Servië) +text(Hongarije) text(is:a:neighboring:state:to) text(रोमानिया) +text(Malawi) text(is:still:in) text(Oost-Afrika) +text(مالاوي) text(was:a:neighboring:state:to) text(ज़ाम्बिया) +text(मलावी) text(borders:with) text(Tanzania) +text(Malawi) text(borders) text(Mozambique) +text(Hongkong) text(is:butted:against) text(الصين) +text(Liechtenstein) text(was:still:in) text(Western:Europe) +text(Liechtenstein) text(was:currently:in) text(أوروبا) +text(ليختنشتاين) text(was:butted:against) text(瑞士) +text(लिक्टेन्स्टाइन) text(was:adjacent:to) text(Austria) +text(巴巴多斯) text(is:currently:in) text(Caribe) +text(Barbados) text(is:placed:in) text(América) +text(Georgia) text(was:placed:in) text(West:Asia) +text(جورجيا) text(is:adjacent:to) text(आर्मीनिया) +text(जॉर्जिया) text(neighbors) text(Azerbeidzjan) +text(Georgia) text(is:a:neighboring:country:of) text(Rusland) +text(格鲁吉亚) text(was:a:neighboring:country:of) text(Turkey) +text(अल्बानिया) text(can:be:found:in) text(南欧) +text(ألبانيا) text(was:situated:in) text(Europe) +text(Albanië) text(neighbors:with) text(Montenegro) +text(阿爾巴尼亞) text(was:a:neighbor:of) text(Noord-Macedonië) +text(Albania) text(is:a:neighbor:of) text(Kosovo) +text(Albania) text(is:a:neighboring:state:to) text(اليونان) +text(科威特) text(is:situated:in) text(غرب:آسيا) +text(الكويت) text(was:a:neighboring:state:to) text(Saoedi-Arabië) +text(Koeweit) text(borders:with) text(Irak) +text(Sudáfrica) text(is:located:in) text(إفريقيا:الجنوبية) +text(Zuid-Afrika) text(borders) text(Mozambique) +text(جنوب:إفريقيا) text(is:butted:against) text(Botsuana) +text(दक्षिण:अफ़्रीका) text(was:butted:against) text(Esuatini) +text(南非) text(was:adjacent:to) text(Zimbabwe) +text(South:Africa) text(is:adjacent:to) text(Namibia) +text(Sudáfrica) text(neighbors) text(Lesotho) +text(海地) text(was:located:in) text(Caribbean) +text(Haiti) text(can:be:found:in) text(أمريكتان) +text(هايتي) text(is:a:neighboring:country:of) text(Dominicaanse:Republiek) +text(أفغانستان) text(was:positioned:in) text(Asia:del:Sur) +text(Afghanistan) text(was:a:neighboring:country:of) text(تركمانستان) +text(阿富汗) text(neighbors:with) text(People's:Republic:of:China) +text(Afganistán) text(was:a:neighbor:of) text(Tadzjikistan) +text(Afghanistan) text(is:a:neighbor:of) text(أوزبكستان) +text(अफ़्ग़ानिस्तान) text(is:a:neighboring:state:to) text(إيران) +text(أفغانستان) text(was:a:neighboring:state:to) text(Pakistán) +text(Singapur) text(is:positioned:in) text(Sudeste:Asiático) +text(Singapore) text(was:sited:in) text(Asia) +text(Benin) text(is:sited:in) text(West:Africa) +text(बेनिन) text(borders:with) text(Níger) +text(貝南) text(borders) text(بوركينا:فاسو) +text(Benin) text(is:butted:against) text(Togo) +text(بنين) text(was:butted:against) text(奈及利亞) +text(Åland) text(was:localized:in) text(Noord-Europa) +text(جزر:أولاند) text(is:localized:in) text(Europa) +text(Croacia) text(was:present:in) text(Southern:Europe) +text(克羅地亞) text(was:adjacent:to) text(سلوفينيا) +text(क्रोएशिया) text(is:adjacent:to) text(Bosnië:en:Herzegovina) +text(كرواتيا) text(neighbors) text(Hungría) +text(Kroatië) text(is:a:neighboring:country:of) text(Serbia) +text(Croatia) text(was:a:neighboring:country:of) text(Montenegro) +text(Zweden) text(is:present:in) text(उत्तरी:यूरोप) +text(Sweden) text(neighbors:with) text(नॉर्वे) +text(السويد) text(was:a:neighbor:of) text(فنلندا) +text(मेक्सिको) text(is:a:neighbor:of) text(Belice) +text(墨西哥) text(is:a:neighboring:state:to) text(United:States) +text(المكسيك) text(was:a:neighboring:state:to) text(危地马拉) +text(Groenland) text(is:still:in) text(Noord-Amerika) +text(Groenlandia) text(was:still:in) text(Americas) +text(Pitcairn:Islands) text(was:currently:in) text(nan) +text(Pitcairneilanden) text(is:currently:in) text(ओशिआनिया) +text(Nepal) text(is:placed:in) text(Zuid-Azië) +text(Nepal) text(was:placed:in) text(Azië) +text(नेपाल) text(borders:with) text(Volksrepubliek:China) +text(نيبال) text(borders) text(India) +text(Guatemala) text(is:butted:against) text(Belize) +text(Guatemala) text(was:butted:against) text(El:Salvador) +text(ग्वाटेमाला) text(was:adjacent:to) text(Mexico) +text(غواتيمالا) text(is:adjacent:to) text(Honduras) +text(दक्षिण:कोरिया) text(can:be:found:in) text(पूर्वी:एशिया) +text(Zuid-Korea) text(neighbors) text(كوريا:الشمالية) +text(Moldavië) text(was:situated:in) text(पूर्वी:यूरोप) +text(Moldavia) text(is:situated:in) text(欧洲) +text(مولدوفا) text(is:a:neighboring:country:of) text(أوكرانيا) +text(मोल्डोवा) text(was:a:neighboring:country:of) text(Roemenië) +text(毛里求斯) text(is:located:in) text(पूर्वी:अफ्रीका) +text(मॉरिशस) text(was:located:in) text(非洲) +text(بيلاروس) text(neighbors:with) text(烏克蘭) +text(बेलारूस) text(was:a:neighbor:of) text(بولندا) +text(白俄羅斯) text(is:a:neighbor:of) text(Lithuania) +text(Belarus) text(is:a:neighboring:state:to) text(रूस) +text(Bielorrusia) text(was:a:neighboring:state:to) text(Latvia) +text(बांग्लादेश) text(borders:with) text(ميانمار) +text(Bangladesh) text(borders) text(الهند) +text(馬來西亞) text(can:be:found:in) text(جنوب:شرق:آسيا) +text(मलेशिया) text(is:butted:against) text(थाईलैंड) +text(Malaysia) text(was:butted:against) text(Indonesia) +text(Malasia) text(was:adjacent:to) text(Brunéi) +text(बोस्निया:और:हर्ज़ेगोविना) text(was:positioned:in) text(أوروبا:الجنوبية) +text(Bosnia:and:Herzegovina) text(is:adjacent:to) text(सर्बिया) +text(البوسنة:والهرسك) text(neighbors) text(Croacia) +text(Bosnia:y:Herzegovina) text(is:a:neighboring:country:of) text(الجبل:الأسود) +text(لوكسمبورغ) text(is:positioned:in) text(أوروبا:الغربية) +text(लक्ज़मबर्ग) text(was:a:neighboring:country:of) text(德國) +text(Luxembourg) text(neighbors:with) text(比利時) +text(Luxemburg) text(was:a:neighbor:of) text(France) +text(إيطاليا) text(was:sited:in) text(Zuid-Europa) +text(Italy) text(is:sited:in) text(Europa) +text(Italië) text(is:a:neighbor:of) text(斯洛文尼亞) +text(Italia) text(is:a:neighboring:state:to) text(Zwitserland) +text(意大利) text(was:a:neighboring:state:to) text(النمسا) +text(इटली) text(borders:with) text(Frankrijk) +text(إيطاليا) text(borders) text(梵蒂岡城國) +text(Italy) text(is:butted:against) text(San:Marino) +text(أذربيجان) text(was:localized:in) text(पश्चिमी:एशिया) +text(अज़रबैजान) text(was:butted:against) text(تركيا) +text(阿塞拜疆) text(was:adjacent:to) text(Armenia) +text(Azerbaiyán) text(is:adjacent:to) text(روسيا) +text(Azerbaijan) text(neighbors) text(Irán) +text(Azerbeidzjan) text(is:a:neighboring:country:of) text(Georgië) +text(هندوراس) text(is:localized:in) text(Central:America) +text(Honduras) text(was:a:neighboring:country:of) text(Guatemala) +text(Honduras) text(neighbors:with) text(Nicaragua) +text(洪都拉斯) text(was:a:neighbor:of) text(薩爾瓦多) +text(माली) text(was:present:in) text(África:Occidental) +text(Mali) text(is:a:neighbor:of) text(Burkina:Faso) +text(Mali) text(is:a:neighboring:state:to) text(Guinee) +text(马里) text(was:a:neighboring:state:to) text(Mauritanië) +text(Mali) text(borders:with) text(Niger) +text(مالي) text(borders) text(Senegal) +text(माली) text(is:butted:against) text(阿爾及利亞) +text(Mali) text(was:butted:against) text(कोत:दिव्वार) +text(تايوان) text(is:present:in) text(Asia:Oriental) +text(Taiwan) text(is:still:in) text(Asia) +text(Algerije) text(was:still:in) text(Noord-Afrika) +text(Algeria) text(was:adjacent:to) text(Libië) +text(Argelia) text(is:adjacent:to) text(تونس) +text(अल्जीरिया) text(neighbors) text(Mauritania) +text(الجزائر) text(is:a:neighboring:country:of) text(Marokko) +text(阿爾及利亞) text(was:a:neighboring:country:of) text(Niger) +text(Algerije) text(neighbors:with) text(Mali) +text(Algeria) text(was:a:neighbor:of) text(الجمهورية:العربية:الصحراوية:الديمقراطية) +text(Guayana:Francesa) text(is:a:neighbor:of) text(巴西) +text(غويانا:الفرنسية) text(is:a:neighboring:state:to) text(सूरीनाम) +text(Jemen) text(was:currently:in) text(西亚) +text(Yemen) text(was:a:neighboring:state:to) text(ओमान) +text(Yemen) text(borders:with) text(السعودية) +text(بورتوريكو) text(is:currently:in) text(الكاريبي) +text(Puerto:Rico) text(is:placed:in) text(美洲) +text(San:Vicente:y:las:Granadinas) text(was:placed:in) text(加勒比地区) +text(圣文森特和格林纳丁斯) text(can:be:found:in) text(महाअमेरिका) +text(Venezuela) text(borders) text(Brasil) +text(Venezuela) text(is:butted:against) text(Guyana) +text(فنزويلا) text(was:butted:against) text(哥伦比亚) +text(Grenada) text(was:situated:in) text(Caraïben) +text(غرينادا) text(is:situated:in) text(Amerika) +text(संयुक्त:राज्य:अमेरिका) text(was:adjacent:to) text(Canada) +text(Estados:Unidos) text(is:adjacent:to) text(Mexico) +text(托克劳) text(is:located:in) text(Polynesia) +text(Tokelau) text(was:located:in) text(أوقيانوسيا) +text(स्लोवेनिया) text(can:be:found:in) text(Europa:del:Sur) +text(Eslovenia) text(neighbors) text(ऑस्ट्रिया) +text(Slovenië) text(is:a:neighboring:country:of) text(克羅地亞) +text(Slovenia) text(was:a:neighboring:country:of) text(Italië) +text(سلوفينيا) text(neighbors:with) text(المجر) +text(Philippines) text(was:positioned:in) text(东南亚) +text(Filipijnen) text(is:positioned:in) text(亞洲) +text(ميكرونيسيا) text(was:sited:in) text(Micronesia) +text(Micronesia) text(is:sited:in) text(Oceanía) +text(中华人民共和国) text(was:localized:in) text(東亞) +text(चीनी:जनवादी:गणराज्य) text(was:a:neighbor:of) text(Afghanistan) +text(República:Popular:China) text(is:a:neighbor:of) text(Bhutan) +text(الصين) text(is:a:neighboring:state:to) text(Macao) +text(People's:Republic:of:China) text(was:a:neighboring:state:to) text(India) +text(Volksrepubliek:China) text(borders:with) text(كازاخستان) +text(中华人民共和国) text(borders) text(Kyrgyzstan) +text(चीनी:जनवादी:गणराज्य) text(is:butted:against) text(Tajikistan) +text(República:Popular:China) text(was:butted:against) text(Laos) +text(الصين) text(was:adjacent:to) text(俄罗斯) +text(People's:Republic:of:China) text(is:adjacent:to) text(Corea:del:Norte) +text(Volksrepubliek:China) text(neighbors) text(緬甸) +text(中华人民共和国) text(is:a:neighboring:country:of) text(巴基斯坦) +text(चीनी:जनवादी:गणराज्य) text(was:a:neighboring:country:of) text(मंगोलिया) +text(República:Popular:China) text(neighbors:with) text(香港) +text(الصين) text(was:a:neighbor:of) text(Vietnam) +text(Gabón) text(is:localized:in) text(Centraal-Afrika) +text(Gabon) text(is:a:neighbor:of) text(Guinea:Ecuatorial) +text(Gabon) text(is:a:neighboring:state:to) text(República:del:Congo) +text(加蓬) text(was:a:neighboring:state:to) text(Camerún) +text(Amerikaanse:Kleinere:Afgelegen:Eilanden) text(was:present:in) text(أمريكا:الشمالية) +text(美国本土外小岛屿) text(is:present:in) text(América) +text(Andorra) text(is:still:in) text(दक्षिणी:यूरोप) +text(Andorra) text(borders:with) text(إسبانيا) +text(安道尔) text(borders) text(فرنسا) +text(萨摩亚) text(was:still:in) text(Polynesië) +text(Samoa) text(was:currently:in) text(大洋洲) +text(Gambia) text(is:currently:in) text(غرب:إفريقيا) +text(岡比亞) text(is:placed:in) text(Africa) +text(The:Gambia) text(is:butted:against) text(सेनेगल) +text(nan) text(was:placed:in) text(Zuidwest-Azië) +text(Pedro:Miguel) text(can:be:found:in) text(آسيا) +text(nan) text(was:butted:against) text(जॉर्डन) +text(Pedro:Miguel) text(was:adjacent:to) text(埃及) +text(nan) text(is:adjacent:to) text(Israël) +text(留尼汪) text(was:situated:in) text(东部非洲) +text(Réunion) text(is:situated:in) text(Afrika) +text(Francia) text(is:located:in) text(West-Europa) +text(法國) text(neighbors) text(ألمانيا) +text(फ़्रान्स) text(is:a:neighboring:country:of) text(卢森堡) +text(France) text(was:a:neighboring:country:of) text(Italia) +text(Frankrijk) text(neighbors:with) text(Andorra) +text(فرنسا) text(was:a:neighbor:of) text(سويسرا) +text(Francia) text(is:a:neighbor:of) text(Mónaco) +text(法國) text(is:a:neighboring:state:to) text(बेल्जियम) +text(फ़्रान्स) text(was:a:neighboring:state:to) text(Spanje) +text(منغوليا) text(was:located:in) text(East:Asia) +text(Mongolia) text(can:be:found:in) text(एशिया) +text(蒙古國) text(borders:with) text(People's:Republic:of:China) +text(Mongolia) text(borders) text(Rusia) +text(Lituania) text(was:positioned:in) text(أوروبا:الشمالية) +text(Litouwen) text(is:butted:against) text(Polonia) +text(लिथुआनिया) text(was:butted:against) text(Letonia) +text(ليتوانيا) text(was:adjacent:to) text(Wit-Rusland) +text(立陶宛) text(is:adjacent:to) text(Russia) +text(Cayman:Islands) text(is:positioned:in) text(कैरिबिया) +text(केमन:द्वीपसमूह) text(was:sited:in) text(أمريكتان) +text(Saint:Lucia) text(is:sited:in) text(Caribe) +text(سانت:لوسيا) text(was:localized:in) text(Americas) +text(Curazao) text(is:localized:in) text(Caribbean) +text(Curaçao) text(was:present:in) text(美洲) +text(الكاريبي) text(is:present:in) text(महाअमेरिका) +text(South:Asia) text(is:still:in) text(Asia) +text(中部非洲) text(was:still:in) text(África) +text(北歐) text(was:currently:in) text(यूरोप) +text(南欧) text(is:currently:in) text(أوروبا) +text(Asia:Occidental) text(is:placed:in) text(Azië) +text(South:America) text(was:placed:in) text(Amerika) +text(Polinesia) text(can:be:found:in) text(Oceanië) +text(nan) text(was:situated:in) text(Oceania) +text(西欧) text(is:situated:in) text(Europe) +text(East:Africa) text(is:located:in) text(अफ्रीका) +text(West-Afrika) text(was:located:in) text(إفريقيا) +text(Europa:Oriental) text(can:be:found:in) text(Europa) +text(केंद्रीय:अमेरिका) text(was:positioned:in) text(América) +text(América:del:Norte) text(is:positioned:in) text(أمريكتان) +text(दक्षिण:पूर्व:एशिया) text(was:sited:in) text(Asia) +text(Southern:Africa) text(is:sited:in) text(非洲) +text(شرق:آسيا) text(was:localized:in) text(亞洲) +text(Norte:de:África) text(is:localized:in) text(Africa) +text(मॅलानिशिया) text(was:present:in) text(ओशिआनिया) +text(Micronesië) text(is:present:in) text(أوقيانوسيا) +text(Central:Asia) text(is:still:in) text(آسيا) +text(中欧) text(was:still:in) text(欧洲) \ No newline at end of file diff --git a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_relation2text.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_relation2text.tsv index 119b9d7..4b29673 100644 --- a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_relation2text.tsv +++ b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_relation2text.tsv @@ -1,431 +1,431 @@ -palau text(is:positioned:in) micronesia -palau text(was:sited:in) oceania -maldives text(is:sited:in) southern_asia -maldives text(is:placed:in) asia -brunei text(was:placed:in) south-eastern_asia +palau text(can:be:found:in) micronesia +palau text(was:positioned:in) oceania +maldives text(is:positioned:in) southern_asia +maldives text(was:sited:in) asia +brunei text(is:sited:in) south-eastern_asia brunei text(was:localized:in) asia -brunei text(was:a:neighboring:country:of) malaysia +brunei text(is:butted:against) malaysia japan text(is:localized:in) eastern_asia japan text(was:present:in) asia -netherlands text(was:adjacent:to) germany -netherlands text(is:adjacent:to) belgium -turkey text(was:a:neighbor:of) armenia -turkey text(is:a:neighbor:of) azerbaijan -turkey text(is:a:neighboring:state:to) iran -turkey text(was:a:neighboring:state:to) greece -turkey text(borders:with) georgia -turkey text(neighbors:withborders) bulgaria -turkey text(neighbors) iraq -turkey text(is:butted:against) syria +netherlands text(was:butted:against) germany +netherlands text(was:adjacent:to) belgium +turkey text(is:adjacent:to) armenia +turkey text(neighbors) azerbaijan +turkey text(is:a:neighboring:country:of) iran +turkey text(was:a:neighboring:country:of) greece +turkey text(neighbors:with) georgia +turkey text(was:a:neighbor:of) bulgaria +turkey text(is:a:neighbor:of) iraq +turkey text(is:a:neighboring:state:to) syria angola text(is:present:in) middle_africa -angola text(was:butted:against) dr_congo -angola text(is:a:neighboring:country:of) namibia -angola text(was:a:neighboring:country:of) zambia -angola text(was:adjacent:to) republic_of_the_congo +angola text(was:a:neighboring:state:to) dr_congo +angola text(borders:with) namibia +angola text(borders) zambia +angola text(is:butted:against) republic_of_the_congo armenia text(is:still:in) western_asia -armenia text(is:adjacent:to) georgia -armenia text(was:a:neighbor:of) azerbaijan -armenia text(is:a:neighbor:of) iran -armenia text(is:a:neighboring:state:to) turkey +armenia text(was:butted:against) georgia +armenia text(was:adjacent:to) azerbaijan +armenia text(is:adjacent:to) iran +armenia text(neighbors) turkey antigua_and_barbuda text(was:still:in) caribbean antigua_and_barbuda text(was:currently:in) americas swaziland text(is:currently:in) southern_africa -swaziland text(was:a:neighboring:state:to) south_africa -swaziland text(borders:with) mozambique -wallis_and_futuna text(was:situated:in) polynesia -wallis_and_futuna text(is:situated:in) oceania -uruguay text(is:located:in) south_america -uruguay text(was:located:in) americas -uruguay text(neighbors:withborders) argentina -uruguay text(neighbors) brazil -zambia text(could:be:found:in) eastern_africa -zambia text(is:butted:against) tanzania -zambia text(was:butted:against) mozambique -zambia text(is:a:neighboring:country:of) dr_congo -zambia text(was:a:neighboring:country:of) angola -zambia text(was:adjacent:to) botswana -zambia text(is:adjacent:to) zimbabwe -zambia text(was:a:neighbor:of) namibia -zambia text(is:a:neighbor:of) malawi -cyprus text(can:be:found:in) eastern_europe -cyprus text(was:positioned:in) europe -cyprus text(is:a:neighboring:state:to) united_kingdom -ireland text(is:positioned:in) northern_europe -ireland text(was:sited:in) europe -ireland text(was:a:neighboring:state:to) united_kingdom -burundi text(is:sited:in) eastern_africa -burundi text(borders:with) dr_congo -burundi text(neighbors:withborders) rwanda -burundi text(neighbors) tanzania -central_african_republic text(is:placed:in) middle_africa -central_african_republic text(is:butted:against) chad -central_african_republic text(was:butted:against) republic_of_the_congo -central_african_republic text(is:a:neighboring:country:of) dr_congo -central_african_republic text(was:a:neighboring:country:of) south_sudan -central_african_republic text(was:adjacent:to) cameroon -central_african_republic text(is:adjacent:to) sudan -tonga text(was:placed:in) polynesia +swaziland text(is:a:neighboring:country:of) south_africa +swaziland text(was:a:neighboring:country:of) mozambique +wallis_and_futuna text(is:placed:in) polynesia +wallis_and_futuna text(was:placed:in) oceania +uruguay text(can:be:found:in) south_america +uruguay text(was:situated:in) americas +uruguay text(neighbors:with) argentina +uruguay text(was:a:neighbor:of) brazil +zambia text(is:situated:in) eastern_africa +zambia text(is:a:neighbor:of) tanzania +zambia text(is:a:neighboring:state:to) mozambique +zambia text(was:a:neighboring:state:to) dr_congo +zambia text(borders:with) angola +zambia text(borders) botswana +zambia text(is:butted:against) zimbabwe +zambia text(was:butted:against) namibia +zambia text(was:adjacent:to) malawi +cyprus text(is:located:in) eastern_europe +cyprus text(was:located:in) europe +cyprus text(is:adjacent:to) united_kingdom +ireland text(can:be:found:in) northern_europe +ireland text(was:positioned:in) europe +ireland text(neighbors) united_kingdom +burundi text(is:positioned:in) eastern_africa +burundi text(is:a:neighboring:country:of) dr_congo +burundi text(was:a:neighboring:country:of) rwanda +burundi text(neighbors:with) tanzania +central_african_republic text(was:sited:in) middle_africa +central_african_republic text(was:a:neighbor:of) chad +central_african_republic text(is:a:neighbor:of) republic_of_the_congo +central_african_republic text(is:a:neighboring:state:to) dr_congo +central_african_republic text(was:a:neighboring:state:to) south_sudan +central_african_republic text(borders:with) cameroon +central_african_republic text(borders) sudan +tonga text(is:sited:in) polynesia tonga text(was:localized:in) oceania ivory_coast text(is:localized:in) western_africa -ivory_coast text(was:a:neighbor:of) burkina_faso -ivory_coast text(is:a:neighbor:of) ghana -ivory_coast text(is:a:neighboring:state:to) liberia -ivory_coast text(was:a:neighboring:state:to) mali -ivory_coast text(borders:with) guinea -sierra_leone text(neighbors:withborders) liberia -sierra_leone text(neighbors) guinea +ivory_coast text(is:butted:against) burkina_faso +ivory_coast text(was:butted:against) ghana +ivory_coast text(was:adjacent:to) liberia +ivory_coast text(is:adjacent:to) mali +ivory_coast text(neighbors) guinea +sierra_leone text(is:a:neighboring:country:of) liberia +sierra_leone text(was:a:neighboring:country:of) guinea mayotte text(was:present:in) eastern_africa mayotte text(is:present:in) africa -poland text(is:butted:against) germany -poland text(was:butted:against) ukraine -poland text(is:a:neighboring:country:of) slovakia -poland text(was:a:neighboring:country:of) belarus -poland text(was:adjacent:to) russia -poland text(is:adjacent:to) lithuania -poland text(was:a:neighbor:of) czechia +poland text(neighbors:with) germany +poland text(was:a:neighbor:of) ukraine +poland text(is:a:neighbor:of) slovakia +poland text(is:a:neighboring:state:to) belarus +poland text(was:a:neighboring:state:to) russia +poland text(borders:with) lithuania +poland text(borders) czechia kazakhstan text(is:still:in) central_asia -kazakhstan text(is:a:neighbor:of) turkmenistan -kazakhstan text(is:a:neighboring:state:to) china -kazakhstan text(was:a:neighboring:state:to) kyrgyzstan -kazakhstan text(borders:with) uzbekistan -kazakhstan text(neighbors:withborders) russia +kazakhstan text(is:butted:against) turkmenistan +kazakhstan text(was:butted:against) china +kazakhstan text(was:adjacent:to) kyrgyzstan +kazakhstan text(is:adjacent:to) uzbekistan +kazakhstan text(neighbors) russia uzbekistan text(was:still:in) central_asia -uzbekistan text(neighbors) afghanistan -uzbekistan text(is:butted:against) turkmenistan -uzbekistan text(was:butted:against) kazakhstan -uzbekistan text(is:a:neighboring:country:of) kyrgyzstan -uzbekistan text(was:a:neighboring:country:of) tajikistan +uzbekistan text(is:a:neighboring:country:of) afghanistan +uzbekistan text(was:a:neighboring:country:of) turkmenistan +uzbekistan text(neighbors:with) kazakhstan +uzbekistan text(was:a:neighbor:of) kyrgyzstan +uzbekistan text(is:a:neighbor:of) tajikistan turks_and_caicos_islands text(was:currently:in) caribbean turks_and_caicos_islands text(is:currently:in) americas -new_caledonia text(was:situated:in) melanesia -new_caledonia text(is:situated:in) oceania -pakistan text(was:adjacent:to) china -pakistan text(is:adjacent:to) afghanistan -pakistan text(was:a:neighbor:of) iran -pakistan text(is:a:neighbor:of) india -argentina text(is:located:in) south_america -argentina text(is:a:neighboring:state:to) bolivia -argentina text(was:a:neighboring:state:to) chile -argentina text(borders:with) brazil -argentina text(neighbors:withborders) paraguay +new_caledonia text(is:placed:in) melanesia +new_caledonia text(was:placed:in) oceania +pakistan text(is:a:neighboring:state:to) china +pakistan text(was:a:neighboring:state:to) afghanistan +pakistan text(borders:with) iran +pakistan text(borders) india +argentina text(can:be:found:in) south_america +argentina text(is:butted:against) bolivia +argentina text(was:butted:against) chile +argentina text(was:adjacent:to) brazil +argentina text(is:adjacent:to) paraguay argentina text(neighbors) uruguay -cuba text(was:located:in) caribbean -cuba text(could:be:found:in) americas -serbia text(is:butted:against) macedonia -serbia text(was:butted:against) montenegro -serbia text(is:a:neighboring:country:of) kosovo -serbia text(was:a:neighboring:country:of) bosnia_and_herzegovina -serbia text(was:adjacent:to) croatia -serbia text(is:adjacent:to) hungary -serbia text(was:a:neighbor:of) bulgaria -serbia text(is:a:neighbor:of) romania -czechia text(can:be:found:in) eastern_europe -czechia text(is:a:neighboring:state:to) germany -czechia text(was:a:neighboring:state:to) austria -czechia text(borders:with) poland -czechia text(neighbors:withborders) slovakia -nicaragua text(neighbors) honduras -nicaragua text(is:butted:against) costa_rica -vietnam text(was:positioned:in) south-eastern_asia -vietnam text(is:positioned:in) asia -vietnam text(was:butted:against) cambodia -vietnam text(is:a:neighboring:country:of) laos -vietnam text(was:a:neighboring:country:of) china -niue text(was:sited:in) polynesia -niue text(is:sited:in) oceania -canada text(is:placed:in) northern_america -canada text(was:adjacent:to) united_states -slovakia text(is:adjacent:to) ukraine -slovakia text(was:a:neighbor:of) poland -slovakia text(is:a:neighbor:of) austria -slovakia text(is:a:neighboring:state:to) hungary -slovakia text(was:a:neighboring:state:to) czechia -mozambique text(borders:with) tanzania -mozambique text(neighbors:withborders) swaziland -mozambique text(neighbors) zimbabwe -mozambique text(is:butted:against) zambia -mozambique text(was:butted:against) malawi +cuba text(was:situated:in) caribbean +cuba text(is:situated:in) americas +serbia text(is:a:neighboring:country:of) macedonia +serbia text(was:a:neighboring:country:of) montenegro +serbia text(neighbors:with) kosovo +serbia text(was:a:neighbor:of) bosnia_and_herzegovina +serbia text(is:a:neighbor:of) croatia +serbia text(is:a:neighboring:state:to) hungary +serbia text(was:a:neighboring:state:to) bulgaria +serbia text(borders:with) romania +czechia text(is:located:in) eastern_europe +czechia text(borders) germany +czechia text(is:butted:against) austria +czechia text(was:butted:against) poland +czechia text(was:adjacent:to) slovakia +nicaragua text(is:adjacent:to) honduras +nicaragua text(neighbors) costa_rica +vietnam text(was:located:in) south-eastern_asia +vietnam text(can:be:found:in) asia +vietnam text(is:a:neighboring:country:of) cambodia +vietnam text(was:a:neighboring:country:of) laos +vietnam text(neighbors:with) china +niue text(was:positioned:in) polynesia +niue text(is:positioned:in) oceania +canada text(was:sited:in) northern_america +canada text(was:a:neighbor:of) united_states +slovakia text(is:a:neighbor:of) ukraine +slovakia text(is:a:neighboring:state:to) poland +slovakia text(was:a:neighboring:state:to) austria +slovakia text(borders:with) hungary +slovakia text(borders) czechia +mozambique text(is:butted:against) tanzania +mozambique text(was:butted:against) swaziland +mozambique text(was:adjacent:to) zimbabwe +mozambique text(is:adjacent:to) zambia +mozambique text(neighbors) malawi mozambique text(is:a:neighboring:country:of) south_africa -aruba text(was:placed:in) caribbean +aruba text(is:sited:in) caribbean aruba text(was:localized:in) americas bolivia text(is:localized:in) south_america bolivia text(was:a:neighboring:country:of) chile -bolivia text(was:adjacent:to) brazil -bolivia text(is:adjacent:to) paraguay -bolivia text(was:a:neighbor:of) argentina -bolivia text(is:a:neighbor:of) peru +bolivia text(neighbors:with) brazil +bolivia text(was:a:neighbor:of) paraguay +bolivia text(is:a:neighbor:of) argentina +bolivia text(is:a:neighboring:state:to) peru colombia text(was:present:in) south_america -colombia text(is:a:neighboring:state:to) ecuador -colombia text(was:a:neighboring:state:to) brazil -colombia text(borders:with) panama -colombia text(neighbors:withborders) venezuela -colombia text(neighbors) peru +colombia text(was:a:neighboring:state:to) ecuador +colombia text(borders:with) brazil +colombia text(borders) panama +colombia text(is:butted:against) venezuela +colombia text(was:butted:against) peru fiji text(is:present:in) melanesia fiji text(is:still:in) oceania -republic_of_the_congo text(is:butted:against) gabon -republic_of_the_congo text(was:butted:against) dr_congo -republic_of_the_congo text(is:a:neighboring:country:of) angola -republic_of_the_congo text(was:a:neighboring:country:of) cameroon -republic_of_the_congo text(was:adjacent:to) central_african_republic -saudi_arabia text(is:adjacent:to) qatar +republic_of_the_congo text(was:adjacent:to) gabon +republic_of_the_congo text(is:adjacent:to) dr_congo +republic_of_the_congo text(neighbors) angola +republic_of_the_congo text(is:a:neighboring:country:of) cameroon +republic_of_the_congo text(was:a:neighboring:country:of) central_african_republic +saudi_arabia text(neighbors:with) qatar saudi_arabia text(was:a:neighbor:of) united_arab_emirates saudi_arabia text(is:a:neighbor:of) jordan saudi_arabia text(is:a:neighboring:state:to) yemen saudi_arabia text(was:a:neighboring:state:to) oman saudi_arabia text(borders:with) kuwait -saudi_arabia text(neighbors:withborders) iraq +saudi_arabia text(borders) iraq el_salvador text(was:still:in) central_america -el_salvador text(neighbors) guatemala -el_salvador text(is:butted:against) honduras +el_salvador text(is:butted:against) guatemala +el_salvador text(was:butted:against) honduras madagascar text(was:currently:in) eastern_africa madagascar text(is:currently:in) africa -australia text(was:situated:in) australia_and_new_zealand -australia text(is:situated:in) oceania -namibia text(is:located:in) southern_africa -namibia text(was:located:in) africa -namibia text(was:butted:against) zambia -namibia text(is:a:neighboring:country:of) angola -namibia text(was:a:neighboring:country:of) south_africa -namibia text(was:adjacent:to) botswana -tuvalu text(could:be:found:in) polynesia -tuvalu text(can:be:found:in) oceania -svalbard_and_jan_mayen text(was:positioned:in) northern_europe -svalbard_and_jan_mayen text(is:positioned:in) europe -isle_of_man text(was:sited:in) northern_europe -isle_of_man text(is:sited:in) europe -guyana text(is:adjacent:to) brazil -guyana text(was:a:neighbor:of) suriname -guyana text(is:a:neighbor:of) venezuela -vatican_city text(is:placed:in) southern_europe -vatican_city text(was:placed:in) europe -vatican_city text(is:a:neighboring:state:to) italy +australia text(is:placed:in) australia_and_new_zealand +australia text(was:placed:in) oceania +namibia text(can:be:found:in) southern_africa +namibia text(was:situated:in) africa +namibia text(was:adjacent:to) zambia +namibia text(is:adjacent:to) angola +namibia text(neighbors) south_africa +namibia text(is:a:neighboring:country:of) botswana +tuvalu text(is:situated:in) polynesia +tuvalu text(is:located:in) oceania +svalbard_and_jan_mayen text(was:located:in) northern_europe +svalbard_and_jan_mayen text(can:be:found:in) europe +isle_of_man text(was:positioned:in) northern_europe +isle_of_man text(is:positioned:in) europe +guyana text(was:a:neighboring:country:of) brazil +guyana text(neighbors:with) suriname +guyana text(was:a:neighbor:of) venezuela +vatican_city text(was:sited:in) southern_europe +vatican_city text(is:sited:in) europe +vatican_city text(is:a:neighbor:of) italy british_indian_ocean_territory text(was:localized:in) eastern_africa british_indian_ocean_territory text(is:localized:in) africa nigeria text(was:present:in) western_africa nigeria text(is:present:in) africa -nigeria text(was:a:neighboring:state:to) chad -nigeria text(borders:with) niger -nigeria text(neighbors:withborders) cameroon -nigeria text(neighbors) benin +nigeria text(is:a:neighboring:state:to) chad +nigeria text(was:a:neighboring:state:to) niger +nigeria text(borders:with) cameroon +nigeria text(borders) benin germany text(is:butted:against) denmark germany text(was:butted:against) netherlands -germany text(is:a:neighboring:country:of) poland -germany text(was:a:neighboring:country:of) luxembourg -germany text(was:adjacent:to) belgium -germany text(is:adjacent:to) switzerland -germany text(was:a:neighbor:of) austria -germany text(is:a:neighbor:of) france -germany text(is:a:neighboring:state:to) czechia -burkina_faso text(was:a:neighboring:state:to) togo -burkina_faso text(borders:with) benin -burkina_faso text(neighbors:withborders) niger -burkina_faso text(neighbors) ghana -burkina_faso text(is:butted:against) mali -burkina_faso text(was:butted:against) ivory_coast -tanzania text(is:a:neighboring:country:of) uganda -tanzania text(was:a:neighboring:country:of) mozambique -tanzania text(was:adjacent:to) dr_congo -tanzania text(is:adjacent:to) kenya -tanzania text(was:a:neighbor:of) rwanda -tanzania text(is:a:neighbor:of) zambia -tanzania text(is:a:neighboring:state:to) malawi -tanzania text(was:a:neighboring:state:to) burundi +germany text(was:adjacent:to) poland +germany text(is:adjacent:to) luxembourg +germany text(neighbors) belgium +germany text(is:a:neighboring:country:of) switzerland +germany text(was:a:neighboring:country:of) austria +germany text(neighbors:with) france +germany text(was:a:neighbor:of) czechia +burkina_faso text(is:a:neighbor:of) togo +burkina_faso text(is:a:neighboring:state:to) benin +burkina_faso text(was:a:neighboring:state:to) niger +burkina_faso text(borders:with) ghana +burkina_faso text(borders) mali +burkina_faso text(is:butted:against) ivory_coast +tanzania text(was:butted:against) uganda +tanzania text(was:adjacent:to) mozambique +tanzania text(is:adjacent:to) dr_congo +tanzania text(neighbors) kenya +tanzania text(is:a:neighboring:country:of) rwanda +tanzania text(was:a:neighboring:country:of) zambia +tanzania text(neighbors:with) malawi +tanzania text(was:a:neighbor:of) burundi northern_mariana_islands text(is:still:in) micronesia northern_mariana_islands text(was:still:in) oceania belize text(was:currently:in) central_america -belize text(borders:with) guatemala -belize text(neighbors:withborders) mexico -norway text(neighbors) sweden -norway text(is:butted:against) finland -norway text(was:butted:against) russia +belize text(is:a:neighbor:of) guatemala +belize text(is:a:neighboring:state:to) mexico +norway text(was:a:neighboring:state:to) sweden +norway text(borders:with) finland +norway text(borders) russia cocos_keeling_islands text(is:currently:in) australia_and_new_zealand -cocos_keeling_islands text(was:situated:in) oceania -laos text(is:situated:in) south-eastern_asia -laos text(is:a:neighboring:country:of) china -laos text(was:a:neighboring:country:of) cambodia +cocos_keeling_islands text(is:placed:in) oceania +laos text(was:placed:in) south-eastern_asia +laos text(is:butted:against) china +laos text(was:butted:against) cambodia laos text(was:adjacent:to) myanmar laos text(is:adjacent:to) vietnam -laos text(was:a:neighbor:of) thailand -western_sahara text(is:located:in) northern_africa -western_sahara text(is:a:neighbor:of) algeria -western_sahara text(is:a:neighboring:state:to) mauritania -western_sahara text(was:a:neighboring:state:to) morocco -suriname text(was:located:in) south_america -suriname text(borders:with) brazil -suriname text(neighbors:withborders) french_guiana -suriname text(neighbors) guyana -christmas_island text(could:be:found:in) australia_and_new_zealand -christmas_island text(can:be:found:in) oceania -são_tomé_and_príncipe text(was:positioned:in) middle_africa -são_tomé_and_príncipe text(is:positioned:in) africa -egypt text(is:butted:against) libya -egypt text(was:butted:against) israel -egypt text(is:a:neighboring:country:of) sudan -bulgaria text(was:a:neighboring:country:of) macedonia -bulgaria text(was:adjacent:to) turkey -bulgaria text(is:adjacent:to) greece -bulgaria text(was:a:neighbor:of) serbia -bulgaria text(is:a:neighbor:of) romania -guinea text(was:sited:in) western_africa -guinea text(is:a:neighboring:state:to) guinea-bissau -guinea text(was:a:neighboring:state:to) sierra_leone -guinea text(borders:with) mali -guinea text(neighbors:withborders) liberia -guinea text(neighbors) senegal -guinea text(is:butted:against) ivory_coast -spain text(was:butted:against) morocco -spain text(is:a:neighboring:country:of) gibraltar -spain text(was:a:neighboring:country:of) andorra -spain text(was:adjacent:to) france -spain text(is:adjacent:to) portugal -costa_rica text(is:sited:in) central_america -costa_rica text(was:a:neighbor:of) panama -costa_rica text(is:a:neighbor:of) nicaragua -malta text(is:placed:in) southern_europe -malta text(was:placed:in) europe +laos text(neighbors) thailand +western_sahara text(can:be:found:in) northern_africa +western_sahara text(is:a:neighboring:country:of) algeria +western_sahara text(was:a:neighboring:country:of) mauritania +western_sahara text(neighbors:with) morocco +suriname text(was:situated:in) south_america +suriname text(was:a:neighbor:of) brazil +suriname text(is:a:neighbor:of) french_guiana +suriname text(is:a:neighboring:state:to) guyana +christmas_island text(is:situated:in) australia_and_new_zealand +christmas_island text(is:located:in) oceania +são_tomé_and_príncipe text(was:located:in) middle_africa +são_tomé_and_príncipe text(can:be:found:in) africa +egypt text(was:a:neighboring:state:to) libya +egypt text(borders:with) israel +egypt text(borders) sudan +bulgaria text(is:butted:against) macedonia +bulgaria text(was:butted:against) turkey +bulgaria text(was:adjacent:to) greece +bulgaria text(is:adjacent:to) serbia +bulgaria text(neighbors) romania +guinea text(was:positioned:in) western_africa +guinea text(is:a:neighboring:country:of) guinea-bissau +guinea text(was:a:neighboring:country:of) sierra_leone +guinea text(neighbors:with) mali +guinea text(was:a:neighbor:of) liberia +guinea text(is:a:neighbor:of) senegal +guinea text(is:a:neighboring:state:to) ivory_coast +spain text(was:a:neighboring:state:to) morocco +spain text(borders:with) gibraltar +spain text(borders) andorra +spain text(is:butted:against) france +spain text(was:butted:against) portugal +costa_rica text(is:positioned:in) central_america +costa_rica text(was:adjacent:to) panama +costa_rica text(is:adjacent:to) nicaragua +malta text(was:sited:in) southern_europe +malta text(is:sited:in) europe portugal text(was:localized:in) southern_europe -portugal text(is:a:neighboring:state:to) spain +portugal text(neighbors) spain romania text(is:localized:in) eastern_europe -romania text(was:a:neighboring:state:to) ukraine -romania text(borders:with) hungary -romania text(neighbors:withborders) moldova -romania text(neighbors) bulgaria -romania text(is:butted:against) serbia +romania text(is:a:neighboring:country:of) ukraine +romania text(was:a:neighboring:country:of) hungary +romania text(neighbors:with) moldova +romania text(was:a:neighbor:of) bulgaria +romania text(is:a:neighbor:of) serbia san_marino text(was:present:in) southern_europe san_marino text(is:present:in) europe -san_marino text(was:butted:against) italy +san_marino text(is:a:neighboring:state:to) italy mauritania text(is:still:in) western_africa mauritania text(was:still:in) africa -mauritania text(is:a:neighboring:country:of) algeria -mauritania text(was:a:neighboring:country:of) mali -mauritania text(was:adjacent:to) western_sahara -mauritania text(is:adjacent:to) senegal +mauritania text(was:a:neighboring:state:to) algeria +mauritania text(borders:with) mali +mauritania text(borders) western_sahara +mauritania text(is:butted:against) senegal trinidad_and_tobago text(was:currently:in) caribbean trinidad_and_tobago text(is:currently:in) americas -bahrain text(was:situated:in) western_asia -bahrain text(is:situated:in) asia -myanmar text(was:a:neighbor:of) india -myanmar text(is:a:neighbor:of) bangladesh -myanmar text(is:a:neighboring:state:to) china -myanmar text(was:a:neighboring:state:to) laos -myanmar text(borders:with) thailand -iraq text(neighbors:withborders) turkey -iraq text(neighbors) saudi_arabia -iraq text(is:butted:against) iran -iraq text(was:butted:against) jordan -iraq text(is:a:neighboring:country:of) kuwait -iraq text(was:a:neighboring:country:of) syria -south_georgia text(is:located:in) south_america -south_georgia text(was:located:in) americas -iceland text(could:be:found:in) northern_europe -iceland text(can:be:found:in) europe -dr_congo text(was:positioned:in) middle_africa -dr_congo text(was:adjacent:to) uganda -dr_congo text(is:adjacent:to) tanzania -dr_congo text(was:a:neighbor:of) republic_of_the_congo -dr_congo text(is:a:neighbor:of) central_african_republic -dr_congo text(is:a:neighboring:state:to) angola -dr_congo text(was:a:neighboring:state:to) rwanda -dr_congo text(borders:with) south_sudan -dr_congo text(neighbors:withborders) zambia -dr_congo text(neighbors) burundi -seychelles text(is:positioned:in) eastern_africa -seychelles text(was:sited:in) africa -kyrgyzstan text(is:butted:against) china -kyrgyzstan text(was:butted:against) kazakhstan -kyrgyzstan text(is:a:neighboring:country:of) tajikistan -kyrgyzstan text(was:a:neighboring:country:of) uzbekistan -botswana text(is:sited:in) southern_africa -botswana text(was:adjacent:to) zimbabwe -botswana text(is:adjacent:to) namibia -botswana text(was:a:neighbor:of) zambia -botswana text(is:a:neighbor:of) south_africa -faroe_islands text(is:placed:in) northern_europe -faroe_islands text(was:placed:in) europe +bahrain text(is:placed:in) western_asia +bahrain text(was:placed:in) asia +myanmar text(was:butted:against) india +myanmar text(was:adjacent:to) bangladesh +myanmar text(is:adjacent:to) china +myanmar text(neighbors) laos +myanmar text(is:a:neighboring:country:of) thailand +iraq text(was:a:neighboring:country:of) turkey +iraq text(neighbors:with) saudi_arabia +iraq text(was:a:neighbor:of) iran +iraq text(is:a:neighbor:of) jordan +iraq text(is:a:neighboring:state:to) kuwait +iraq text(was:a:neighboring:state:to) syria +south_georgia text(can:be:found:in) south_america +south_georgia text(was:situated:in) americas +iceland text(is:situated:in) northern_europe +iceland text(is:located:in) europe +dr_congo text(was:located:in) middle_africa +dr_congo text(borders:with) uganda +dr_congo text(borders) tanzania +dr_congo text(is:butted:against) republic_of_the_congo +dr_congo text(was:butted:against) central_african_republic +dr_congo text(was:adjacent:to) angola +dr_congo text(is:adjacent:to) rwanda +dr_congo text(neighbors) south_sudan +dr_congo text(is:a:neighboring:country:of) zambia +dr_congo text(was:a:neighboring:country:of) burundi +seychelles text(can:be:found:in) eastern_africa +seychelles text(was:positioned:in) africa +kyrgyzstan text(neighbors:with) china +kyrgyzstan text(was:a:neighbor:of) kazakhstan +kyrgyzstan text(is:a:neighbor:of) tajikistan +kyrgyzstan text(is:a:neighboring:state:to) uzbekistan +botswana text(is:positioned:in) southern_africa +botswana text(was:a:neighboring:state:to) zimbabwe +botswana text(borders:with) namibia +botswana text(borders) zambia +botswana text(is:butted:against) south_africa +faroe_islands text(was:sited:in) northern_europe +faroe_islands text(is:sited:in) europe jamaica text(was:localized:in) caribbean jamaica text(is:localized:in) americas american_samoa text(was:present:in) polynesia american_samoa text(is:present:in) oceania lesotho text(is:still:in) southern_africa lesotho text(was:still:in) africa -lesotho text(is:a:neighboring:state:to) south_africa -sri_lanka text(was:a:neighboring:state:to) india +lesotho text(was:butted:against) south_africa +sri_lanka text(was:adjacent:to) india belgium text(was:currently:in) western_europe -belgium text(borders:with) germany -belgium text(neighbors:withborders) luxembourg -belgium text(neighbors) france -belgium text(is:butted:against) netherlands +belgium text(is:adjacent:to) germany +belgium text(neighbors) luxembourg +belgium text(is:a:neighboring:country:of) france +belgium text(was:a:neighboring:country:of) netherlands qatar text(is:currently:in) western_asia -qatar text(was:butted:against) saudi_arabia -solomon_islands text(was:situated:in) melanesia -solomon_islands text(is:situated:in) oceania -syria text(is:located:in) western_asia -syria text(is:a:neighboring:country:of) israel -syria text(was:a:neighboring:country:of) turkey -syria text(was:adjacent:to) jordan -syria text(is:adjacent:to) lebanon -syria text(was:a:neighbor:of) iraq -india text(was:located:in) southern_asia -india text(is:a:neighbor:of) afghanistan -india text(is:a:neighboring:state:to) bhutan -india text(was:a:neighboring:state:to) bangladesh -india text(borders:with) china -india text(neighbors:withborders) nepal +qatar text(neighbors:with) saudi_arabia +solomon_islands text(is:placed:in) melanesia +solomon_islands text(was:placed:in) oceania +syria text(can:be:found:in) western_asia +syria text(was:a:neighbor:of) israel +syria text(is:a:neighbor:of) turkey +syria text(is:a:neighboring:state:to) jordan +syria text(was:a:neighboring:state:to) lebanon +syria text(borders:with) iraq +india text(was:situated:in) southern_asia +india text(borders) afghanistan +india text(is:butted:against) bhutan +india text(was:butted:against) bangladesh +india text(was:adjacent:to) china +india text(is:adjacent:to) nepal india text(neighbors) myanmar -india text(is:butted:against) pakistan -india text(was:butted:against) sri_lanka -morocco text(is:a:neighboring:country:of) algeria -morocco text(was:a:neighboring:country:of) spain -morocco text(was:adjacent:to) western_sahara -kenya text(could:be:found:in) eastern_africa -kenya text(is:adjacent:to) uganda -kenya text(was:a:neighbor:of) tanzania -kenya text(is:a:neighbor:of) somalia -kenya text(is:a:neighboring:state:to) south_sudan -kenya text(was:a:neighboring:state:to) ethiopia -south_sudan text(can:be:found:in) middle_africa -south_sudan text(borders:with) uganda -south_sudan text(neighbors:withborders) dr_congo -south_sudan text(neighbors) kenya -south_sudan text(is:butted:against) central_african_republic -south_sudan text(was:butted:against) sudan -south_sudan text(is:a:neighboring:country:of) ethiopia -ghana text(was:a:neighboring:country:of) burkina_faso -ghana text(was:adjacent:to) ivory_coast -ghana text(is:adjacent:to) togo -tajikistan text(was:positioned:in) central_asia -tajikistan text(was:a:neighbor:of) china -tajikistan text(is:a:neighbor:of) kyrgyzstan -tajikistan text(is:a:neighboring:state:to) afghanistan -tajikistan text(was:a:neighboring:state:to) uzbekistan -marshall_islands text(is:positioned:in) micronesia -marshall_islands text(was:sited:in) oceania -cameroon text(is:sited:in) middle_africa -cameroon text(borders:with) chad -cameroon text(neighbors:withborders) republic_of_the_congo -cameroon text(neighbors) gabon -cameroon text(is:butted:against) equatorial_guinea -cameroon text(was:butted:against) central_african_republic +india text(is:a:neighboring:country:of) pakistan +india text(was:a:neighboring:country:of) sri_lanka +morocco text(neighbors:with) algeria +morocco text(was:a:neighbor:of) spain +morocco text(is:a:neighbor:of) western_sahara +kenya text(is:situated:in) eastern_africa +kenya text(is:a:neighboring:state:to) uganda +kenya text(was:a:neighboring:state:to) tanzania +kenya text(borders:with) somalia +kenya text(borders) south_sudan +kenya text(is:butted:against) ethiopia +south_sudan text(is:located:in) middle_africa +south_sudan text(was:butted:against) uganda +south_sudan text(was:adjacent:to) dr_congo +south_sudan text(is:adjacent:to) kenya +south_sudan text(neighbors) central_african_republic +south_sudan text(is:a:neighboring:country:of) sudan +south_sudan text(was:a:neighboring:country:of) ethiopia +ghana text(neighbors:with) burkina_faso +ghana text(was:a:neighbor:of) ivory_coast +ghana text(is:a:neighbor:of) togo +tajikistan text(was:located:in) central_asia +tajikistan text(is:a:neighboring:state:to) china +tajikistan text(was:a:neighboring:state:to) kyrgyzstan +tajikistan text(borders:with) afghanistan +tajikistan text(borders) uzbekistan +marshall_islands text(can:be:found:in) micronesia +marshall_islands text(was:positioned:in) oceania +cameroon text(is:positioned:in) middle_africa +cameroon text(is:butted:against) chad +cameroon text(was:butted:against) republic_of_the_congo +cameroon text(was:adjacent:to) gabon +cameroon text(is:adjacent:to) equatorial_guinea +cameroon text(neighbors) central_african_republic cameroon text(is:a:neighboring:country:of) nigeria -nauru text(is:placed:in) micronesia -nauru text(was:placed:in) oceania +nauru text(was:sited:in) micronesia +nauru text(is:sited:in) oceania thailand text(was:a:neighboring:country:of) cambodia -thailand text(was:adjacent:to) myanmar -thailand text(is:adjacent:to) laos -thailand text(was:a:neighbor:of) malaysia -sudan text(is:a:neighbor:of) chad -sudan text(is:a:neighboring:state:to) libya -sudan text(was:a:neighboring:state:to) south_sudan -sudan text(borders:with) eritrea -sudan text(neighbors:withborders) central_african_republic -sudan text(neighbors) egypt -sudan text(is:butted:against) ethiopia +thailand text(neighbors:with) myanmar +thailand text(was:a:neighbor:of) laos +thailand text(is:a:neighbor:of) malaysia +sudan text(is:a:neighboring:state:to) chad +sudan text(was:a:neighboring:state:to) libya +sudan text(borders:with) south_sudan +sudan text(borders) eritrea +sudan text(is:butted:against) central_african_republic +sudan text(was:butted:against) egypt +sudan text(was:adjacent:to) ethiopia chad text(was:localized:in) middle_africa -chad text(was:butted:against) libya -chad text(is:a:neighboring:country:of) niger -chad text(was:a:neighboring:country:of) south_sudan -chad text(was:adjacent:to) cameroon -chad text(is:adjacent:to) central_african_republic +chad text(is:adjacent:to) libya +chad text(neighbors) niger +chad text(is:a:neighboring:country:of) south_sudan +chad text(was:a:neighboring:country:of) cameroon +chad text(neighbors:with) central_african_republic chad text(was:a:neighbor:of) nigeria vanuatu text(is:localized:in) melanesia vanuatu text(was:present:in) oceania @@ -437,34 +437,34 @@ liberia text(is:currently:in) western_africa liberia text(is:a:neighbor:of) ivory_coast liberia text(is:a:neighboring:state:to) sierra_leone liberia text(was:a:neighboring:state:to) guinea -cambodia text(was:situated:in) south-eastern_asia +cambodia text(is:placed:in) south-eastern_asia cambodia text(borders:with) vietnam -cambodia text(neighbors:withborders) thailand -cambodia text(neighbors) laos -zimbabwe text(is:butted:against) zambia -zimbabwe text(was:butted:against) south_africa -zimbabwe text(is:a:neighboring:country:of) botswana -zimbabwe text(was:a:neighboring:country:of) mozambique -comoros text(is:situated:in) eastern_africa -comoros text(is:located:in) africa -guam text(was:located:in) micronesia -guam text(could:be:found:in) oceania -bahamas text(can:be:found:in) caribbean -bahamas text(was:positioned:in) americas -lebanon text(is:positioned:in) western_asia -lebanon text(was:sited:in) asia -lebanon text(was:adjacent:to) israel -lebanon text(is:adjacent:to) syria -sint_maarten text(is:sited:in) caribbean -sint_maarten text(is:placed:in) americas -sint_maarten text(was:a:neighbor:of) saint_martin -ethiopia text(was:placed:in) eastern_africa -ethiopia text(is:a:neighbor:of) somalia -ethiopia text(is:a:neighboring:state:to) kenya -ethiopia text(was:a:neighboring:state:to) eritrea -ethiopia text(borders:with) south_sudan -ethiopia text(neighbors:withborders) djibouti -ethiopia text(neighbors) sudan +cambodia text(borders) thailand +cambodia text(is:butted:against) laos +zimbabwe text(was:butted:against) zambia +zimbabwe text(was:adjacent:to) south_africa +zimbabwe text(is:adjacent:to) botswana +zimbabwe text(neighbors) mozambique +comoros text(was:placed:in) eastern_africa +comoros text(can:be:found:in) africa +guam text(was:situated:in) micronesia +guam text(is:situated:in) oceania +bahamas text(is:located:in) caribbean +bahamas text(was:located:in) americas +lebanon text(can:be:found:in) western_asia +lebanon text(was:positioned:in) asia +lebanon text(is:a:neighboring:country:of) israel +lebanon text(was:a:neighboring:country:of) syria +sint_maarten text(is:positioned:in) caribbean +sint_maarten text(was:sited:in) americas +sint_maarten text(neighbors:with) saint_martin +ethiopia text(is:sited:in) eastern_africa +ethiopia text(was:a:neighbor:of) somalia +ethiopia text(is:a:neighbor:of) kenya +ethiopia text(is:a:neighboring:state:to) eritrea +ethiopia text(was:a:neighboring:state:to) south_sudan +ethiopia text(borders:with) djibouti +ethiopia text(borders) sudan united_states_virgin_islands text(was:localized:in) caribbean united_states_virgin_islands text(is:localized:in) americas guinea-bissau text(was:present:in) western_africa @@ -472,485 +472,485 @@ guinea-bissau text(is:present:in) africa guinea-bissau text(is:butted:against) guinea guinea-bissau text(was:butted:against) senegal libya text(is:still:in) northern_africa -libya text(is:a:neighboring:country:of) chad -libya text(was:a:neighboring:country:of) tunisia -libya text(was:adjacent:to) niger -libya text(is:adjacent:to) algeria -libya text(was:a:neighbor:of) egypt -libya text(is:a:neighbor:of) sudan +libya text(was:adjacent:to) chad +libya text(is:adjacent:to) tunisia +libya text(neighbors) niger +libya text(is:a:neighboring:country:of) algeria +libya text(was:a:neighboring:country:of) egypt +libya text(neighbors:with) sudan bhutan text(was:still:in) southern_asia bhutan text(was:currently:in) asia -bhutan text(is:a:neighboring:state:to) china -bhutan text(was:a:neighboring:state:to) india +bhutan text(was:a:neighbor:of) china +bhutan text(is:a:neighbor:of) india macau text(is:currently:in) eastern_asia -macau text(was:situated:in) asia -macau text(borders:with) china -french_polynesia text(is:situated:in) polynesia -french_polynesia text(is:located:in) oceania -somalia text(was:located:in) eastern_africa -somalia text(neighbors:withborders) djibouti -somalia text(neighbors) kenya -somalia text(is:butted:against) ethiopia -saint_barthélemy text(could:be:found:in) caribbean -saint_barthélemy text(can:be:found:in) americas -russia text(was:positioned:in) eastern_europe -russia text(was:butted:against) ukraine -russia text(is:a:neighboring:country:of) belarus -russia text(was:a:neighboring:country:of) china -russia text(was:adjacent:to) kazakhstan -russia text(is:adjacent:to) norway -russia text(was:a:neighbor:of) poland -russia text(is:a:neighbor:of) azerbaijan -russia text(is:a:neighboring:state:to) lithuania -russia text(was:a:neighboring:state:to) estonia -russia text(borders:with) north_korea -russia text(neighbors:withborders) finland -russia text(neighbors) mongolia -russia text(is:butted:against) latvia -russia text(was:butted:against) georgia -new_zealand text(is:positioned:in) australia_and_new_zealand -new_zealand text(was:sited:in) oceania -panama text(is:sited:in) central_america -panama text(is:placed:in) americas -panama text(is:a:neighboring:country:of) costa_rica -panama text(was:a:neighboring:country:of) colombia -papua_new_guinea text(was:placed:in) melanesia +macau text(is:placed:in) asia +macau text(is:a:neighboring:state:to) china +french_polynesia text(was:placed:in) polynesia +french_polynesia text(can:be:found:in) oceania +somalia text(was:situated:in) eastern_africa +somalia text(was:a:neighboring:state:to) djibouti +somalia text(borders:with) kenya +somalia text(borders) ethiopia +saint_barthélemy text(is:situated:in) caribbean +saint_barthélemy text(is:located:in) americas +russia text(was:located:in) eastern_europe +russia text(is:butted:against) ukraine +russia text(was:butted:against) belarus +russia text(was:adjacent:to) china +russia text(is:adjacent:to) kazakhstan +russia text(neighbors) norway +russia text(is:a:neighboring:country:of) poland +russia text(was:a:neighboring:country:of) azerbaijan +russia text(neighbors:with) lithuania +russia text(was:a:neighbor:of) estonia +russia text(is:a:neighbor:of) north_korea +russia text(is:a:neighboring:state:to) finland +russia text(was:a:neighboring:state:to) mongolia +russia text(borders:with) latvia +russia text(borders) georgia +new_zealand text(can:be:found:in) australia_and_new_zealand +new_zealand text(was:positioned:in) oceania +panama text(is:positioned:in) central_america +panama text(was:sited:in) americas +panama text(is:butted:against) costa_rica +panama text(was:butted:against) colombia +papua_new_guinea text(is:sited:in) melanesia papua_new_guinea text(was:adjacent:to) indonesia north_korea text(is:adjacent:to) china -north_korea text(was:a:neighbor:of) south_korea -north_korea text(is:a:neighbor:of) russia +north_korea text(neighbors) south_korea +north_korea text(is:a:neighboring:country:of) russia latvia text(was:localized:in) northern_europe -latvia text(is:a:neighboring:state:to) lithuania -latvia text(was:a:neighboring:state:to) belarus -latvia text(borders:with) russia -latvia text(neighbors:withborders) estonia +latvia text(was:a:neighboring:country:of) lithuania +latvia text(neighbors:with) belarus +latvia text(was:a:neighbor:of) russia +latvia text(is:a:neighbor:of) estonia oman text(is:localized:in) western_asia -oman text(neighbors) saudi_arabia -oman text(is:butted:against) yemen -oman text(was:butted:against) united_arab_emirates +oman text(is:a:neighboring:state:to) saudi_arabia +oman text(was:a:neighboring:state:to) yemen +oman text(borders:with) united_arab_emirates saint_pierre_and_miquelon text(was:present:in) northern_america saint_pierre_and_miquelon text(is:present:in) americas martinique text(is:still:in) caribbean martinique text(was:still:in) americas united_kingdom text(was:currently:in) northern_europe united_kingdom text(is:currently:in) europe -united_kingdom text(is:a:neighboring:country:of) ireland -israel text(was:situated:in) western_asia -israel text(was:a:neighboring:country:of) lebanon -israel text(was:adjacent:to) egypt -israel text(is:adjacent:to) jordan -israel text(was:a:neighbor:of) syria -jersey text(is:situated:in) northern_europe -jersey text(is:located:in) europe -pitcairn_islands text(was:located:in) polynesia -pitcairn_islands text(could:be:found:in) oceania -togo text(can:be:found:in) western_africa -togo text(is:a:neighbor:of) burkina_faso -togo text(is:a:neighboring:state:to) ghana -togo text(was:a:neighboring:state:to) benin -kiribati text(was:positioned:in) micronesia -kiribati text(is:positioned:in) oceania -iran text(was:sited:in) southern_asia -iran text(borders:with) afghanistan -iran text(neighbors:withborders) turkmenistan -iran text(neighbors) turkey -iran text(is:butted:against) armenia -iran text(was:butted:against) azerbaijan -iran text(is:a:neighboring:country:of) pakistan -iran text(was:a:neighboring:country:of) iraq -saint_martin text(is:sited:in) caribbean -saint_martin text(is:placed:in) americas -saint_martin text(was:adjacent:to) sint_maarten -dominican_republic text(was:placed:in) caribbean +united_kingdom text(borders) ireland +israel text(is:placed:in) western_asia +israel text(is:butted:against) lebanon +israel text(was:butted:against) egypt +israel text(was:adjacent:to) jordan +israel text(is:adjacent:to) syria +jersey text(was:placed:in) northern_europe +jersey text(can:be:found:in) europe +pitcairn_islands text(was:situated:in) polynesia +pitcairn_islands text(is:situated:in) oceania +togo text(is:located:in) western_africa +togo text(neighbors) burkina_faso +togo text(is:a:neighboring:country:of) ghana +togo text(was:a:neighboring:country:of) benin +kiribati text(was:located:in) micronesia +kiribati text(can:be:found:in) oceania +iran text(was:positioned:in) southern_asia +iran text(neighbors:with) afghanistan +iran text(was:a:neighbor:of) turkmenistan +iran text(is:a:neighbor:of) turkey +iran text(is:a:neighboring:state:to) armenia +iran text(was:a:neighboring:state:to) azerbaijan +iran text(borders:with) pakistan +iran text(borders) iraq +saint_martin text(is:positioned:in) caribbean +saint_martin text(was:sited:in) americas +saint_martin text(is:butted:against) sint_maarten +dominican_republic text(is:sited:in) caribbean dominican_republic text(was:localized:in) americas -dominican_republic text(is:adjacent:to) haiti -denmark text(was:a:neighbor:of) germany +dominican_republic text(was:butted:against) haiti +denmark text(was:adjacent:to) germany bermuda text(is:localized:in) northern_america bermuda text(was:present:in) americas -chile text(is:a:neighbor:of) argentina -chile text(is:a:neighboring:state:to) bolivia -chile text(was:a:neighboring:state:to) peru +chile text(is:adjacent:to) argentina +chile text(neighbors) bolivia +chile text(is:a:neighboring:country:of) peru kosovo text(is:present:in) eastern_europe -kosovo text(borders:with) serbia -kosovo text(neighbors:withborders) albania -kosovo text(neighbors) macedonia -kosovo text(is:butted:against) montenegro +kosovo text(was:a:neighboring:country:of) serbia +kosovo text(neighbors:with) albania +kosovo text(was:a:neighbor:of) macedonia +kosovo text(is:a:neighbor:of) montenegro saint_kitts_and_nevis text(is:still:in) caribbean saint_kitts_and_nevis text(was:still:in) americas -eritrea text(was:butted:against) djibouti -eritrea text(is:a:neighboring:country:of) sudan -eritrea text(was:a:neighboring:country:of) ethiopia +eritrea text(is:a:neighboring:state:to) djibouti +eritrea text(was:a:neighboring:state:to) sudan +eritrea text(borders:with) ethiopia equatorial_guinea text(was:currently:in) middle_africa equatorial_guinea text(is:currently:in) africa -equatorial_guinea text(was:adjacent:to) gabon -equatorial_guinea text(is:adjacent:to) cameroon -niger text(was:situated:in) western_africa -niger text(was:a:neighbor:of) chad -niger text(is:a:neighbor:of) libya -niger text(is:a:neighboring:state:to) burkina_faso -niger text(was:a:neighboring:state:to) benin -niger text(borders:with) mali -niger text(neighbors:withborders) algeria -niger text(neighbors) nigeria -anguilla text(is:situated:in) caribbean -anguilla text(is:located:in) americas -rwanda text(was:located:in) eastern_africa -rwanda text(is:butted:against) burundi -rwanda text(was:butted:against) tanzania -rwanda text(is:a:neighboring:country:of) uganda -rwanda text(was:a:neighboring:country:of) dr_congo -united_arab_emirates text(could:be:found:in) western_asia -united_arab_emirates text(was:adjacent:to) oman -united_arab_emirates text(is:adjacent:to) saudi_arabia -estonia text(can:be:found:in) northern_europe -estonia text(was:positioned:in) europe -estonia text(was:a:neighbor:of) latvia -estonia text(is:a:neighbor:of) russia -greece text(is:positioned:in) southern_europe -greece text(is:a:neighboring:state:to) bulgaria -greece text(was:a:neighboring:state:to) albania -greece text(borders:with) macedonia -greece text(neighbors:withborders) turkey -senegal text(was:sited:in) western_africa -senegal text(is:sited:in) africa -senegal text(neighbors) guinea-bissau -senegal text(is:butted:against) mauritania -senegal text(was:butted:against) mali -senegal text(is:a:neighboring:country:of) gambia -senegal text(was:a:neighboring:country:of) guinea -guadeloupe text(is:placed:in) caribbean -guadeloupe text(was:placed:in) americas -monaco text(was:adjacent:to) france -djibouti text(is:adjacent:to) eritrea -djibouti text(was:a:neighbor:of) somalia -djibouti text(is:a:neighbor:of) ethiopia -indonesia text(is:a:neighboring:state:to) papua_new_guinea -indonesia text(was:a:neighboring:state:to) timor-leste -indonesia text(borders:with) malaysia +equatorial_guinea text(borders) gabon +equatorial_guinea text(is:butted:against) cameroon +niger text(is:placed:in) western_africa +niger text(was:butted:against) chad +niger text(was:adjacent:to) libya +niger text(is:adjacent:to) burkina_faso +niger text(neighbors) benin +niger text(is:a:neighboring:country:of) mali +niger text(was:a:neighboring:country:of) algeria +niger text(neighbors:with) nigeria +anguilla text(was:placed:in) caribbean +anguilla text(can:be:found:in) americas +rwanda text(was:situated:in) eastern_africa +rwanda text(was:a:neighbor:of) burundi +rwanda text(is:a:neighbor:of) tanzania +rwanda text(is:a:neighboring:state:to) uganda +rwanda text(was:a:neighboring:state:to) dr_congo +united_arab_emirates text(is:situated:in) western_asia +united_arab_emirates text(borders:with) oman +united_arab_emirates text(borders) saudi_arabia +estonia text(is:located:in) northern_europe +estonia text(was:located:in) europe +estonia text(is:butted:against) latvia +estonia text(was:butted:against) russia +greece text(can:be:found:in) southern_europe +greece text(was:adjacent:to) bulgaria +greece text(is:adjacent:to) albania +greece text(neighbors) macedonia +greece text(is:a:neighboring:country:of) turkey +senegal text(was:positioned:in) western_africa +senegal text(is:positioned:in) africa +senegal text(was:a:neighboring:country:of) guinea-bissau +senegal text(neighbors:with) mauritania +senegal text(was:a:neighbor:of) mali +senegal text(is:a:neighbor:of) gambia +senegal text(is:a:neighboring:state:to) guinea +guadeloupe text(was:sited:in) caribbean +guadeloupe text(is:sited:in) americas +monaco text(was:a:neighboring:state:to) france +djibouti text(borders:with) eritrea +djibouti text(borders) somalia +djibouti text(is:butted:against) ethiopia +indonesia text(was:butted:against) papua_new_guinea +indonesia text(was:adjacent:to) timor-leste +indonesia text(is:adjacent:to) malaysia british_virgin_islands text(was:localized:in) caribbean british_virgin_islands text(is:localized:in) americas cook_islands text(was:present:in) polynesia cook_islands text(is:present:in) oceania uganda text(is:still:in) eastern_africa -uganda text(neighbors:withborders) tanzania -uganda text(neighbors) dr_congo -uganda text(is:butted:against) kenya -uganda text(was:butted:against) south_sudan -uganda text(is:a:neighboring:country:of) rwanda +uganda text(neighbors) tanzania +uganda text(is:a:neighboring:country:of) dr_congo +uganda text(was:a:neighboring:country:of) kenya +uganda text(neighbors:with) south_sudan +uganda text(was:a:neighbor:of) rwanda macedonia text(was:still:in) southern_europe -macedonia text(was:a:neighboring:country:of) kosovo -macedonia text(was:adjacent:to) greece -macedonia text(is:adjacent:to) albania -macedonia text(was:a:neighbor:of) serbia -macedonia text(is:a:neighbor:of) bulgaria +macedonia text(is:a:neighbor:of) kosovo +macedonia text(is:a:neighboring:state:to) greece +macedonia text(was:a:neighboring:state:to) albania +macedonia text(borders:with) serbia +macedonia text(borders) bulgaria tunisia text(was:currently:in) northern_africa tunisia text(is:currently:in) africa -tunisia text(is:a:neighboring:state:to) libya -tunisia text(was:a:neighboring:state:to) algeria -ecuador text(borders:with) peru -ecuador text(neighbors:withborders) colombia -brazil text(was:situated:in) south_america +tunisia text(is:butted:against) libya +tunisia text(was:butted:against) algeria +ecuador text(was:adjacent:to) peru +ecuador text(is:adjacent:to) colombia +brazil text(is:placed:in) south_america brazil text(neighbors) bolivia -brazil text(is:butted:against) colombia -brazil text(was:butted:against) paraguay -brazil text(is:a:neighboring:country:of) uruguay -brazil text(was:a:neighboring:country:of) french_guiana -brazil text(was:adjacent:to) suriname -brazil text(is:adjacent:to) venezuela -brazil text(was:a:neighbor:of) argentina -brazil text(is:a:neighbor:of) guyana -brazil text(is:a:neighboring:state:to) peru -paraguay text(is:situated:in) south_america -paraguay text(is:located:in) americas -paraguay text(was:a:neighboring:state:to) argentina -paraguay text(borders:with) brazil -paraguay text(neighbors:withborders) bolivia -finland text(was:located:in) northern_europe -finland text(neighbors) norway -finland text(is:butted:against) sweden -finland text(was:butted:against) russia -jordan text(is:a:neighboring:country:of) saudi_arabia -jordan text(was:a:neighboring:country:of) israel -jordan text(was:adjacent:to) iraq -jordan text(is:adjacent:to) syria -timor-leste text(was:a:neighbor:of) indonesia -montenegro text(could:be:found:in) southern_europe -montenegro text(is:a:neighbor:of) kosovo -montenegro text(is:a:neighboring:state:to) bosnia_and_herzegovina -montenegro text(was:a:neighboring:state:to) croatia -montenegro text(borders:with) serbia -montenegro text(neighbors:withborders) albania -peru text(can:be:found:in) south_america -peru text(neighbors) ecuador -peru text(is:butted:against) bolivia -peru text(was:butted:against) chile +brazil text(is:a:neighboring:country:of) colombia +brazil text(was:a:neighboring:country:of) paraguay +brazil text(neighbors:with) uruguay +brazil text(was:a:neighbor:of) french_guiana +brazil text(is:a:neighbor:of) suriname +brazil text(is:a:neighboring:state:to) venezuela +brazil text(was:a:neighboring:state:to) argentina +brazil text(borders:with) guyana +brazil text(borders) peru +paraguay text(was:placed:in) south_america +paraguay text(can:be:found:in) americas +paraguay text(is:butted:against) argentina +paraguay text(was:butted:against) brazil +paraguay text(was:adjacent:to) bolivia +finland text(was:situated:in) northern_europe +finland text(is:adjacent:to) norway +finland text(neighbors) sweden +finland text(is:a:neighboring:country:of) russia +jordan text(was:a:neighboring:country:of) saudi_arabia +jordan text(neighbors:with) israel +jordan text(was:a:neighbor:of) iraq +jordan text(is:a:neighbor:of) syria +timor-leste text(is:a:neighboring:state:to) indonesia +montenegro text(is:situated:in) southern_europe +montenegro text(was:a:neighboring:state:to) kosovo +montenegro text(borders:with) bosnia_and_herzegovina +montenegro text(borders) croatia +montenegro text(is:butted:against) serbia +montenegro text(was:butted:against) albania +peru text(is:located:in) south_america +peru text(was:adjacent:to) ecuador +peru text(is:adjacent:to) bolivia +peru text(neighbors) chile peru text(is:a:neighboring:country:of) brazil peru text(was:a:neighboring:country:of) colombia -montserrat text(was:positioned:in) caribbean -montserrat text(is:positioned:in) americas -ukraine text(was:sited:in) eastern_europe -ukraine text(was:adjacent:to) slovakia -ukraine text(is:adjacent:to) belarus -ukraine text(was:a:neighbor:of) poland -ukraine text(is:a:neighbor:of) russia -ukraine text(is:a:neighboring:state:to) hungary -ukraine text(was:a:neighboring:state:to) moldova -ukraine text(borders:with) romania -dominica text(is:sited:in) caribbean -dominica text(is:placed:in) americas -turkmenistan text(neighbors:withborders) kazakhstan -turkmenistan text(neighbors) afghanistan -turkmenistan text(is:butted:against) uzbekistan -turkmenistan text(was:butted:against) iran -guernsey text(was:placed:in) northern_europe +montserrat text(was:located:in) caribbean +montserrat text(can:be:found:in) americas +ukraine text(was:positioned:in) eastern_europe +ukraine text(neighbors:with) slovakia +ukraine text(was:a:neighbor:of) belarus +ukraine text(is:a:neighbor:of) poland +ukraine text(is:a:neighboring:state:to) russia +ukraine text(was:a:neighboring:state:to) hungary +ukraine text(borders:with) moldova +ukraine text(borders) romania +dominica text(is:positioned:in) caribbean +dominica text(was:sited:in) americas +turkmenistan text(is:butted:against) kazakhstan +turkmenistan text(was:butted:against) afghanistan +turkmenistan text(was:adjacent:to) uzbekistan +turkmenistan text(is:adjacent:to) iran +guernsey text(is:sited:in) northern_europe guernsey text(was:localized:in) europe gibraltar text(is:localized:in) southern_europe -gibraltar text(is:a:neighboring:country:of) spain +gibraltar text(neighbors) spain switzerland text(was:present:in) western_europe -switzerland text(was:a:neighboring:country:of) germany -switzerland text(was:adjacent:to) italy -switzerland text(is:adjacent:to) austria +switzerland text(is:a:neighboring:country:of) germany +switzerland text(was:a:neighboring:country:of) italy +switzerland text(neighbors:with) austria switzerland text(was:a:neighbor:of) france switzerland text(is:a:neighbor:of) liechtenstein austria text(is:present:in) western_europe austria text(is:a:neighboring:state:to) germany austria text(was:a:neighboring:state:to) slovakia austria text(borders:with) slovenia -austria text(neighbors:withborders) italy -austria text(neighbors) switzerland -austria text(is:butted:against) hungary -austria text(was:butted:against) liechtenstein -austria text(is:a:neighboring:country:of) czechia -hungary text(was:a:neighboring:country:of) ukraine -hungary text(was:adjacent:to) slovakia -hungary text(is:adjacent:to) slovenia -hungary text(was:a:neighbor:of) croatia -hungary text(is:a:neighbor:of) austria -hungary text(is:a:neighboring:state:to) serbia -hungary text(was:a:neighboring:state:to) romania +austria text(borders) italy +austria text(is:butted:against) switzerland +austria text(was:butted:against) hungary +austria text(was:adjacent:to) liechtenstein +austria text(is:adjacent:to) czechia +hungary text(neighbors) ukraine +hungary text(is:a:neighboring:country:of) slovakia +hungary text(was:a:neighboring:country:of) slovenia +hungary text(neighbors:with) croatia +hungary text(was:a:neighbor:of) austria +hungary text(is:a:neighbor:of) serbia +hungary text(is:a:neighboring:state:to) romania malawi text(is:still:in) eastern_africa -malawi text(borders:with) zambia -malawi text(neighbors:withborders) tanzania -malawi text(neighbors) mozambique +malawi text(was:a:neighboring:state:to) zambia +malawi text(borders:with) tanzania +malawi text(borders) mozambique hong_kong text(is:butted:against) china liechtenstein text(was:still:in) western_europe liechtenstein text(was:currently:in) europe liechtenstein text(was:butted:against) switzerland -liechtenstein text(is:a:neighboring:country:of) austria +liechtenstein text(was:adjacent:to) austria barbados text(is:currently:in) caribbean -barbados text(was:situated:in) americas -georgia text(is:situated:in) western_asia -georgia text(was:a:neighboring:country:of) armenia -georgia text(was:adjacent:to) azerbaijan -georgia text(is:adjacent:to) russia -georgia text(was:a:neighbor:of) turkey -albania text(is:located:in) southern_europe -albania text(was:located:in) europe -albania text(is:a:neighbor:of) montenegro -albania text(is:a:neighboring:state:to) macedonia -albania text(was:a:neighboring:state:to) kosovo -albania text(borders:with) greece -kuwait text(could:be:found:in) western_asia -kuwait text(neighbors:withborders) saudi_arabia -kuwait text(neighbors) iraq -south_africa text(can:be:found:in) southern_africa -south_africa text(is:butted:against) mozambique -south_africa text(was:butted:against) botswana -south_africa text(is:a:neighboring:country:of) swaziland -south_africa text(was:a:neighboring:country:of) zimbabwe -south_africa text(was:adjacent:to) namibia -south_africa text(is:adjacent:to) lesotho -haiti text(was:positioned:in) caribbean -haiti text(is:positioned:in) americas -haiti text(was:a:neighbor:of) dominican_republic -afghanistan text(was:sited:in) southern_asia -afghanistan text(is:a:neighbor:of) turkmenistan -afghanistan text(is:a:neighboring:state:to) china -afghanistan text(was:a:neighboring:state:to) tajikistan -afghanistan text(borders:with) uzbekistan -afghanistan text(neighbors:withborders) iran -afghanistan text(neighbors) pakistan -singapore text(is:sited:in) south-eastern_asia -singapore text(is:placed:in) asia -benin text(was:placed:in) western_africa -benin text(is:butted:against) niger -benin text(was:butted:against) burkina_faso -benin text(is:a:neighboring:country:of) togo -benin text(was:a:neighboring:country:of) nigeria +barbados text(is:placed:in) americas +georgia text(was:placed:in) western_asia +georgia text(is:adjacent:to) armenia +georgia text(neighbors) azerbaijan +georgia text(is:a:neighboring:country:of) russia +georgia text(was:a:neighboring:country:of) turkey +albania text(can:be:found:in) southern_europe +albania text(was:situated:in) europe +albania text(neighbors:with) montenegro +albania text(was:a:neighbor:of) macedonia +albania text(is:a:neighbor:of) kosovo +albania text(is:a:neighboring:state:to) greece +kuwait text(is:situated:in) western_asia +kuwait text(was:a:neighboring:state:to) saudi_arabia +kuwait text(borders:with) iraq +south_africa text(is:located:in) southern_africa +south_africa text(borders) mozambique +south_africa text(is:butted:against) botswana +south_africa text(was:butted:against) swaziland +south_africa text(was:adjacent:to) zimbabwe +south_africa text(is:adjacent:to) namibia +south_africa text(neighbors) lesotho +haiti text(was:located:in) caribbean +haiti text(can:be:found:in) americas +haiti text(is:a:neighboring:country:of) dominican_republic +afghanistan text(was:positioned:in) southern_asia +afghanistan text(was:a:neighboring:country:of) turkmenistan +afghanistan text(neighbors:with) china +afghanistan text(was:a:neighbor:of) tajikistan +afghanistan text(is:a:neighbor:of) uzbekistan +afghanistan text(is:a:neighboring:state:to) iran +afghanistan text(was:a:neighboring:state:to) pakistan +singapore text(is:positioned:in) south-eastern_asia +singapore text(was:sited:in) asia +benin text(is:sited:in) western_africa +benin text(borders:with) niger +benin text(borders) burkina_faso +benin text(is:butted:against) togo +benin text(was:butted:against) nigeria åland_islands text(was:localized:in) northern_europe åland_islands text(is:localized:in) europe croatia text(was:present:in) southern_europe croatia text(was:adjacent:to) slovenia croatia text(is:adjacent:to) bosnia_and_herzegovina -croatia text(was:a:neighbor:of) hungary -croatia text(is:a:neighbor:of) serbia -croatia text(is:a:neighboring:state:to) montenegro +croatia text(neighbors) hungary +croatia text(is:a:neighboring:country:of) serbia +croatia text(was:a:neighboring:country:of) montenegro sweden text(is:present:in) northern_europe -sweden text(was:a:neighboring:state:to) norway -sweden text(borders:with) finland -mexico text(neighbors:withborders) belize -mexico text(neighbors) united_states -mexico text(is:butted:against) guatemala +sweden text(neighbors:with) norway +sweden text(was:a:neighbor:of) finland +mexico text(is:a:neighbor:of) belize +mexico text(is:a:neighboring:state:to) united_states +mexico text(was:a:neighboring:state:to) guatemala greenland text(is:still:in) northern_america greenland text(was:still:in) americas norfolk_island text(was:currently:in) australia_and_new_zealand norfolk_island text(is:currently:in) oceania -nepal text(was:situated:in) southern_asia -nepal text(is:situated:in) asia -nepal text(was:butted:against) china -nepal text(is:a:neighboring:country:of) india -guatemala text(was:a:neighboring:country:of) belize -guatemala text(was:adjacent:to) el_salvador -guatemala text(is:adjacent:to) mexico -guatemala text(was:a:neighbor:of) honduras -south_korea text(is:located:in) eastern_asia -south_korea text(is:a:neighbor:of) north_korea -moldova text(was:located:in) eastern_europe -moldova text(could:be:found:in) europe -moldova text(is:a:neighboring:state:to) ukraine -moldova text(was:a:neighboring:state:to) romania -mauritius text(can:be:found:in) eastern_africa -mauritius text(was:positioned:in) africa -belarus text(borders:with) ukraine -belarus text(neighbors:withborders) poland -belarus text(neighbors) lithuania -belarus text(is:butted:against) russia -belarus text(was:butted:against) latvia -bangladesh text(is:a:neighboring:country:of) myanmar -bangladesh text(was:a:neighboring:country:of) india -malaysia text(is:positioned:in) south-eastern_asia -malaysia text(was:adjacent:to) thailand -malaysia text(is:adjacent:to) indonesia -malaysia text(was:a:neighbor:of) brunei -bosnia_and_herzegovina text(was:sited:in) southern_europe -bosnia_and_herzegovina text(is:a:neighbor:of) serbia -bosnia_and_herzegovina text(is:a:neighboring:state:to) croatia -bosnia_and_herzegovina text(was:a:neighboring:state:to) montenegro -luxembourg text(is:sited:in) western_europe -luxembourg text(borders:with) germany -luxembourg text(neighbors:withborders) belgium -luxembourg text(neighbors) france -italy text(is:placed:in) southern_europe -italy text(was:placed:in) europe -italy text(is:butted:against) slovenia -italy text(was:butted:against) switzerland -italy text(is:a:neighboring:country:of) austria -italy text(was:a:neighboring:country:of) france -italy text(was:adjacent:to) vatican_city -italy text(is:adjacent:to) san_marino +nepal text(is:placed:in) southern_asia +nepal text(was:placed:in) asia +nepal text(borders:with) china +nepal text(borders) india +guatemala text(is:butted:against) belize +guatemala text(was:butted:against) el_salvador +guatemala text(was:adjacent:to) mexico +guatemala text(is:adjacent:to) honduras +south_korea text(can:be:found:in) eastern_asia +south_korea text(neighbors) north_korea +moldova text(was:situated:in) eastern_europe +moldova text(is:situated:in) europe +moldova text(is:a:neighboring:country:of) ukraine +moldova text(was:a:neighboring:country:of) romania +mauritius text(is:located:in) eastern_africa +mauritius text(was:located:in) africa +belarus text(neighbors:with) ukraine +belarus text(was:a:neighbor:of) poland +belarus text(is:a:neighbor:of) lithuania +belarus text(is:a:neighboring:state:to) russia +belarus text(was:a:neighboring:state:to) latvia +bangladesh text(borders:with) myanmar +bangladesh text(borders) india +malaysia text(can:be:found:in) south-eastern_asia +malaysia text(is:butted:against) thailand +malaysia text(was:butted:against) indonesia +malaysia text(was:adjacent:to) brunei +bosnia_and_herzegovina text(was:positioned:in) southern_europe +bosnia_and_herzegovina text(is:adjacent:to) serbia +bosnia_and_herzegovina text(neighbors) croatia +bosnia_and_herzegovina text(is:a:neighboring:country:of) montenegro +luxembourg text(is:positioned:in) western_europe +luxembourg text(was:a:neighboring:country:of) germany +luxembourg text(neighbors:with) belgium +luxembourg text(was:a:neighbor:of) france +italy text(was:sited:in) southern_europe +italy text(is:sited:in) europe +italy text(is:a:neighbor:of) slovenia +italy text(is:a:neighboring:state:to) switzerland +italy text(was:a:neighboring:state:to) austria +italy text(borders:with) france +italy text(borders) vatican_city +italy text(is:butted:against) san_marino azerbaijan text(was:localized:in) western_asia -azerbaijan text(was:a:neighbor:of) turkey -azerbaijan text(is:a:neighbor:of) armenia -azerbaijan text(is:a:neighboring:state:to) russia -azerbaijan text(was:a:neighboring:state:to) iran -azerbaijan text(borders:with) georgia +azerbaijan text(was:butted:against) turkey +azerbaijan text(was:adjacent:to) armenia +azerbaijan text(is:adjacent:to) russia +azerbaijan text(neighbors) iran +azerbaijan text(is:a:neighboring:country:of) georgia honduras text(is:localized:in) central_america -honduras text(neighbors:withborders) guatemala -honduras text(neighbors) nicaragua -honduras text(is:butted:against) el_salvador +honduras text(was:a:neighboring:country:of) guatemala +honduras text(neighbors:with) nicaragua +honduras text(was:a:neighbor:of) el_salvador mali text(was:present:in) western_africa -mali text(was:butted:against) burkina_faso -mali text(is:a:neighboring:country:of) guinea -mali text(was:a:neighboring:country:of) mauritania -mali text(was:adjacent:to) niger -mali text(is:adjacent:to) senegal -mali text(was:a:neighbor:of) algeria -mali text(is:a:neighbor:of) ivory_coast +mali text(is:a:neighbor:of) burkina_faso +mali text(is:a:neighboring:state:to) guinea +mali text(was:a:neighboring:state:to) mauritania +mali text(borders:with) niger +mali text(borders) senegal +mali text(is:butted:against) algeria +mali text(was:butted:against) ivory_coast taiwan text(is:present:in) eastern_asia taiwan text(is:still:in) asia algeria text(was:still:in) northern_africa -algeria text(is:a:neighboring:state:to) libya -algeria text(was:a:neighboring:state:to) tunisia -algeria text(borders:with) mauritania -algeria text(neighbors:withborders) morocco -algeria text(neighbors) niger -algeria text(is:butted:against) mali -algeria text(was:butted:against) western_sahara -french_guiana text(is:a:neighboring:country:of) brazil -french_guiana text(was:a:neighboring:country:of) suriname +algeria text(was:adjacent:to) libya +algeria text(is:adjacent:to) tunisia +algeria text(neighbors) mauritania +algeria text(is:a:neighboring:country:of) morocco +algeria text(was:a:neighboring:country:of) niger +algeria text(neighbors:with) mali +algeria text(was:a:neighbor:of) western_sahara +french_guiana text(is:a:neighbor:of) brazil +french_guiana text(is:a:neighboring:state:to) suriname yemen text(was:currently:in) western_asia -yemen text(was:adjacent:to) oman -yemen text(is:adjacent:to) saudi_arabia +yemen text(was:a:neighboring:state:to) oman +yemen text(borders:with) saudi_arabia puerto_rico text(is:currently:in) caribbean -puerto_rico text(was:situated:in) americas -saint_vincent_and_the_grenadines text(is:situated:in) caribbean -saint_vincent_and_the_grenadines text(is:located:in) americas -venezuela text(was:a:neighbor:of) brazil -venezuela text(is:a:neighbor:of) guyana -venezuela text(is:a:neighboring:state:to) colombia -grenada text(was:located:in) caribbean -grenada text(could:be:found:in) americas -united_states text(was:a:neighboring:state:to) canada -united_states text(borders:with) mexico -tokelau text(can:be:found:in) polynesia -tokelau text(was:positioned:in) oceania -slovenia text(is:positioned:in) southern_europe -slovenia text(neighbors:withborders) austria -slovenia text(neighbors) croatia -slovenia text(is:butted:against) italy -slovenia text(was:butted:against) hungary -philippines text(was:sited:in) south-eastern_asia -philippines text(is:sited:in) asia -micronesia text(is:placed:in) micronesia -micronesia text(was:placed:in) oceania +puerto_rico text(is:placed:in) americas +saint_vincent_and_the_grenadines text(was:placed:in) caribbean +saint_vincent_and_the_grenadines text(can:be:found:in) americas +venezuela text(borders) brazil +venezuela text(is:butted:against) guyana +venezuela text(was:butted:against) colombia +grenada text(was:situated:in) caribbean +grenada text(is:situated:in) americas +united_states text(was:adjacent:to) canada +united_states text(is:adjacent:to) mexico +tokelau text(is:located:in) polynesia +tokelau text(was:located:in) oceania +slovenia text(can:be:found:in) southern_europe +slovenia text(neighbors) austria +slovenia text(is:a:neighboring:country:of) croatia +slovenia text(was:a:neighboring:country:of) italy +slovenia text(neighbors:with) hungary +philippines text(was:positioned:in) south-eastern_asia +philippines text(is:positioned:in) asia +micronesia text(was:sited:in) micronesia +micronesia text(is:sited:in) oceania china text(was:localized:in) eastern_asia -china text(is:a:neighboring:country:of) afghanistan -china text(was:a:neighboring:country:of) bhutan -china text(was:adjacent:to) macau -china text(is:adjacent:to) india -china text(was:a:neighbor:of) kazakhstan -china text(is:a:neighbor:of) kyrgyzstan -china text(is:a:neighboring:state:to) tajikistan -china text(was:a:neighboring:state:to) laos -china text(borders:with) russia -china text(neighbors:withborders) north_korea +china text(was:a:neighbor:of) afghanistan +china text(is:a:neighbor:of) bhutan +china text(is:a:neighboring:state:to) macau +china text(was:a:neighboring:state:to) india +china text(borders:with) kazakhstan +china text(borders) kyrgyzstan +china text(is:butted:against) tajikistan +china text(was:butted:against) laos +china text(was:adjacent:to) russia +china text(is:adjacent:to) north_korea china text(neighbors) myanmar -china text(is:butted:against) pakistan -china text(was:butted:against) mongolia -china text(is:a:neighboring:country:of) hong_kong -china text(was:a:neighboring:country:of) vietnam +china text(is:a:neighboring:country:of) pakistan +china text(was:a:neighboring:country:of) mongolia +china text(neighbors:with) hong_kong +china text(was:a:neighbor:of) vietnam gabon text(is:localized:in) middle_africa -gabon text(was:adjacent:to) equatorial_guinea -gabon text(is:adjacent:to) republic_of_the_congo -gabon text(was:a:neighbor:of) cameroon +gabon text(is:a:neighbor:of) equatorial_guinea +gabon text(is:a:neighboring:state:to) republic_of_the_congo +gabon text(was:a:neighboring:state:to) cameroon united_states_minor_outlying_islands text(was:present:in) northern_america united_states_minor_outlying_islands text(is:present:in) americas andorra text(is:still:in) southern_europe -andorra text(is:a:neighbor:of) spain -andorra text(is:a:neighboring:state:to) france +andorra text(borders:with) spain +andorra text(borders) france samoa text(was:still:in) polynesia samoa text(was:currently:in) oceania gambia text(is:currently:in) western_africa -gambia text(was:situated:in) africa -gambia text(was:a:neighboring:state:to) senegal -palestine text(is:situated:in) western_asia -palestine text(is:located:in) asia -palestine text(borders:with) jordan -palestine text(neighbors:withborders) egypt -palestine text(neighbors) israel -réunion text(was:located:in) eastern_africa -réunion text(could:be:found:in) africa -france text(can:be:found:in) western_europe -france text(is:butted:against) germany -france text(was:butted:against) luxembourg -france text(is:a:neighboring:country:of) italy -france text(was:a:neighboring:country:of) andorra -france text(was:adjacent:to) switzerland -france text(is:adjacent:to) monaco -france text(was:a:neighbor:of) belgium -france text(is:a:neighbor:of) spain -mongolia text(was:positioned:in) eastern_asia -mongolia text(is:positioned:in) asia -mongolia text(is:a:neighboring:state:to) china -mongolia text(was:a:neighboring:state:to) russia -lithuania text(was:sited:in) northern_europe -lithuania text(borders:with) poland -lithuania text(neighbors:withborders) latvia -lithuania text(neighbors) belarus -lithuania text(is:butted:against) russia -cayman_islands text(is:sited:in) caribbean -cayman_islands text(is:placed:in) americas -saint_lucia text(was:placed:in) caribbean +gambia text(is:placed:in) africa +gambia text(is:butted:against) senegal +palestine text(was:placed:in) western_asia +palestine text(can:be:found:in) asia +palestine text(was:butted:against) jordan +palestine text(was:adjacent:to) egypt +palestine text(is:adjacent:to) israel +réunion text(was:situated:in) eastern_africa +réunion text(is:situated:in) africa +france text(is:located:in) western_europe +france text(neighbors) germany +france text(is:a:neighboring:country:of) luxembourg +france text(was:a:neighboring:country:of) italy +france text(neighbors:with) andorra +france text(was:a:neighbor:of) switzerland +france text(is:a:neighbor:of) monaco +france text(is:a:neighboring:state:to) belgium +france text(was:a:neighboring:state:to) spain +mongolia text(was:located:in) eastern_asia +mongolia text(can:be:found:in) asia +mongolia text(borders:with) china +mongolia text(borders) russia +lithuania text(was:positioned:in) northern_europe +lithuania text(is:butted:against) poland +lithuania text(was:butted:against) latvia +lithuania text(was:adjacent:to) belarus +lithuania text(is:adjacent:to) russia +cayman_islands text(is:positioned:in) caribbean +cayman_islands text(was:sited:in) americas +saint_lucia text(is:sited:in) caribbean saint_lucia text(was:localized:in) americas curaçao text(is:localized:in) caribbean curaçao text(was:present:in) americas @@ -959,18 +959,18 @@ southern_asia text(is:still:in) asia middle_africa text(was:still:in) africa northern_europe text(was:currently:in) europe southern_europe text(is:currently:in) europe -western_asia text(was:situated:in) asia -south_america text(is:situated:in) americas -polynesia text(is:located:in) oceania -australia_and_new_zealand text(was:located:in) oceania -western_europe text(could:be:found:in) europe -eastern_africa text(can:be:found:in) africa -western_africa text(was:positioned:in) africa -eastern_europe text(is:positioned:in) europe -central_america text(was:sited:in) americas -northern_america text(is:sited:in) americas -south-eastern_asia text(is:placed:in) asia -southern_africa text(was:placed:in) africa +western_asia text(is:placed:in) asia +south_america text(was:placed:in) americas +polynesia text(can:be:found:in) oceania +australia_and_new_zealand text(was:situated:in) oceania +western_europe text(is:situated:in) europe +eastern_africa text(is:located:in) africa +western_africa text(was:located:in) africa +eastern_europe text(can:be:found:in) europe +central_america text(was:positioned:in) americas +northern_america text(is:positioned:in) americas +south-eastern_asia text(was:sited:in) asia +southern_africa text(is:sited:in) africa eastern_asia text(was:localized:in) asia northern_africa text(is:localized:in) africa melanesia text(was:present:in) oceania diff --git a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_relation2text_traintest.tsv b/deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_relation2text_traintest.tsv deleted file mode 100644 index 8b93d13..0000000 --- a/deepsoftlog/experiments/mentions_countries/data/raw/countries_S3_relation2text_traintest.tsv +++ /dev/null @@ -1,979 +0,0 @@ -palau text(is:positioned:in) micronesia -palau text(was:localized:in) oceania -maldives text(is:localized:in) southern_asia -maldives text(was:present:in) asia -brunei text(is:present:in) south-eastern_asia -brunei text(is:still:in) asia -brunei text(was:a:neighboring:country:of) malaysia -japan text(was:still:in) eastern_asia -japan text(was:currently:in) asia -netherlands text(was:a:neighbor:of) belgium -turkey text(is:a:neighbor:of) armenia -turkey text(is:a:neighboring:state:to) azerbaijan -turkey text(was:a:neighboring:state:to) iran -turkey text(borders:with) greece -turkey text(neighbors:withborders) georgia -angola text(is:currently:in) middle_africa -angola text(neighbors) dr_congo -angola text(is:butted:against) namibia -angola text(was:butted:against) republic_of_the_congo -armenia text(was:situated:in) western_asia -armenia text(is:a:neighboring:country:of) georgia -armenia text(was:a:neighboring:country:of) azerbaijan -armenia text(was:a:neighbor:of) iran -armenia text(is:a:neighbor:of) turkey -antigua_and_barbuda text(is:situated:in) caribbean -antigua_and_barbuda text(is:located:in) americas -swaziland text(was:located:in) southern_africa -swaziland text(is:a:neighboring:state:to) south_africa -swaziland text(was:a:neighboring:state:to) mozambique -wallis_and_futuna text(could:be:found:in) polynesia -wallis_and_futuna text(can:be:found:in) oceania -uruguay text(was:positioned:in) south_america -uruguay text(is:positioned:in) americas -uruguay text(borders:with) argentina -uruguay text(neighbors:withborders) brazil -cyprus text(was:localized:in) eastern_europe -cyprus text(is:localized:in) europe -cyprus text(neighbors) united_kingdom -ireland text(was:present:in) northern_europe -ireland text(is:present:in) europe -ireland text(is:butted:against) united_kingdom -burundi text(is:still:in) eastern_africa -burundi text(was:butted:against) dr_congo -burundi text(is:a:neighboring:country:of) rwanda -central_african_republic text(was:still:in) middle_africa -central_african_republic text(was:a:neighboring:country:of) chad -central_african_republic text(was:a:neighbor:of) republic_of_the_congo -central_african_republic text(is:a:neighbor:of) dr_congo -central_african_republic text(is:a:neighboring:state:to) south_sudan -central_african_republic text(was:a:neighboring:state:to) cameroon -tonga text(was:currently:in) polynesia -tonga text(is:currently:in) oceania -ivory_coast text(was:situated:in) western_africa -ivory_coast text(borders:with) liberia -ivory_coast text(neighbors:withborders) mali -ivory_coast text(neighbors) guinea -sierra_leone text(is:butted:against) liberia -sierra_leone text(was:butted:against) guinea -mayotte text(is:situated:in) eastern_africa -mayotte text(is:located:in) africa -poland text(is:a:neighboring:country:of) ukraine -poland text(was:a:neighboring:country:of) slovakia -poland text(was:a:neighbor:of) belarus -poland text(is:a:neighbor:of) russia -poland text(is:a:neighboring:state:to) lithuania -uzbekistan text(was:located:in) central_asia -uzbekistan text(was:a:neighboring:state:to) afghanistan -uzbekistan text(borders:with) turkmenistan -uzbekistan text(neighbors:withborders) kyrgyzstan -uzbekistan text(neighbors) tajikistan -turks_and_caicos_islands text(could:be:found:in) caribbean -turks_and_caicos_islands text(can:be:found:in) americas -new_caledonia text(was:positioned:in) melanesia -new_caledonia text(is:positioned:in) oceania -pakistan text(is:butted:against) china -pakistan text(was:butted:against) afghanistan -pakistan text(is:a:neighboring:country:of) iran -pakistan text(was:a:neighboring:country:of) india -argentina text(was:localized:in) south_america -argentina text(was:a:neighbor:of) bolivia -argentina text(is:a:neighbor:of) chile -argentina text(is:a:neighboring:state:to) brazil -argentina text(was:a:neighboring:state:to) paraguay -argentina text(borders:with) uruguay -cuba text(is:localized:in) caribbean -cuba text(was:present:in) americas -serbia text(neighbors:withborders) macedonia -serbia text(neighbors) montenegro -serbia text(is:butted:against) bosnia_and_herzegovina -serbia text(was:butted:against) croatia -serbia text(is:a:neighboring:country:of) romania -vietnam text(is:present:in) south-eastern_asia -vietnam text(is:still:in) asia -vietnam text(was:a:neighboring:country:of) cambodia -vietnam text(was:a:neighbor:of) laos -vietnam text(is:a:neighbor:of) china -niue text(was:still:in) polynesia -niue text(was:currently:in) oceania -canada text(is:currently:in) northern_america -slovakia text(is:a:neighboring:state:to) ukraine -slovakia text(was:a:neighboring:state:to) poland -slovakia text(borders:with) austria -mozambique text(neighbors:withborders) swaziland -mozambique text(neighbors) malawi -mozambique text(is:butted:against) south_africa -aruba text(was:situated:in) caribbean -aruba text(is:situated:in) americas -bolivia text(is:located:in) south_america -bolivia text(was:butted:against) chile -bolivia text(is:a:neighboring:country:of) brazil -bolivia text(was:a:neighboring:country:of) paraguay -bolivia text(was:a:neighbor:of) argentina -bolivia text(is:a:neighbor:of) peru -colombia text(was:located:in) south_america -colombia text(is:a:neighboring:state:to) brazil -colombia text(was:a:neighboring:state:to) peru -fiji text(could:be:found:in) melanesia -fiji text(can:be:found:in) oceania -republic_of_the_congo text(borders:with) gabon -republic_of_the_congo text(neighbors:withborders) dr_congo -republic_of_the_congo text(neighbors) angola -republic_of_the_congo text(is:butted:against) cameroon -republic_of_the_congo text(was:butted:against) central_african_republic -el_salvador text(was:positioned:in) central_america -el_salvador text(is:a:neighboring:country:of) guatemala -el_salvador text(was:a:neighboring:country:of) honduras -madagascar text(is:positioned:in) eastern_africa -madagascar text(was:localized:in) africa -australia text(is:localized:in) australia_and_new_zealand -australia text(was:present:in) oceania -namibia text(is:present:in) southern_africa -namibia text(is:still:in) africa -namibia text(was:a:neighbor:of) angola -namibia text(is:a:neighbor:of) south_africa -tuvalu text(was:still:in) polynesia -tuvalu text(was:currently:in) oceania -svalbard_and_jan_mayen text(is:currently:in) northern_europe -svalbard_and_jan_mayen text(was:situated:in) europe -isle_of_man text(is:situated:in) northern_europe -isle_of_man text(is:located:in) europe -vatican_city text(was:located:in) southern_europe -vatican_city text(could:be:found:in) europe -vatican_city text(is:a:neighboring:state:to) italy -british_indian_ocean_territory text(can:be:found:in) eastern_africa -british_indian_ocean_territory text(was:positioned:in) africa -nigeria text(is:positioned:in) western_africa -nigeria text(was:localized:in) africa -nigeria text(was:a:neighboring:state:to) chad -nigeria text(borders:with) niger -nigeria text(neighbors:withborders) cameroon -nigeria text(neighbors) benin -northern_mariana_islands text(is:localized:in) micronesia -northern_mariana_islands text(was:present:in) oceania -belize text(is:present:in) central_america -belize text(is:butted:against) guatemala -belize text(was:butted:against) mexico -cocos_keeling_islands text(is:still:in) australia_and_new_zealand -cocos_keeling_islands text(was:still:in) oceania -laos text(was:currently:in) south-eastern_asia -laos text(is:a:neighboring:country:of) china -laos text(was:a:neighboring:country:of) cambodia -laos text(was:a:neighbor:of) vietnam -western_sahara text(is:currently:in) northern_africa -western_sahara text(is:a:neighbor:of) algeria -western_sahara text(is:a:neighboring:state:to) mauritania -western_sahara text(was:a:neighboring:state:to) morocco -christmas_island text(was:situated:in) australia_and_new_zealand -christmas_island text(is:situated:in) oceania -são_tomé_and_príncipe text(is:located:in) middle_africa -são_tomé_and_príncipe text(was:located:in) africa -guinea text(could:be:found:in) western_africa -guinea text(borders:with) sierra_leone -guinea text(neighbors:withborders) mali -guinea text(neighbors) liberia -guinea text(is:butted:against) senegal -guinea text(was:butted:against) ivory_coast -costa_rica text(can:be:found:in) central_america -malta text(was:positioned:in) southern_europe -malta text(is:positioned:in) europe -portugal text(was:localized:in) southern_europe -romania text(is:localized:in) eastern_europe -romania text(is:a:neighboring:country:of) ukraine -romania text(was:a:neighboring:country:of) moldova -romania text(was:a:neighbor:of) serbia -san_marino text(was:present:in) southern_europe -san_marino text(is:present:in) europe -san_marino text(is:a:neighbor:of) italy -mauritania text(is:still:in) western_africa -mauritania text(was:still:in) africa -mauritania text(is:a:neighboring:state:to) algeria -mauritania text(was:a:neighboring:state:to) mali -mauritania text(borders:with) western_sahara -mauritania text(neighbors:withborders) senegal -trinidad_and_tobago text(was:currently:in) caribbean -trinidad_and_tobago text(is:currently:in) americas -bahrain text(was:situated:in) western_asia -bahrain text(is:situated:in) asia -south_georgia text(is:located:in) south_america -south_georgia text(was:located:in) americas -iceland text(could:be:found:in) northern_europe -iceland text(can:be:found:in) europe -dr_congo text(was:positioned:in) middle_africa -dr_congo text(neighbors) uganda -dr_congo text(is:butted:against) republic_of_the_congo -dr_congo text(was:butted:against) central_african_republic -dr_congo text(is:a:neighboring:country:of) angola -dr_congo text(was:a:neighboring:country:of) rwanda -dr_congo text(was:a:neighbor:of) south_sudan -dr_congo text(is:a:neighbor:of) burundi -seychelles text(is:positioned:in) eastern_africa -seychelles text(was:localized:in) africa -kyrgyzstan text(is:a:neighboring:state:to) china -kyrgyzstan text(was:a:neighboring:state:to) tajikistan -kyrgyzstan text(borders:with) uzbekistan -faroe_islands text(is:localized:in) northern_europe -faroe_islands text(was:present:in) europe -jamaica text(is:present:in) caribbean -jamaica text(is:still:in) americas -american_samoa text(was:still:in) polynesia -american_samoa text(was:currently:in) oceania -lesotho text(is:currently:in) southern_africa -lesotho text(was:situated:in) africa -lesotho text(neighbors:withborders) south_africa -sri_lanka text(neighbors) india -belgium text(is:situated:in) western_europe -belgium text(is:butted:against) luxembourg -belgium text(was:butted:against) france -belgium text(is:a:neighboring:country:of) netherlands -qatar text(is:located:in) western_asia -solomon_islands text(was:located:in) melanesia -solomon_islands text(could:be:found:in) oceania -india text(can:be:found:in) southern_asia -india text(was:a:neighboring:country:of) afghanistan -india text(was:a:neighbor:of) bangladesh -india text(is:a:neighbor:of) china -india text(is:a:neighboring:state:to) nepal -india text(was:a:neighboring:state:to) pakistan -india text(borders:with) sri_lanka -morocco text(neighbors:withborders) algeria -morocco text(neighbors) western_sahara -kenya text(was:positioned:in) eastern_africa -kenya text(is:butted:against) uganda -kenya text(was:butted:against) somalia -kenya text(is:a:neighboring:country:of) south_sudan -kenya text(was:a:neighboring:country:of) ethiopia -south_sudan text(is:positioned:in) middle_africa -south_sudan text(was:a:neighbor:of) uganda -south_sudan text(is:a:neighbor:of) dr_congo -south_sudan text(is:a:neighboring:state:to) kenya -south_sudan text(was:a:neighboring:state:to) central_african_republic -south_sudan text(borders:with) ethiopia -tajikistan text(was:localized:in) central_asia -tajikistan text(neighbors:withborders) china -tajikistan text(neighbors) kyrgyzstan -tajikistan text(is:butted:against) afghanistan -tajikistan text(was:butted:against) uzbekistan -marshall_islands text(is:localized:in) micronesia -marshall_islands text(was:present:in) oceania -cameroon text(is:present:in) middle_africa -cameroon text(is:a:neighboring:country:of) chad -cameroon text(was:a:neighboring:country:of) republic_of_the_congo -cameroon text(was:a:neighbor:of) gabon -cameroon text(is:a:neighbor:of) equatorial_guinea -cameroon text(is:a:neighboring:state:to) central_african_republic -cameroon text(was:a:neighboring:state:to) nigeria -nauru text(is:still:in) micronesia -nauru text(was:still:in) oceania -chad text(was:currently:in) middle_africa -chad text(borders:with) libya -chad text(neighbors:withborders) niger -chad text(neighbors) south_sudan -chad text(is:butted:against) cameroon -chad text(was:butted:against) central_african_republic -chad text(is:a:neighboring:country:of) nigeria -vanuatu text(is:currently:in) melanesia -vanuatu text(was:situated:in) oceania -cape_verde text(is:situated:in) western_africa -cape_verde text(is:located:in) africa -falkland_islands text(was:located:in) south_america -falkland_islands text(could:be:found:in) americas -liberia text(can:be:found:in) western_africa -liberia text(was:a:neighboring:country:of) ivory_coast -liberia text(was:a:neighbor:of) sierra_leone -liberia text(is:a:neighbor:of) guinea -cambodia text(was:positioned:in) south-eastern_asia -cambodia text(is:a:neighboring:state:to) vietnam -cambodia text(was:a:neighboring:state:to) laos -comoros text(is:positioned:in) eastern_africa -comoros text(was:localized:in) africa -guam text(is:localized:in) micronesia -guam text(was:present:in) oceania -bahamas text(is:present:in) caribbean -bahamas text(is:still:in) americas -lebanon text(was:still:in) western_asia -lebanon text(was:currently:in) asia -lebanon text(borders:with) israel -sint_maarten text(is:currently:in) caribbean -sint_maarten text(was:situated:in) americas -ethiopia text(is:situated:in) eastern_africa -ethiopia text(neighbors:withborders) somalia -ethiopia text(neighbors) kenya -ethiopia text(is:butted:against) south_sudan -united_states_virgin_islands text(is:located:in) caribbean -united_states_virgin_islands text(was:located:in) americas -libya text(could:be:found:in) northern_africa -libya text(was:butted:against) chad -libya text(is:a:neighboring:country:of) tunisia -libya text(was:a:neighboring:country:of) niger -libya text(was:a:neighbor:of) algeria -french_polynesia text(can:be:found:in) polynesia -french_polynesia text(was:positioned:in) oceania -somalia text(is:positioned:in) eastern_africa -somalia text(is:a:neighbor:of) kenya -somalia text(is:a:neighboring:state:to) ethiopia -saint_barthélemy text(was:localized:in) caribbean -saint_barthélemy text(is:localized:in) americas -russia text(was:present:in) eastern_europe -russia text(was:a:neighboring:state:to) ukraine -russia text(borders:with) belarus -russia text(neighbors:withborders) china -russia text(neighbors) poland -russia text(is:butted:against) azerbaijan -russia text(was:butted:against) lithuania -russia text(is:a:neighboring:country:of) estonia -russia text(was:a:neighboring:country:of) north_korea -russia text(was:a:neighbor:of) finland -russia text(is:a:neighbor:of) latvia -russia text(is:a:neighboring:state:to) georgia -new_zealand text(is:present:in) australia_and_new_zealand -new_zealand text(is:still:in) oceania -papua_new_guinea text(was:still:in) melanesia -north_korea text(was:a:neighboring:state:to) china -north_korea text(borders:with) south_korea -north_korea text(neighbors:withborders) russia -latvia text(was:currently:in) northern_europe -latvia text(neighbors) lithuania -latvia text(is:butted:against) belarus -latvia text(was:butted:against) russia -latvia text(is:a:neighboring:country:of) estonia -oman text(is:currently:in) western_asia -oman text(was:a:neighboring:country:of) yemen -oman text(was:a:neighbor:of) united_arab_emirates -saint_pierre_and_miquelon text(was:situated:in) northern_america -saint_pierre_and_miquelon text(is:situated:in) americas -martinique text(is:located:in) caribbean -martinique text(was:located:in) americas -united_kingdom text(could:be:found:in) northern_europe -united_kingdom text(can:be:found:in) europe -united_kingdom text(is:a:neighbor:of) ireland -israel text(was:positioned:in) western_asia -israel text(is:a:neighboring:state:to) lebanon -jersey text(is:positioned:in) northern_europe -jersey text(was:localized:in) europe -pitcairn_islands text(is:localized:in) polynesia -pitcairn_islands text(was:present:in) oceania -togo text(is:present:in) western_africa -togo text(was:a:neighboring:state:to) benin -kiribati text(is:still:in) micronesia -kiribati text(was:still:in) oceania -iran text(was:currently:in) southern_asia -iran text(borders:with) afghanistan -iran text(neighbors:withborders) turkmenistan -iran text(neighbors) turkey -iran text(is:butted:against) armenia -iran text(was:butted:against) azerbaijan -iran text(is:a:neighboring:country:of) pakistan -dominican_republic text(is:currently:in) caribbean -dominican_republic text(was:situated:in) americas -dominican_republic text(was:a:neighboring:country:of) haiti -bermuda text(is:situated:in) northern_america -bermuda text(is:located:in) americas -chile text(was:a:neighbor:of) argentina -chile text(is:a:neighbor:of) bolivia -chile text(is:a:neighboring:state:to) peru -saint_kitts_and_nevis text(was:located:in) caribbean -saint_kitts_and_nevis text(could:be:found:in) americas -equatorial_guinea text(can:be:found:in) middle_africa -equatorial_guinea text(was:positioned:in) africa -equatorial_guinea text(was:a:neighboring:state:to) gabon -equatorial_guinea text(borders:with) cameroon -niger text(is:positioned:in) western_africa -niger text(neighbors:withborders) chad -niger text(neighbors) libya -niger text(is:butted:against) benin -niger text(was:butted:against) mali -niger text(is:a:neighboring:country:of) algeria -niger text(was:a:neighboring:country:of) nigeria -anguilla text(was:localized:in) caribbean -anguilla text(is:localized:in) americas -rwanda text(was:present:in) eastern_africa -rwanda text(was:a:neighbor:of) burundi -rwanda text(is:a:neighbor:of) uganda -rwanda text(is:a:neighboring:state:to) dr_congo -united_arab_emirates text(is:present:in) western_asia -united_arab_emirates text(was:a:neighboring:state:to) oman -estonia text(is:still:in) northern_europe -estonia text(was:still:in) europe -estonia text(borders:with) latvia -estonia text(neighbors:withborders) russia -greece text(was:currently:in) southern_europe -greece text(neighbors) albania -greece text(is:butted:against) macedonia -greece text(was:butted:against) turkey -senegal text(is:currently:in) western_africa -senegal text(was:situated:in) africa -senegal text(is:a:neighboring:country:of) mauritania -senegal text(was:a:neighboring:country:of) mali -senegal text(was:a:neighbor:of) gambia -senegal text(is:a:neighbor:of) guinea -guadeloupe text(is:situated:in) caribbean -guadeloupe text(is:located:in) americas -british_virgin_islands text(was:located:in) caribbean -british_virgin_islands text(could:be:found:in) americas -cook_islands text(can:be:found:in) polynesia -cook_islands text(was:positioned:in) oceania -uganda text(is:positioned:in) eastern_africa -uganda text(is:a:neighboring:state:to) dr_congo -uganda text(was:a:neighboring:state:to) kenya -uganda text(borders:with) south_sudan -uganda text(neighbors:withborders) rwanda -macedonia text(was:localized:in) southern_europe -macedonia text(neighbors) greece -macedonia text(is:butted:against) albania -macedonia text(was:butted:against) serbia -tunisia text(is:localized:in) northern_africa -tunisia text(was:present:in) africa -tunisia text(is:a:neighboring:country:of) libya -tunisia text(was:a:neighboring:country:of) algeria -brazil text(is:present:in) south_america -brazil text(was:a:neighbor:of) bolivia -brazil text(is:a:neighbor:of) colombia -brazil text(is:a:neighboring:state:to) paraguay -brazil text(was:a:neighboring:state:to) uruguay -brazil text(borders:with) argentina -brazil text(neighbors:withborders) peru -paraguay text(is:still:in) south_america -paraguay text(was:still:in) americas -paraguay text(neighbors) argentina -paraguay text(is:butted:against) brazil -paraguay text(was:butted:against) bolivia -finland text(was:currently:in) northern_europe -finland text(is:a:neighboring:country:of) sweden -finland text(was:a:neighboring:country:of) russia -montenegro text(is:currently:in) southern_europe -montenegro text(was:a:neighbor:of) bosnia_and_herzegovina -montenegro text(is:a:neighbor:of) croatia -montenegro text(is:a:neighboring:state:to) serbia -montenegro text(was:a:neighboring:state:to) albania -peru text(was:situated:in) south_america -peru text(borders:with) bolivia -peru text(neighbors:withborders) chile -peru text(neighbors) brazil -peru text(is:butted:against) colombia -montserrat text(is:situated:in) caribbean -montserrat text(is:located:in) americas -ukraine text(was:located:in) eastern_europe -ukraine text(was:butted:against) slovakia -ukraine text(is:a:neighboring:country:of) belarus -ukraine text(was:a:neighboring:country:of) poland -ukraine text(was:a:neighbor:of) russia -ukraine text(is:a:neighbor:of) moldova -ukraine text(is:a:neighboring:state:to) romania -dominica text(could:be:found:in) caribbean -dominica text(can:be:found:in) americas -turkmenistan text(was:a:neighboring:state:to) afghanistan -turkmenistan text(borders:with) uzbekistan -turkmenistan text(neighbors:withborders) iran -guernsey text(was:positioned:in) northern_europe -guernsey text(is:positioned:in) europe -gibraltar text(was:localized:in) southern_europe -switzerland text(is:localized:in) western_europe -switzerland text(neighbors) italy -switzerland text(is:butted:against) austria -switzerland text(was:butted:against) france -switzerland text(is:a:neighboring:country:of) liechtenstein -austria text(was:present:in) western_europe -austria text(was:a:neighboring:country:of) slovakia -austria text(was:a:neighbor:of) slovenia -austria text(is:a:neighbor:of) italy -austria text(is:a:neighboring:state:to) switzerland -austria text(was:a:neighboring:state:to) liechtenstein -malawi text(is:present:in) eastern_africa -malawi text(borders:with) mozambique -hong_kong text(neighbors:withborders) china -liechtenstein text(is:still:in) western_europe -liechtenstein text(was:still:in) europe -liechtenstein text(neighbors) switzerland -liechtenstein text(is:butted:against) austria -barbados text(was:currently:in) caribbean -barbados text(is:currently:in) americas -georgia text(was:situated:in) western_asia -georgia text(was:butted:against) armenia -georgia text(is:a:neighboring:country:of) azerbaijan -georgia text(was:a:neighboring:country:of) russia -georgia text(was:a:neighbor:of) turkey -albania text(is:situated:in) southern_europe -albania text(is:located:in) europe -albania text(is:a:neighbor:of) montenegro -albania text(is:a:neighboring:state:to) macedonia -albania text(was:a:neighboring:state:to) greece -kuwait text(was:located:in) western_asia -south_africa text(could:be:found:in) southern_africa -south_africa text(borders:with) mozambique -south_africa text(neighbors:withborders) swaziland -south_africa text(neighbors) namibia -south_africa text(is:butted:against) lesotho -haiti text(can:be:found:in) caribbean -haiti text(was:positioned:in) americas -haiti text(was:butted:against) dominican_republic -afghanistan text(is:positioned:in) southern_asia -afghanistan text(is:a:neighboring:country:of) turkmenistan -afghanistan text(was:a:neighboring:country:of) china -afghanistan text(was:a:neighbor:of) tajikistan -afghanistan text(is:a:neighbor:of) uzbekistan -afghanistan text(is:a:neighboring:state:to) iran -afghanistan text(was:a:neighboring:state:to) pakistan -singapore text(was:localized:in) south-eastern_asia -singapore text(is:localized:in) asia -benin text(was:present:in) western_africa -benin text(borders:with) niger -benin text(neighbors:withborders) togo -benin text(neighbors) nigeria -åland_islands text(is:present:in) northern_europe -åland_islands text(is:still:in) europe -croatia text(was:still:in) southern_europe -croatia text(is:butted:against) slovenia -croatia text(was:butted:against) bosnia_and_herzegovina -croatia text(is:a:neighboring:country:of) serbia -croatia text(was:a:neighboring:country:of) montenegro -sweden text(was:currently:in) northern_europe -sweden text(was:a:neighbor:of) finland -mexico text(is:a:neighbor:of) belize -mexico text(is:a:neighboring:state:to) guatemala -greenland text(is:currently:in) northern_america -greenland text(was:situated:in) americas -norfolk_island text(is:situated:in) australia_and_new_zealand -norfolk_island text(is:located:in) oceania -nepal text(was:located:in) southern_asia -nepal text(could:be:found:in) asia -nepal text(was:a:neighboring:state:to) china -nepal text(borders:with) india -guatemala text(neighbors:withborders) belize -guatemala text(neighbors) el_salvador -guatemala text(is:butted:against) mexico -guatemala text(was:butted:against) honduras -south_korea text(can:be:found:in) eastern_asia -south_korea text(is:a:neighboring:country:of) north_korea -moldova text(was:positioned:in) eastern_europe -moldova text(is:positioned:in) europe -moldova text(was:a:neighboring:country:of) ukraine -moldova text(was:a:neighbor:of) romania -mauritius text(was:localized:in) eastern_africa -mauritius text(is:localized:in) africa -belarus text(is:a:neighbor:of) ukraine -belarus text(is:a:neighboring:state:to) poland -belarus text(was:a:neighboring:state:to) lithuania -belarus text(borders:with) russia -belarus text(neighbors:withborders) latvia -bangladesh text(neighbors) india -malaysia text(was:present:in) south-eastern_asia -malaysia text(is:butted:against) brunei -bosnia_and_herzegovina text(is:present:in) southern_europe -bosnia_and_herzegovina text(was:butted:against) serbia -bosnia_and_herzegovina text(is:a:neighboring:country:of) croatia -bosnia_and_herzegovina text(was:a:neighboring:country:of) montenegro -luxembourg text(is:still:in) western_europe -luxembourg text(was:a:neighbor:of) belgium -luxembourg text(is:a:neighbor:of) france -italy text(was:still:in) southern_europe -italy text(was:currently:in) europe -italy text(is:a:neighboring:state:to) slovenia -italy text(was:a:neighboring:state:to) switzerland -italy text(borders:with) austria -italy text(neighbors:withborders) france -italy text(neighbors) vatican_city -italy text(is:butted:against) san_marino -azerbaijan text(is:currently:in) western_asia -azerbaijan text(was:butted:against) turkey -azerbaijan text(is:a:neighboring:country:of) armenia -azerbaijan text(was:a:neighboring:country:of) russia -azerbaijan text(was:a:neighbor:of) iran -azerbaijan text(is:a:neighbor:of) georgia -honduras text(was:situated:in) central_america -honduras text(is:a:neighboring:state:to) guatemala -honduras text(was:a:neighboring:state:to) el_salvador -mali text(is:situated:in) western_africa -mali text(borders:with) guinea -mali text(neighbors:withborders) mauritania -mali text(neighbors) niger -mali text(is:butted:against) senegal -mali text(was:butted:against) algeria -mali text(is:a:neighboring:country:of) ivory_coast -taiwan text(is:located:in) eastern_asia -taiwan text(was:located:in) asia -algeria text(could:be:found:in) northern_africa -algeria text(was:a:neighboring:country:of) libya -algeria text(was:a:neighbor:of) tunisia -algeria text(is:a:neighbor:of) mauritania -algeria text(is:a:neighboring:state:to) morocco -algeria text(was:a:neighboring:state:to) niger -algeria text(borders:with) mali -algeria text(neighbors:withborders) western_sahara -yemen text(can:be:found:in) western_asia -yemen text(neighbors) oman -puerto_rico text(was:positioned:in) caribbean -puerto_rico text(is:positioned:in) americas -saint_vincent_and_the_grenadines text(was:localized:in) caribbean -saint_vincent_and_the_grenadines text(is:localized:in) americas -grenada text(was:present:in) caribbean -grenada text(is:present:in) americas -tokelau text(is:still:in) polynesia -tokelau text(was:still:in) oceania -slovenia text(was:currently:in) southern_europe -slovenia text(is:butted:against) austria -slovenia text(was:butted:against) croatia -slovenia text(is:a:neighboring:country:of) italy -philippines text(is:currently:in) south-eastern_asia -philippines text(was:situated:in) asia -micronesia text(is:situated:in) micronesia -micronesia text(is:located:in) oceania -china text(was:located:in) eastern_asia -china text(was:a:neighboring:country:of) afghanistan -china text(was:a:neighbor:of) india -china text(is:a:neighbor:of) kyrgyzstan -china text(is:a:neighboring:state:to) tajikistan -china text(was:a:neighboring:state:to) laos -china text(borders:with) russia -china text(neighbors:withborders) north_korea -china text(neighbors) pakistan -china text(is:butted:against) hong_kong -china text(was:butted:against) vietnam -gabon text(could:be:found:in) middle_africa -gabon text(is:a:neighboring:country:of) equatorial_guinea -gabon text(was:a:neighboring:country:of) republic_of_the_congo -gabon text(was:a:neighbor:of) cameroon -united_states_minor_outlying_islands text(can:be:found:in) northern_america -united_states_minor_outlying_islands text(was:positioned:in) americas -andorra text(is:positioned:in) southern_europe -andorra text(is:a:neighbor:of) france -samoa text(was:localized:in) polynesia -samoa text(is:localized:in) oceania -gambia text(was:present:in) western_africa -gambia text(is:present:in) africa -gambia text(is:a:neighboring:state:to) senegal -palestine text(is:still:in) western_asia -palestine text(was:still:in) asia -palestine text(was:a:neighboring:state:to) israel -réunion text(was:currently:in) eastern_africa -réunion text(is:currently:in) africa -france text(was:situated:in) western_europe -france text(borders:with) luxembourg -france text(neighbors:withborders) italy -france text(neighbors) andorra -france text(is:butted:against) switzerland -france text(was:butted:against) belgium -lithuania text(is:situated:in) northern_europe -lithuania text(is:a:neighboring:country:of) poland -lithuania text(was:a:neighboring:country:of) latvia -lithuania text(was:a:neighbor:of) belarus -lithuania text(is:a:neighbor:of) russia -cayman_islands text(is:located:in) caribbean -cayman_islands text(was:located:in) americas -saint_lucia text(could:be:found:in) caribbean -saint_lucia text(can:be:found:in) americas -curaçao text(was:positioned:in) caribbean -curaçao text(is:positioned:in) americas -caribbean text(was:localized:in) americas -southern_asia text(is:localized:in) asia -middle_africa text(was:present:in) africa -northern_europe text(is:present:in) europe -southern_europe text(is:still:in) europe -western_asia text(was:still:in) asia -south_america text(was:currently:in) americas -polynesia text(is:currently:in) oceania -australia_and_new_zealand text(was:situated:in) oceania -western_europe text(is:situated:in) europe -eastern_africa text(is:located:in) africa -western_africa text(was:located:in) africa -eastern_europe text(could:be:found:in) europe -central_america text(can:be:found:in) americas -northern_america text(was:positioned:in) americas -south-eastern_asia text(is:positioned:in) asia -southern_africa text(was:localized:in) africa -eastern_asia text(is:localized:in) asia -northern_africa text(was:present:in) africa -melanesia text(is:present:in) oceania -micronesia text(is:still:in) oceania -central_asia text(was:still:in) asia -central_europe text(was:currently:in) europe -netherlands text(was:a:neighboring:country:of) germany -turkey text(was:a:neighbor:of) bulgaria -turkey text(is:a:neighbor:of) iraq -turkey text(is:a:neighboring:state:to) syria -angola text(was:a:neighboring:state:to) zambia -zambia text(is:positioned:in) eastern_africa -zambia text(borders:with) tanzania -zambia text(neighbors:withborders) mozambique -zambia text(neighbors) dr_congo -zambia text(is:butted:against) angola -zambia text(was:butted:against) botswana -zambia text(is:a:neighboring:country:of) zimbabwe -zambia text(was:a:neighboring:country:of) namibia -zambia text(was:a:neighbor:of) malawi -burundi text(is:a:neighbor:of) tanzania -central_african_republic text(is:a:neighboring:state:to) sudan -ivory_coast text(was:a:neighboring:state:to) burkina_faso -ivory_coast text(borders:with) ghana -poland text(neighbors:withborders) germany -poland text(neighbors) czechia -kazakhstan text(was:localized:in) central_asia -kazakhstan text(is:butted:against) turkmenistan -kazakhstan text(was:butted:against) china -kazakhstan text(is:a:neighboring:country:of) kyrgyzstan -kazakhstan text(was:a:neighboring:country:of) uzbekistan -kazakhstan text(was:a:neighbor:of) russia -uzbekistan text(is:a:neighbor:of) kazakhstan -serbia text(is:a:neighboring:state:to) kosovo -serbia text(was:a:neighboring:state:to) hungary -serbia text(borders:with) bulgaria -czechia text(is:localized:in) eastern_europe -czechia text(neighbors:withborders) germany -czechia text(neighbors) austria -czechia text(is:butted:against) poland -czechia text(was:butted:against) slovakia -nicaragua text(is:a:neighboring:country:of) honduras -nicaragua text(was:a:neighboring:country:of) costa_rica -canada text(was:a:neighbor:of) united_states -slovakia text(is:a:neighbor:of) hungary -slovakia text(is:a:neighboring:state:to) czechia -mozambique text(was:a:neighboring:state:to) tanzania -mozambique text(borders:with) zimbabwe -mozambique text(neighbors:withborders) zambia -colombia text(neighbors) ecuador -colombia text(is:butted:against) panama -colombia text(was:butted:against) venezuela -saudi_arabia text(is:a:neighboring:country:of) qatar -saudi_arabia text(was:a:neighboring:country:of) united_arab_emirates -saudi_arabia text(was:a:neighbor:of) jordan -saudi_arabia text(is:a:neighbor:of) yemen -saudi_arabia text(is:a:neighboring:state:to) oman -saudi_arabia text(was:a:neighboring:state:to) kuwait -saudi_arabia text(borders:with) iraq -namibia text(neighbors:withborders) zambia -namibia text(neighbors) botswana -guyana text(is:butted:against) brazil -guyana text(was:butted:against) suriname -guyana text(is:a:neighboring:country:of) venezuela -germany text(was:a:neighboring:country:of) denmark -germany text(was:a:neighbor:of) netherlands -germany text(is:a:neighbor:of) poland -germany text(is:a:neighboring:state:to) luxembourg -germany text(was:a:neighboring:state:to) belgium -germany text(borders:with) switzerland -germany text(neighbors:withborders) austria -germany text(neighbors) france -germany text(is:butted:against) czechia -burkina_faso text(was:butted:against) togo -burkina_faso text(is:a:neighboring:country:of) benin -burkina_faso text(was:a:neighboring:country:of) niger -burkina_faso text(was:a:neighbor:of) ghana -burkina_faso text(is:a:neighbor:of) mali -burkina_faso text(is:a:neighboring:state:to) ivory_coast -tanzania text(was:a:neighboring:state:to) uganda -tanzania text(borders:with) mozambique -tanzania text(neighbors:withborders) dr_congo -tanzania text(neighbors) kenya -tanzania text(is:butted:against) rwanda -tanzania text(was:butted:against) zambia -tanzania text(is:a:neighboring:country:of) malawi -tanzania text(was:a:neighboring:country:of) burundi -norway text(was:a:neighbor:of) sweden -norway text(is:a:neighbor:of) finland -norway text(is:a:neighboring:state:to) russia -laos text(was:a:neighboring:state:to) myanmar -laos text(borders:with) thailand -suriname text(was:present:in) south_america -suriname text(neighbors:withborders) brazil -suriname text(neighbors) french_guiana -suriname text(is:butted:against) guyana -egypt text(was:butted:against) libya -egypt text(is:a:neighboring:country:of) israel -egypt text(was:a:neighboring:country:of) sudan -bulgaria text(was:a:neighbor:of) macedonia -bulgaria text(is:a:neighbor:of) turkey -bulgaria text(is:a:neighboring:state:to) greece -bulgaria text(was:a:neighboring:state:to) serbia -bulgaria text(borders:with) romania -guinea text(neighbors:withborders) guinea-bissau -spain text(neighbors) morocco -spain text(is:butted:against) gibraltar -spain text(was:butted:against) andorra -spain text(is:a:neighboring:country:of) france -spain text(was:a:neighboring:country:of) portugal -costa_rica text(was:a:neighbor:of) panama -costa_rica text(is:a:neighbor:of) nicaragua -portugal text(is:a:neighboring:state:to) spain -romania text(was:a:neighboring:state:to) hungary -romania text(borders:with) bulgaria -myanmar text(neighbors:withborders) india -myanmar text(neighbors) bangladesh -myanmar text(is:butted:against) china -myanmar text(was:butted:against) laos -myanmar text(is:a:neighboring:country:of) thailand -iraq text(was:a:neighboring:country:of) turkey -iraq text(was:a:neighbor:of) saudi_arabia -iraq text(is:a:neighbor:of) iran -iraq text(is:a:neighboring:state:to) jordan -iraq text(was:a:neighboring:state:to) kuwait -iraq text(borders:with) syria -dr_congo text(neighbors:withborders) tanzania -dr_congo text(neighbors) zambia -kyrgyzstan text(is:butted:against) kazakhstan -botswana text(is:present:in) southern_africa -botswana text(was:butted:against) zimbabwe -botswana text(is:a:neighboring:country:of) namibia -botswana text(was:a:neighboring:country:of) zambia -botswana text(was:a:neighbor:of) south_africa -belgium text(is:a:neighbor:of) germany -qatar text(is:a:neighboring:state:to) saudi_arabia -syria text(is:still:in) western_asia -syria text(was:a:neighboring:state:to) israel -syria text(borders:with) turkey -syria text(neighbors:withborders) jordan -syria text(neighbors) lebanon -syria text(is:butted:against) iraq -india text(was:butted:against) bhutan -india text(is:a:neighboring:country:of) myanmar -morocco text(was:a:neighboring:country:of) spain -kenya text(was:a:neighbor:of) tanzania -south_sudan text(is:a:neighbor:of) sudan -ghana text(is:a:neighboring:state:to) burkina_faso -ghana text(was:a:neighboring:state:to) ivory_coast -ghana text(borders:with) togo -thailand text(neighbors:withborders) cambodia -thailand text(neighbors) myanmar -thailand text(is:butted:against) laos -thailand text(was:butted:against) malaysia -sudan text(is:a:neighboring:country:of) chad -sudan text(was:a:neighboring:country:of) libya -sudan text(was:a:neighbor:of) south_sudan -sudan text(is:a:neighbor:of) eritrea -sudan text(is:a:neighboring:state:to) central_african_republic -sudan text(was:a:neighboring:state:to) egypt -sudan text(borders:with) ethiopia -cambodia text(neighbors:withborders) thailand -zimbabwe text(neighbors) zambia -zimbabwe text(is:butted:against) south_africa -zimbabwe text(was:butted:against) botswana -zimbabwe text(is:a:neighboring:country:of) mozambique -lebanon text(was:a:neighboring:country:of) syria -sint_maarten text(was:a:neighbor:of) saint_martin -ethiopia text(is:a:neighbor:of) eritrea -ethiopia text(is:a:neighboring:state:to) djibouti -ethiopia text(was:a:neighboring:state:to) sudan -guinea-bissau text(was:still:in) western_africa -guinea-bissau text(was:currently:in) africa -guinea-bissau text(borders:with) guinea -guinea-bissau text(neighbors:withborders) senegal -libya text(neighbors) egypt -libya text(is:butted:against) sudan -bhutan text(is:currently:in) southern_asia -bhutan text(was:situated:in) asia -bhutan text(was:butted:against) china -bhutan text(is:a:neighboring:country:of) india -macau text(is:situated:in) eastern_asia -macau text(is:located:in) asia -macau text(was:a:neighboring:country:of) china -somalia text(was:a:neighbor:of) djibouti -russia text(is:a:neighbor:of) kazakhstan -russia text(is:a:neighboring:state:to) norway -russia text(was:a:neighboring:state:to) mongolia -panama text(was:located:in) central_america -panama text(could:be:found:in) americas -panama text(borders:with) costa_rica -panama text(neighbors:withborders) colombia -papua_new_guinea text(neighbors) indonesia -oman text(is:butted:against) saudi_arabia -israel text(was:butted:against) egypt -israel text(is:a:neighboring:country:of) jordan -israel text(was:a:neighboring:country:of) syria -togo text(was:a:neighbor:of) burkina_faso -togo text(is:a:neighbor:of) ghana -iran text(is:a:neighboring:state:to) iraq -saint_martin text(can:be:found:in) caribbean -saint_martin text(was:positioned:in) americas -saint_martin text(was:a:neighboring:state:to) sint_maarten -denmark text(borders:with) germany -kosovo text(is:positioned:in) eastern_europe -kosovo text(neighbors:withborders) serbia -kosovo text(neighbors) albania -kosovo text(is:butted:against) macedonia -kosovo text(was:butted:against) montenegro -eritrea text(is:a:neighboring:country:of) djibouti -eritrea text(was:a:neighboring:country:of) sudan -eritrea text(was:a:neighbor:of) ethiopia -niger text(is:a:neighbor:of) burkina_faso -rwanda text(is:a:neighboring:state:to) tanzania -united_arab_emirates text(was:a:neighboring:state:to) saudi_arabia -greece text(borders:with) bulgaria -senegal text(neighbors:withborders) guinea-bissau -monaco text(neighbors) france -djibouti text(is:butted:against) eritrea -djibouti text(was:butted:against) somalia -djibouti text(is:a:neighboring:country:of) ethiopia -indonesia text(was:a:neighboring:country:of) papua_new_guinea -indonesia text(was:a:neighbor:of) timor-leste -indonesia text(is:a:neighbor:of) malaysia -uganda text(is:a:neighboring:state:to) tanzania -macedonia text(was:a:neighboring:state:to) kosovo -macedonia text(borders:with) bulgaria -ecuador text(neighbors:withborders) peru -ecuador text(neighbors) colombia -brazil text(is:butted:against) french_guiana -brazil text(was:butted:against) suriname -brazil text(is:a:neighboring:country:of) venezuela -brazil text(was:a:neighboring:country:of) guyana -finland text(was:a:neighbor:of) norway -jordan text(is:a:neighbor:of) saudi_arabia -jordan text(is:a:neighboring:state:to) israel -jordan text(was:a:neighboring:state:to) iraq -jordan text(borders:with) syria -timor-leste text(neighbors:withborders) indonesia -montenegro text(neighbors) kosovo -peru text(is:butted:against) ecuador -ukraine text(was:butted:against) hungary -turkmenistan text(is:a:neighboring:country:of) kazakhstan -gibraltar text(was:a:neighboring:country:of) spain -switzerland text(was:a:neighbor:of) germany -austria text(is:a:neighbor:of) germany -austria text(is:a:neighboring:state:to) hungary -austria text(was:a:neighboring:state:to) czechia -hungary text(borders:with) ukraine -hungary text(neighbors:withborders) slovakia -hungary text(neighbors) slovenia -hungary text(is:butted:against) croatia -hungary text(was:butted:against) austria -hungary text(is:a:neighboring:country:of) serbia -hungary text(was:a:neighboring:country:of) romania -malawi text(was:a:neighbor:of) zambia -malawi text(is:a:neighbor:of) tanzania -albania text(is:a:neighboring:state:to) kosovo -kuwait text(was:a:neighboring:state:to) saudi_arabia -kuwait text(borders:with) iraq -south_africa text(neighbors:withborders) botswana -south_africa text(neighbors) zimbabwe -benin text(is:butted:against) burkina_faso -croatia text(was:butted:against) hungary -sweden text(is:a:neighboring:country:of) norway -mexico text(was:a:neighboring:country:of) united_states -bangladesh text(was:a:neighbor:of) myanmar -malaysia text(is:a:neighbor:of) thailand -malaysia text(is:a:neighboring:state:to) indonesia -luxembourg text(was:a:neighboring:state:to) germany -honduras text(borders:with) nicaragua -mali text(neighbors:withborders) burkina_faso -french_guiana text(neighbors) brazil -french_guiana text(is:butted:against) suriname -yemen text(was:butted:against) saudi_arabia -venezuela text(is:a:neighboring:country:of) brazil -venezuela text(was:a:neighboring:country:of) guyana -venezuela text(was:a:neighbor:of) colombia -united_states text(is:a:neighbor:of) canada -united_states text(is:a:neighboring:state:to) mexico -slovenia text(was:a:neighboring:state:to) hungary -china text(borders:with) bhutan -china text(neighbors:withborders) macau -china text(neighbors) kazakhstan -china text(is:butted:against) myanmar -china text(was:butted:against) mongolia -andorra text(is:a:neighboring:country:of) spain -palestine text(was:a:neighboring:country:of) jordan -palestine text(was:a:neighbor:of) egypt -france text(is:a:neighbor:of) germany -france text(is:a:neighboring:state:to) monaco -france text(was:a:neighboring:state:to) spain -mongolia text(was:localized:in) eastern_asia -mongolia text(is:localized:in) asia -mongolia text(borders:with) china -mongolia text(neighbors:withborders) russia \ No newline at end of file diff --git a/deepsoftlog/experiments/mentions_countries/dataset.py b/deepsoftlog/experiments/mentions_countries/dataset.py index 6a4bd66..7d62d63 100644 --- a/deepsoftlog/experiments/mentions_countries/dataset.py +++ b/deepsoftlog/experiments/mentions_countries/dataset.py @@ -11,80 +11,54 @@ _DATA_ROOT = str(Path(__file__).parent / "tmp") -def get_entity_splits(): - base_path = Path(__file__).parent / 'data' / 'raw' - train_queries = load_tsv_file(base_path / 'train.tsv') - val_queries = load_tsv_file(base_path / 'val.tsv') - test_queries = load_tsv_file(base_path / 'test.tsv') - - return set([q[0] for q in train_queries]), set([q[0] for q in val_queries]).union(set([q[0] for q in test_queries])) - -def do_country_to_text(symbolic_facts, country_text_map): - for i, fact in enumerate(symbolic_facts): - text_1 = "text({})".format(country_text_map[fact[0]][0].replace(" ", ":")) - country_text_map[fact[0]] = np.roll(country_text_map[fact[0]], 1) - text_2 = "text({})".format(country_text_map[fact[2]][0].replace(" ", ":")) - country_text_map[fact[2]] = np.roll(country_text_map[fact[2]], 1) - - symbolic_facts[i] = (text_1, fact[1], text_2) - return symbolic_facts - -def do_relation_to_text(symbolic_facts, relation_text_map): - for i, fact in enumerate(symbolic_facts): - text_r = "text({})".format(relation_text_map[fact[1]][0].replace(" ", ":")) - relation_text_map[fact[1]] = np.roll(relation_text_map[fact[1]], 1) - - symbolic_facts[i] = (fact[0], text_r, fact[2]) - return symbolic_facts - -def generate_tsvs(country_to_text: bool, relation_to_text: bool, test_split: bool): +def generate_tsvs(country_to_text: bool, relation_to_text: bool): base_path = Path(__file__).parent / 'data' / 'raw' country_entity_text = pd.read_csv(base_path / 'country2text.csv', dtype=str).set_index('Country') - country_text_map = {e[0]: np.random.permutation(e[2:]) for e in country_entity_text.itertuples()} - relation_text_map = { - 'locatedIn': (['is positioned in', 'was positioned in', - 'can be found in', 'could be found in', - 'was located in', 'is located in', - 'is situated in', 'was situated in', - 'is currently in', 'was currently in', - 'was still in', 'is still in', - 'is present in', 'was present in', - 'is localized in', 'was localized in',], - ['was placed in', 'is placed in', - 'is sited in', 'was sited in'], - ), - 'neighborOf': (['was a neighboring country of', 'is a neighboring country of', - 'was butted against', 'is butted against', - 'neighbors', 'neighbors with' - 'borders', 'borders with', - 'was a neighboring state to', 'is a neighboring state to', - 'is a neighbor of', 'was a neighbor of'], - ['is adjacent to', 'was adjacent to']) - } + country2text = {e[0]: np.random.permutation(e[2:]) for e in country_entity_text.itertuples()} + relation2text = { + 'locatedIn': ['is positioned in', 'was positioned in', 'can be found in', 'was located in', 'is located in', + 'is situated in', 'was situated in', 'can be found in', 'was placed in', 'is placed in', + 'is currently in', 'was currently in', 'was still in', 'is still in', 'is present in', + 'was present in', 'is localized in', 'was localized in', 'is sited in', 'was sited in'], + 'neighborOf': ['was a neighboring country of', 'is a neighboring country of', 'neighbors', 'is adjacent to', + 'was adjacent to', 'was butted against', 'is butted against', 'borders', 'borders with', + 'was a neighboring state to', 'is a neighboring state to', 'is a neighbor of', + 'was a neighbor of', 'neighbors with']} for task in ["S1", "S2", "S3"]: # load symbolic facts symbolic_facts = load_tsv_file(base_path / f"countries_{task}.tsv") - if country_to_text: - symbolic_facts = do_country_to_text(symbolic_facts, country_text_map) - elif relation_to_text: - if test_split: - train_entities, test_entities = get_entity_splits() - test_facts = [s for s in symbolic_facts if s[0] in test_entities or s[2] in test_entities] - train_facts = [s for s in symbolic_facts if s not in test_facts] - symbolic_facts = (do_relation_to_text(train_facts, {k: v[0] for k,v in relation_text_map.items()}) - + do_relation_to_text(test_facts, {k: v[0] for k,v in relation_text_map.items()})) + + for i, fact in enumerate(symbolic_facts): + if country2text: + text_1 = "text({})".format(country2text[fact[0]][0].replace(" ", ":")) + country2text[fact[0]] = np.roll(country2text[fact[0]], 1) + text_2 = "text({})".format(country2text[fact[2]][0].replace(" ", ":")) + country2text[fact[2]] = np.roll(country2text[fact[2]], 1) + else: + text_1 = fact[0] + text_2 = fact[2] + + if relation2text: + text_r = "text({})".format(relation2text[fact[1]][0].replace(" ", ":")) + relation2text[fact[1]] = np.roll(relation2text[fact[1]], 1) else: - symbolic_facts = do_relation_to_text(symbolic_facts, {k: v[0] + v[1] for k,v in relation_text_map.items()}) + text_r = fact[1] + + symbolic_facts[i] = (text_1, text_r, text_2) + with open(base_path / Path(f"countries_{task}" + ('_country2text' if country_to_text else '') + ( - '_relation2text' if relation_to_text else '') + ('_traintest' if test_split else '') + ".tsv"), "w") as f: + '_relation2text' if relation_to_text else '') + ".tsv"), "w") as f: f.write("\n".join(["\t".join(fact) for fact in symbolic_facts])) + def get_train_dataloader(cfg: dict): - train_dataset = MentionsCountriesDataset("train").mutate_all_output() + train_dataset = MentionsCountriesDataset("train").subset(cfg['data_subset']) + train_dataset = train_dataset.mutate_all_output() return DataLoader(train_dataset, batch_size=cfg['batch_size'], shuffle=True, seed=cfg['seed']) + def get_test_dataloader(): regions = ["africa", "americas", "asia", "europe", "oceania"] domain = {-1: [SoftTerm(Constant(r)) for r in regions]} @@ -107,7 +81,7 @@ def __init__(self, split_name: str = "val"): def generate_prolog_files(): base_path = Path(__file__).parent / 'data' (base_path / 'tmp').mkdir(exist_ok=True) - for setting in ['', '_relation2text', '_relation2text_traintest']: + for setting in ['', '_country2text', '_relation2text', '_country2text_relation2text']: for problem in (f'S{i}' for i in range(1,4)): data = load_tsv_file(base_path / f"raw/countries_{problem}{setting}.tsv") data = data_to_prolog(data, name="countries") @@ -120,8 +94,6 @@ def generate_prolog_files(): f.write(templates) if __name__ == "__main__": - generate_tsvs(country_to_text=False, relation_to_text=True, test_split=False) - generate_tsvs(country_to_text=False, relation_to_text=True, test_split=True) d = MentionsCountriesDataset() print(d) generate_prolog_files() \ No newline at end of file diff --git a/deepsoftlog/experiments/mentions_countries/mentions_countries.py b/deepsoftlog/experiments/mentions_countries/mentions_countries.py index c413b3c..c557257 100644 --- a/deepsoftlog/experiments/mentions_countries/mentions_countries.py +++ b/deepsoftlog/experiments/mentions_countries/mentions_countries.py @@ -64,4 +64,4 @@ def eval(folder: str): if __name__ == "__main__": - train("deepsoftlog/experiments/mentions_countries/config.yaml", 'test', 0, 'deepsoftlog/experiments/mentions_countries/data/tmp/countries_S1_relation2text.pl', 'boe') \ No newline at end of file + train("deepsoftlog/experiments/mentions_countries/config.yaml", 'test', 0, 'deepsoftlog/experiments/mentions_countries/data/tmp/countries_S1_relation2text.pl', 'LM') \ No newline at end of file From a6ba34e90706d105925c6d84f1f8af0383797377 Mon Sep 17 00:00:00 2001 From: RikA3 Date: Mon, 13 Oct 2025 16:22:42 +0200 Subject: [PATCH 14/15] remove detach loss before training --- deepsoftlog/training/trainer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deepsoftlog/training/trainer.py b/deepsoftlog/training/trainer.py index ecc0135..ef820aa 100644 --- a/deepsoftlog/training/trainer.py +++ b/deepsoftlog/training/trainer.py @@ -151,7 +151,7 @@ def _eval_queries(self, queries: Iterable[Query]): def get_loss(self, queries: Iterable[Query]) -> tuple[float, float, float, float]: results, proof_steps, nb_proofs = tuple(zip(*self._query(queries))) - losses = [self.criterion(result, query.p).detach() for result, query in zip(results, queries)] + losses = [self.criterion(result, query.p) for result, query in zip(results, queries)] loss = torch.stack(losses).mean() errors = [query.error_with(result) for result, query in zip(results, queries)] if loss.requires_grad: From 839fa63a88e53699bccf476cb27f37ee12258a0d Mon Sep 17 00:00:00 2001 From: RikA3 Date: Wed, 29 Oct 2025 09:09:26 +0100 Subject: [PATCH 15/15] fix sdd SddAlgebra memory hogging --- deepsoftlog/algebraic_prover/algebras/sdd_algebra.py | 1 + 1 file changed, 1 insertion(+) diff --git a/deepsoftlog/algebraic_prover/algebras/sdd_algebra.py b/deepsoftlog/algebraic_prover/algebras/sdd_algebra.py index 8a0908c..a5948fa 100644 --- a/deepsoftlog/algebraic_prover/algebras/sdd_algebra.py +++ b/deepsoftlog/algebraic_prover/algebras/sdd_algebra.py @@ -162,3 +162,4 @@ def zero(self) -> SddFormula: def reset(self): self.all_facts = FastList() + self.manager.garbage_collect()