diff --git a/ida-chatbot/src/app/app.component.ts b/ida-chatbot/src/app/app.component.ts index 9d7f4333d..e05a6d492 100644 --- a/ida-chatbot/src/app/app.component.ts +++ b/ida-chatbot/src/app/app.component.ts @@ -11,6 +11,8 @@ import {TabElement} from './models/tab-element'; import {UniqueIdProviderService} from './service/misc/unique-id-provider.service'; import {TabType} from './enums/tab-type.enum'; import {IdaEventService} from './service/event/ida-event.service'; +import {MatDialog} from '@angular/material'; +import {DatasetUploadModalComponent} from './components/dataset-upload-modal/dataset-upload-modal.component'; @Component({ selector: 'app-root', @@ -31,7 +33,7 @@ export class AppComponent { @ViewChild(SidebarComponent) private sbComp: SidebarComponent; - constructor(private restservice: RestService, private uis: UniqueIdProviderService, private ies: IdaEventService) { + constructor(private restservice: RestService, private uis: UniqueIdProviderService, private ies: IdaEventService, public dialog: MatDialog) { ies.dtTblEvnt.subscribe((reqTbl) => { this.getDataTable(reqTbl); }); @@ -65,6 +67,14 @@ export class AppComponent { // Open new tab with DataTable const newTab = new TabElement(this.uis.getUniqueId(), resp.payload.actvTbl, TabType.DTTBL, resp.payload.dataTable, true, true); this.addNewTab(newTab, resp); + } else if (resp.actnCode === 6) { + this.dialog.open(DatasetUploadModalComponent, { + data: { + datasetName: resp.payload.datasetName + }, + disableClose: true, + width: '350px' + }); } else if (resp.actnCode === 7) { // Open new tab with DataTable const newTab = new TabElement(this.uis.getUniqueId(), resp.payload.actvTbl, TabType.VENND, resp.payload.vennDiagramData, true, true); diff --git a/ida-chatbot/src/app/app.module.ts b/ida-chatbot/src/app/app.module.ts index 455cb2dd3..4f9b98710 100644 --- a/ida-chatbot/src/app/app.module.ts +++ b/ida-chatbot/src/app/app.module.ts @@ -60,6 +60,7 @@ import {DatatableDetailComponent} from './components/datatable-detail/datatable- import { SsbViewComponent } from './components/ssb-view/ssb-view.component'; import { VennViewComponent } from './components/venn-view/venn-view.component'; import { DeckglHexViewComponent } from './components/deckgl-hex-view/deckgl-hex-view.component'; +import { DatasetUploadModalComponent } from './components/dataset-upload-modal/dataset-upload-modal.component'; @NgModule({ declarations: [ AppComponent, @@ -78,7 +79,8 @@ import { DeckglHexViewComponent } from './components/deckgl-hex-view/deckgl-hex- DatatableDetailComponent, SsbViewComponent, VennViewComponent, - DeckglHexViewComponent + DeckglHexViewComponent, + DatasetUploadModalComponent ], imports: [ BrowserModule, @@ -119,13 +121,15 @@ import { DeckglHexViewComponent } from './components/deckgl-hex-view/deckgl-hex- MatTabsModule, MatToolbarModule, MatTooltipModule, - FlexLayoutModule + FlexLayoutModule, + MatSnackBarModule ], providers: [{ provide: HTTP_INTERCEPTORS, useClass: RestService , multi: true }], + entryComponents: [DatasetUploadModalComponent], bootstrap: [AppComponent] }) export class AppModule { } diff --git a/ida-chatbot/src/app/components/dataset-upload-modal/dataset-upload-modal.component.css b/ida-chatbot/src/app/components/dataset-upload-modal/dataset-upload-modal.component.css new file mode 100644 index 000000000..e1d12d8a8 --- /dev/null +++ b/ida-chatbot/src/app/components/dataset-upload-modal/dataset-upload-modal.component.css @@ -0,0 +1,3 @@ +.file-name:disabled { + color: #000; +} diff --git a/ida-chatbot/src/app/components/dataset-upload-modal/dataset-upload-modal.component.html b/ida-chatbot/src/app/components/dataset-upload-modal/dataset-upload-modal.component.html new file mode 100644 index 000000000..a3be3b5b0 --- /dev/null +++ b/ida-chatbot/src/app/components/dataset-upload-modal/dataset-upload-modal.component.html @@ -0,0 +1,24 @@ +

Upload dataset

+
+
+ + + You can only select CSV or XML file. + +
+
+ +
+
+
+ + + + + diff --git a/ida-chatbot/src/app/components/dataset-upload-modal/dataset-upload-modal.component.spec.ts b/ida-chatbot/src/app/components/dataset-upload-modal/dataset-upload-modal.component.spec.ts new file mode 100644 index 000000000..75d3bc4e1 --- /dev/null +++ b/ida-chatbot/src/app/components/dataset-upload-modal/dataset-upload-modal.component.spec.ts @@ -0,0 +1,25 @@ +import { async, ComponentFixture, TestBed } from '@angular/core/testing'; + +import { DatasetUploadModalComponent } from './dataset-upload-modal.component'; + +describe('DatasetUploadModalComponent', () => { + let component: DatasetUploadModalComponent; + let fixture: ComponentFixture; + + beforeEach(async(() => { + TestBed.configureTestingModule({ + declarations: [ DatasetUploadModalComponent ] + }) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(DatasetUploadModalComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/ida-chatbot/src/app/components/dataset-upload-modal/dataset-upload-modal.component.ts b/ida-chatbot/src/app/components/dataset-upload-modal/dataset-upload-modal.component.ts new file mode 100644 index 000000000..0f1fea90a --- /dev/null +++ b/ida-chatbot/src/app/components/dataset-upload-modal/dataset-upload-modal.component.ts @@ -0,0 +1,55 @@ +import {Component, Inject, Input, OnInit} from '@angular/core'; +import {HttpClient} from '@angular/common/http'; +import {MAT_DIALOG_DATA, MatDialogRef, MatSnackBar} from '@angular/material'; + +@Component({ + selector: 'app-dialog-modal', + templateUrl: './dataset-upload-modal.component.html', + styleUrls: ['./dataset-upload-modal.component.css'] +}) +export class DatasetUploadModalComponent implements OnInit { + + fileName = 'Select CSV or XML file...'; + file; + fileSelected = false; + showProgress = false; + + constructor(@Inject(MAT_DIALOG_DATA) public data, + private _http: HttpClient, + public dialogRef: MatDialogRef, + public snackBar: MatSnackBar) {} + + ngOnInit() { + } + + fileManager(event) { + if (event.target.files.length > 0) { + this.fileSelected = true; + this.file = event.target.files[0]; + this.fileName = this.file.name; + } + } + + uploadDataset() { + console.log(this.data.datasetName); + this.showProgress = true; + const formData = new FormData(); + formData.append('file', this.file); + formData.append('fileName', this.data.datasetName); + this._http.post('http://localhost:8080/ida-ws/message/file', formData).subscribe( + (res) => { + this.dialogRef.close(); + this.snackBar.open('Dataset uploaded successfully', 'Close', { + duration: 3000, + }); + }, + (err) => { + this.snackBar.open('Dataset upload failed! Please try again', 'Close', { + duration: 3000, + }); + this.showProgress = false; + } + ); + } + +} diff --git a/ida-chatbot/src/styles.css b/ida-chatbot/src/styles.css index 59573638b..75f5db184 100644 --- a/ida-chatbot/src/styles.css +++ b/ida-chatbot/src/styles.css @@ -7,7 +7,9 @@ html, body { height: 100%; margin: 0; } - +.full-width { + width: 100%; +} .table-cls { margin: 15px; } diff --git a/ida-ws/pom.xml b/ida-ws/pom.xml index f5d4934d6..77f80b530 100644 --- a/ida-ws/pom.xml +++ b/ida-ws/pom.xml @@ -179,6 +179,17 @@ topicmodeling.commons 0.0.3-SNAPSHOT + + org.apache.jena + apache-jena-libs + 3.9.0 + pom + + + no.acando + xmltordf + 1.9.1 + org.springframework.boot @@ -186,7 +197,6 @@ 2.1.0.RELEASE test - ida-ws diff --git a/ida-ws/src/main/java/upb/ida/constant/IDALiteral.java b/ida-ws/src/main/java/upb/ida/constant/IDALiteral.java index 06914bd0a..5fc475b8d 100644 --- a/ida-ws/src/main/java/upb/ida/constant/IDALiteral.java +++ b/ida-ws/src/main/java/upb/ida/constant/IDALiteral.java @@ -7,12 +7,13 @@ public interface IDALiteral { public static final String EXAMPLE = "this is an example constant string"; - //Action literals + //Action literals (User Interface Action) public static final int UIA_LOADDS = 1; public static final int UIA_FDG = 2; public static final int UIA_BG = 3; public static final int UIA_CLUSTER = 4; public static final int UIA_DTTABLE = 5; + public static final int UIA_UPLOAD = 6; public static final int UIA_VENNDIAGRAM = 7; public static final int UIA_GSDIAGRAM = 8; @@ -37,4 +38,6 @@ public interface IDALiteral { //Metadata File name Pattern public static final String DSMD_FILE_PATTERN = ".*_dsmd\\.[jJ][sS][oO][nN]$"; + public static final String DS_PATH = System.getProperty("user.dir") + "/uploads/"; + } diff --git a/ida-ws/src/main/java/upb/ida/provider/LoadDsMetadata.java b/ida-ws/src/main/java/upb/ida/provider/LoadDsMetadata.java index d47250178..7438059c2 100644 --- a/ida-ws/src/main/java/upb/ida/provider/LoadDsMetadata.java +++ b/ida-ws/src/main/java/upb/ida/provider/LoadDsMetadata.java @@ -1,8 +1,11 @@ package upb.ida.provider; import java.io.IOException; +import java.util.HashMap; import java.util.Map; +import org.apache.jena.rdf.model.Model; +import org.apache.jena.util.FileManager; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; @@ -12,6 +15,9 @@ import upb.ida.bean.ResponseBean; import upb.ida.constant.IDALiteral; import upb.ida.util.FileUtil; +import upb.ida.util.SessionUtil; + +import static upb.ida.constant.IDALiteral.DS_PATH; /** * LoadDataContent is a subroutine that loads the data @@ -25,7 +31,8 @@ public class LoadDsMetadata implements Subroutine { private FileUtil fileUtil; @Autowired private ResponseBean responseBean; - + @Autowired + private SessionUtil sessionUtil; /** * Method to create response for loading the data set * @@ -41,6 +48,12 @@ public String call(com.rivescript.RiveScript rs, String[] args) { if (fileUtil.datasetExists(message)) { try { Map dataMap = responseBean.getPayload(); + Model model = FileManager.get().loadModel(DS_PATH + message + ".ttl"); + Map dsMap = new HashMap<>(); + if(!dsMap.containsKey(message)){ + dsMap.put(message, model); + sessionUtil.getSessionMap().put("DSModel", dsMap); + } dataMap.put("label", message); dataMap.put("dsName", message); dataMap.put("dsMd", fileUtil.getDatasetMetaData(message)); diff --git a/ida-ws/src/main/java/upb/ida/provider/RiveScriptBeanProvider.java b/ida-ws/src/main/java/upb/ida/provider/RiveScriptBeanProvider.java index 920deea26..99892eb90 100644 --- a/ida-ws/src/main/java/upb/ida/provider/RiveScriptBeanProvider.java +++ b/ida-ws/src/main/java/upb/ida/provider/RiveScriptBeanProvider.java @@ -46,6 +46,10 @@ public class RiveScriptBeanProvider { @Autowired private LoadDsMetadata dsmdLoader; @Autowired + private UploadDataset uploadDataset; + @Autowired + private ShowDataset showDataset; + @Autowired private VennDiagramHandler VennDiagramHandler; @Autowired private GeoDiagramHandler GeoDiagramHandler; @@ -77,6 +81,8 @@ public RiveScript initBotInstance() { bot.setSubroutine("ClusterDataGetter", clusterDataGetter); bot.setSubroutine("CheckParamCollected", checkParamCollected); bot.setSubroutine("LoadDsMetadata", dsmdLoader); + bot.setSubroutine("UploadDataset", uploadDataset); + bot.setSubroutine("ShowDataset", showDataset); bot.setSubroutine("VennDiagramHandler", VennDiagramHandler); bot.setSubroutine("GeoDiagramHandler", GeoDiagramHandler); return bot; diff --git a/ida-ws/src/main/java/upb/ida/provider/ShowDataset.java b/ida-ws/src/main/java/upb/ida/provider/ShowDataset.java new file mode 100644 index 000000000..176c2c31f --- /dev/null +++ b/ida-ws/src/main/java/upb/ida/provider/ShowDataset.java @@ -0,0 +1,31 @@ +package upb.ida.provider; + +import com.rivescript.macro.Subroutine; +import org.apache.commons.io.FilenameUtils; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Component; +import upb.ida.bean.ResponseBean; + +import java.io.File; + +import static upb.ida.constant.IDALiteral.DS_PATH; + + +@Component +public class ShowDataset implements Subroutine { + @Autowired + private ResponseBean responseBean; + + public String call(com.rivescript.RiveScript rs, String[] args) { + File directory = new File(DS_PATH); + String[] files = directory.list(); + String temp = "Datasets: "; + for (String file: files) { + temp = temp + FilenameUtils.removeExtension(file) + ", "; + } + + responseBean.setChatmsg(DS_PATH); + temp = temp.substring(0, temp.length() - 1); + return temp; + } +} diff --git a/ida-ws/src/main/java/upb/ida/provider/UploadDataset.java b/ida-ws/src/main/java/upb/ida/provider/UploadDataset.java new file mode 100644 index 000000000..071a691f6 --- /dev/null +++ b/ida-ws/src/main/java/upb/ida/provider/UploadDataset.java @@ -0,0 +1,30 @@ +package upb.ida.provider; + +import com.rivescript.macro.Subroutine; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Component; +import upb.ida.bean.ResponseBean; +import upb.ida.constant.IDALiteral; + +import java.io.File; +import java.util.Map; + +@Component +public class UploadDataset implements Subroutine { + @Autowired + private ResponseBean responseBean; + + public String call(com.rivescript.RiveScript rs, String[] args) { + String message = args[0].toLowerCase().trim(); + Map dataMap = responseBean.getPayload(); + dataMap.put("datasetName", message); + String resp = IDALiteral.RESP_FAIL_ROUTINE; + File file = new File(System.getProperty("user.dir") + "/upload-ds/" + message + ".ttl"); + if (!file.exists()) { + responseBean.setActnCode(IDALiteral.UIA_UPLOAD); + responseBean.setPayload(dataMap); + resp = IDALiteral.RESP_PASS_ROUTINE; + } + return resp; + } +} diff --git a/ida-ws/src/main/java/upb/ida/rest/MessageRestController.java b/ida-ws/src/main/java/upb/ida/rest/MessageRestController.java index 6e89596e4..e0f648e06 100644 --- a/ida-ws/src/main/java/upb/ida/rest/MessageRestController.java +++ b/ida-ws/src/main/java/upb/ida/rest/MessageRestController.java @@ -1,17 +1,24 @@ package upb.ida.rest; +import java.io.*; import java.util.HashMap; import java.util.Map; +import org.apache.jena.query.*; +import org.apache.jena.util.FileManager; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.web.bind.annotation.CrossOrigin; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestParam; -import org.springframework.web.bind.annotation.RestController; +import org.springframework.web.bind.annotation.*; +import org.springframework.web.multipart.MultipartFile; import upb.ida.bean.ResponseBean; +import org.apache.jena.rdf.model.Model; import upb.ida.service.DataService; import upb.ida.service.RiveScriptService; +import upb.ida.util.SessionUtil; +import upb.ida.util.UploadManager; +import upb.ida.util.FileConversionUtil; + +import static upb.ida.constant.IDALiteral.DS_PATH; /** * Exposes RESTful RPCs for the IDA Chatbot @@ -29,6 +36,11 @@ public class MessageRestController { private RiveScriptService rsService; @Autowired private DataService dataService; + @Autowired + private SessionUtil sessionUtil; + + private int id = 0; + @RequestMapping("/sayhello") public String greeting(@RequestParam(value = "name", defaultValue = "World") String name) { return "Hello " + name + "!"; @@ -53,7 +65,7 @@ public ResponseBean sendmessage(@RequestParam(value = "msg") String msg, dataMap.put("actvDs", actvDs); response.setPayload(dataMap); String reply = rsService.getRSResponse(msg); - + response.setChatmsg(reply); return response; } @@ -71,4 +83,44 @@ public ResponseBean getDataTable(@RequestParam(value = "actvScrId") String actvS return response; } -} \ No newline at end of file + @PostMapping("/file") + public ResponseBean convert(@RequestParam(value="file") MultipartFile file, @RequestParam(value="fileName") String fileName) throws IOException, Exception{ +// TODO: ID unique implementation required + + if(file.getContentType().equals("text/xml") && UploadManager.getFileExtension(file.getOriginalFilename()).equals("xml")){ + byte[] bytes = file.getBytes(); + UploadManager.saveFile(fileName.toLowerCase(), FileConversionUtil.xmlToRDF(bytes)); + } + else if(file.getContentType().equals("text/csv") && UploadManager.getFileExtension(file.getOriginalFilename()).equals("csv")){ + byte[] bytes = file.getBytes(); + UploadManager.saveFile(fileName.toLowerCase(), FileConversionUtil.csvToRDF(bytes)); + } +// Map fileMap = new HashMap<>(); + Map idMap = new HashMap<>(); + idMap.put(id, DS_PATH + fileName + ".ttl"); +// fileMap.put("FileMap", idMap); + id++; +// response.setPayload(fileMap); + sessionUtil.getSessionMap().put("FileMap", idMap); + response.setChatmsg("Please download the file at: " + fileName + ""); + return response; + } + + @GetMapping(value = "/sparql") + public String getbyArtist(@RequestParam("query") String queryString, @RequestParam("datasetName") String datasetName) { + // TODO: Error handling e.g. if dataset name is invalid + + Model model = FileManager.get().loadModel(DS_PATH + datasetName + ".ttl"); + Query query = QueryFactory.create(queryString); + QueryExecution qexec = QueryExecutionFactory.create(query, model); + + ResultSet results = qexec.execSelect(); + + ByteArrayOutputStream outputStream = new ByteArrayOutputStream(); + ResultSetFormatter.outputAsJSON(outputStream, results); + String json = new String(outputStream.toByteArray()); + + return json; + } + +} diff --git a/ida-ws/src/main/java/upb/ida/util/FileConversionUtil.java b/ida-ws/src/main/java/upb/ida/util/FileConversionUtil.java new file mode 100644 index 000000000..b4c7008d4 --- /dev/null +++ b/ida-ws/src/main/java/upb/ida/util/FileConversionUtil.java @@ -0,0 +1,37 @@ +package upb.ida.util; + +import no.acando.xmltordf.Builder; +import org.apache.jena.query.Dataset; +import org.apache.jena.rdf.model.Model; +import org.apache.jena.rdf.model.ModelFactory; +import org.xml.sax.SAXException; + +import javax.xml.parsers.ParserConfigurationException; +import java.io.*; + +public class FileConversionUtil { + public static byte[] xmlToRDF(byte[] bytes) throws IOException, SAXException, ParserConfigurationException { + InputStream inputStream = new ByteArrayInputStream(bytes); + + BufferedInputStream in = new BufferedInputStream(inputStream); + Dataset dataset = Builder.getAdvancedBuilderJena().build().convertToDataset(in); + ByteArrayOutputStream stream = new ByteArrayOutputStream(); + // converting it into turtle format + dataset.getDefaultModel().write(stream, "ttl"); + + return stream.toByteArray(); + } + + public static byte[] csvToRDF(byte[] bytes) { + InputStream inputStream = new ByteArrayInputStream(bytes); + + Model m = ModelFactory.createDefaultModel(); + // (TODO) http://example.com must not be fixed + m.read(inputStream, "http://example.com", "csv"); + m.setNsPrefix("test", "http://example.com#"); + ByteArrayOutputStream stream = new ByteArrayOutputStream(); + // Converting into turtle format + m.write(stream, "ttl"); + return stream.toByteArray(); + } +} diff --git a/ida-ws/src/main/java/upb/ida/util/FileUtil.java b/ida-ws/src/main/java/upb/ida/util/FileUtil.java index e9aa69eb5..e33eaeff7 100644 --- a/ida-ws/src/main/java/upb/ida/util/FileUtil.java +++ b/ida-ws/src/main/java/upb/ida/util/FileUtil.java @@ -23,6 +23,8 @@ import upb.ida.constant.IDALiteral; +import static upb.ida.constant.IDALiteral.DS_PATH; + /** * Class to expose util methods for File based operations in IDA * @@ -166,6 +168,11 @@ public boolean datasetExists(String keyword) { return dsPathMap.get(keyword.toLowerCase()) != null; } + public boolean dsExists(String filename){ + File file = new File(DS_PATH + filename.toLowerCase() + ".ttl"); + return file.exists(); + } + /** * Method to fetch the filePath of a given datable * diff --git a/ida-ws/src/main/java/upb/ida/util/UploadManager.java b/ida-ws/src/main/java/upb/ida/util/UploadManager.java new file mode 100644 index 000000000..6c166b978 --- /dev/null +++ b/ida-ws/src/main/java/upb/ida/util/UploadManager.java @@ -0,0 +1,30 @@ +package upb.ida.util; + +import java.io.File; +import java.io.IOException; +import java.nio.file.Files; +import java.nio.file.Path; +import java.nio.file.Paths; + +public class UploadManager { + public static boolean saveFile (String fileName, byte[] contentInBytes) { + boolean success = false; + try { + if (! Paths.get("/uploads/").toFile().isDirectory()) { + // If uploads folder did not exists then create it + new File(System.getProperty("user.dir") + "/uploads").mkdir(); + } + Path path = Paths.get(System.getProperty("user.dir") + "/uploads/", fileName + ".ttl"); + Files.write(path, contentInBytes); + success = true; + } catch (IOException e) { + e.printStackTrace(); + } + return success; + } + + public static String getFileExtension (String fileName) { + int dotIndex = fileName.lastIndexOf("."); + return dotIndex != -1 ? fileName.substring(dotIndex+1) : ""; + } +} diff --git a/ida-ws/src/main/resources/rivescript/ida-fdg.rive b/ida-ws/src/main/resources/rivescript/ida-fdg.rive index ed9e9d32f..277d6c7fc 100644 --- a/ida-ws/src/main/resources/rivescript/ida-fdg.rive +++ b/ida-ws/src/main/resources/rivescript/ida-fdg.rive @@ -36,7 +36,7 @@ + display force graph for this dataset @ show me fdg -+ display froce graph for this file ++ display force graph for this file @ show me fdg + i would like a force directed graph visualization for the current table diff --git a/ida-ws/src/main/resources/rivescript/ida-show-ds.rive b/ida-ws/src/main/resources/rivescript/ida-show-ds.rive new file mode 100644 index 000000000..9b8fad82c --- /dev/null +++ b/ida-ws/src/main/resources/rivescript/ida-show-ds.rive @@ -0,0 +1,8 @@ +! version = 2.0 + +//User queries for datasets show ++ show all datasets +- ShowDataset + ++ show me all the datasets +- ShowDataset \ No newline at end of file diff --git a/ida-ws/src/main/resources/rivescript/ida-upload-ds.rive b/ida-ws/src/main/resources/rivescript/ida-upload-ds.rive new file mode 100644 index 000000000..99ca55733 --- /dev/null +++ b/ida-ws/src/main/resources/rivescript/ida-upload-ds.rive @@ -0,0 +1,36 @@ +! version = 2.0 + +//User queries for dataset upload + +// first sentence ++ i would like you to upload a dataset +- Sure, what would you like to call your dataset? + ++ i want to upload a dataset +- Sure, what would you like to call your dataset? + ++ i have to upload a dataset +- Sure, and what would you like to name it? + ++ i would like for you to upload a dataset +- Sure, what would you like to call your dataset? + +// dataset name + ++ call dataset * +* UploadDataset == pass => You may now proceed to upload the dataset. +- Dataset already exists + ++ i would like you to call it * +@ call dataset + ++ call dataset * +@ call dataset + +@ call dataset + ++ call dataset * +@ load dataset + ++ name it * +@ @ call dataset diff --git a/ida-ws/upload-ds/sampleresult.ttl b/ida-ws/upload-ds/sampleresult.ttl new file mode 100644 index 000000000..e5544d93a --- /dev/null +++ b/ida-ws/upload-ds/sampleresult.ttl @@ -0,0 +1,21106 @@ +@prefix test: . + +[ test:City "Antofagasta" ; + test:Country "Chile" ; + + 3453 +] . + +[ test:City "Rivne" ; + test:Country "Ukraine" ; + + 434 +] . + +[ test:City "Wadhwan" ; + test:Country "India" ; + + 989 +] . + +[ test:City "Tacna" ; + test:Country "Peru" ; + + 1810 +] . + +[ test:City "Gera" ; + test:Country "Germany" ; + + 2365 +] . + +[ test:City "Huixian" ; + test:Country "China" ; + + 3025 +] . + +[ test:City "Odense" ; + test:Country "Denmark" ; + + 9 +] . + +[ test:City "São Caetano do Sul" ; + test:Country "Brazil" ; + + 597 +] . + +[ test:City "Clearwater" ; + test:Country "United States" ; + + 1224 +] . + +[ test:City "Tuticorin" ; + test:Country "India" ; + + 2000 +] . + +[ test:City "Bat Yam" ; + test:Country "Israel" ; + + 2600 +] . + +[ test:City "Naucalpan" ; + test:Country "Mexico" ; + + 895 +] . + +[ test:City "Ust-Ilimsk" ; + test:Country "Russia" ; + + 2235 +] . + +[ test:City "Hapur" ; + test:Country "India" ; + + 2931 +] . + +[ test:City "Arusha" ; + test:Country "Tanzania" ; + + 3486 +] . + +[ test:City "Saarbrücken" ; + test:Country "Germany" ; + + 467 +] . + +[ test:City "Windhoek" ; + test:Country "Namibia" ; + + 1022 +] . + +[ test:City "Tampa, Florida" ; + test:Country "United States" ; + + 1843 +] . + +[ test:City "Changchun" ; + test:Country "China" ; + + 1130 +] . + +[ test:City "Gorzów Wielkopolski" ; + test:Country "Poland" ; + + 2398 +] . + +[ test:City "León" ; + test:Country "Nicaragua" ; + + 3094 +] . + +[ test:City "Lansing" ; + test:Country "United States" ; + + 3058 +] . + +[ test:City "Orange" ; + test:Country "United States" ; + + 42 +] . + +[ test:City "Cusco" ; + test:Country "Peru" ; + + 1293 +] . + +[ test:City "Coquimbo" ; + test:Country "Chile" ; + + 1257 +] . + +[ test:City "Belém" ; + test:Country "Brazil" ; + + 2633 +] . + +[ test:City "Abohar" ; + test:Country "India" ; + + 3329 +] . + +[ test:City "Raipur" ; + test:Country "India" ; + + 373 +] . + +[ test:City "Niamey" ; + test:Country "Niger" ; + + 928 +] . + +[ test:City "Konya" ; + test:Country "Turkey" ; + + 1713 +] . + +[ test:City "Jeonju" ; + test:Country "South Korea" ; + + 2268 +] . + +[ test:City "Hialeah" ; + test:Country "United States" ; + + 2964 +] . + +[ test:City "Salihorsk" ; + test:Country "Belarus" ; + + 500 +] . + +[ test:City "Tehran" ; + test:Country "Iran" ; + + 1876 +] . + +[ test:City "Chía" ; + test:Country "Colombia" ; + + 1163 +] . + +[ test:City "Esenler" ; + test:Country "Turkey" ; + + 2503 +] . + +[ test:City "Ourense" ; + test:Country "Spain" ; + + 75 +] . + +[ test:City "Springfield, Massachusetts" ; + test:Country "United States" ; + + 771 +] . + +[ test:City "Venice" ; + test:Country "Italy" ; + + 1326 +] . + +[ test:City "Fu'an" ; + test:Country "China" ; + + 2174 +] . + +[ test:City "Ajmer" ; + test:Country "India" ; + + 3362 +] . + +[ test:City "Remscheid" ; + test:Country "Germany" ; + + 406 +] . + +[ test:City "Kuala Lumpur" ; + test:Country "Malaysia" ; + + 1746 +] . + +[ test:City "Jinhua" ; + test:Country "China" ; + + 2301 +] . + +[ test:City "Greensboro" ; + test:Country "United States" ; + + 2409 +] . + +[ test:City "Hospitalet de Llobregat" ; + test:Country "Spain" ; + + 2997 +] . + +[ test:City "Seoul" ; + test:Country "South Korea" ; + + 641 +] . + +[ test:City "Chonburi" ; + test:Country "Thailand" ; + + 1196 +] . + +[ test:City "Barakaldo" ; + test:Country "Spain" ; + + 2572 +] . + +[ test:City "Baicheng" ; + test:Country "China" ; + + 2536 +] . + +[ test:City "Sukabumi" ; + test:Country "Indonesia" ; + + 804 +] . + +[ test:City "Khenchela" ; + test:Country "Algeria" ; + + 1652 +] . + +[ test:City "Vladivostok" ; + test:Country "Russia" ; + + 1359 +] . + +[ test:City "Perugia" ; + test:Country "Italy" ; + + 1431 +] . + +[ test:City "Uji" ; + test:Country "Japan" ; + + 2207 +] . + +[ test:City "Allahabad" ; + test:Country "India" ; + + 3395 +] . + +[ test:City "Muntinlupa City" ; + test:Country "Philippines" ; + + 343 +] . + +[ test:City "Xiangfan" ; + test:Country "China" ; + + 1779 +] . + +[ test:City "Gumi" ; + test:Country "South Korea" ; + + 2442 +] . + +[ test:City "Huntington Beach" ; + test:Country "United States" ; + + 3030 +] . + +[ test:City "Ogbomosho" ; + test:Country "Nigeria" ; + + 14 +] . + +[ test:City "Sharjah" ; + test:Country "United Arab Emirates" ; + + 674 +] . + +[ test:City "Zhumadian" ; + test:Country "China" ; + + 2050 +] . + +[ test:City "Coatzacoalcos" ; + test:Country "Mexico" ; + + 1229 +] . + +[ test:City "Bath" ; + test:Country "United Kingdom" ; + + 2605 +] . + +[ test:City "Diwaniyah" ; + test:Country "Iraq" ; + + 3265 +] . + +[ test:City "Syktyvkar" ; + test:Country "Russia" ; + + 837 +] . + +[ test:City "Kisumu" ; + test:Country "Kenya" ; + + 1685 +] . + +[ test:City "Piraeus" ; + test:Country "Greece" ; + + 1464 +] . + +[ test:City "Jabalpur" ; + test:Country "India" ; + + 2240 +] . + +[ test:City "Independence" ; + test:Country "United States" ; + + 2840 +] . + +[ test:City "Changwon" ; + test:Country "South Korea" ; + + 1135 +] . + +[ test:City "El Monte" ; + test:Country "United States" ; + + 2475 +] . + +[ test:City "Orenburg" ; + test:Country "Russia" ; + + 47 +] . + +[ test:City "Ludhiana" ; + test:Country "India" ; + + 3171 +] . + +[ test:City "Macapá" ; + test:Country "Brazil" ; + + 119 +] . + +[ test:City "Shuozhou" ; + test:Country "China" ; + + 707 +] . + +[ test:City "Yangzhou" ; + test:Country "China" ; + + 2083 +] . + +[ test:City "Córdoba" ; + test:Country "Spain" ; + + 1262 +] . + +[ test:City "Belgrade" ; + test:Country "Serbia" ; + + 2638 +] . + +[ test:City "Accra" ; + test:Country "Ghana" ; + + 3334 +] . + +[ test:City "Dunhua" ; + test:Country "China" ; + + 3298 +] . + +[ test:City "Mirpur Khas" ; + test:Country "Pakistan" ; + + 282 +] . + +[ test:City "Korolyov" ; + test:Country "Russia" ; + + 1718 +] . + +[ test:City "Port Said" ; + test:Country "Egypt" ; + + 1497 +] . + +[ test:City "Itami" ; + test:Country "Japan" ; + + 2873 +] . + +[ test:City "Saraburi" ; + test:Country "Thailand" ; + + 613 +] . + +[ test:City "Cartagena" ; + test:Country "Spain" ; + + 1105 +] . + +[ test:City "Chicago" ; + test:Country "United States" ; + + 1168 +] . + +[ test:City "Tonk" ; + test:Country "India" ; + + 1953 +] . + +[ test:City "Essen" ; + test:Country "Germany" ; + + 2508 +] . + +[ test:City "Oyama" ; + test:Country "Japan" ; + + 80 +] . + +[ test:City "Damascus" ; + test:Country "Syria" ; + + 3204 +] . + +[ test:City "Malasiqui, Pangasinan" ; + test:Country "Philippines" ; + + 152 +] . + +[ test:City "Sloviansk" ; + test:Country "Ukraine" ; + + 740 +] . + +[ test:City "Yonago" ; + test:Country "Japan" ; + + 2116 +] . + +[ test:City "Paramaribo" ; + test:Country "Suriname" ; + + 1403 +] . + +[ test:City "Boulder" ; + test:Country "United States" ; + + 2743 +] . + +[ test:City "Montreal" ; + test:Country "Canada" ; + + 315 +] . + +[ test:City "Pueblo, Colorado" ; + test:Country "United States" ; + + 1530 +] . + +[ test:City "Guadalajara" ; + test:Country "Mexico" ; + + 2414 +] . + +[ test:City "Haiphong" ; + test:Country "Vietnam" ; + + 2906 +] . + +[ test:City "Serra" ; + test:Country "Brazil" ; + + 646 +] . + +[ test:City "Tulsa, Oklahoma" ; + test:Country "United States" ; + + 1986 +] . + +[ test:City "Bakersfield" ; + test:Country "United States" ; + + 2541 +] . + +[ test:City "Denver" ; + test:Country "United States" ; + + 3237 +] . + +[ test:City "Maracanau" ; + test:Country "Brazil" ; + + 185 +] . + +[ test:City "Kaiyuan" ; + test:Country "China" ; + + 1561 +] . + +[ test:City "Nantong" ; + test:Country "China" ; + + 881 +] . + +[ test:City "Petaling Jaya" ; + test:Country "Malaysia" ; + + 1436 +] . + +[ test:City "Bucheon" ; + test:Country "South Korea" ; + + 2776 +] . + +[ test:City "Murom" ; + test:Country "Russia" ; + + 348 +] . + +[ test:City "Wuyishan" ; + test:Country "China" ; + + 1044 +] . + +[ test:City "Termez" ; + test:Country "Uzbekistan" ; + + 1892 +] . + +[ test:City "Gurgaon" ; + test:Country "India" ; + + 2447 +] . + +[ test:City "Santarém, Brazil" ; + test:Country "Brazil" ; + + 583 +] . + +[ test:City "Zaozhuang" ; + test:Country "China" ; + + 2019 +] . + +[ test:City "Białystok" ; + test:Country "Poland" ; + + 2682 +] . + +[ test:City "Dnipropetrovsk" ; + test:Country "Ukraine" ; + + 3270 +] . + +[ test:City "Matsuyama" ; + test:Country "Japan" ; + + 218 +] . + +[ test:City "Kaolack" ; + test:Country "Senegal" ; + + 1594 +] . + +[ test:City "Navi Mumbai" ; + test:Country "India" ; + + 914 +] . + +[ test:City "Plano, Texas" ; + test:Country "United States" ; + + 1469 +] . + +[ test:City "Ingolstadt" ; + test:Country "Germany" ; + + 2845 +] . + +[ test:City "Ibagué" ; + test:Country "Colombia" ; + + 2809 +] . + +[ test:City "Atsugi" ; + test:Country "Japan" ; + + 3505 +] . + +[ test:City "Cambridge" ; + test:Country "United States" ; + + 1077 +] . + +[ test:City "Titagarh" ; + test:Country "India" ; + + 1925 +] . + +[ test:City "Elbląg" ; + test:Country "Poland" ; + + 2480 +] . + +[ test:City "Leganés" ; + test:Country "Spain" ; + + 3080 +] . + +[ test:City "Macheng" ; + test:Country "China" ; + + 124 +] . + +[ test:City "Bobo-Dioulasso" ; + test:Country "Burkina Faso" ; + + 2715 +] . + +[ test:City "Miskolc" ; + test:Country "Hungary" ; + + 287 +] . + +[ test:City "Mérida" ; + test:Country "Venezuela" ; + + 251 +] . + +[ test:City "Münster" ; + test:Country "Germany" ; + + 359 +] . + +[ test:City "Kawasaki" ; + test:Country "Japan" ; + + 1627 +] . + +[ test:City "Nizhny Novgorod" ; + test:Country "Russia" ; + + 947 +] . + +[ test:City "Jos" ; + test:Country "Nigeria" ; + + 2323 +] . + +[ test:City "Porto Novo" ; + test:Country "Benin" ; + + 1502 +] . + +[ test:City "Itu" ; + test:Country "Brazil" ; + + 2878 +] . + +[ test:City "San Diego, California" ; + test:Country "United States" ; + + 522 +] . + +[ test:City "Casablanca" ; + test:Country "Morocco" ; + + 1110 +] . + +[ test:City "Torreón" ; + test:Country "Mexico" ; + + 1958 +] . + +[ test:City "Lilongwe" ; + test:Country "Malawi" ; + + 3113 +] . + +[ test:City "Malita, Davao del Sur" ; + test:Country "Philippines" ; + + 157 +] . + +[ test:City "Vilnius" ; + test:Country "Lithuania" ; + + 1345 +] . + +[ test:City "Pardubice" ; + test:Country "Czech Republic" ; + + 1408 +] . + +[ test:City "Fuxin" ; + test:Country "China" ; + + 2193 +] . + +[ test:City "Bradford" ; + test:Country "United Kingdom" ; + + 2748 +] . + +[ test:City "Moratuwa" ; + test:Country "Sri Lanka" ; + + 320 +] . + +[ test:City "Annaba" ; + test:Country "Algeria" ; + + 3444 +] . + +[ test:City "Ratlam" ; + test:Country "India" ; + + 392 +] . + +[ test:City "Noyabrsk" ; + test:Country "Russia" ; + + 980 +] . + +[ test:City "Geelong" ; + test:Country "Australia" ; + + 2356 +] . + +[ test:City "Puli Khumri" ; + test:Country "Afghanistan" ; + + 1535 +] . + +[ test:City "Halifax" ; + test:Country "Canada" ; + + 2911 +] . + +[ test:City "Ho Chi Minh City" ; + test:Country "Vietnam" ; + + 2983 +] . + +[ test:City "Sanandaj" ; + test:Country "Iran" ; + + 555 +] . + +[ test:City "London" ; + test:Country "Canada" ; + + 3146 +] . + +[ test:City "Mardan" ; + test:Country "Pakistan" ; + + 190 +] . + +[ test:City "Kalisz" ; + test:Country "Poland" ; + + 1566 +] . + +[ test:City "Nara" ; + test:Country "Japan" ; + + 886 +] . + +[ test:City "Urdaneta" ; + test:Country "Philippines" ; + + 2226 +] . + +[ test:City "Buffalo" ; + test:Country "United States" ; + + 2781 +] . + +[ test:City "Argenteuil" ; + test:Country "France" ; + + 3477 +] . + +[ test:City "Rio Branco" ; + test:Country "Brazil" ; + + 425 +] . + +[ test:City "West Covina" ; + test:Country "United States" ; + + 1013 +] . + +[ test:City "Xuancheng" ; + test:Country "China" ; + + 1801 +] . + +[ test:City "Caxias" ; + test:Country "Brazil" ; + + 1121 +] . + +[ test:City "Gold Coast" ; + test:Country "Australia" ; + + 2389 +] . + +[ test:City "Huánuco" ; + test:Country "Peru" ; + + 3016 +] . + +[ test:City "Ōmuta" ; + test:Country "Japan" ; + + 33 +] . + +[ test:City "Santiago del Estero" ; + test:Country "Argentina" ; + + 588 +] . + +[ test:City "Cúcuta" ; + test:Country "Colombia" ; + + 1284 +] . + +[ test:City "Bijapur" ; + test:Country "India" ; + + 2687 +] . + +[ test:City "Mayagüez" ; + test:Country "Puerto Rico" ; + + 223 +] . + +[ test:City "Surat" ; + test:Country "India" ; + + 823 +] . + +[ test:City "Karaman" ; + test:Country "Turkey" ; + + 1599 +] . + +[ test:City "Kimberley" ; + test:Country "South Africa" ; + + 1671 +] . + +[ test:City "Jaraguá do Sul" ; + test:Country "Brazil" ; + + 2259 +] . + +[ test:City "Ichalakaranji" ; + test:Country "India" ; + + 2814 +] . + +[ test:City "Hanam" ; + test:Country "South Korea" ; + + 2922 +] . + +[ test:City "Augusta" ; + test:Country "United States" ; + + 3510 +] . + +[ test:City "Ruichang" ; + test:Country "China" ; + + 458 +] . + +[ test:City "Talcahuano" ; + test:Country "Chile" ; + + 1834 +] . + +[ test:City "Chennai" ; + test:Country "India" ; + + 1154 +] . + +[ test:City "Leipzig" ; + test:Country "Germany" ; + + 3085 +] . + +[ test:City "Lahore" ; + test:Country "Pakistan" ; + + 3049 +] . + +[ test:City "Ostrava" ; + test:Country "Czech Republic" ; + + 66 +] . + +[ test:City "Varginha" ; + test:Country "Brazil" ; + + 1317 +] . + +[ test:City "Franca" ; + test:Country "Brazil" ; + + 2165 +] . + +[ test:City "Bogra" ; + test:Country "Bangladesh" ; + + 2720 +] . + +[ test:City "Messad" ; + test:Country "Algeria" ; + + 256 +] . + +[ test:City "Mytho" ; + test:Country "Vietnam" ; + + 364 +] . + +[ test:City "Naihati" ; + test:Country "India" ; + + 856 +] . + +[ test:City "Keelung" ; + test:Country "Taiwan" ; + + 1632 +] . + +[ test:City "Kolar" ; + test:Country "India" ; + + 1704 +] . + +[ test:City "Jijel" ; + test:Country "Algeria" ; + + 2292 +] . + +[ test:City "Hengyang" ; + test:Country "China" ; + + 2955 +] . + +[ test:City "San José" ; + test:Country "Costa Rica" ; + + 527 +] . + +[ test:City "Sakata" ; + test:Country "Japan" ; + + 491 +] . + +[ test:City "Tashkent" ; + test:Country "Uzbekistan" ; + + 1867 +] . + +[ test:City "Chitradurga" ; + test:Country "India" ; + + 1187 +] . + +[ test:City "Bani Suwayf" ; + test:Country "Egypt" ; + + 2563 +] . + +[ test:City "Limoges" ; + test:Country "France" ; + + 3118 +] . + +[ test:City "Visakhapatnam" ; + test:Country "India" ; + + 1350 +] . + +[ test:City "Ube" ; + test:Country "Japan" ; + + 2198 +] . + +[ test:City "Ahmednagar" ; + test:Country "India" ; + + 3353 +] . + +[ test:City "Reading" ; + test:Country "United Kingdom" ; + + 397 +] . + +[ test:City "Krasnodar" ; + test:Country "Russia" ; + + 1737 +] . + +[ test:City "Guelma" ; + test:Country "Algeria" ; + + 2433 +] . + +[ test:City "Homs" ; + test:Country "Syria" ; + + 2988 +] . + +[ test:City "Obihiro" ; + test:Country "Japan" ; + + 5 +] . + +[ test:City "Şanlıurfa" ; + test:Country "Turkey" ; + + 560 +] . + +[ test:City "Seam Reab" ; + test:Country "Cambodia" ; + + 632 +] . + +[ test:City "Ciudad Obregón" ; + test:Country "Mexico" ; + + 1220 +] . + +[ test:City "Barysaw" ; + test:Country "Belarus" ; + + 2596 +] . + +[ test:City "Longueuil" ; + test:Country "Canada" ; + + 3151 +] . + +[ test:City "Daugavpils" ; + test:Country "Latvia" ; + + 3223 +] . + +[ test:City "Subotica" ; + test:Country "Serbia" ; + + 795 +] . + +[ test:City "Sorsogon City" ; + test:Country "Philippines" ; + + 759 +] . + +[ test:City "Khandwa" ; + test:Country "India" ; + + 1643 +] . + +[ test:City "Farrukhabad" ; + test:Country "India" ; + + 2135 +] . + +[ test:City "Alexandra" ; + test:Country "South Africa" ; + + 3386 +] . + +[ test:City "Rio Verde" ; + test:Country "Brazil" ; + + 430 +] . + +[ test:City "Kütahya" ; + test:Country "Turkey" ; + + 1770 +] . + +[ test:City "Tabriz" ; + test:Country "Iran" ; + + 1806 +] . + +[ test:City "Chandannagar" ; + test:Country "India" ; + + 1126 +] . + +[ test:City "Edmonton" ; + test:Country "Canada" ; + + 2466 +] . + +[ test:City "Huddersfield" ; + test:Country "United Kingdom" ; + + 3021 +] . + +[ test:City "Or Yehuda" ; + test:Country "Israel" ; + + 38 +] . + +[ test:City "Shangqiu" ; + test:Country "China" ; + + 665 +] . + +[ test:City "Constantine" ; + test:Country "Algeria" ; + + 1253 +] . + +[ test:City "Beijing" ; + test:Country "China" ; + + 2629 +] . + +[ test:City "Dijon" ; + test:Country "France" ; + + 3256 +] . + +[ test:City "Milan" ; + test:Country "Italy" ; + + 273 +] . + +[ test:City "Sutton Coldfield" ; + test:Country "United Kingdom" ; + + 828 +] . + +[ test:City "Kinshasa" ; + test:Country "Democratic Republic of the Congo" ; + + 1676 +] . + +[ test:City "Hanoi" ; + test:Country "Vietnam" ; + + 2927 +] . + +[ test:City "Amiens" ; + test:Country "France" ; + + 3419 +] . + +[ test:City "Rybinsk" ; + test:Country "Russia" ; + + 463 +] . + +[ test:City "Cairo" ; + test:Country "Egypt" ; + + 1063 +] . + +[ test:City "Taloqan" ; + test:Country "Afghanistan" ; + + 1839 +] . + +[ test:City "Tianshui" ; + test:Country "China" ; + + 1911 +] . + +[ test:City "Erode" ; + test:Country "India" ; + + 2499 +] . + +[ test:City "Lakewood" ; + test:Country "United States" ; + + 3054 +] . + +[ test:City "Shivpuri" ; + test:Country "India" ; + + 698 +] . + +[ test:City "Yamaguchi" ; + test:Country "Japan" ; + + 2074 +] . + +[ test:City "Pančevo" ; + test:Country "Serbia" ; + + 1394 +] . + +[ test:City "Dubai" ; + test:Country "United Arab Emirates" ; + + 3289 +] . + +[ test:City "Monclova" ; + test:Country "Mexico" ; + + 306 +] . + +[ test:City "Nakhon Pathom" ; + test:Country "Thailand" ; + + 861 +] . + +[ test:City "Kolwezi" ; + test:Country "Democratic Republic of the Congo" ; + + 1709 +] . + +[ test:City "Priština" ; + + 1521 +] . + +[ test:City "Grand Rapids" ; + test:Country "United States" ; + + 2405 +] . + +[ test:City "Hadano" ; + test:Country "Japan" ; + + 2897 +] . + +[ test:City "Heshan" ; + test:Country "China" ; + + 2960 +] . + +[ test:City "Salé" ; + test:Country "Morocco" ; + + 496 +] . + +[ test:City "Carapicuíba" ; + test:Country "Brazil" ; + + 1096 +] . + +[ test:City "Tbilisi" ; + test:Country "Georgia" ; + + 1872 +] . + +[ test:City "Tomsk" ; + test:Country "Russia" ; + + 1944 +] . + +[ test:City "Bahía Blanca" ; + test:Country "Argentina" ; + + 2532 +] . + +[ test:City "Daitō" ; + test:Country "Japan" ; + + 3195 +] . + +[ test:City "Sitapur" ; + test:Country "India" ; + + 731 +] . + +[ test:City "Yining" ; + test:Country "China" ; + + 2107 +] . + +[ test:City "Peristeri" ; + test:Country "Greece" ; + + 1427 +] . + +[ test:City "Aix-en-Provence" ; + test:Country "France" ; + + 3358 +] . + +[ test:City "Abbotsford" ; + test:Country "Canada" ; + + 3322 +] . + +[ test:City "Multan" ; + test:Country "Pakistan" ; + + 339 +] . + +[ test:City "Krishnanagar" ; + test:Country "India" ; + + 1742 +] . + +[ test:City "Gujiao" ; + test:Country "China" ; + + 2438 +] . + +[ test:City "Semarang" ; + test:Country "Indonesia" ; + + 637 +] . + +[ test:City "Trondheim" ; + test:Country "Norway" ; + + 1977 +] . + +[ test:City "Bhilwara" ; + test:Country "India" ; + + 2673 +] . + +[ test:City "Debrecen" ; + test:Country "Hungary" ; + + 3228 +] . + +[ test:City "Matanzas" ; + test:Country "Cuba" ; + + 209 +] . + +[ test:City "Suihua" ; + test:Country "China" ; + + 800 +] . + +[ test:City "Kandy" ; + test:Country "Sri Lanka" ; + + 1585 +] . + +[ test:City "Southampton" ; + test:Country "United Kingdom" ; + + 764 +] . + +[ test:City "Nanchang" ; + test:Country "China" ; + + 872 +] . + +[ test:City "Khartoum" ; + test:Country "Sudan" ; + + 1648 +] . + +[ test:City "Fengcheng" ; + test:Country "China" ; + + 2140 +] . + +[ test:City "Pingxiang" ; + test:Country "China" ; + + 1460 +] . + +[ test:City "Imphal" ; + test:Country "India" ; + + 2836 +] . + +[ test:City "Algiers" ; + test:Country "Algeria" ; + + 3391 +] . + +[ test:City "Aracaju" ; + test:Country "Brazil" ; + + 3463 +] . + +[ test:City "Wrocław" ; + test:Country "Poland" ; + + 1035 +] . + +[ test:City "Warren" ; + test:Country "United States" ; + + 999 +] . + +[ test:City "Kyzylorda" ; + test:Country "Kazakhstan" ; + + 1775 +] . + +[ test:City "Gingoog City" ; + test:Country "Philippines" ; + + 2375 +] . + +[ test:City "Maastricht" ; + test:Country "Netherlands" ; + + 115 +] . + +[ test:City "Shaoguan" ; + test:Country "China" ; + + 670 +] . + +[ test:City "Zagazig" ; + test:Country "Egypt" ; + + 2010 +] . + +[ test:City "Blackburn" ; + test:Country "United Kingdom" ; + + 2706 +] . + +[ test:City "Dingzhou" ; + test:Country "China" ; + + 3261 +] . + +[ test:City "Minglanilla, Cebu" ; + test:Country "Philippines" ; + + 278 +] . + +[ test:City "Meizhou" ; + test:Country "China" ; + + 242 +] . + +[ test:City "Kathlehong" ; + test:Country "South Africa" ; + + 1618 +] . + +[ test:City "Neftekamsk" ; + test:Country "Russia" ; + + 905 +] . + +[ test:City "Port Elizabeth" ; + test:Country "South Africa" ; + + 1493 +] . + +[ test:City "Itabuna" ; + test:Country "Brazil" ; + + 2869 +] . + +[ test:City "Amroha" ; + test:Country "India" ; + + 3424 +] . + +[ test:City "Astrakhan" ; + test:Country "Russia" ; + + 3496 +] . + +[ test:City "Samsun" ; + test:Country "Turkey" ; + + 513 +] . + +[ test:City "Calamba City" ; + test:Country "Philippines" ; + + 1068 +] . + +[ test:City "Tilburg" ; + test:Country "Netherlands" ; + + 1916 +] . + +[ test:City "Málaga" ; + test:Country "Spain" ; + + 148 +] . + +[ test:City "Shreveport, Louisiana" ; + test:Country "United States" ; + + 703 +] . + +[ test:City "Valladolid" ; + test:Country "Spain" ; + + 1303 +] . + +[ test:City "Yancheng" ; + test:Country "China" ; + + 2079 +] . + +[ test:City "Zhongshan" ; + test:Country "China" ; + + 2043 +] . + +[ test:City "Floridablanca" ; + test:Country "Colombia" ; + + 2151 +] . + +[ test:City "Bottrop" ; + test:Country "Germany" ; + + 2739 +] . + +[ test:City "Dujiangyan" ; + test:Country "China" ; + + 3294 +] . + +[ test:City "Ningbo" ; + test:Country "China" ; + + 938 +] . + +[ test:City "João Pessoa" ; + test:Country "Brazil" ; + + 2314 +] . + +[ test:City "Provo, Utah" ; + test:Country "United States" ; + + 1526 +] . + +[ test:City "Haifa" ; + test:Country "Israel" ; + + 2902 +] . + +[ test:City "San Pablo City" ; + test:Country "Philippines" ; + + 546 +] . + +[ test:City "Carlisle" ; + test:Country "United Kingdom" ; + + 1101 +] . + +[ test:City "Tongjiang" ; + test:Country "China" ; + + 1949 +] . + +[ test:City "Livorno" ; + test:Country "Italy" ; + + 3137 +] . + +[ test:City "Dallas" ; + test:Country "United States" ; + + 3200 +] . + +[ test:City "Maputo" ; + test:Country "Mozambique" ; + + 181 +] . + +[ test:City "Kaili" ; + test:Country "China" ; + + 1557 +] . + +[ test:City "Skikda" ; + test:Country "Algeria" ; + + 736 +] . + +[ test:City "Vientiane" ; + test:Country "Laos" ; + + 1336 +] . + +[ test:City "Yogyakarta" ; + test:Country "Indonesia" ; + + 2112 +] . + +[ test:City "Fukui" ; + test:Country "Japan" ; + + 2184 +] . + +[ test:City "Brussels" ; + test:Country "Belgium" ; + + 2772 +] . + +[ test:City "Abiko" ; + test:Country "Japan" ; + + 3327 +] . + +[ test:City "Angarsk" ; + test:Country "Russia" ; + + 3435 +] . + +[ test:City "Novocherkassk" ; + test:Country "Russia" ; + + 971 +] . + +[ test:City "Gary" ; + test:Country "United States" ; + + 2347 +] . + +[ test:City "Santa Rita" ; + test:Country "Brazil" ; + + 579 +] . + +[ test:City "Tsuruoka" ; + test:Country "Japan" ; + + 1982 +] . + +[ test:City "Bhopal" ; + test:Country "India" ; + + 2678 +] . + +[ test:City "Matsudo" ; + test:Country "Japan" ; + + 214 +] . + +[ test:City "Kanpur" ; + test:Country "India" ; + + 1590 +] . + +[ test:City "Nanjing" ; + test:Country "China" ; + + 877 +] . + +[ test:City "Paarl" ; + test:Country "South Africa" ; + + 1369 +] . + +[ test:City "Ulsan" ; + test:Country "South Korea" ; + + 2217 +] . + +[ test:City "Bytom" ; + test:Country "Poland" ; + + 2805 +] . + +[ test:City "Hama" ; + test:Country "Syria" ; + + 2913 +] . + +[ test:City "Arapiraca" ; + test:Country "Brazil" ; + + 3468 +] . + +[ test:City "Rotherham" ; + test:Country "United Kingdom" ; + + 449 +] . + +[ test:City "Watford" ; + test:Country "United Kingdom" ; + + 1004 +] . + +[ test:City "Wuppertal" ; + test:Country "Germany" ; + + 1040 +] . + +[ test:City "Tajimi" ; + test:Country "Japan" ; + + 1825 +] . + +[ test:City "Glazov" ; + test:Country "Russia" ; + + 2380 +] . + +[ test:City "Laval" ; + test:Country "Canada" ; + + 3076 +] . + +[ test:City "Oldham" ; + test:Country "United Kingdom" ; + + 24 +] . + +[ test:City "Colombo" ; + test:Country "Sri Lanka" ; + + 1239 +] . + +[ test:City "Zamora de Hidalgo" ; + test:Country "Mexico" ; + + 2015 +] . + +[ test:City "Bayamón" ; + test:Country "Puerto Rico" ; + + 2615 +] . + +[ test:City "Muzaffargharh" ; + test:Country "Pakistan" ; + + 355 +] . + +[ test:City "Netanya" ; + test:Country "Israel" ; + + 910 +] . + +[ test:City "Jalalabad" ; + test:Country "Afghanistan" ; + + 2250 +] . + +[ test:City "Hefei" ; + test:Country "China" ; + + 2946 +] . + +[ test:City "Athens" ; + test:Country "Greece" ; + + 3501 +] . + +[ test:City "San Carlos City, Negros Occidental" ; + test:Country "Philippines" ; + + 518 +] . + +[ test:City "Saidpur" ; + test:Country "Bangladesh" ; + + 482 +] . + +[ test:City "Taranto" ; + test:Country "Italy" ; + + 1858 +] . + +[ test:City "Charlotte" ; + test:Country "United States" ; + + 1145 +] . + +[ test:City "Ligao City" ; + test:Country "Philippines" ; + + 3109 +] . + +[ test:City "Osasco" ; + test:Country "Brazil" ; + + 57 +] . + +[ test:City "Valparaíso" ; + test:Country "Chile" ; + + 1308 +] . + +[ test:City "Cotabato City" ; + test:Country "Philippines" ; + + 1272 +] . + +[ test:City "Zhuji" ; + test:Country "China" ; + + 2048 +] . + +[ test:City "Formosa" ; + test:Country "Argentina" ; + + 2156 +] . + +[ test:City "Benoni" ; + test:Country "South Africa" ; + + 2648 +] . + +[ test:City "Rancho Cucamonga" ; + test:Country "United States" ; + + 388 +] . + +[ test:City "Niterói" ; + test:Country "Brazil" ; + + 943 +] . + +[ test:City "Joinville" ; + test:Country "Brazil" ; + + 2319 +] . + +[ test:City "Jiangyin" ; + test:Country "China" ; + + 2283 +] . + +[ test:City "Hiroshima" ; + test:Country "Japan" ; + + 2979 +] . + +[ test:City "Chinandega" ; + test:Country "Nicaragua" ; + + 1178 +] . + +[ test:City "Loja" ; + test:Country "Ecuador" ; + + 3142 +] . + +[ test:City "Qingtongxia" ; + test:Country "China" ; + + 90 +] . + +[ test:City "Stavropol" ; + test:Country "Russia" ; + + 786 +] . + +[ test:City "Villa Nicolás Romero" ; + test:Country "Mexico" ; + + 1341 +] . + +[ test:City "Kemerovo" ; + test:Country "Russia" ; + + 1634 +] . + +[ test:City "Fullerton" ; + test:Country "United States" ; + + 2189 +] . + +[ test:City "Alajuela" ; + test:Country "Costa Rica" ; + + 3377 +] . + +[ test:City "Ankang" ; + test:Country "China" ; + + 3440 +] . + +[ test:City "Richmond" ; + test:Country "United States" ; + + 421 +] . + +[ test:City "Novoshakhtinsk" ; + test:Country "Russia" ; + + 976 +] . + +[ test:City "Xinyi" ; + test:Country "China" ; + + 1797 +] . + +[ test:City "Kurnool" ; + test:Country "India" ; + + 1761 +] . + +[ test:City "Gaziantep" ; + test:Country "Turkey" ; + + 2352 +] . + +[ test:City "Guarenas" ; + test:Country "Venezuela" ; + + 2424 +] . + +[ test:City "Huanghua" ; + test:Country "China" ; + + 3012 +] . + +[ test:City "Ciudad Acuña" ; + test:Country "Mexico" ; + + 1211 +] . + +[ test:City "Barra Mansa" ; + test:Country "Brazil" ; + + 2587 +] . + +[ test:City "Baltimore" ; + test:Country "United States" ; + + 2551 +] . + +[ test:City "Suqian" ; + test:Country "China" ; + + 819 +] . + +[ test:City "Kielce" ; + test:Country "Poland" ; + + 1667 +] . + +[ test:City "Padua" ; + test:Country "Italy" ; + + 1374 +] . + +[ test:City "Uppsala" ; + test:Country "Sweden" ; + + 2222 +] . + +[ test:City "Hami City" ; + test:Country "China" ; + + 2918 +] . + +[ test:City "Amagasaki" ; + test:Country "Japan" ; + + 3410 +] . + +[ test:City "Rubtsovsk" ; + test:Country "Russia" ; + + 454 +] . + +[ test:City "Takatsuki" ; + test:Country "Japan" ; + + 1830 +] . + +[ test:City "Eastbourne" ; + test:Country "United Kingdom" ; + + 2457 +] . + +[ test:City "Lafayette" ; + test:Country "United States" ; + + 3045 +] . + +[ test:City "Olsztyn" ; + test:Country "Poland" ; + + 29 +] . + +[ test:City "Shimizu" ; + test:Country "Japan" ; + + 689 +] . + +[ test:City "Zürich" ; + test:Country "Switzerland" ; + + 2065 +] . + +[ test:City "Columbus, Georgia" ; + test:Country "United States" ; + + 1244 +] . + +[ test:City "Beau-Bassin" ; + test:Country "Mauritius" ; + + 2620 +] . + +[ test:City "Mezhdurechensk" ; + test:Country "Russia" ; + + 264 +] . + +[ test:City "Nagercoil" ; + test:Country "India" ; + + 852 +] . + +[ test:City "Kohat" ; + test:Country "Pakistan" ; + + 1700 +] . + +[ test:City "Pohang" ; + test:Country "South Korea" ; + + 1479 +] . + +[ test:City "Jamalpur" ; + test:Country "Bangladesh" ; + + 2255 +] . + +[ test:City "Irkutsk" ; + test:Country "Russia" ; + + 2855 +] . + +[ test:City "Chemnitz" ; + test:Country "Germany" ; + + 1150 +] . + +[ test:City "Enschede" ; + test:Country "Netherlands" ; + + 2490 +] . + +[ test:City "Oslo" ; + test:Country "Norway" ; + + 62 +] . + +[ test:City "Lysychansk" ; + test:Country "Ukraine" ; + + 3186 +] . + +[ test:City "Simi Valley, California" ; + test:Country "United States" ; + + 722 +] . + +[ test:City "Yichang" ; + test:Country "China" ; + + 2098 +] . + +[ test:City "Craiova" ; + test:Country "Romania" ; + + 1277 +] . + +[ test:City "Pali" ; + test:Country "India" ; + + 1385 +] . + +[ test:City "Berezniki" ; + test:Country "Russia" ; + + 2653 +] . + +[ test:City "Ageo" ; + test:Country "Japan" ; + + 3349 +] . + +[ test:City "A Coruña" ; + test:Country "Spain" ; + + 3313 +] . + +[ test:City "Modinagar" ; + test:Country "India" ; + + 297 +] . + +[ test:City "Kragujevac" ; + test:Country "Serbia" ; + + 1733 +] . + +[ test:City "Poznań" ; + test:Country "Poland" ; + + 1512 +] . + +[ test:City "Jiaozuo" ; + test:Country "China" ; + + 2288 +] . + +[ test:City "İzmit" ; + test:Country "Turkey" ; + + 2888 +] . + +[ test:City "Savannah, Georgia" ; + test:Country "United States" ; + + 628 +] . + +[ test:City "Chirchiq" ; + test:Country "Uzbekistan" ; + + 1183 +] . + +[ test:City "Bafoussam" ; + test:Country "Cameroon" ; + + 2523 +] . + +[ test:City "Qinyang" ; + test:Country "China" ; + + 95 +] . + +[ test:City "Daska" ; + test:Country "Pakistan" ; + + 3219 +] . + +[ test:City "Mandalay" ; + test:Country "Myanmar" ; + + 167 +] . + +[ test:City "Songkhla" ; + test:Country "Thailand" ; + + 755 +] . + +[ test:City "Puyang" ; + test:Country "China" ; + + 1543 +] . + +[ test:City "Yuzhou" ; + test:Country "China" ; + + 2131 +] . + +[ test:City "Pavlohrad" ; + test:Country "Ukraine" ; + + 1418 +] . + +[ test:City "Alcalá de Henares" ; + test:Country "Spain" ; + + 3382 +] . + +[ test:City "Mostaganem" ; + test:Country "Algeria" ; + + 330 +] . + +[ test:City "Winterthur" ; + test:Country "Switzerland" ; + + 1026 +] . + +[ test:City "Kut" ; + test:Country "Iraq" ; + + 1766 +] . + +[ test:City "Guaymas" ; + test:Country "Mexico" ; + + 2429 +] . + +[ test:City "Shahrud" ; + test:Country "Iran" ; + + 661 +] . + +[ test:City "Ciudad López Mateos" ; + test:Country "Mexico" ; + + 1216 +] . + +[ test:City "Tuxtla Gutiérrez" ; + test:Country "Mexico" ; + + 2001 +] . + +[ test:City "Barretos" ; + test:Country "Brazil" ; + + 2592 +] . + +[ test:City "Bandar Abbas" ; + test:Country "Iran" ; + + 2556 +] . + +[ test:City "Bhadravati" ; + test:Country "India" ; + + 2664 +] . + +[ test:City "Diadema" ; + test:Country "Brazil" ; + + 3252 +] . + +[ test:City "Marseille" ; + test:Country "France" ; + + 200 +] . + +[ test:City "Kampala" ; + test:Country "Uganda" ; + + 1576 +] . + +[ test:City "Piatra Neamţ" ; + test:Country "Romania" ; + + 1451 +] . + +[ test:City "Ilesa" ; + test:Country "Nigeria" ; + + 2827 +] . + +[ test:City "Burbank" ; + test:Country "United States" ; + + 2791 +] . + +[ test:City "Cagliari" ; + test:Country "Italy" ; + + 1059 +] . + +[ test:City "Thrissur" ; + test:Country "India" ; + + 1907 +] . + +[ test:City "Ede" ; + test:Country "Nigeria" ; + + 2462 +] . + +[ test:City "Quezon City" ; + test:Country "Philippines" ; + + 106 +] . + +[ test:City "Shinyanga" ; + test:Country "Tanzania" ; + + 694 +] . + +[ test:City "Yaizu" ; + test:Country "Japan" ; + + 2070 +] . + +[ test:City "Zhangye" ; + test:Country "China" ; + + 2034 +] . + +[ test:City "Birjand" ; + test:Country "Iran" ; + + 2697 +] . + +[ test:City "Dourados" ; + test:Country "Brazil" ; + + 3285 +] . + +[ test:City "Michurinsk" ; + test:Country "Russia" ; + + 269 +] . + +[ test:City "McAllen, Texas" ; + test:Country "United States" ; + + 233 +] . + +[ test:City "Kashihara" ; + test:Country "Japan" ; + + 1609 +] . + +[ test:City "Nice" ; + test:Country "France" ; + + 929 +] . + +[ test:City "Pomona, California" ; + test:Country "United States" ; + + 1484 +] . + +[ test:City "Jinzhou" ; + test:Country "China" ; + + 2305 +] . + +[ test:City "Isesaki" ; + test:Country "Japan" ; + + 2860 +] . + +[ test:City "Cape Coral" ; + test:Country "United States" ; + + 1092 +] . + +[ test:City "Toledo, Paraná" ; + test:Country "Brazil" ; + + 1940 +] . + +[ test:City "Erbil" ; + test:Country "Iraq" ; + + 2495 +] . + +[ test:City "Leshan" ; + test:Country "China" ; + + 3095 +] . + +[ test:City "Mahbubnagar" ; + test:Country "India" ; + + 139 +] . + +[ test:City "Palu" ; + test:Country "Indonesia" ; + + 1390 +] . + +[ test:City "Bordeaux" ; + test:Country "France" ; + + 2730 +] . + +[ test:City "Abadan" ; + test:Country "Iran" ; + + 3318 +] . + +[ test:City "Mogpo" ; + test:Country "South Korea" ; + + 302 +] . + +[ test:City "Anaheim" ; + test:Country "United States" ; + + 3426 +] . + +[ test:City "Nossa Senhora do Socorro" ; + test:Country "Brazil" ; + + 962 +] . + +[ test:City "Ganganagar" ; + test:Country "India" ; + + 2338 +] . + +[ test:City "Presidente Prudente" ; + test:Country "Brazil" ; + + 1517 +] . + +[ test:City "Habikino" ; + test:Country "Japan" ; + + 2893 +] . + +[ test:City "San Luis" ; + test:Country "Argentina" ; + + 537 +] . + +[ test:City "Trieste" ; + test:Country "Italy" ; + + 1973 +] . + +[ test:City "Baguio" ; + test:Country "Philippines" ; + + 2528 +] . + +[ test:City "Lipa City" ; + test:Country "Philippines" ; + + 3128 +] . + +[ test:City "Mangaung" ; + test:Country "South Africa" ; + + 172 +] . + +[ test:City "Kabwe" ; + test:Country "Zambia" ; + + 1548 +] . + +[ test:City "Nam Định" ; + test:Country "Vietnam" ; + + 868 +] . + +[ test:City "Penza" ; + test:Country "Russia" ; + + 1423 +] . + +[ test:City "Brest" ; + test:Country "Belarus" ; + + 2763 +] . + +[ test:City "M'Sila" ; + test:Country "Algeria" ; + + 335 +] . + +[ test:City "Apeldoorn" ; + test:Country "Netherlands" ; + + 3459 +] . + +[ test:City "Rennes" ; + test:Country "France" ; + + 407 +] . + +[ test:City "Walsall" ; + test:Country "United Kingdom" ; + + 995 +] . + +[ test:City "Ghent" ; + test:Country "Belgium" ; + + 2371 +] . + +[ test:City "Santa Cruz de Tenerife" ; + test:Country "Spain" ; + + 570 +] . + +[ test:City "Zaanstad" ; + test:Country "Netherlands" ; + + 2006 +] . + +[ test:City "Bharuch" ; + test:Country "India" ; + + 2669 +] . + +[ test:City "Lu'an" ; + test:Country "China" ; + + 3161 +] . + +[ test:City "Mashhad" ; + test:Country "Iran" ; + + 205 +] . + +[ test:City "Kanazawa" ; + test:Country "Japan" ; + + 1581 +] . + +[ test:City "Nawabshah" ; + test:Country "Pakistan" ; + + 901 +] . + +[ test:City "Pindamonhangaba" ; + test:Country "Brazil" ; + + 1456 +] . + +[ test:City "Jaboatao dos Guarapes" ; + test:Country "Brazil" ; + + 2241 +] . + +[ test:City "Ilorin" ; + test:Country "Nigeria" ; + + 2832 +] . + +[ test:City "Burlington" ; + test:Country "Canada" ; + + 2796 +] . + +[ test:City "Ashdod" ; + test:Country "Israel" ; + + 3492 +] . + +[ test:City "Rodriguez" ; + test:Country "Philippines" ; + + 440 +] . + +[ test:City "Taian" ; + test:Country "China" ; + + 1816 +] . + +[ test:City "Huntsville" ; + test:Country "United States" ; + + 3031 +] . + +[ test:City "Quito" ; + test:Country "Ecuador" ; + + 111 +] . + +[ test:City "São José dos Campos" ; + test:Country "Brazil" ; + + 603 +] . + +[ test:City "Valencia" ; + test:Country "Philippines" ; + + 1299 +] . + +[ test:City "Flint" ; + test:Country "United States" ; + + 2147 +] . + +[ test:City "Biskra" ; + test:Country "Algeria" ; + + 2702 +] . + +[ test:City "Medina" ; + test:Country "Saudi Arabia" ; + + 238 +] . + +[ test:City "Kasuga" ; + test:Country "Japan" ; + + 1614 +] . + +[ test:City "Nijmegen" ; + test:Country "Netherlands" ; + + 934 +] . + +[ test:City "Jiutepec" ; + test:Country "Mexico" ; + + 2310 +] . + +[ test:City "Jhang" ; + test:Country "Pakistan" ; + + 2274 +] . + +[ test:City "Hassan" ; + test:Country "India" ; + + 2937 +] . + +[ test:City "Safi" ; + test:Country "Morocco" ; + + 473 +] . + +[ test:City "Tanga" ; + test:Country "Tanzania" ; + + 1849 +] . + +[ test:City "Chiclayo" ; + test:Country "Peru" ; + + 1169 +] . + +[ test:City "Lianyuan" ; + test:Country "China" ; + + 3100 +] . + +[ test:City "Lapu-Lapu City" ; + test:Country "Philippines" ; + + 3064 +] . + +[ test:City "Oyo" ; + test:Country "Nigeria" ; + + 81 +] . + +[ test:City "Makati" ; + test:Country "Philippines" ; + + 144 +] . + +[ test:City "Vicenza" ; + test:Country "Italy" ; + + 1332 +] . + +[ test:City "Fujin City" ; + test:Country "China" ; + + 2180 +] . + +[ test:City "Boston" ; + test:Country "United States" ; + + 2735 +] . + +[ test:City "Acheng" ; + test:Country "China" ; + + 3335 +] . + +[ test:City "Raleigh" ; + test:Country "United States" ; + + 379 +] . + +[ test:City "Koronadal City" ; + test:Country "Philippines" ; + + 1719 +] . + +[ test:City "Hildesheim" ; + test:Country "Germany" ; + + 2970 +] . + +[ test:City "San Miguel, Bulacan" ; + test:Country "Philippines" ; + + 542 +] . + +[ test:City "Salzburg" ; + test:Country "Austria" ; + + 506 +] . + +[ test:City "Tembisa" ; + test:Country "South Africa" ; + + 1882 +] . + +[ test:City "Chuncheon" ; + test:Country "South Korea" ; + + 1202 +] . + +[ test:City "Barcelona" ; + test:Country "Spain" ; + + 2578 +] . + +[ test:City "Liupanshui" ; + test:Country "China" ; + + 3133 +] . + +[ test:City "St Paul, Minnesota" ; + test:Country "United States" ; + + 777 +] . + +[ test:City "Volzhsky" ; + test:Country "Russia" ; + + 1365 +] . + +[ test:City "Ulan Hot" ; + test:Country "China" ; + + 2213 +] . + +[ test:City "Bristol" ; + test:Country "United Kingdom" ; + + 2768 +] . + +[ test:City "Akron" ; + test:Country "United States" ; + + 3368 +] . + +[ test:City "Reutlingen" ; + test:Country "Germany" ; + + 412 +] . + +[ test:City "Kumasi" ; + test:Country "Ghana" ; + + 1752 +] . + +[ test:City "Hsinchu" ; + test:Country "Taiwan" ; + + 3003 +] . + +[ test:City "Okinawa" ; + test:Country "Japan" ; + + 20 +] . + +[ test:City "Santa Luzia, Minas Gerais" ; + test:Country "Brazil" ; + + 575 +] . + +[ test:City "Sertaozinho" ; + test:Country "Brazil" ; + + 647 +] . + +[ test:City "Colchester" ; + test:Country "United Kingdom" ; + + 1235 +] . + +[ test:City "Batumi" ; + test:Country "Georgia" ; + + 2611 +] . + +[ test:City "Lublin" ; + test:Country "Poland" ; + + 3166 +] . + +[ test:City "Sumaré" ; + test:Country "Brazil" ; + + 810 +] . + +[ test:City "Khoramabad" ; + test:Country "Iran" ; + + 1658 +] . + +[ test:City "Jaén" ; + test:Country "Spain" ; + + 2246 +] . + +[ test:City "Almería" ; + test:Country "Spain" ; + + 3401 +] . + +[ test:City "Roodepoort" ; + test:Country "South Africa" ; + + 445 +] . + +[ test:City "Xiaoshan" ; + test:Country "China" ; + + 1785 +] . + +[ test:City "Taiyuan" ; + test:Country "China" ; + + 1821 +] . + +[ test:City "Chapecó" ; + test:Country "Brazil" ; + + 1141 +] . + +[ test:City "Elche" ; + test:Country "Spain" ; + + 2481 +] . + +[ test:City "Hyesan" ; + test:Country "North Korea" ; + + 3036 +] . + +[ test:City "Orsk" ; + test:Country "Russia" ; + + 53 +] . + +[ test:City "São Paulo" ; + test:Country "Brazil" ; + + 608 +] . + +[ test:City "Shenyang" ; + test:Country "China" ; + + 680 +] . + +[ test:City "Zigong" ; + test:Country "China" ; + + 2056 +] . + +[ test:City "Corpus Christi" ; + test:Country "United States" ; + + 1268 +] . + +[ test:City "Benghazi" ; + test:Country "Libya" ; + + 2644 +] . + +[ test:City "Doboj" ; + test:Country "Bosnia and Herzegovina" ; + + 3271 +] . + +[ test:City "Székesfehérvár" ; + test:Country "Hungary" ; + + 843 +] . + +[ test:City "Klang" ; + test:Country "Malaysia" ; + + 1691 +] . + +[ test:City "Hebi" ; + test:Country "China" ; + + 2942 +] . + +[ test:City "Saguenay" ; + test:Country "Canada" ; + + 478 +] . + +[ test:City "Tanta" ; + test:Country "Egypt" ; + + 1854 +] . + +[ test:City "Chillán" ; + test:Country "Chile" ; + + 1174 +] . + +[ test:City "Ezhou" ; + test:Country "China" ; + + 2514 +] . + +[ test:City "Las Vegas" ; + test:Country "United States" ; + + 3069 +] . + +[ test:City "Qazvin" ; + test:Country "Iran" ; + + 86 +] . + +[ test:City "Lusaka" ; + test:Country "Zambia" ; + + 3177 +] . + +[ test:City "Siegen" ; + test:Country "Germany" ; + + 713 +] . + +[ test:City "Yatsushiro" ; + test:Country "Japan" ; + + 2089 +] . + +[ test:City "Paris" ; + test:Country "France" ; + + 1409 +] . + +[ test:City "Adelaide" ; + test:Country "Australia" ; + + 3340 +] . + +[ test:City "Durg" ; + test:Country "India" ; + + 3304 +] . + +[ test:City "Morelia" ; + test:Country "Mexico" ; + + 321 +] . + +[ test:City "Rampur" ; + test:Country "India" ; + + 384 +] . + +[ test:City "Kostroma" ; + test:Country "Russia" ; + + 1724 +] . + +[ test:City "Guangzhou" ; + test:Country "China" ; + + 2420 +] . + +[ test:City "Hino" ; + test:Country "Japan" ; + + 2975 +] . + +[ test:City "Sambalpur" ; + test:Country "India" ; + + 511 +] . + +[ test:City "Sargodha" ; + test:Country "Pakistan" ; + + 619 +] . + +[ test:City "Cascavel" ; + test:Country "Brazil" ; + + 1111 +] . + +[ test:City "Tengzhou" ; + test:Country "China" ; + + 1887 +] . + +[ test:City "Toruń" ; + test:Country "Poland" ; + + 1959 +] . + +[ test:City "Balikpapan" ; + test:Country "Indonesia" ; + + 2547 +] . + +[ test:City "Danjiangkou" ; + test:Country "China" ; + + 3210 +] . + +[ test:City "Stamford, Connecticut" ; + test:Country "United States" ; + + 782 +] . + +[ test:City "Sochi" ; + test:Country "Russia" ; + + 746 +] . + +[ test:City "Yuanjiang" ; + test:Country "China" ; + + 2122 +] . + +[ test:City "Petrópolis" ; + test:Country "Brazil" ; + + 1442 +] . + +[ test:City "Ife" ; + test:Country "Nigeria" ; + + 2818 +] . + +[ test:City "Al-Hasakah" ; + test:Country "Syria" ; + + 3373 +] . + +[ test:City "Kuopio" ; + test:Country "Finland" ; + + 1757 +] . + +[ test:City "Gweru" ; + test:Country "Zimbabwe" ; + + 2453 +] . + +[ test:City "Huainan" ; + test:Country "China" ; + + 3008 +] . + +[ test:City "Qiqihaer" ; + test:Country "China" ; + + 97 +] . + +[ test:City "Severodvinsk" ; + test:Country "Russia" ; + + 652 +] . + +[ test:City "Tunis" ; + test:Country "Tunisia" ; + + 1992 +] . + +[ test:City "Dessie" ; + test:Country "Ethiopia" ; + + 3243 +] . + +[ test:City "Mexicali" ; + test:Country "Mexico" ; + + 260 +] . + +[ test:City "Sundsvall" ; + test:Country "Sweden" ; + + 815 +] . + +[ test:City "Narashino" ; + test:Country "Japan" ; + + 887 +] . + +[ test:City "Kırıkkale" ; + test:Country "Turkey" ; + + 1663 +] . + +[ test:City "Plzeň" ; + test:Country "Czech Republic" ; + + 1475 +] . + +[ test:City "Iquitos" ; + test:Country "Peru" ; + + 2851 +] . + +[ test:City "Al-Ubayyid" ; + test:Country "Sudan" ; + + 3406 +] . + +[ test:City "Cabo de Santo Agostinho" ; + test:Country "Brazil" ; + + 1050 +] . + +[ test:City "Xingtai" ; + test:Country "China" ; + + 1790 +] . + +[ test:City "Thalassery" ; + test:Country "India" ; + + 1898 +] . + +[ test:City "Elk Grove" ; + test:Country "United States" ; + + 2486 +] . + +[ test:City "Madurai" ; + test:Country "India" ; + + 130 +] . + +[ test:City "Shihung" ; + test:Country "South Korea" ; + + 685 +] . + +[ test:City "Palakkad" ; + test:Country "India" ; + + 1381 +] . + +[ test:City "Zoetermeer" ; + test:Country "Netherlands" ; + + 2061 +] . + +[ test:City "Zarqa" ; + test:Country "Jordan" ; + + 2025 +] . + +[ test:City "Boise" ; + test:Country "United States" ; + + 2721 +] . + +[ test:City "Dongchuan" ; + test:Country "China" ; + + 3276 +] . + +[ test:City "Miyazaki" ; + test:Country "Japan" ; + + 293 +] . + +[ test:City "Nagano" ; + test:Country "Japan" ; + + 848 +] . + +[ test:City "Newark" ; + test:Country "United States" ; + + 920 +] . + +[ test:City "Kōchi" ; + test:Country "Japan" ; + + 1696 +] . + +[ test:City "Potosí" ; + test:Country "Bolivia" ; + + 1508 +] . + +[ test:City "Iwo" ; + test:Country "Nigeria" ; + + 2884 +] . + +[ test:City "Aurangabad" ; + test:Country "India" ; + + 3511 +] . + +[ test:City "Campinas" ; + test:Country "Brazil" ; + + 1083 +] . + +[ test:City "Tobolsk" ; + test:Country "Russia" ; + + 1931 +] . + +[ test:City "Luzhou" ; + test:Country "China" ; + + 3182 +] . + +[ test:City "Manaus" ; + test:Country "Brazil" ; + + 163 +] . + +[ test:City "Silay City" ; + test:Country "Philippines" ; + + 718 +] . + +[ test:City "Punto Fijo" ; + test:Country "Venezuela" ; + + 1539 +] . + +[ test:City "Yenakiieve" ; + test:Country "Ukraine" ; + + 2094 +] . + +[ test:City "Patras" ; + test:Country "Greece" ; + + 1414 +] . + +[ test:City "Brașov" ; + test:Country "Romania" ; + + 2754 +] . + +[ test:City "Duyun" ; + test:Country "China" ; + + 3309 +] . + +[ test:City "Morogoro" ; + test:Country "Tanzania" ; + + 326 +] . + +[ test:City "Nonthaburi" ; + test:Country "Thailand" ; + + 953 +] . + +[ test:City "Junagadh" ; + test:Country "India" ; + + 2329 +] . + +[ test:City "Sanmenxia" ; + test:Country "China" ; + + 561 +] . + +[ test:City "Saskatoon" ; + test:Country "Canada" ; + + 624 +] . + +[ test:City "Catia La Mar" ; + test:Country "Venezuela" ; + + 1116 +] . + +[ test:City "Tours" ; + test:Country "France" ; + + 1964 +] . + +[ test:City "Bern" ; + test:Country "Switzerland" ; + + 2660 +] . + +[ test:City "Darbhanga" ; + test:Country "India" ; + + 3215 +] . + +[ test:City "Mariupol" ; + test:Country "Ukraine" ; + + 196 +] . + +[ test:City "Soledad" ; + test:Country "Colombia" ; + + 751 +] . + +[ test:City "Kamarhati" ; + test:Country "India" ; + + 1572 +] . + +[ test:City "Vitebsk" ; + test:Country "Belarus" ; + + 1351 +] . + +[ test:City "Yuncheng" ; + test:Country "China" ; + + 2127 +] . + +[ test:City "Uberaba" ; + test:Country "Brazil" ; + + 2199 +] . + +[ test:City "Bulandshahr" ; + test:Country "India" ; + + 2787 +] . + +[ test:City "Antalya" ; + test:Country "Turkey" ; + + 3450 +] . + +[ test:City "Nyíregyháza" ; + test:Country "Hungary" ; + + 986 +] . + +[ test:City "Genova" ; + test:Country "Italy" ; + + 2362 +] . + +[ test:City "Queimados" ; + test:Country "Brazil" ; + + 102 +] . + +[ test:City "Santos" ; + test:Country "Brazil" ; + + 594 +] . + +[ test:City "Turkmenabat" ; + test:Country "Turkmenistan" ; + + 1997 +] . + +[ test:City "Biñan" ; + test:Country "Philippines" ; + + 2693 +] . + +[ test:City "Dezhou" ; + test:Country "China" ; + + 3248 +] . + +[ test:City "Mbandaka" ; + test:Country "Democratic Republic of the Congo" ; + + 229 +] . + +[ test:City "Karnal" ; + test:Country "India" ; + + 1605 +] . + +[ test:City "Nassau" ; + test:Country "Bahamas" ; + + 892 +] . + +[ test:City "Uşak" ; + test:Country "Turkey" ; + + 2232 +] . + +[ test:City "Armenia" ; + test:Country "Colombia" ; + + 3483 +] . + +[ test:City "Cadiz City" ; + test:Country "Philippines" ; + + 1055 +] . + +[ test:City "Wichita" ; + test:Country "United States" ; + + 1019 +] . + +[ test:City "Chandigarh" ; + test:Country "India" ; + + 1127 +] . + +[ test:City "Thiès" ; + test:Country "Senegal" ; + + 1903 +] . + +[ test:City "Gongzhuling" ; + test:Country "China" ; + + 2395 +] . + +[ test:City "Lens" ; + test:Country "France" ; + + 3091 +] . + +[ test:City "Oradea" ; + test:Country "Romania" ; + + 39 +] . + +[ test:City "Cumaná" ; + test:Country "Venezuela" ; + + 1290 +] . + +[ test:City "Zhangjiagang" ; + test:Country "China" ; + + 2030 +] . + +[ test:City "Bologna" ; + test:Country "Italy" ; + + 2726 +] . + +[ test:City "Rahim Yar Khan" ; + test:Country "Pakistan" ; + + 370 +] . + +[ test:City "Nishapur" ; + test:Country "Iran" ; + + 925 +] . + +[ test:City "Jeddah" ; + test:Country "Saudi Arabia" ; + + 2265 +] . + +[ test:City "Hetian" ; + test:Country "China" ; + + 2961 +] . + +[ test:City "Avignon" ; + test:Country "France" ; + + 3516 +] . + +[ test:City "San Juan, Puerto Rico" ; + test:Country "Puerto Rico" ; + + 533 +] . + +[ test:City "Salem, Oregon" ; + test:Country "United States" ; + + 497 +] . + +[ test:City "Cangzhou" ; + test:Country "China" ; + + 1088 +] . + +[ test:City "Tebessa" ; + test:Country "Algeria" ; + + 1873 +] . + +[ test:City "Chernihiv" ; + test:Country "Ukraine" ; + + 1160 +] . + +[ test:City "Tokuyama" ; + test:Country "Japan" ; + + 1936 +] . + +[ test:City "Linqing" ; + test:Country "China" ; + + 3124 +] . + +[ test:City "Ouargla" ; + test:Country "Algeria" ; + + 72 +] . + +[ test:City "Velikiye Luki" ; + test:Country "Russia" ; + + 1323 +] . + +[ test:City "Freiburg im Breisgau" ; + test:Country "Germany" ; + + 2171 +] . + +[ test:City "Rehovot" ; + test:Country "Israel" ; + + 403 +] . + +[ test:City "Northampton" ; + test:Country "United Kingdom" ; + + 958 +] . + +[ test:City "Gadag-Betgeri" ; + test:Country "India" ; + + 2334 +] . + +[ test:City "Jingdezhen" ; + test:Country "China" ; + + 2298 +] . + +[ test:City "Hortolândia" ; + test:Country "Brazil" ; + + 2994 +] . + +[ test:City "Santa Clara" ; + test:Country "Cuba" ; + + 566 +] . + +[ test:City "Chōfu" ; + test:Country "Japan" ; + + 1193 +] . + +[ test:City "Baoji" ; + test:Country "China" ; + + 2569 +] . + +[ test:City "Los Teques" ; + test:Country "Venezuela" ; + + 3157 +] . + +[ test:City "Suining" ; + test:Country "China" ; + + 801 +] . + +[ test:City "Vizianagaram" ; + test:Country "India" ; + + 1356 +] . + +[ test:City "Khartoum North" ; + test:Country "Sudan" ; + + 1649 +] . + +[ test:City "Udupi" ; + test:Country "India" ; + + 2204 +] . + +[ test:City "Anyang" ; + test:Country "China" ; + + 3455 +] . + +[ test:City "Rizhao" ; + test:Country "China" ; + + 436 +] . + +[ test:City "Taebaek" ; + test:Country "South Korea" ; + + 1812 +] . + +[ test:City "Wagga Wagga" ; + test:Country "Australia" ; + + 991 +] . + +[ test:City "Getafe" ; + test:Country "Spain" ; + + 2367 +] . + +[ test:City "Gujranwala" ; + test:Country "Pakistan" ; + + 2439 +] . + +[ test:City "Huludao" ; + test:Country "China" ; + + 3027 +] . + +[ test:City "Odintsovo" ; + test:Country "Russia" ; + + 11 +] . + +[ test:City "Cleveland" ; + test:Country "United States" ; + + 1226 +] . + +[ test:City "Batam" ; + test:Country "Indonesia" ; + + 2602 +] . + +[ test:City "Swansea" ; + test:Country "United Kingdom" ; + + 834 +] . + +[ test:City "Kishiwada" ; + test:Country "Japan" ; + + 1682 +] . + +[ test:City "Utrecht" ; + test:Country "Netherlands" ; + + 2237 +] . + +[ test:City "Harbin" ; + test:Country "China" ; + + 2933 +] . + +[ test:City "Arzamas" ; + test:Country "Russia" ; + + 3488 +] . + +[ test:City "Sabára" ; + test:Country "Brazil" ; + + 469 +] . + +[ test:City "Tampico" ; + test:Country "Mexico" ; + + 1845 +] . + +[ test:City "Winnipeg" ; + test:Country "Canada" ; + + 1024 +] . + +[ test:City "Changji" ; + test:Country "China" ; + + 1132 +] . + +[ test:City "Governador Valadares" ; + test:Country "Brazil" ; + + 2400 +] . + +[ test:City "El Eulma" ; + test:Country "Algeria" ; + + 2472 +] . + +[ test:City "Lanxi" ; + test:Country "China" ; + + 3060 +] . + +[ test:City "Ordu" ; + test:Country "Turkey" ; + + 44 +] . + +[ test:City "Częstochowa" ; + test:Country "Poland" ; + + 1295 +] . + +[ test:City "Coral Springs" ; + test:Country "United States" ; + + 1259 +] . + +[ test:City "Belford Roxo" ; + test:Country "Brazil" ; + + 2635 +] . + +[ test:City "Abuja" ; + test:Country "Nigeria" ; + + 3331 +] . + +[ test:City "Minneapolis, Minnesota" ; + test:Country "United States" ; + + 279 +] . + +[ test:City "Korhogo" ; + test:Country "Ivory Coast" ; + + 1715 +] . + +[ test:City "Jerez de la Frontera" ; + test:Country "Spain" ; + + 2270 +] . + +[ test:City "Higashikurume" ; + test:Country "Japan" ; + + 2966 +] . + +[ test:City "Salt Lake City, Utah" ; + test:Country "United States" ; + + 502 +] . + +[ test:City "Sapporo" ; + test:Country "Japan" ; + + 610 +] . + +[ test:City "Teixeira de Freitas" ; + test:Country "Brazil" ; + + 1878 +] . + +[ test:City "Chiayi" ; + test:Country "Taiwan" ; + + 1165 +] . + +[ test:City "Eskişehir" ; + test:Country "Turkey" ; + + 2505 +] . + +[ test:City "Oviedo" ; + test:Country "Spain" ; + + 77 +] . + +[ test:City "Daloa" ; + test:Country "Ivory Coast" ; + + 3201 +] . + +[ test:City "Springs" ; + test:Country "South Africa" ; + + 773 +] . + +[ test:City "Skopje" ; + test:Country "Macedonia" ; + + 737 +] . + +[ test:City "Vereeniging" ; + test:Country "South Africa" ; + + 1328 +] . + +[ test:City "Yokkaichi" ; + test:Country "Japan" ; + + 2113 +] . + +[ test:City "Papeete" ; + test:Country "France" ; + + 1400 +] . + +[ test:City "Fuenlabrada" ; + test:Country "Spain" ; + + 2176 +] . + +[ test:City "Akesu" ; + test:Country "China" ; + + 3364 +] . + +[ test:City "Montevideo" ; + test:Country "Uruguay" ; + + 312 +] . + +[ test:City "Kuantan" ; + test:Country "Malaysia" ; + + 1748 +] . + +[ test:City "Pskov" ; + test:Country "Russia" ; + + 1527 +] . + +[ test:City "Jinshi City" ; + test:Country "China" ; + + 2303 +] . + +[ test:City "Groningen" ; + test:Country "Netherlands" ; + + 2411 +] . + +[ test:City "Haikou" ; + test:Country "China" ; + + 2903 +] . + +[ test:City "Seremban" ; + test:Country "Malaysia" ; + + 643 +] . + +[ test:City "Chongqing" ; + test:Country "China" ; + + 1198 +] . + +[ test:City "Baranagar" ; + test:Country "India" ; + + 2574 +] . + +[ test:City "Baise" ; + test:Country "China" ; + + 2538 +] . + +[ test:City "Dengzhou" ; + test:Country "China" ; + + 3234 +] . + +[ test:City "Sulamaniya" ; + test:Country "Iraq" ; + + 806 +] . + +[ test:City "Khimki" ; + test:Country "Russia" ; + + 1654 +] . + +[ test:City "Pescara" ; + test:Country "Italy" ; + + 1433 +] . + +[ test:City "Allentown" ; + test:Country "United States" ; + + 3397 +] . + +[ test:City "Murfreesboro, Tennessee" ; + test:Country "United States" ; + + 345 +] . + +[ test:City "Wuwei" ; + test:Country "China" ; + + 1041 +] . + +[ test:City "Xianning" ; + test:Country "China" ; + + 1781 +] . + +[ test:City "Tepic" ; + test:Country "Mexico" ; + + 1889 +] . + +[ test:City "Guntakul" ; + test:Country "India" ; + + 2444 +] . + +[ test:City "Okara" ; + test:Country "Pakistan" ; + + 16 +] . + +[ test:City "Sheberghan" ; + test:Country "Afghanistan" ; + + 676 +] . + +[ test:City "Zhuzhou" ; + test:Country "China" ; + + 2052 +] . + +[ test:City "Codó" ; + test:Country "Brazil" ; + + 1231 +] . + +[ test:City "Batman" ; + test:Country "Turkey" ; + + 2607 +] . + +[ test:City "Bhubaneswar" ; + test:Country "India" ; + + 2679 +] . + +[ test:City "Djelfa" ; + test:Country "Algeria" ; + + 3267 +] . + +[ test:City "Matsue" ; + test:Country "Japan" ; + + 215 +] . + +[ test:City "Kansas City" ; + test:Country "United States" ; + + 1591 +] . + +[ test:City "Piteşti" ; + test:Country "Romania" ; + + 1466 +] . + +[ test:City "Indore" ; + test:Country "India" ; + + 2842 +] . + +[ test:City "Camaçari" ; + test:Country "Brazil" ; + + 1074 +] . + +[ test:City "Tirupati" ; + test:Country "India" ; + + 1922 +] . + +[ test:City "El Paso" ; + test:Country "United States" ; + + 2477 +] . + +[ test:City "Luhansk" ; + test:Country "Ukraine" ; + + 3173 +] . + +[ test:City "Maceió" ; + test:Country "Brazil" ; + + 121 +] . + +[ test:City "Šiauliai" ; + test:Country "Lithuania" ; + + 709 +] . + +[ test:City "Yantai" ; + test:Country "China" ; + + 2085 +] . + +[ test:City "Cork" ; + test:Country "Ireland" ; + + 1264 +] . + +[ test:City "Bellevue" ; + test:Country "United States" ; + + 2640 +] . + +[ test:City "Blumenau" ; + test:Country "Brazil" ; + + 2712 +] . + +[ test:City "Dunkerque" ; + test:Country "France" ; + + 3300 +] . + +[ test:City "Misato" ; + test:Country "Japan" ; + + 284 +] . + +[ test:City "Memphis, Tennessee" ; + test:Country "United States" ; + + 248 +] . + +[ test:City "Kawagoe" ; + test:Country "Japan" ; + + 1624 +] . + +[ test:City "Port-au-Prince" ; + test:Country "Haiti" ; + + 1499 +] . + +[ test:City "Itapetininga" ; + test:Country "Brazil" ; + + 2875 +] . + +[ test:City "San Carlos City, Pangasinan" ; + test:Country "Philippines" ; + + 519 +] . + +[ test:City "Cartago" ; + test:Country "Colombia" ; + + 1107 +] . + +[ test:City "Topeka, Kansas" ; + test:Country "United States" ; + + 1955 +] . + +[ test:City "Eugene" ; + test:Country "United States" ; + + 2510 +] . + +[ test:City "Damoh" ; + test:Country "India" ; + + 3206 +] . + +[ test:City "Malaybalay City" ; + test:Country "Philippines" ; + + 154 +] . + +[ test:City "Smederevo" ; + test:Country "Serbia" ; + + 742 +] . + +[ test:City "Yongzhou" ; + test:Country "China" ; + + 2118 +] . + +[ test:City "Paranaguá" ; + test:Country "Brazil" ; + + 1405 +] . + +[ test:City "Bourg-en-Bresse" ; + test:Country "France" ; + + 2745 +] . + +[ test:City "Monywa" ; + test:Country "Myanmar" ; + + 317 +] . + +[ test:City "Ankara" ; + test:Country "Turkey" ; + + 3441 +] . + +[ test:City "Novosibirsk" ; + test:Country "Russia" ; + + 977 +] . + +[ test:City "Puerto Cabello" ; + test:Country "Venezuela" ; + + 1532 +] . + +[ test:City "Gdańsk" ; + test:Country "Poland" ; + + 2353 +] . + +[ test:City "Guanare" ; + test:Country "Venezuela" ; + + 2416 +] . + +[ test:City "Hakone" ; + test:Country "Japan" ; + + 2908 +] . + +[ test:City "San Salvador" ; + test:Country "El Salvador" ; + + 552 +] . + +[ test:City "Tulufan" ; + test:Country "China" ; + + 1988 +] . + +[ test:City "Balakovo" ; + test:Country "Russia" ; + + 2543 +] . + +[ test:City "Lomas de Zamora" ; + test:Country "Argentina" ; + + 3143 +] . + +[ test:City "Maradi" ; + test:Country "Niger" ; + + 187 +] . + +[ test:City "Kakinada" ; + test:Country "India" ; + + 1563 +] . + +[ test:City "Naperville" ; + test:Country "United States" ; + + 883 +] . + +[ test:City "Peterborough" ; + test:Country "United Kingdom" ; + + 1438 +] . + +[ test:City "Budaun" ; + test:Country "India" ; + + 2778 +] . + +[ test:City "Murwara" ; + test:Country "India" ; + + 350 +] . + +[ test:City "Ardabil" ; + test:Country "Iran" ; + + 3474 +] . + +[ test:City "Wuzhou" ; + test:Country "China" ; + + 1046 +] . + +[ test:City "Wendeng" ; + test:Country "China" ; + + 1010 +] . + +[ test:City "Ternopil" ; + test:Country "Ukraine" ; + + 1894 +] . + +[ test:City "Godoy Cruz" ; + test:Country "Ecuador" ; + + 2386 +] . + +[ test:City "Santiago City" ; + test:Country "Philippines" ; + + 585 +] . + +[ test:City "Cuautitlán" ; + test:Country "Mexico" ; + + 1281 +] . + +[ test:City "Zaporizhia" ; + test:Country "Ukraine" ; + + 2021 +] . + +[ test:City "Bielefeld" ; + test:Country "Germany" ; + + 2684 +] . + +[ test:City "Mauá" ; + test:Country "Brazil" ; + + 220 +] . + +[ test:City "Karaganda" ; + test:Country "Kazakhstan" ; + + 1596 +] . + +[ test:City "New Haven" ; + test:Country "United States" ; + + 916 +] . + +[ test:City "Płock" ; + test:Country "Poland" ; + + 1471 +] . + +[ test:City "Ipatinga" ; + test:Country "Brazil" ; + + 2847 +] . + +[ test:City "Ibarra" ; + test:Country "Ecuador" ; + + 2811 +] . + +[ test:City "Hamilton" ; + test:Country "New Zealand" ; + + 2919 +] . + +[ test:City "Atyrau" ; + test:Country "Kazakhstan" ; + + 3507 +] . + +[ test:City "Ruda Śląska" ; + test:Country "Poland" ; + + 455 +] . + +[ test:City "Talara" ; + test:Country "Peru" ; + + 1831 +] . + +[ test:City "Legnica" ; + test:Country "Poland" ; + + 3082 +] . + +[ test:City "Machilipatnam" ; + test:Country "India" ; + + 126 +] . + +[ test:City "Vantaa" ; + test:Country "Finland" ; + + 1314 +] . + +[ test:City "Fort-de-France" ; + test:Country "Martinique" ; + + 2162 +] . + +[ test:City "Bochum" ; + test:Country "Germany" ; + + 2717 +] . + +[ test:City "Mersin" ; + test:Country "Turkey" ; + + 253 +] . + +[ test:City "Mykolaiv" ; + test:Country "Ukraine" ; + + 361 +] . + +[ test:City "Kazan" ; + test:Country "Russia" ; + + 1629 +] . + +[ test:City "Nobeoka" ; + test:Country "Japan" ; + + 949 +] . + +[ test:City "Porto" ; + test:Country "Portugal" ; + + 1504 +] . + +[ test:City "Juazeiro" ; + test:Country "Brazil" ; + + 2325 +] . + +[ test:City "Jiaxing" ; + test:Country "China" ; + + 2289 +] . + +[ test:City "Ivanovo" ; + test:Country "Russia" ; + + 2880 +] . + +[ test:City "Helsinki" ; + test:Country "Finland" ; + + 2952 +] . + +[ test:City "San Fernando City, Pampanga" ; + test:Country "Philippines" ; + + 524 +] . + +[ test:City "Saint-Paul" ; + test:Country "Réunion" ; + + 488 +] . + +[ test:City "Tarnów" ; + test:Country "Poland" ; + + 1864 +] . + +[ test:City "Limassol" ; + test:Country "Cyprus" ; + + 3115 +] . + +[ test:City "Malolos City" ; + test:Country "Philippines" ; + + 159 +] . + +[ test:City "Vinh" ; + test:Country "Vietnam" ; + + 1347 +] . + +[ test:City "Fuzhou, Fujian" ; + test:Country "China" ; + + 2195 +] . + +[ test:City "Bragança Paulista" ; + test:Country "Brazil" ; + + 2750 +] . + +[ test:City "Ansan" ; + test:Country "South Korea" ; + + 3446 +] . + +[ test:City "Ravenna" ; + test:Country "Italy" ; + + 394 +] . + +[ test:City "Nukus" ; + test:Country "Uzbekistan" ; + + 982 +] . + +[ test:City "Geleen-Sittard" ; + test:Country "Netherlands" ; + + 2358 +] . + +[ test:City "Hofu" ; + test:Country "Japan" ; + + 2985 +] . + +[ test:City "Oakville" ; + test:Country "Canada" ; + + 2 +] . + +[ test:City "Sanda" ; + test:Country "Japan" ; + + 557 +] . + +[ test:City "Ciudad Losada" ; + test:Country "Venezuela" ; + + 1217 +] . + +[ test:City "Barrie" ; + test:Country "Canada" ; + + 2593 +] . + +[ test:City "Long Beach" ; + test:Country "United States" ; + + 3148 +] . + +[ test:City "Maribor" ; + test:Country "Slovenia" ; + + 192 +] . + +[ test:City "Stoke-on-Trent" ; + test:Country "United Kingdom" ; + + 792 +] . + +[ test:City "Kaluga" ; + test:Country "Russia" ; + + 1568 +] . + +[ test:City "Khabarovsk" ; + test:Country "Russia" ; + + 1640 +] . + +[ test:City "Urmia" ; + test:Country "Iran" ; + + 2228 +] . + +[ test:City "Bujumbura" ; + test:Country "Burundi" ; + + 2783 +] . + +[ test:City "Alchevsk" ; + test:Country "Ukraine" ; + + 3383 +] . + +[ test:City "Rio Cuarto" ; + test:Country "Argentina" ; + + 427 +] . + +[ test:City "Cebu City" ; + test:Country "Philippines" ; + + 1123 +] . + +[ test:City "Ta’if" ; + test:Country "Saudi Arabia" ; + + 1803 +] . + +[ test:City "Kutaisi" ; + test:Country "Georgia" ; + + 1767 +] . + +[ test:City "Huaying" ; + test:Country "China" ; + + 3018 +] . + +[ test:City "Onitsha" ; + test:Country "Nigeria" ; + + 35 +] . + +[ test:City "Santo André" ; + test:Country "Brazil" ; + + 590 +] . + +[ test:City "Cuenca" ; + test:Country "Ecuador" ; + + 1286 +] . + +[ test:City "Concord" ; + test:Country "United States" ; + + 1250 +] . + +[ test:City "Beersheba" ; + test:Country "Israel" ; + + 2626 +] . + +[ test:City "Surigao City" ; + test:Country "Philippines" ; + + 825 +] . + +[ test:City "Kingston" ; + test:Country "Jamaica" ; + + 1673 +] . + +[ test:City "Jastrzębie Zdrój" ; + test:Country "Poland" ; + + 2261 +] . + +[ test:City "Ichikawa" ; + test:Country "Japan" ; + + 2816 +] . + +[ test:City "Handa" ; + test:Country "Japan" ; + + 2924 +] . + +[ test:City "Ambon" ; + test:Country "Indonesia" ; + + 3416 +] . + +[ test:City "Rustavi" ; + test:Country "Georgia" ; + + 460 +] . + +[ test:City "Tallahassee, Florida" ; + test:Country "United States" ; + + 1836 +] . + +[ test:City "Cheongju" ; + test:Country "South Korea" ; + + 1156 +] . + +[ test:City "Leling" ; + test:Country "China" ; + + 3087 +] . + +[ test:City "Laiwu" ; + test:Country "China" ; + + 3051 +] . + +[ test:City "Otaru" ; + test:Country "Japan" ; + + 68 +] . + +[ test:City "Shiraz" ; + test:Country "Iran" ; + + 695 +] . + +[ test:City "Yakeshi" ; + test:Country "China" ; + + 2071 +] . + +[ test:City "Rabat" ; + test:Country "Morocco" ; + + 366 +] . + +[ test:City "Najaf" ; + test:Country "Iraq" ; + + 858 +] . + +[ test:City "Kolkata" ; + test:Country "India" ; + + 1706 +] . + +[ test:City "Jimo" ; + test:Country "China" ; + + 2294 +] . + +[ test:City "Granada" ; + test:Country "Nicaragua" ; + + 2402 +] . + +[ test:City "Herat" ; + test:Country "Afghanistan" ; + + 2957 +] . + +[ test:City "Salamanca" ; + test:Country "Mexico" ; + + 493 +] . + +[ test:City "Taunggyi" ; + test:Country "Myanmar" ; + + 1869 +] . + +[ test:City "Chittoor" ; + test:Country "India" ; + + 1189 +] . + +[ test:City "Banjarmasin" ; + test:Country "Indonesia" ; + + 2565 +] . + +[ test:City "Baharampur" ; + test:Country "India" ; + + 2529 +] . + +[ test:City "Linfen" ; + test:Country "China" ; + + 3120 +] . + +[ test:City "Daegu" ; + test:Country "South Korea" ; + + 3192 +] . + +[ test:City "Siping" ; + test:Country "China" ; + + 728 +] . + +[ test:City "Yingcheng" ; + test:Country "China" ; + + 2104 +] . + +[ test:City "Ahuachapán" ; + test:Country "El Salvador" ; + + 3355 +] . + +[ test:City "Abaetetuba" ; + test:Country "Brazil" ; + + 3319 +] . + +[ test:City "Recklinghausen" ; + test:Country "Germany" ; + + 399 +] . + +[ test:City "Krasnyi Luch" ; + test:Country "Ukraine" ; + + 1739 +] . + +[ test:City "Guigang" ; + test:Country "China" ; + + 2435 +] . + +[ test:City "Hong Kong" ; + test:Country "Hong Kong" ; + + 2990 +] . + +[ test:City "Sabha" ; + test:Country "Libya" ; + + 634 +] . + +[ test:City "Cixi" ; + test:Country "China" ; + + 1222 +] . + +[ test:City "Basirhat" ; + test:Country "India" ; + + 2598 +] . + +[ test:City "Davao City" ; + test:Country "Philippines" ; + + 3225 +] . + +[ test:City "Sucre" ; + test:Country "Bolivia" ; + + 797 +] . + +[ test:City "Souk Ahras" ; + test:Country "Algeria" ; + + 761 +] . + +[ test:City "Khanpur" ; + test:Country "Pakistan" ; + + 1645 +] . + +[ test:City "Fayetteville" ; + test:Country "United States" ; + + 2137 +] . + +[ test:City "Pingdingshan" ; + test:Country "China" ; + + 1457 +] . + +[ test:City "Imabari" ; + test:Country "Japan" ; + + 2833 +] . + +[ test:City "Alexandria" ; + test:Country "Egypt" ; + + 3388 +] . + +[ test:City "Rishon LeZion" ; + test:Country "Israel" ; + + 432 +] . + +[ test:City "Wonju" ; + test:Country "South Korea" ; + + 1032 +] . + +[ test:City "Tachikawa" ; + test:Country "Japan" ; + + 1808 +] . + +[ test:City "Kwekwe" ; + test:Country "Zimbabwe" ; + + 1772 +] . + +[ test:City "Eindhoven" ; + test:Country "Netherlands" ; + + 2468 +] . + +[ test:City "Huelva" ; + test:Country "Spain" ; + + 3023 +] . + +[ test:City "Shangzhi" ; + test:Country "China" ; + + 667 +] . + +[ test:City "Zabol" ; + test:Country "Iran" ; + + 2007 +] . + +[ test:City "Dimitrovgrad" ; + test:Country "Russia" ; + + 3258 +] . + +[ test:City "Miluo" ; + test:Country "China" ; + + 275 +] . + +[ test:City "Suwon" ; + test:Country "South Korea" ; + + 830 +] . + +[ test:City "Kiryu" ; + test:Country "Japan" ; + + 1678 +] . + +[ test:City "Popayán" ; + test:Country "Colombia" ; + + 1490 +] . + +[ test:City "Isparta" ; + test:Country "Turkey" ; + + 2866 +] . + +[ test:City "Amol" ; + test:Country "Iran" ; + + 3421 +] . + +[ test:City "Calabar" ; + test:Country "Nigeria" ; + + 1065 +] . + +[ test:City "Tieli" ; + test:Country "China" ; + + 1913 +] . + +[ test:City "Erzurum" ; + test:Country "Turkey" ; + + 2501 +] . + +[ test:City "Lancaster" ; + test:Country "United States" ; + + 3056 +] . + +[ test:City "Makhachkala" ; + test:Country "Russia" ; + + 145 +] . + +[ test:City "Shizuishan" ; + test:Country "China" ; + + 700 +] . + +[ test:City "Yamoussoukro" ; + test:Country "Ivory Coast" ; + + 2076 +] . + +[ test:City "Zheleznodorozhny" ; + test:Country "Russia" ; + + 2040 +] . + +[ test:City "Panihati" ; + test:Country "India" ; + + 1396 +] . + +[ test:City "Dudley" ; + test:Country "United Kingdom" ; + + 3291 +] . + +[ test:City "Monrovia" ; + test:Country "Liberia" ; + + 308 +] . + +[ test:City "Nakhon Sawan" ; + test:Country "Thailand" ; + + 863 +] . + +[ test:City "Nikopol" ; + test:Country "Ukraine" ; + + 935 +] . + +[ test:City "Komatsu" ; + test:Country "Japan" ; + + 1711 +] . + +[ test:City "Proddatur" ; + test:Country "India" ; + + 1523 +] . + +[ test:City "Jixi" ; + test:Country "China" ; + + 2311 +] . + +[ test:City "Hafizabad" ; + test:Country "Pakistan" ; + + 2899 +] . + +[ test:City "Cardiff" ; + test:Country "United Kingdom" ; + + 1098 +] . + +[ test:City "Tongchuan" ; + test:Country "China" ; + + 1946 +] . + +[ test:City "Bahraich" ; + test:Country "India" ; + + 2534 +] . + +[ test:City "Da Lat" ; + test:Country "Vietnam" ; + + 3197 +] . + +[ test:City "Manta" ; + test:Country "Ecuador" ; + + 178 +] . + +[ test:City "Sivakasi" ; + test:Country "India" ; + + 733 +] . + +[ test:City "Kagoshima" ; + test:Country "Japan" ; + + 1554 +] . + +[ test:City "Yixing" ; + test:Country "China" ; + + 2109 +] . + +[ test:City "Perpignan" ; + test:Country "France" ; + + 1429 +] . + +[ test:City "Brno" ; + test:Country "Czech Republic" ; + + 2769 +] . + +[ test:City "Aizuwakamatsu" ; + test:Country "Japan" ; + + 3360 +] . + +[ test:City "Aberdeen" ; + test:Country "United Kingdom" ; + + 3324 +] . + +[ test:City "Munger" ; + test:Country "India" ; + + 341 +] . + +[ test:City "Andijan" ; + test:Country "Uzbekistan" ; + + 3432 +] . + +[ test:City "Novi Sad" ; + test:Country "Serbia" ; + + 968 +] . + +[ test:City "Kruševac" ; + test:Country "Serbia" ; + + 1744 +] . + +[ test:City "Garden Grove" ; + test:Country "United States" ; + + 2344 +] . + +[ test:City "Sendai" ; + test:Country "Japan" ; + + 639 +] . + +[ test:City "Tsu" ; + test:Country "Japan" ; + + 1979 +] . + +[ test:City "Bhind" ; + test:Country "India" ; + + 2675 +] . + +[ test:City "Dehradun" ; + test:Country "India" ; + + 3230 +] . + +[ test:City "Mathura" ; + test:Country "India" ; + + 211 +] . + +[ test:City "Soweto" ; + test:Country "South Africa" ; + + 766 +] . + +[ test:City "Kanhangad" ; + test:Country "India" ; + + 1587 +] . + +[ test:City "Nancy" ; + test:Country "France" ; + + 874 +] . + +[ test:City "Fergana" ; + test:Country "Uzbekistan" ; + + 2142 +] . + +[ test:City "Pinsk" ; + test:Country "Belarus" ; + + 1462 +] . + +[ test:City "Inchon" ; + test:Country "South Korea" ; + + 2838 +] . + +[ test:City "Butuan" ; + test:Country "Philippines" ; + + 2802 +] . + +[ test:City "Arad" ; + test:Country "Romania" ; + + 3465 +] . + +[ test:City "Wuhai" ; + test:Country "China" ; + + 1037 +] . + +[ test:City "Warsaw" ; + test:Country "Poland" ; + + 1001 +] . + +[ test:City "Giresun" ; + test:Country "Turkey" ; + + 2377 +] . + +[ test:City "Launceston" ; + test:Country "Australia" ; + + 3073 +] . + +[ test:City "Mabalacat" ; + test:Country "Philippines" ; + + 117 +] . + +[ test:City "Shaoxing" ; + test:Country "China" ; + + 672 +] . + +[ test:City "Zahedan" ; + test:Country "Iran" ; + + 2012 +] . + +[ test:City "Blagoveshchensk" ; + test:Country "Russia" ; + + 2708 +] . + +[ test:City "Dire Dawa" ; + test:Country "Ethiopia" ; + + 3263 +] . + +[ test:City "Mekele" ; + test:Country "Ethiopia" ; + + 244 +] . + +[ test:City "Katihar" ; + test:Country "India" ; + + 1620 +] . + +[ test:City "Neijiang" ; + test:Country "China" ; + + 907 +] . + +[ test:City "Jaffna" ; + test:Country "Sri Lanka" ; + + 2247 +] . + +[ test:City "Aswan" ; + test:Country "Egypt" ; + + 3498 +] . + +[ test:City "San Bernardino, California" ; + test:Country "United States" ; + + 515 +] . + +[ test:City "Calbayog" ; + test:Country "Philippines" ; + + 1070 +] . + +[ test:City "Timon" ; + test:Country "Brazil" ; + + 1918 +] . + +[ test:City "Lichuan" ; + test:Country "China" ; + + 3106 +] . + +[ test:City "Malappuram" ; + test:Country "India" ; + + 150 +] . + +[ test:City "Valledupar" ; + test:Country "Colombia" ; + + 1305 +] . + +[ test:City "Zhoushan" ; + test:Country "China" ; + + 2045 +] . + +[ test:City "Foggia" ; + test:Country "Italy" ; + + 2153 +] . + +[ test:City "Bou Saâda" ; + test:Country "Algeria" ; + + 2741 +] . + +[ test:City "Dundee" ; + test:Country "United Kingdom" ; + + 3296 +] . + +[ test:City "Ranaghat" ; + test:Country "India" ; + + 385 +] . + +[ test:City "Niš" ; + test:Country "Serbia" ; + + 940 +] . + +[ test:City "Joetsu" ; + test:Country "Japan" ; + + 2316 +] . + +[ test:City "Ji'an" ; + test:Country "China" ; + + 2280 +] . + +[ test:City "San Pedro Sula" ; + test:Country "Honduras" ; + + 548 +] . + +[ test:City "Carrollton" ; + test:Country "United States" ; + + 1103 +] . + +[ test:City "Chilpancingo" ; + test:Country "Mexico" ; + + 1175 +] . + +[ test:City "Tongling" ; + test:Country "China" ; + + 1951 +] . + +[ test:City "Lleida" ; + test:Country "Spain" ; + + 3139 +] . + +[ test:City "Qianjiang" ; + test:Country "China" ; + + 87 +] . + +[ test:City "Vijayawada" ; + test:Country "India" ; + + 1338 +] . + +[ test:City "Fukushima" ; + test:Country "Japan" ; + + 2186 +] . + +[ test:City "Bucaramanga" ; + test:Country "Colombia" ; + + 2774 +] . + +[ test:City "Angers" ; + test:Country "France" ; + + 3437 +] . + +[ test:City "Ribeirão Preto" ; + test:Country "Brazil" ; + + 418 +] . + +[ test:City "Xintai" ; + test:Country "China" ; + + 1794 +] . + +[ test:City "Novokuznetsk" ; + test:Country "Russia" ; + + 973 +] . + +[ test:City "Gatineau" ; + test:Country "Canada" ; + + 2349 +] . + +[ test:City "Huaiyin" ; + test:Country "China" ; + + 3009 +] . + +[ test:City "Santa Rosa City" ; + test:Country "Philippines" ; + + 581 +] . + +[ test:City "Cirebon" ; + test:Country "Indonesia" ; + + 1208 +] . + +[ test:City "Tuguegarao City" ; + test:Country "Philippines" ; + + 1984 +] . + +[ test:City "Barisal" ; + test:Country "Bangladesh" ; + + 2584 +] . + +[ test:City "Nanping" ; + test:Country "China" ; + + 879 +] . + +[ test:City "Pachuca" ; + test:Country "Mexico" ; + + 1371 +] . + +[ test:City "Umeå" ; + test:Country "Sweden" ; + + 2219 +] . + +[ test:City "Hamamatsu" ; + test:Country "Japan" ; + + 2915 +] . + +[ test:City "Araras" ; + test:Country "Brazil" ; + + 3470 +] . + +[ test:City "Rouen" ; + test:Country "France" ; + + 451 +] . + +[ test:City "Takaoka" ; + test:Country "Japan" ; + + 1827 +] . + +[ test:City "Weihai" ; + test:Country "China" ; + + 1006 +] . + +[ test:City "Glendale, California" ; + test:Country "United States" ; + + 2382 +] . + +[ test:City "Le Mans" ; + test:Country "France" ; + + 3078 +] . + +[ test:City "La Rioja" ; + test:Country "Argentina" ; + + 3042 +] . + +[ test:City "Olmaliq" ; + test:Country "Uzbekistan" ; + + 26 +] . + +[ test:City "Colorado Springs" ; + test:Country "United States" ; + + 1241 +] . + +[ test:City "Bayawan" ; + test:Country "Philippines" ; + + 2617 +] . + +[ test:City "Muzaffarpur" ; + test:Country "India" ; + + 357 +] . + +[ test:City "Nagaoka" ; + test:Country "Japan" ; + + 849 +] . + +[ test:City "Neuss" ; + test:Country "Germany" ; + + 912 +] . + +[ test:City "Kodaira" ; + test:Country "Japan" ; + + 1697 +] . + +[ test:City "Jalgaon" ; + test:Country "India" ; + + 2252 +] . + +[ test:City "Heidelberg" ; + test:Country "Germany" ; + + 2948 +] . + +[ test:City "Atibaia" ; + test:Country "Brazil" ; + + 3503 +] . + +[ test:City "Saint-Denis" ; + test:Country "Réunion" ; + + 484 +] . + +[ test:City "Taraz" ; + test:Country "Kazakhstan" ; + + 1860 +] . + +[ test:City "Chattanooga" ; + test:Country "United States" ; + + 1147 +] . + +[ test:City "El-Mahalla El-Kubra" ; + test:Country "Egypt" ; + + 2487 +] . + +[ test:City "Oshawa" ; + test:Country "Canada" ; + + 59 +] . + +[ test:City "Van" ; + test:Country "Turkey" ; + + 1310 +] . + +[ test:City "Cotonou" ; + test:Country "Benin" ; + + 1274 +] . + +[ test:City "Fort Lauderdale" ; + test:Country "United States" ; + + 2158 +] . + +[ test:City "Beppu" ; + test:Country "Japan" ; + + 2650 +] . + +[ test:City "Afyon" ; + test:Country "Turkey" ; + + 3346 +] . + +[ test:City "Raniganj" ; + test:Country "India" ; + + 390 +] . + +[ test:City "Kottayam" ; + test:Country "India" ; + + 1730 +] . + +[ test:City "Jiaohe" ; + test:Country "China" ; + + 2285 +] . + +[ test:City "Hitachi" ; + test:Country "Japan" ; + + 2981 +] . + +[ test:City "Sassari" ; + test:Country "Italy" ; + + 625 +] . + +[ test:City "Chingola" ; + test:Country "Zambia" ; + + 1180 +] . + +[ test:City "Bacoor" ; + test:Country "Philippines" ; + + 2520 +] . + +[ test:City "Qingyuan" ; + test:Country "China" ; + + 92 +] . + +[ test:City "Sterlitamak" ; + test:Country "Russia" ; + + 788 +] . + +[ test:City "Kenitra" ; + test:Country "Morocco" ; + + 1636 +] . + +[ test:City "Villavicencio" ; + test:Country "Colombia" ; + + 1343 +] . + +[ test:City "Patratu" ; + test:Country "India" ; + + 1415 +] . + +[ test:City "Funchal" ; + test:Country "Portugal" ; + + 2191 +] . + +[ test:City "Albacete" ; + test:Country "Spain" ; + + 3379 +] . + +[ test:City "Morvi" ; + test:Country "India" ; + + 327 +] . + +[ test:City "Kurume" ; + test:Country "Japan" ; + + 1763 +] . + +[ test:City "Guarulhos" ; + test:Country "Brazil" ; + + 2426 +] . + +[ test:City "Huangshi" ; + test:Country "China" ; + + 3014 +] . + +[ test:City "Shahjahanpur" ; + test:Country "India" ; + + 658 +] . + +[ test:City "Ciudad Delgado" ; + test:Country "El Salvador" ; + + 1213 +] . + +[ test:City "Barrancabermeja" ; + test:Country "Colombia" ; + + 2589 +] . + +[ test:City "Bamako" ; + test:Country "Mali" ; + + 2553 +] . + +[ test:City "Dhaka" ; + test:Country "Bangladesh" ; + + 3249 +] . + +[ test:City "Surakarta" ; + test:Country "Indonesia" ; + + 821 +] . + +[ test:City "Pago Pago, American Samoa" ; + test:Country "United States" ; + + 1376 +] . + +[ test:City "Kigali" ; + test:Country "Rwanda" ; + + 1669 +] . + +[ test:City "Phoenix, Arizona" ; + test:Country "United States" ; + + 1448 +] . + +[ test:City "Urawa" ; + test:Country "Japan" ; + + 2224 +] . + +[ test:City "Ila" ; + test:Country "Nigeria" ; + + 2824 +] . + +[ test:City "Amaravathi" ; + test:Country "India" ; + + 3412 +] . + +[ test:City "Ebina" ; + test:Country "Japan" ; + + 2459 +] . + +[ test:City "Omdurman" ; + test:Country "Sudan" ; + + 31 +] . + +[ test:City "Querétaro" ; + test:Country "Mexico" ; + + 103 +] . + +[ test:City "Shimla" ; + test:Country "India" ; + + 691 +] . + +[ test:City "Comilla" ; + test:Country "Bangladesh" ; + + 1246 +] . + +[ test:City "Zwolle" ; + test:Country "Netherlands" ; + + 2067 +] . + +[ test:City "Beauvais" ; + test:Country "France" ; + + 2622 +] . + +[ test:City "Dortmund" ; + test:Country "Germany" ; + + 3282 +] . + +[ test:City "Miami Gardens, Florida" ; + test:Country "United States" ; + + 266 +] . + +[ test:City "Nagpur" ; + test:Country "India" ; + + 854 +] . + +[ test:City "Kokshetau" ; + test:Country "Kazakhstan" ; + + 1702 +] . + +[ test:City "Pollachi" ; + test:Country "India" ; + + 1481 +] . + +[ test:City "Irvine" ; + test:Country "United States" ; + + 2857 +] . + +[ test:City "Canoas" ; + test:Country "Brazil" ; + + 1089 +] . + +[ test:City "Chengdu" ; + test:Country "China" ; + + 1152 +] . + +[ test:City "Tokyo" ; + test:Country "Japan" ; + + 1937 +] . + +[ test:City "Enshi" ; + test:Country "China" ; + + 2492 +] . + +[ test:City "Osnabrück" ; + test:Country "Germany" ; + + 64 +] . + +[ test:City "Da Nang" ; + test:Country "Vietnam" ; + + 3188 +] . + +[ test:City "Magelang" ; + test:Country "Indonesia" ; + + 136 +] . + +[ test:City "Singapore" ; + test:Country "Singapore" ; + + 724 +] . + +[ test:City "Crawley" ; + test:Country "United Kingdom" ; + + 1279 +] . + +[ test:City "Yichun, Jiangxi" ; + test:Country "China" ; + + 2100 +] . + +[ test:City "Palmas" ; + test:Country "Brazil" ; + + 1387 +] . + +[ test:City "Bergen" ; + test:Country "Norway" ; + + 2655 +] . + +[ test:City "Bolton" ; + test:Country "United Kingdom" ; + + 2727 +] . + +[ test:City "Aalborg" ; + test:Country "Denmark" ; + + 3315 +] . + +[ test:City "Moga" ; + test:Country "India" ; + + 299 +] . + +[ test:City "Praia Grande" ; + test:Country "Brazil" ; + + 1514 +] . + +[ test:City "Ha Long" ; + test:Country "Vietnam" ; + + 2890 +] . + +[ test:City "Schwerin" ; + test:Country "Germany" ; + + 630 +] . + +[ test:City "Toyota" ; + test:Country "Japan" ; + + 1970 +] . + +[ test:City "Baghdad" ; + test:Country "Iraq" ; + + 2525 +] . + +[ test:City "Daşoguz" ; + test:Country "Turkmenistan" ; + + 3221 +] . + +[ test:City "Mandaue City" ; + test:Country "Philippines" ; + + 169 +] . + +[ test:City "Pyongyang" ; + test:Country "North Korea" ; + + 1545 +] . + +[ test:City "Sonipat" ; + test:Country "India" ; + + 757 +] . + +[ test:City "Nakuru" ; + test:Country "Kenya" ; + + 865 +] . + +[ test:City "Faizabad" ; + test:Country "India" ; + + 2133 +] . + +[ test:City "Pelotas" ; + test:Country "Brazil" ; + + 1420 +] . + +[ test:City "Bremen" ; + test:Country "Germany" ; + + 2760 +] . + +[ test:City "Móstoles" ; + test:Country "Spain" ; + + 332 +] . + +[ test:City "Włocławek" ; + test:Country "Poland" ; + + 1028 +] . + +[ test:City "Gudivada" ; + test:Country "India" ; + + 2431 +] . + +[ test:City "Santa Clarita, California" ; + test:Country "United States" ; + + 567 +] . + +[ test:City "Tver" ; + test:Country "Russia" ; + + 2003 +] . + +[ test:City "Bandung" ; + test:Country "Indonesia" ; + + 2558 +] . + +[ test:City "Bhalwal" ; + test:Country "Pakistan" ; + + 2666 +] . + +[ test:City "Dibrugarh" ; + test:Country "India" ; + + 3254 +] . + +[ test:City "Masan" ; + test:Country "South Korea" ; + + 202 +] . + +[ test:City "Kamptee" ; + test:Country "India" ; + + 1578 +] . + +[ test:City "Navotas" ; + test:Country "Philippines" ; + + 898 +] . + +[ test:City "Pikine" ; + test:Country "Senegal" ; + + 1453 +] . + +[ test:City "Iligan" ; + test:Country "Philippines" ; + + 2829 +] . + +[ test:City "Burgas" ; + test:Country "Bulgaria" ; + + 2793 +] . + +[ test:City "Asahikawa" ; + test:Country "Japan" ; + + 3489 +] . + +[ test:City "Cainta" ; + test:Country "Philippines" ; + + 1061 +] . + +[ test:City "Tianjin" ; + test:Country "China" ; + + 1909 +] . + +[ test:City "Edinburgh" ; + test:Country "United Kingdom" ; + + 2464 +] . + +[ test:City "Qui Nhon" ; + test:Country "Vietnam" ; + + 108 +] . + +[ test:City "São João de Meriti" ; + test:Country "Brazil" ; + + 600 +] . + +[ test:City "Zhanjiang" ; + test:Country "China" ; + + 2036 +] . + +[ test:City "Birmingham" ; + test:Country "United States" ; + + 2699 +] . + +[ test:City "Midsayap, Cotabato" ; + test:Country "Philippines" ; + + 271 +] . + +[ test:City "Medan" ; + test:Country "Indonesia" ; + + 235 +] . + +[ test:City "Kashiwa" ; + test:Country "Japan" ; + + 1611 +] . + +[ test:City "Niigata" ; + test:Country "Japan" ; + + 931 +] . + +[ test:City "Jiujiang" ; + test:Country "China" ; + + 2307 +] . + +[ test:City "Pondicherry" ; + test:Country "India" ; + + 1486 +] . + +[ test:City "İskenderun" ; + test:Country "Turkey" ; + + 2862 +] . + +[ test:City "Cap-Haïtien" ; + test:Country "Haiti" ; + + 1094 +] . + +[ test:City "Tolyatti" ; + test:Country "Russia" ; + + 1942 +] . + +[ test:City "Leverkusen" ; + test:Country "Germany" ; + + 3097 +] . + +[ test:City "Maidstone" ; + test:Country "United Kingdom" ; + + 141 +] . + +[ test:City "Verona" ; + test:Country "Italy" ; + + 1329 +] . + +[ test:City "Panabo City" ; + test:Country "Philippines" ; + + 1392 +] . + +[ test:City "Fuji" ; + test:Country "Japan" ; + + 2177 +] . + +[ test:City "Bordj El Kiffan" ; + test:Country "Algeria" ; + + 2732 +] . + +[ test:City "Mogi Guaçu" ; + test:Country "Brazil" ; + + 304 +] . + +[ test:City "Ananindeua" ; + test:Country "Brazil" ; + + 3428 +] . + +[ test:City "Rajkot" ; + test:Country "India" ; + + 376 +] . + +[ test:City "Nouakchott" ; + test:Country "Mauritania" ; + + 964 +] . + +[ test:City "Pretoria" ; + test:Country "South Africa" ; + + 1519 +] . + +[ test:City "Gəncə" ; + test:Country "Azerbaijan" ; + + 2340 +] . + +[ test:City "Hachinohe" ; + test:Country "Japan" ; + + 2895 +] . + +[ test:City "Higashimurayama" ; + test:Country "Japan" ; + + 2967 +] . + +[ test:City "San Mateo, Rizal" ; + test:Country "Philippines" ; + + 539 +] . + +[ test:City "Salta" ; + test:Country "Argentina" ; + + 503 +] . + +[ test:City "Tekirdağ" ; + test:Country "Turkey" ; + + 1879 +] . + +[ test:City "Lisbon" ; + test:Country "Portugal" ; + + 3130 +] . + +[ test:City "Manila" ; + test:Country "Philippines" ; + + 174 +] . + +[ test:City "Kadoma" ; + test:Country "Japan" ; + + 1550 +] . + +[ test:City "Nampula" ; + test:Country "Mozambique" ; + + 870 +] . + +[ test:City "Vologda" ; + test:Country "Russia" ; + + 1362 +] . + +[ test:City "Ukhta" ; + test:Country "Russia" ; + + 2210 +] . + +[ test:City "Bridgeport" ; + test:Country "United States" ; + + 2765 +] . + +[ test:City "Apucarana" ; + test:Country "Brazil" ; + + 3461 +] . + +[ test:City "Renqiu" ; + test:Country "China" ; + + 409 +] . + +[ test:City "Warangal" ; + test:Country "India" ; + + 997 +] . + +[ test:City "Gijón" ; + test:Country "Spain" ; + + 2373 +] . + +[ test:City "Houston" ; + test:Country "United States" ; + + 3000 +] . + +[ test:City "Okayama" ; + test:Country "Japan" ; + + 17 +] . + +[ test:City "Santa Cruz, Laguna" ; + test:Country "Philippines" ; + + 572 +] . + +[ test:City "Bhavnagar" ; + test:Country "India" ; + + 2671 +] . + +[ test:City "Luanshya" ; + test:Country "Zambia" ; + + 3163 +] . + +[ test:City "Matadi" ; + test:Country "Democratic Republic of the Congo" ; + + 207 +] . + +[ test:City "Sullana" ; + test:Country "Peru" ; + + 807 +] . + +[ test:City "Kanchrapara" ; + test:Country "India" ; + + 1583 +] . + +[ test:City "Khmelnytskyi" ; + test:Country "Ukraine" ; + + 1655 +] . + +[ test:City "Jackson" ; + test:Country "United States" ; + + 2243 +] . + +[ test:City "Bursa" ; + test:Country "Turkey" ; + + 2798 +] . + +[ test:City "Asmara" ; + test:Country "Eritrea" ; + + 3494 +] . + +[ test:City "Rome" ; + test:Country "Italy" ; + + 442 +] . + +[ test:City "Tainan City" ; + test:Country "Taiwan" ; + + 1818 +] . + +[ test:City "Chaohu" ; + test:Country "China" ; + + 1138 +] . + +[ test:City "Huzhou" ; + test:Country "China" ; + + 3033 +] . + +[ test:City "Orléans" ; + test:Country "France" ; + + 50 +] . + +[ test:City "São José" ; + test:Country "Brazil" ; + + 605 +] . + +[ test:City "Valenciennes" ; + test:Country "France" ; + + 1301 +] . + +[ test:City "Çorlu" ; + test:Country "Turkey" ; + + 1265 +] . + +[ test:City "Florencia" ; + test:Country "Colombia" ; + + 2149 +] . + +[ test:City "Bello" ; + test:Country "Colombia" ; + + 2641 +] . + +[ test:City "Biysk" ; + test:Country "Russia" ; + + 2704 +] . + +[ test:City "Meerut" ; + test:Country "India" ; + + 240 +] . + +[ test:City "Syzran" ; + test:Country "Russia" ; + + 840 +] . + +[ test:City "Kasukabe" ; + test:Country "Japan" ; + + 1616 +] . + +[ test:City "Kitchener" ; + test:Country "Canada" ; + + 1688 +] . + +[ test:City "Jhelum" ; + test:Country "Pakistan" ; + + 2276 +] . + +[ test:City "Hat Yai" ; + test:Country "Thailand" ; + + 2939 +] . + +[ test:City "Sagamihara" ; + test:Country "Japan" ; + + 475 +] . + +[ test:City "Tangier" ; + test:Country "Morocco" ; + + 1851 +] . + +[ test:City "Chigasaki" ; + test:Country "Japan" ; + + 1171 +] . + +[ test:City "Liaocheng" ; + test:Country "China" ; + + 3102 +] . + +[ test:City "Larissa" ; + test:Country "Greece" ; + + 3066 +] . + +[ test:City "Qā’em Shahr" ; + test:Country "Iran" ; + + 83 +] . + +[ test:City "Victoria" ; + test:Country "Canada" ; + + 1334 +] . + +[ test:City "Fujisawa" ; + test:Country "Japan" ; + + 2182 +] . + +[ test:City "Adana" ; + test:Country "Turkey" ; + + 3337 +] . + +[ test:City "Ramagundam" ; + test:Country "India" ; + + 381 +] . + +[ test:City "Košice" ; + test:Country "Slovakia" ; + + 1721 +] . + +[ test:City "Guanghan" ; + test:Country "China" ; + + 2417 +] . + +[ test:City "Himamaylan City" ; + test:Country "Philippines" ; + + 2972 +] . + +[ test:City "San Nicolás" ; + test:Country "Argentina" ; + + 544 +] . + +[ test:City "Samara" ; + test:Country "Russia" ; + + 508 +] . + +[ test:City "Sarapul" ; + test:Country "Russia" ; + + 616 +] . + +[ test:City "Tempe, Arizona" ; + test:Country "United States" ; + + 1884 +] . + +[ test:City "Chuxiong City" ; + test:Country "China" ; + + 1204 +] . + +[ test:City "Bareilly" ; + test:Country "India" ; + + 2580 +] . + +[ test:City "Liverpool" ; + test:Country "United Kingdom" ; + + 3135 +] . + +[ test:City "Danao City" ; + test:Country "Philippines" ; + + 3207 +] . + +[ test:City "St. Catharines" ; + test:Country "Canada" ; + + 779 +] . + +[ test:City "Smolensk" ; + test:Country "Russia" ; + + 743 +] . + +[ test:City "Yonkers" ; + test:Country "United States" ; + + 2119 +] . + +[ test:City "Aktau" ; + test:Country "Kazakhstan" ; + + 3370 +] . + +[ test:City "Reykjavík" ; + test:Country "Iceland" ; + + 414 +] . + +[ test:City "Kunduz" ; + test:Country "Afghanistan" ; + + 1754 +] . + +[ test:City "Guwahati" ; + test:Country "India" ; + + 2450 +] . + +[ test:City "Huaian" ; + test:Country "China" ; + + 3005 +] . + +[ test:City "Oktyabrsky" ; + test:Country "Russia" ; + + 22 +] . + +[ test:City "Setif" ; + test:Country "Algeria" ; + + 649 +] . + +[ test:City "Cologne" ; + test:Country "Germany" ; + + 1237 +] . + +[ test:City "Bayambang" ; + test:Country "Philippines" ; + + 2613 +] . + +[ test:City "Lucena City" ; + test:Country "Philippines" ; + + 3168 +] . + +[ test:City "Derby" ; + test:Country "United Kingdom" ; + + 3240 +] . + +[ test:City "Messina" ; + test:Country "Italy" ; + + 257 +] . + +[ test:City "Sumy" ; + test:Country "Ukraine" ; + + 812 +] . + +[ test:City "Khouribga" ; + test:Country "Morocco" ; + + 1660 +] . + +[ test:City "Alor Setar" ; + test:Country "Malaysia" ; + + 3403 +] . + +[ test:City "Rostock" ; + test:Country "Germany" ; + + 447 +] . + +[ test:City "Würzburg" ; + test:Country "Germany" ; + + 1047 +] . + +[ test:City "Taizhou, Jiangsu" ; + test:Country "China" ; + + 1823 +] . + +[ test:City "Xilinhaote" ; + test:Country "China" ; + + 1787 +] . + +[ test:City "Terrassa" ; + test:Country "Spain" ; + + 1895 +] . + +[ test:City "Elektrostal" ; + test:Country "Russia" ; + + 2483 +] . + +[ test:City "Las Palmas de Gran Canaria" ; + test:Country "Spain" ; + + 3038 +] . + +[ test:City "Sherbrooke" ; + test:Country "Canada" ; + + 682 +] . + +[ test:City "Çorum" ; + test:Country "Turkey" ; + + 1270 +] . + +[ test:City "Zinder" ; + test:Country "Niger" ; + + 2058 +] . + +[ test:City "Pakalongan" ; + test:Country "Indonesia" ; + + 1378 +] . + +[ test:City "Beni Mellal" ; + test:Country "Morocco" ; + + 2646 +] . + +[ test:City "Dodoma" ; + test:Country "Tanzania" ; + + 3273 +] . + +[ test:City "Mitaka" ; + test:Country "Japan" ; + + 290 +] . + +[ test:City "Naberezhnye Chelny" ; + test:Country "Russia" ; + + 845 +] . + +[ test:City "Kobe" ; + test:Country "Japan" ; + + 1693 +] . + +[ test:City "Portoviejo" ; + test:Country "Ecuador" ; + + 1505 +] . + +[ test:City "Iwaki, Fukushima" ; + test:Country "Japan" ; + + 2881 +] . + +[ test:City "Hechi" ; + test:Country "China" ; + + 2944 +] . + +[ test:City "Sahiwal" ; + test:Country "Pakistan" ; + + 480 +] . + +[ test:City "Campeche" ; + test:Country "Mexico" ; + + 1080 +] . + +[ test:City "Taonan" ; + test:Country "China" ; + + 1856 +] . + +[ test:City "Tlaquepaque" ; + test:Country "Mexico" ; + + 1928 +] . + +[ test:City "Babol" ; + test:Country "Iran" ; + + 2516 +] . + +[ test:City "Latina" ; + test:Country "Italy" ; + + 3071 +] . + +[ test:City "Lutsk" ; + test:Country "Ukraine" ; + + 3179 +] . + +[ test:City "Siirt" ; + test:Country "Turkey" ; + + 715 +] . + +[ test:City "Yazd" ; + test:Country "Iran" ; + + 2091 +] . + +[ test:City "Pasadena, California" ; + test:Country "United States" ; + + 1411 +] . + +[ test:City "Adhamiyah" ; + test:Country "Iraq" ; + + 3342 +] . + +[ test:City "Durham" ; + test:Country "United States" ; + + 3306 +] . + +[ test:City "Moreno Valley, California" ; + test:Country "United States" ; + + 323 +] . + +[ test:City "Kota Bharu" ; + test:Country "Malaysia" ; + + 1726 +] . + +[ test:City "Guarapuava" ; + test:Country "Brazil" ; + + 2422 +] . + +[ test:City "Sariaya, Quezon" ; + test:Country "Philippines" ; + + 621 +] . + +[ test:City "Castellón de la Plana" ; + test:Country "Spain" ; + + 1113 +] . + +[ test:City "Touggourt" ; + test:Country "Algeria" ; + + 1961 +] . + +[ test:City "Bally" ; + test:Country "India" ; + + 2549 +] . + +[ test:City "Berhampur" ; + test:Country "India" ; + + 2657 +] . + +[ test:City "Daqing" ; + test:Country "China" ; + + 3212 +] . + +[ test:City "Marilao, Bulacan" ; + test:Country "Philippines" ; + + 193 +] . + +[ test:City "Starsy Oskol" ; + test:Country "Russia" ; + + 784 +] . + +[ test:City "Kalyan" ; + test:Country "India" ; + + 1569 +] . + +[ test:City "Sogamoso" ; + test:Country "Colombia" ; + + 748 +] . + +[ test:City "Yulin, Guangxi" ; + test:Country "China" ; + + 2124 +] . + +[ test:City "Pforzheim" ; + test:Country "Germany" ; + + 1444 +] . + +[ test:City "Ikeda" ; + test:Country "Japan" ; + + 2820 +] . + +[ test:City "Alagoinhas" ; + test:Country "Brazil" ; + + 3375 +] . + +[ test:City "Anshan" ; + test:Country "China" ; + + 3447 +] . + +[ test:City "Numazu" ; + test:Country "Japan" ; + + 983 +] . + +[ test:City "Kure" ; + test:Country "Japan" ; + + 1759 +] . + +[ test:City "Gelsenkirchen" ; + test:Country "Germany" ; + + 2359 +] . + +[ test:City "Qom" ; + test:Country "Iran" ; + + 99 +] . + +[ test:City "Seville" ; + test:Country "Spain" ; + + 654 +] . + +[ test:City "Turgutlu" ; + test:Country "Turkey" ; + + 1994 +] . + +[ test:City "Bilaspur" ; + test:Country "India" ; + + 2690 +] . + +[ test:City "Dewas" ; + test:Country "India" ; + + 3245 +] . + +[ test:City "Mexico, Pampanga" ; + test:Country "Philippines" ; + + 262 +] . + +[ test:City "Mazatlán" ; + test:Country "Mexico" ; + + 226 +] . + +[ test:City "Karimnagar" ; + test:Country "India" ; + + 1602 +] . + +[ test:City "Nasiriyah" ; + test:Country "Iraq" ; + + 889 +] . + +[ test:City "Podgorica" ; + test:Country "Montenegro" ; + + 1477 +] . + +[ test:City "Irbid" ; + test:Country "Jordan" ; + + 2853 +] . + +[ test:City "Alwar" ; + test:Country "India" ; + + 3408 +] . + +[ test:City "Arlington, Texas" ; + test:Country "United States" ; + + 3480 +] . + +[ test:City "Cabuyao City" ; + test:Country "Philippines" ; + + 1052 +] . + +[ test:City "Westminster" ; + test:Country "United States" ; + + 1016 +] . + +[ test:City "Xining" ; + test:Country "China" ; + + 1792 +] . + +[ test:City "Thanjavur" ; + test:Country "India" ; + + 1900 +] . + +[ test:City "Gonbad-e Qabus" ; + test:Country "Iran" ; + + 2392 +] . + +[ test:City "Magadan" ; + test:Country "Russia" ; + + 132 +] . + +[ test:City "Shikarpur" ; + test:Country "Pakistan" ; + + 687 +] . + +[ test:City "Cuernavaca" ; + test:Country "Mexico" ; + + 1287 +] . + +[ test:City "Zunyi" ; + test:Country "China" ; + + 2063 +] . + +[ test:City "Zelenograd" ; + test:Country "Russia" ; + + 2027 +] . + +[ test:City "Bokaro Steel City" ; + test:Country "India" ; + + 2723 +] . + +[ test:City "Dongtai" ; + test:Country "China" ; + + 3278 +] . + +[ test:City "Newcastle" ; + test:Country "Australia" ; + + 922 +] . + +[ test:City "Pouso Alegre" ; + test:Country "Brazil" ; + + 1510 +] . + +[ test:City "Izhevsk" ; + test:Country "Russia" ; + + 2886 +] . + +[ test:City "Aurora, Illinois" ; + test:Country "United States" ; + + 3513 +] . + +[ test:City "San Jose, California" ; + test:Country "United States" ; + + 530 +] . + +[ test:City "Campos dos Goytacazes" ; + test:Country "Brazil" ; + + 1085 +] . + +[ test:City "Tokat" ; + test:Country "Turkey" ; + + 1933 +] . + +[ test:City "Linhai" ; + test:Country "China" ; + + 3121 +] . + +[ test:City "Lviv" ; + test:Country "Ukraine" ; + + 3184 +] . + +[ test:City "Manchester, New Hampshire" ; + test:Country "United States" ; + + 165 +] . + +[ test:City "Purnia" ; + test:Country "India" ; + + 1541 +] . + +[ test:City "Siliguri" ; + test:Country "India" ; + + 720 +] . + +[ test:City "Västerås" ; + test:Country "Sweden" ; + + 1320 +] . + +[ test:City "Yerevan" ; + test:Country "Armenia" ; + + 2096 +] . + +[ test:City "Franco da Rocha" ; + test:Country "Brazil" ; + + 2168 +] . + +[ test:City "Bratsk" ; + test:Country "Russia" ; + + 2756 +] . + +[ test:City "Dzerzhinsk" ; + test:Country "Russia" ; + + 3311 +] . + +[ test:City "Norman" ; + test:Country "United States" ; + + 955 +] . + +[ test:City "Jyväskylä" ; + test:Country "Finland" ; + + 2331 +] . + +[ test:City "Jinan" ; + test:Country "China" ; + + 2295 +] . + +[ test:City "Santa Ana, California" ; + test:Country "United States" ; + + 563 +] . + +[ test:City "Caucaia" ; + test:Country "Brazil" ; + + 1118 +] . + +[ test:City "Toyama" ; + test:Country "Japan" ; + + 1966 +] . + +[ test:City "Betim" ; + test:Country "Brazil" ; + + 2662 +] . + +[ test:City "Los Angeles" ; + test:Country "United States" ; + + 3154 +] . + +[ test:City "Markham" ; + test:Country "Canada" ; + + 198 +] . + +[ test:City "Kamianets-Podilskyi" ; + test:Country "Ukraine" ; + + 1574 +] . + +[ test:City "Vitória de Santo Antão" ; + test:Country "Brazil" ; + + 1353 +] . + +[ test:City "Ubon Ratchathani" ; + test:Country "Thailand" ; + + 2201 +] . + +[ test:City "Buôn Ma Thuột" ; + test:Country "Vietnam" ; + + 2789 +] . + +[ test:City "Antipolo City" ; + test:Country "Philippines" ; + + 3452 +] . + +[ test:City "Riverside" ; + test:Country "United States" ; + + 433 +] . + +[ test:City "Tacloban City" ; + test:Country "Philippines" ; + + 1809 +] . + +[ test:City "Wad Madani" ; + test:Country "Sudan" ; + + 988 +] . + +[ test:City "Georgetown" ; + test:Country "Guyana" ; + + 2364 +] . + +[ test:City "Odawara" ; + test:Country "Japan" ; + + 8 +] . + +[ test:City "São Bernardo do Campo" ; + test:Country "Brazil" ; + + 596 +] . + +[ test:City "Clarksville" ; + test:Country "United States" ; + + 1223 +] . + +[ test:City "Turmero" ; + test:Country "Venezuela" ; + + 1999 +] . + +[ test:City "Basra" ; + test:Country "Iraq" ; + + 2599 +] . + +[ test:City "Natal" ; + test:Country "Brazil" ; + + 894 +] . + +[ test:City "Ussuriysk" ; + test:Country "Russia" ; + + 2234 +] . + +[ test:City "Haora" ; + test:Country "India" ; + + 2930 +] . + +[ test:City "Arrah" ; + test:Country "India" ; + + 3485 +] . + +[ test:City "Saanich" ; + test:Country "Canada" ; + + 466 +] . + +[ test:City "Tambov" ; + test:Country "Russia" ; + + 1842 +] . + +[ test:City "Willemstad" ; + test:Country "Netherlands" ; + + 1021 +] . + +[ test:City "Chandrapur" ; + test:Country "India" ; + + 1129 +] . + +[ test:City "Gorgan" ; + test:Country "Iran" ; + + 2397 +] . + +[ test:City "León" ; + test:Country "Spain" ; + + 3093 +] . + +[ test:City "Langfang" ; + test:Country "China" ; + + 3057 +] . + +[ test:City "Oran" ; + test:Country "Algeria" ; + + 41 +] . + +[ test:City "Curitiba" ; + test:Country "Brazil" ; + + 1292 +] . + +[ test:City "Copiapó" ; + test:Country "Chile" ; + + 1256 +] . + +[ test:City "Zhangjiakou" ; + test:Country "China" ; + + 2032 +] . + +[ test:City "Béjaïa" ; + test:Country "Algeria" ; + + 2632 +] . + +[ test:City "Raiganj" ; + test:Country "India" ; + + 372 +] . + +[ test:City "Nha Trang" ; + test:Country "Vietnam" ; + + 927 +] . + +[ test:City "Jeongju" ; + test:Country "South Korea" ; + + 2267 +] . + +[ test:City "Heze" ; + test:Country "China" ; + + 2963 +] . + +[ test:City "Aydın" ; + test:Country "Turkey" ; + + 3518 +] . + +[ test:City "Salerno" ; + test:Country "Italy" ; + + 499 +] . + +[ test:City "Tegucigalpa" ; + test:Country "Honduras" ; + + 1875 +] . + +[ test:City "Cherthala" ; + test:Country "India" ; + + 1162 +] . + +[ test:City "Linyi" ; + test:Country "China" ; + + 3126 +] . + +[ test:City "Oulu" ; + test:Country "Finland" ; + + 74 +] . + +[ test:City "Springfield, Illinois" ; + test:Country "United States" ; + + 770 +] . + +[ test:City "Vellore" ; + test:Country "India" ; + + 1325 +] . + +[ test:City "Fresno" ; + test:Country "United States" ; + + 2173 +] . + +[ test:City "Ajax" ; + test:Country "Canada" ; + + 3361 +] . + +[ test:City "Relizane" ; + test:Country "Algeria" ; + + 405 +] . + +[ test:City "Norwich" ; + test:Country "United Kingdom" ; + + 960 +] . + +[ test:City "Kryvyi Rih" ; + test:Country "Ukraine" ; + + 1745 +] . + +[ test:City "Gandhidham" ; + test:Country "India" ; + + 2336 +] . + +[ test:City "Jingzhou" ; + test:Country "China" ; + + 2300 +] . + +[ test:City "Green Bay" ; + test:Country "United States" ; + + 2408 +] . + +[ test:City "Hospet" ; + test:Country "India" ; + + 2996 +] . + +[ test:City "Choluteca" ; + test:Country "Honduras" ; + + 1195 +] . + +[ test:City "Baotou" ; + test:Country "China" ; + + 2571 +] . + +[ test:City "Baia Mare" ; + test:Country "Romania" ; + + 2535 +] . + +[ test:City "Suizhou" ; + test:Country "China" ; + + 803 +] . + +[ test:City "Khayelitsha" ; + test:Country "South Africa" ; + + 1651 +] . + +[ test:City "Vladimir" ; + test:Country "Russia" ; + + 1358 +] . + +[ test:City "Ufa" ; + test:Country "Russia" ; + + 2206 +] . + +[ test:City "Alipurduar" ; + test:Country "India" ; + + 3394 +] . + +[ test:City "Rochester, New York" ; + test:Country "United States" ; + + 438 +] . + +[ test:City "Taguig City" ; + test:Country "Philippines" ; + + 1814 +] . + +[ test:City "Xi'an" ; + test:Country "China" ; + + 1778 +] . + +[ test:City "Gulbarga" ; + test:Country "India" ; + + 2441 +] . + +[ test:City "Hunchun" ; + test:Country "China" ; + + 3029 +] . + +[ test:City "Ōgaki" ; + test:Country "Japan" ; + + 13 +] . + +[ test:City "Shaoyang" ; + test:Country "China" ; + + 673 +] . + +[ test:City "Coacalco" ; + test:Country "Mexico" ; + + 1228 +] . + +[ test:City "Zhukovsky" ; + test:Country "Russia" ; + + 2049 +] . + +[ test:City "Bataysk" ; + test:Country "Russia" ; + + 2604 +] . + +[ test:City "Sydney" ; + test:Country "Australia" ; + + 836 +] . + +[ test:City "Kismayo" ; + test:Country "Somalia" ; + + 1684 +] . + +[ test:City "Piracicaba" ; + test:Country "Brazil" ; + + 1463 +] . + +[ test:City "Uzhhorod" ; + test:Country "Ukraine" ; + + 2239 +] . + +[ test:City "Indaiatuba" ; + test:Country "Brazil" ; + + 2839 +] . + +[ test:City "Changshi" ; + test:Country "China" ; + + 1134 +] . + +[ test:City "El Khroub" ; + test:Country "Algeria" ; + + 2474 +] . + +[ test:City "Laoag City" ; + test:Country "Philippines" ; + + 3062 +] . + +[ test:City "Orekhovo-Zuyevo" ; + test:Country "Russia" ; + + 46 +] . + +[ test:City "Lucknow" ; + test:Country "India" ; + + 3170 +] . + +[ test:City "Shubra al Khaymah" ; + test:Country "Egypt" ; + + 706 +] . + +[ test:City "Córdoba" ; + test:Country "Argentina" ; + + 1261 +] . + +[ test:City "Yangquan" ; + test:Country "China" ; + + 2082 +] . + +[ test:City "Belgorod" ; + test:Country "Russia" ; + + 2637 +] . + +[ test:City "Acarigua" ; + test:Country "Venezuela" ; + + 3333 +] . + +[ test:City "Dunedin" ; + test:Country "New Zealand" ; + + 3297 +] . + +[ test:City "Minsk" ; + test:Country "Belarus" ; + + 281 +] . + +[ test:City "Korla" ; + test:Country "China" ; + + 1717 +] . + +[ test:City "Port Moresby" ; + test:Country "Papua New Guinea" ; + + 1496 +] . + +[ test:City "Jerusalem" ; + test:Country "Israel" ; + + 2272 +] . + +[ test:City "Itajaí" ; + test:Country "Brazil" ; + + 2872 +] . + +[ test:City "Saqez" ; + test:Country "Iran" ; + + 612 +] . + +[ test:City "Chibi City" ; + test:Country "China" ; + + 1167 +] . + +[ test:City "Espoo" ; + test:Country "Finland" ; + + 2507 +] . + +[ test:City "Oxnard" ; + test:Country "United States" ; + + 79 +] . + +[ test:City "Damanhur" ; + test:Country "Egypt" ; + + 3203 +] . + +[ test:City "Mehsana" ; + test:Country "India" ; + + 151 +] . + +[ test:City "Slough" ; + test:Country "United Kingdom" ; + + 739 +] . + +[ test:City "Yokosuka" ; + test:Country "Japan" ; + + 2115 +] . + +[ test:City "Parakou" ; + test:Country "Benin" ; + + 1402 +] . + +[ test:City "Akita" ; + test:Country "Japan" ; + + 3366 +] . + +[ test:City "Montpellier" ; + test:Country "France" ; + + 314 +] . + +[ test:City "Kumagaya" ; + test:Country "Japan" ; + + 1750 +] . + +[ test:City "Puebla de Zaragoza" ; + test:Country "Mexico" ; + + 1529 +] . + +[ test:City "Grudziądz" ; + test:Country "Poland" ; + + 2413 +] . + +[ test:City "Haining City" ; + test:Country "China" ; + + 2905 +] . + +[ test:City "Serpukhov" ; + test:Country "Russia" ; + + 645 +] . + +[ test:City "Christchurch" ; + test:Country "New Zealand" ; + + 1200 +] . + +[ test:City "Tula" ; + test:Country "Russia" ; + + 1985 +] . + +[ test:City "Barbacena" ; + test:Country "Brazil" ; + + 2576 +] . + +[ test:City "Baiyin" ; + test:Country "China" ; + + 2540 +] . + +[ test:City "Denpasar" ; + test:Country "Indonesia" ; + + 3236 +] . + +[ test:City "Maracaibo" ; + test:Country "Venezuela" ; + + 184 +] . + +[ test:City "Kaiyuan" ; + test:Country "China" ; + + 1560 +] . + +[ test:City "Petah Tikva" ; + test:Country "Israel" ; + + 1435 +] . + +[ test:City "Bucharest" ; + test:Country "Romania" ; + + 2775 +] . + +[ test:City "Murmansk" ; + test:Country "Russia" ; + + 347 +] . + +[ test:City "Wuxue" ; + test:Country "China" ; + + 1043 +] . + +[ test:City "Teresópolis" ; + test:Country "Brazil" ; + + 1891 +] . + +[ test:City "Guntur" ; + test:Country "India" ; + + 2446 +] . + +[ test:City "Sheikhu Pura" ; + test:Country "Pakistan" ; + + 678 +] . + +[ test:City "Zibo" ; + test:Country "China" ; + + 2054 +] . + +[ test:City "Zaoyang" ; + test:Country "China" ; + + 2018 +] . + +[ test:City "Bhusawal" ; + test:Country "India" ; + + 2681 +] . + +[ test:City "Dniprodzerzhinsk" ; + test:Country "Ukraine" ; + + 3269 +] . + +[ test:City "Matsusaka" ; + test:Country "Japan" ; + + 217 +] . + +[ test:City "Kaohsiung" ; + test:Country "Taiwan" ; + + 1593 +] . + +[ test:City "Nevinnomyssk" ; + test:Country "Russia" ; + + 913 +] . + +[ test:City "Piura" ; + test:Country "Peru" ; + + 1468 +] . + +[ test:City "Inglewood" ; + test:Country "United States" ; + + 2844 +] . + +[ test:City "Ibadan" ; + test:Country "Nigeria" ; + + 2808 +] . + +[ test:City "Camaragibe" ; + test:Country "Brazil" ; + + 1076 +] . + +[ test:City "Tiruvannamalai" ; + test:Country "India" ; + + 1924 +] . + +[ test:City "Elazığ" ; + test:Country "Turkey" ; + + 2479 +] . + +[ test:City "Leeds" ; + test:Country "United Kingdom" ; + + 3079 +] . + +[ test:City "Machala" ; + test:Country "Ecuador" ; + + 123 +] . + +[ test:City "Boa Vista" ; + test:Country "Brazil" ; + + 2714 +] . + +[ test:City "Durango" ; + test:Country "Mexico" ; + + 3302 +] . + +[ test:City "Mishima" ; + test:Country "Japan" ; + + 286 +] . + +[ test:City "Merca" ; + test:Country "Somalia" ; + + 250 +] . + +[ test:City "Kawanishi" ; + test:Country "Japan" ; + + 1626 +] . + +[ test:City "Nizhnekamsk" ; + test:Country "Russia" ; + + 946 +] . + +[ test:City "Jönköping" ; + test:Country "Sweden" ; + + 2322 +] . + +[ test:City "Porto Alegre" ; + test:Country "Brazil" ; + + 1501 +] . + +[ test:City "Itaquaquecetuba" ; + test:Country "Brazil" ; + + 2877 +] . + +[ test:City "San Cristóbal de Las Casas" ; + test:Country "Mexico" ; + + 521 +] . + +[ test:City "Carúpano" ; + test:Country "Venezuela" ; + + 1109 +] . + +[ test:City "Torrance, California" ; + test:Country "United States" ; + + 1957 +] . + +[ test:City "Evansville" ; + test:Country "United States" ; + + 2512 +] . + +[ test:City "Lille" ; + test:Country "France" ; + + 3112 +] . + +[ test:City "Malegaon" ; + test:Country "India" ; + + 156 +] . + +[ test:City "Parbhani" ; + test:Country "India" ; + + 1407 +] . + +[ test:City "Bozhou" ; + test:Country "China" ; + + 2747 +] . + +[ test:City "Moradabad" ; + test:Country "India" ; + + 319 +] . + +[ test:City "Ann Arbor" ; + test:Country "United States" ; + + 3443 +] . + +[ test:City "Rasht" ; + test:Country "Iran" ; + + 391 +] . + +[ test:City "Novy Urengoy" ; + test:Country "Russia" ; + + 979 +] . + +[ test:City "Gebze" ; + test:Country "Turkey" ; + + 2355 +] . + +[ test:City "Puerto Princesa City" ; + test:Country "Philippines" ; + + 1534 +] . + +[ test:City "Haldwani-cum-Kathgodam" ; + test:Country "India" ; + + 2910 +] . + +[ test:City "Sana'a" ; + test:Country "Yemen" ; + + 554 +] . + +[ test:City "Tumen" ; + test:Country "China" ; + + 1990 +] . + +[ test:City "London" ; + test:Country "United Kingdom" ; + + 3145 +] . + +[ test:City "Marawi City" ; + test:Country "Philippines" ; + + 189 +] . + +[ test:City "Kaliningrad" ; + test:Country "Russia" ; + + 1565 +] . + +[ test:City "Naples" ; + test:Country "Italy" ; + + 885 +] . + +[ test:City "Petropavl" ; + test:Country "Kazakhstan" ; + + 1440 +] . + +[ test:City "Urayasu" ; + test:Country "Japan" ; + + 2225 +] . + +[ test:City "Buenos Aires" ; + test:Country "Argentina" ; + + 2780 +] . + +[ test:City "Muscat" ; + test:Country "Oman" ; + + 352 +] . + +[ test:City "Arequipa" ; + test:Country "Peru" ; + + 3476 +] . + +[ test:City "Rimini" ; + test:Country "Italy" ; + + 424 +] . + +[ test:City "Xochimilco" ; + test:Country "Mexico" ; + + 1800 +] . + +[ test:City "West Bromwich" ; + test:Country "United Kingdom" ; + + 1012 +] . + +[ test:City "Gojra" ; + test:Country "India" ; + + 2388 +] . + +[ test:City "Huangyan" ; + test:Country "China" ; + + 3015 +] . + +[ test:City "Santiago de los Caballeros" ; + test:Country "Dominican Republic" ; + + 587 +] . + +[ test:City "Cubatão" ; + test:Country "Brazil" ; + + 1283 +] . + +[ test:City "Bihar Sharif" ; + test:Country "India" ; + + 2686 +] . + +[ test:City "Mawlamyaing (Moulmein)" ; + test:Country "Myanmar" ; + + 222 +] . + +[ test:City "Karaj" ; + test:Country "Iran" ; + + 1598 +] . + +[ test:City "New Orleans" ; + test:Country "United States" ; + + 918 +] . + +[ test:City "Jamshedpur" ; + test:Country "India" ; + + 2258 +] . + +[ test:City "Ica" ; + test:Country "Peru" ; + + 2813 +] . + +[ test:City "Hamm" ; + test:Country "Germany" ; + + 2921 +] . + +[ test:City "Augsburg" ; + test:Country "Germany" ; + + 3509 +] . + +[ test:City "Rui'an" ; + test:Country "China" ; + + 457 +] . + +[ test:City "Talca" ; + test:Country "Chile" ; + + 1833 +] . + +[ test:City "Chengzhou" ; + test:Country "China" ; + + 1153 +] . + +[ test:City "Leiden" ; + test:Country "Netherlands" ; + + 3084 +] . + +[ test:City "Lagos" ; + test:Country "Nigeria" ; + + 3048 +] . + +[ test:City "Osorno" ; + test:Country "Chile" ; + + 65 +] . + +[ test:City "Madiun" ; + test:Country "Indonesia" ; + + 128 +] . + +[ test:City "Varanasi" ; + test:Country "India" ; + + 1316 +] . + +[ test:City "Foz do Iguaçu" ; + test:Country "Brazil" ; + + 2164 +] . + +[ test:City "Bogota" ; + test:Country "Colombia" ; + + 2719 +] . + +[ test:City "Mesquite, Texas" ; + test:Country "United States" ; + + 255 +] . + +[ test:City "Mysore" ; + test:Country "India" ; + + 363 +] . + +[ test:City "Naha" ; + test:Country "Japan" ; + + 855 +] . + +[ test:City "Kediri" ; + test:Country "Indonesia" ; + + 1631 +] . + +[ test:City "Kokubunji" ; + test:Country "Japan" ; + + 1703 +] . + +[ test:City "Jieshou" ; + test:Country "China" ; + + 2291 +] . + +[ test:City "Hengshui" ; + test:Country "China" ; + + 2954 +] . + +[ test:City "San Francisco, California" ; + test:Country "United States" ; + + 526 +] . + +[ test:City "Sakai, Osaka" ; + test:Country "Japan" ; + + 490 +] . + +[ test:City "Tarsus" ; + test:Country "Turkey" ; + + 1866 +] . + +[ test:City "Chita" ; + test:Country "Russia" ; + + 1186 +] . + +[ test:City "Banha" ; + test:Country "Egypt" ; + + 2562 +] . + +[ test:City "Limerick" ; + test:Country "Ireland" ; + + 3117 +] . + +[ test:City "Viranşehir" ; + test:Country "Turkey" ; + + 1349 +] . + +[ test:City "Fürth" ; + test:Country "Germany" ; + + 2197 +] . + +[ test:City "Brampton" ; + test:Country "Canada" ; + + 2752 +] . + +[ test:City "Ahmedabad" ; + test:Country "India" ; + + 3352 +] . + +[ test:City "Rayong" ; + test:Country "Thailand" ; + + 396 +] . + +[ test:City "Kramatorsk" ; + test:Country "Ukraine" ; + + 1736 +] . + +[ test:City "Holon" ; + test:Country "Israel" ; + + 2987 +] . + +[ test:City "Oberhausen" ; + test:Country "Germany" ; + + 4 +] . + +[ test:City "Sangli" ; + test:Country "India" ; + + 559 +] . + +[ test:City "Scottsdale, Arizona" ; + test:Country "United States" ; + + 631 +] . + +[ test:City "Ciudad Nezahualcóyotl" ; + test:Country "Mexico" ; + + 1219 +] . + +[ test:City "Baruta" ; + test:Country "Venezuela" ; + + 2595 +] . + +[ test:City "Longkou" ; + test:Country "China" ; + + 3150 +] . + +[ test:City "Stuttgart" ; + test:Country "Germany" ; + + 794 +] . + +[ test:City "Khammam" ; + test:Country "India" ; + + 1642 +] . + +[ test:City "Uruguaiana" ; + test:Country "Brazil" ; + + 2230 +] . + +[ test:City "Aleppo" ; + test:Country "Syria" ; + + 3385 +] . + +[ test:City "Rio Grande" ; + test:Country "Brazil" ; + + 429 +] . + +[ test:City "Kuwana" ; + test:Country "Japan" ; + + 1769 +] . + +[ test:City "Taboão da Serra" ; + test:Country "Brazil" ; + + 1805 +] . + +[ test:City "Celaya" ; + test:Country "Mexico" ; + + 1125 +] . + +[ test:City "Edirne" ; + test:Country "Turkey" ; + + 2465 +] . + +[ test:City "Hudaida" ; + test:Country "Yemen" ; + + 3020 +] . + +[ test:City "Opole" ; + test:Country "Poland" ; + + 37 +] . + +[ test:City "Santo Domingo" ; + test:Country "Dominican Republic" ; + + 592 +] . + +[ test:City "Shangluo" ; + test:Country "China" ; + + 664 +] . + +[ test:City "Constanţa" ; + test:Country "Romania" ; + + 1252 +] . + +[ test:City "Beihai" ; + test:Country "China" ; + + 2628 +] . + +[ test:City "Digos City" ; + test:Country "Philippines" ; + + 3255 +] . + +[ test:City "Suzano" ; + test:Country "Brazil" ; + + 827 +] . + +[ test:City "Kingston upon Hull" ; + test:Country "United Kingdom" ; + + 1675 +] . + +[ test:City "Hangzhou" ; + test:Country "China" ; + + 2926 +] . + +[ test:City "Amersfoort" ; + test:Country "Netherlands" ; + + 3418 +] . + +[ test:City "Ryazan" ; + test:Country "Russia" ; + + 462 +] . + +[ test:City "Tallinn" ; + test:Country "Estonia" ; + + 1838 +] . + +[ test:City "Cherkasy" ; + test:Country "Ukraine" ; + + 1158 +] . + +[ test:City "Erlangen" ; + test:Country "Germany" ; + + 2498 +] . + +[ test:City "Laizhou" ; + test:Country "China" ; + + 3053 +] . + +[ test:City "Ottawa" ; + test:Country "Canada" ; + + 70 +] . + +[ test:City "Shishou" ; + test:Country "China" ; + + 697 +] . + +[ test:City "Yamagata" ; + test:Country "Japan" ; + + 2073 +] . + +[ test:City "Panama City" ; + test:Country "Panama" ; + + 1393 +] . + +[ test:City "Drobeta-Turnu Severin" ; + test:Country "Romania" ; + + 3288 +] . + +[ test:City "Mombasa" ; + test:Country "Kenya" ; + + 305 +] . + +[ test:City "Radom" ; + test:Country "Poland" ; + + 368 +] . + +[ test:City "Nakhodka" ; + test:Country "Russia" ; + + 860 +] . + +[ test:City "Kolomna" ; + test:Country "Russia" ; + + 1708 +] . + +[ test:City "Grand Prairie" ; + test:Country "United States" ; + + 2404 +] . + +[ test:City "Herne" ; + test:Country "Germany" ; + + 2959 +] . + +[ test:City "Salavat" ; + test:Country "Russia" ; + + 495 +] . + +[ test:City "Caracas" ; + test:Country "Venezuela" ; + + 1095 +] . + +[ test:City "Taytay, Rizal" ; + test:Country "Philippines" ; + + 1871 +] . + +[ test:City "Tomakomai" ; + test:Country "Japan" ; + + 1943 +] . + +[ test:City "Bahawalpur" ; + test:Country "Pakistan" ; + + 2531 +] . + +[ test:City "Dagupan" ; + test:Country "Philippines" ; + + 3194 +] . + +[ test:City "Sirsa" ; + test:Country "India" ; + + 730 +] . + +[ test:City "Yingtan" ; + test:Country "China" ; + + 2106 +] . + +[ test:City "Pereira" ; + test:Country "Colombia" ; + + 1426 +] . + +[ test:City "Ain Beida" ; + test:Country "Algeria" ; + + 3357 +] . + +[ test:City "Abbotabad" ; + test:Country "Pakistan" ; + + 3321 +] . + +[ test:City "Mulhouse" ; + test:Country "France" ; + + 338 +] . + +[ test:City "Kremenchuk" ; + test:Country "Ukraine" ; + + 1741 +] . + +[ test:City "Guiyang" ; + test:Country "China" ; + + 2437 +] . + +[ test:City "Honolulu" ; + test:Country "United States" ; + + 2992 +] . + +[ test:City "Seleyang Baru" ; + test:Country "Malaysia" ; + + 636 +] . + +[ test:City "Trois-Rivières" ; + test:Country "Canada" ; + + 1976 +] . + +[ test:City "Dazhou" ; + test:Country "China" ; + + 3227 +] . + +[ test:City "Suhaj" ; + test:Country "Egypt" ; + + 799 +] . + +[ test:City "South Dum Dum" ; + test:Country "India" ; + + 763 +] . + +[ test:City "Namur" ; + test:Country "Belgium" ; + + 871 +] . + +[ test:City "Kharkiv" ; + test:Country "Ukraine" ; + + 1647 +] . + +[ test:City "Feira de Santana" ; + test:Country "Brazil" ; + + 2139 +] . + +[ test:City "Pingliang" ; + test:Country "China" ; + + 1459 +] . + +[ test:City "Imperatriz" ; + test:Country "Brazil" ; + + 2835 +] . + +[ test:City "Algeciras" ; + test:Country "Spain" ; + + 3390 +] . + +[ test:City "Worcester" ; + test:Country "United States" ; + + 1034 +] . + +[ test:City "Kyzyl" ; + test:Country "Russia" ; + + 1774 +] . + +[ test:City "El Aaiún" ; + test:Country "Western Sahara" ; + + 2470 +] . + +[ test:City "Ma'anshan" ; + test:Country "China" ; + + 114 +] . + +[ test:City "Shanwei" ; + test:Country "China" ; + + 669 +] . + +[ test:City "Zacatecas" ; + test:Country "Mexico" ; + + 2009 +] . + +[ test:City "Bizerte" ; + test:Country "Tunisia" ; + + 2705 +] . + +[ test:City "Dindigul" ; + test:Country "India" ; + + 3260 +] . + +[ test:City "Minatitlán" ; + test:Country "Mexico" ; + + 277 +] . + +[ test:City "Meihekou" ; + test:Country "China" ; + + 241 +] . + +[ test:City "Suzhou, Jiangsu" ; + test:Country "China" ; + + 832 +] . + +[ test:City "Kasur" ; + test:Country "Pakistan" ; + + 1617 +] . + +[ test:City "Ndola" ; + test:Country "Zambia" ; + + 904 +] . + +[ test:City "Kisarazu" ; + test:Country "Japan" ; + + 1680 +] . + +[ test:City "Porbandar" ; + test:Country "India" ; + + 1492 +] . + +[ test:City "Itaboraí" ; + test:Country "Brazil" ; + + 2868 +] . + +[ test:City "Amritsar" ; + test:Country "India" ; + + 3423 +] . + +[ test:City "Astana" ; + test:Country "Kazakhstan" ; + + 3495 +] . + +[ test:City "Calama" ; + test:Country "Chile" ; + + 1067 +] . + +[ test:City "Tijuana" ; + test:Country "Mexico" ; + + 1915 +] . + +[ test:City "Malabo" ; + test:Country "Equatorial Guinea" ; + + 147 +] . + +[ test:City "Shkodër" ; + test:Country "Albania" ; + + 702 +] . + +[ test:City "Zhenjiang" ; + test:Country "China" ; + + 2042 +] . + +[ test:City "Yan'an" ; + test:Country "China" ; + + 2078 +] . + +[ test:City "Panjin" ; + test:Country "China" ; + + 1398 +] . + +[ test:City "Botshabelo" ; + test:Country "South Africa" ; + + 2738 +] . + +[ test:City "Duitama" ; + test:Country "Colombia" ; + + 3293 +] . + +[ test:City "Monterrey" ; + test:Country "Mexico" ; + + 310 +] . + +[ test:City "Nîmes" ; + test:Country "France" ; + + 937 +] . + +[ test:City "Jizzakh" ; + test:Country "Uzbekistan" ; + + 2313 +] . + +[ test:City "Providence, Rhode Island" ; + test:Country "United States" ; + + 1525 +] . + +[ test:City "Haicheng" ; + test:Country "China" ; + + 2901 +] . + +[ test:City "San Nicolás de los Garzas" ; + test:Country "Mexico" ; + + 545 +] . + +[ test:City "Carolina" ; + test:Country "Puerto Rico" ; + + 1100 +] . + +[ test:City "Tongi" ; + test:Country "Bangladesh" ; + + 1948 +] . + +[ test:City "Dalian" ; + test:Country "China" ; + + 3199 +] . + +[ test:City "Maoming" ; + test:Country "China" ; + + 180 +] . + +[ test:City "Kaifeng" ; + test:Country "China" ; + + 1556 +] . + +[ test:City "Siverek" ; + test:Country "Turkey" ; + + 735 +] . + +[ test:City "Vienna" ; + test:Country "Austria" ; + + 1335 +] . + +[ test:City "Yizheng" ; + test:Country "China" ; + + 2111 +] . + +[ test:City "Fukuya" ; + test:Country "Japan" ; + + 2183 +] . + +[ test:City "Bruges" ; + test:Country "Belgium" ; + + 2771 +] . + +[ test:City "Abidjan" ; + test:Country "Ivory Coast" ; + + 3326 +] . + +[ test:City "Andong" ; + test:Country "South Korea" ; + + 3434 +] . + +[ test:City "Novocheboksarsk" ; + test:Country "Russia" ; + + 970 +] . + +[ test:City "Garoua" ; + test:Country "Cameroon" ; + + 2346 +] . + +[ test:City "Santa Marta" ; + test:Country "Colombia" ; + + 578 +] . + +[ test:City "Tsukuba" ; + test:Country "Japan" ; + + 1981 +] . + +[ test:City "Bhiwani" ; + test:Country "India" ; + + 2677 +] . + +[ test:City "Delhi" ; + test:Country "India" ; + + 3232 +] . + +[ test:City "Matsubara" ; + test:Country "Japan" ; + + 213 +] . + +[ test:City "Kano" ; + test:Country "Nigeria" ; + + 1589 +] . + +[ test:City "Split" ; + test:Country "Croatia" ; + + 768 +] . + +[ test:City "Nandyal" ; + test:Country "India" ; + + 876 +] . + +[ test:City "Vũng Tàu" ; + test:Country "Vietnam" ; + + 1368 +] . + +[ test:City "Ferraz de Vasconcelos" ; + test:Country "Brazil" ; + + 2144 +] . + +[ test:City "Ulm" ; + test:Country "Germany" ; + + 2216 +] . + +[ test:City "Bydgoszcz" ; + test:Country "Poland" ; + + 2804 +] . + +[ test:City "Arak" ; + test:Country "Iran" ; + + 3467 +] . + +[ test:City "Wuhu" ; + test:Country "China" ; + + 1039 +] . + +[ test:City "Waterbury" ; + test:Country "United States" ; + + 1003 +] . + +[ test:City "Glasgow" ; + test:Country "United Kingdom" ; + + 2379 +] . + +[ test:City "Lausanne" ; + test:Country "Switzerland" ; + + 3075 +] . + +[ test:City "Oldenburg" ; + test:Country "Germany" ; + + 23 +] . + +[ test:City "Zamboanga City" ; + test:Country "Philippines" ; + + 2014 +] . + +[ test:City "Blida" ; + test:Country "Algeria" ; + + 2710 +] . + +[ test:City "Melbourne" ; + test:Country "Australia" ; + + 246 +] . + +[ test:City "Mutare" ; + test:Country "Zimbabwe" ; + + 354 +] . + +[ test:City "Kaunas" ; + test:Country "Lithuania" ; + + 1622 +] . + +[ test:City "Nellore" ; + test:Country "India" ; + + 909 +] . + +[ test:City "Jakarta" ; + test:Country "Indonesia" ; + + 2249 +] . + +[ test:City "Heerlen-Kerkrade" ; + test:Country "Netherlands" ; + + 2945 +] . + +[ test:City "Aşgabat" ; + test:Country "Turkmenistan" ; + + 3500 +] . + +[ test:City "San Buenaventura, California" ; + test:Country "United States" ; + + 517 +] . + +[ test:City "Saida" ; + test:Country "Algeria" ; + + 481 +] . + +[ test:City "Cali" ; + test:Country "Colombia" ; + + 1072 +] . + +[ test:City "Tapachula" ; + test:Country "Mexico" ; + + 1857 +] . + +[ test:City "Charleroi" ; + test:Country "Belgium" ; + + 1144 +] . + +[ test:City "Tiruchchirappalli" ; + test:Country "India" ; + + 1920 +] . + +[ test:City "Liège" ; + test:Country "Belgium" ; + + 3108 +] . + +[ test:City "Osaka" ; + test:Country "Japan" ; + + 56 +] . + +[ test:City "Valparai" ; + test:Country "India" ; + + 1307 +] . + +[ test:City "Costa Mesa" ; + test:Country "United States" ; + + 1271 +] . + +[ test:City "Zhuhai" ; + test:Country "China" ; + + 2047 +] . + +[ test:City "Forlì" ; + test:Country "Italy" ; + + 2155 +] . + +[ test:City "Benito Juárez" ; + test:Country "Mexico" ; + + 2647 +] . + +[ test:City "Ranchi" ; + test:Country "India" ; + + 387 +] . + +[ test:City "Nishio" ; + test:Country "Japan" ; + + 942 +] . + +[ test:City "Johor Bahru" ; + test:Country "Malaysia" ; + + 2318 +] . + +[ test:City "Jiangshan" ; + test:Country "China" ; + + 2282 +] . + +[ test:City "Hirosaki" ; + test:Country "Japan" ; + + 2978 +] . + +[ test:City "San Rafael" ; + test:Country "Argentina" ; + + 550 +] . + +[ test:City "Chimbote" ; + test:Country "Peru" ; + + 1177 +] . + +[ test:City "Logroño" ; + test:Country "Spain" ; + + 3141 +] . + +[ test:City "Qingdao" ; + test:Country "China" ; + + 89 +] . + +[ test:City "Stavanger" ; + test:Country "Norway" ; + + 785 +] . + +[ test:City "Kelowna" ; + test:Country "Canada" ; + + 1633 +] . + +[ test:City "Vila Velha" ; + test:Country "Brazil" ; + + 1340 +] . + +[ test:City "Fuling" ; + test:Country "China" ; + + 2188 +] . + +[ test:City "Anjō" ; + test:Country "Japan" ; + + 3439 +] . + +[ test:City "Richmond" ; + test:Country "Canada" ; + + 420 +] . + +[ test:City "Novorossiysk" ; + test:Country "Russia" ; + + 975 +] . + +[ test:City "Xinyang" ; + test:Country "China" ; + + 1796 +] . + +[ test:City "Gaza City" ; + test:Country "Palestine" ; + + 2351 +] . + +[ test:City "Guaratinguetá" ; + test:Country "Brazil" ; + + 2423 +] . + +[ test:City "Huancayo" ; + test:Country "Peru" ; + + 3011 +] . + +[ test:City "Ciudad Bolívar" ; + test:Country "Venezuela" ; + + 1210 +] . + +[ test:City "Barquisimeto" ; + test:Country "Venezuela" ; + + 2586 +] . + +[ test:City "Sunshine Coast" ; + test:Country "Australia" ; + + 818 +] . + +[ test:City "Kiel" ; + test:Country "Germany" ; + + 1666 +] . + +[ test:City "Paderborn" ; + test:Country "Germany" ; + + 1373 +] . + +[ test:City "Unnao" ; + test:Country "India" ; + + 2221 +] . + +[ test:City "Hamhung" ; + test:Country "North Korea" ; + + 2917 +] . + +[ test:City "Amadora" ; + test:Country "Portugal" ; + + 3409 +] . + +[ test:City "Arayat" ; + test:Country "Philippines" ; + + 3472 +] . + +[ test:City "Roxas" ; + test:Country "Philippines" ; + + 453 +] . + +[ test:City "Weinan" ; + test:Country "China" ; + + 1008 +] . + +[ test:City "Takasaki" ; + test:Country "Japan" ; + + 1829 +] . + +[ test:City "Gloucester" ; + test:Country "United Kingdom" ; + + 2384 +] . + +[ test:City "Gyumri" ; + test:Country "Armenia" ; + + 2456 +] . + +[ test:City "La Victoria" ; + test:Country "Venezuela" ; + + 3044 +] . + +[ test:City "Olongapo" ; + test:Country "Philippines" ; + + 28 +] . + +[ test:City "Columbia" ; + test:Country "United States" ; + + 1243 +] . + +[ test:City "Bazhou" ; + test:Country "China" ; + + 2619 +] . + +[ test:City "Meycauayan City" ; + test:Country "Philippines" ; + + 263 +] . + +[ test:City "Nagasaki" ; + test:Country "Japan" ; + + 851 +] . + +[ test:City "Koganei" ; + test:Country "Japan" ; + + 1699 +] . + +[ test:City "Jalna" ; + test:Country "India" ; + + 2254 +] . + +[ test:City "Heilbronn" ; + test:Country "Germany" ; + + 2950 +] . + +[ test:City "Saint John" ; + test:Country "Canada" ; + + 486 +] . + +[ test:City "Tarija" ; + test:Country "Bolivia" ; + + 1862 +] . + +[ test:City "Chelyabinsk" ; + test:Country "Russia" ; + + 1149 +] . + +[ test:City "English Bazar" ; + test:Country "India" ; + + 2489 +] . + +[ test:City "Osijek" ; + test:Country "Croatia" ; + + 61 +] . + +[ test:City "Lyon" ; + test:Country "France" ; + + 3185 +] . + +[ test:City "Simferopol" ; + + 721 +] . + +[ test:City "Coventry" ; + test:Country "United Kingdom" ; + + 1276 +] . + +[ test:City "Vancouver" ; + test:Country "United States" ; + + 1312 +] . + +[ test:City "Yibin" ; + test:Country "China" ; + + 2097 +] . + +[ test:City "Palermo" ; + test:Country "Italy" ; + + 1384 +] . + +[ test:City "Fort Worth" ; + test:Country "United States" ; + + 2160 +] . + +[ test:City "Berdyansk" ; + test:Country "Ukraine" ; + + 2652 +] . + +[ test:City "Agartala" ; + test:Country "India" ; + + 3348 +] . + +[ test:City "Modesto, California" ; + test:Country "United States" ; + + 296 +] . + +[ test:City "Kozhikode" ; + test:Country "India" ; + + 1732 +] . + +[ test:City "Poza Rica de Hidalgo" ; + test:Country "Mexico" ; + + 1511 +] . + +[ test:City "Jiaozhou City" ; + test:Country "China" ; + + 2287 +] . + +[ test:City "İzmir" ; + test:Country "Turkey" ; + + 2887 +] . + +[ test:City "Satu Mare" ; + test:Country "Romania" ; + + 627 +] . + +[ test:City "Chirala" ; + test:Country "India" ; + + 1182 +] . + +[ test:City "Badalona" ; + test:Country "Spain" ; + + 2522 +] . + +[ test:City "Qinhuangdao" ; + test:Country "China" ; + + 94 +] . + +[ test:City "Darwin" ; + test:Country "Australia" ; + + 3218 +] . + +[ test:City "Stockport" ; + test:Country "United Kingdom" ; + + 790 +] . + +[ test:City "Solingen" ; + test:Country "Germany" ; + + 754 +] . + +[ test:City "Kerman" ; + test:Country "Iran" ; + + 1638 +] . + +[ test:City "Yuzhno-Sakhalinsk" ; + test:Country "Russia" ; + + 2130 +] . + +[ test:City "Pavlodar" ; + test:Country "Kazakhstan" ; + + 1417 +] . + +[ test:City "Albury-Wodonga" ; + test:Country "Australia" ; + + 3381 +] . + +[ test:City "Mossoró" ; + test:Country "Brazil" ; + + 329 +] . + +[ test:City "Winston-Salem" ; + test:Country "United States" ; + + 1025 +] . + +[ test:City "Kushiro" ; + test:Country "Japan" ; + + 1765 +] . + +[ test:City "Guayaquil" ; + test:Country "Ecuador" ; + + 2428 +] . + +[ test:City "Shahrekord" ; + test:Country "Iran" ; + + 660 +] . + +[ test:City "Ciudad Juárez" ; + test:Country "Mexico" ; + + 1215 +] . + +[ test:City "Barreiras" ; + test:Country "Brazil" ; + + 2591 +] . + +[ test:City "Banda Aceh" ; + test:Country "Indonesia" ; + + 2555 +] . + +[ test:City "Bettiah" ; + test:Country "India" ; + + 2663 +] . + +[ test:City "Dhule" ; + test:Country "India" ; + + 3251 +] . + +[ test:City "Marrakech" ; + test:Country "Morocco" ; + + 199 +] . + +[ test:City "Kamoke" ; + test:Country "Pakistan" ; + + 1575 +] . + +[ test:City "Phyongsong" ; + test:Country "North Korea" ; + + 1450 +] . + +[ test:City "Ilam" ; + test:Country "Iran" ; + + 2826 +] . + +[ test:City "Ambala" ; + test:Country "India" ; + + 3414 +] . + +[ test:City "Cagayan de Oro" ; + test:Country "Philippines" ; + + 1058 +] . + +[ test:City "Thousand Oaks, California" ; + test:Country "United States" ; + + 1906 +] . + +[ test:City "Ede" ; + test:Country "Netherlands" ; + + 2461 +] . + +[ test:City "Quevedo" ; + test:Country "Ecuador" ; + + 105 +] . + +[ test:City "Shimonoseki" ; + test:Country "Japan" ; + + 693 +] . + +[ test:City "Yachiyo" ; + test:Country "Japan" ; + + 2069 +] . + +[ test:City "Conakry" ; + test:Country "Guinea" ; + + 1248 +] . + +[ test:City "Zhangshu" ; + test:Country "China" ; + + 2033 +] . + +[ test:City "Béchar" ; + test:Country "Algeria" ; + + 2624 +] . + +[ test:City "Biratnagar" ; + test:Country "Nepal" ; + + 2696 +] . + +[ test:City "Douala" ; + test:Country "Cameroon" ; + + 3284 +] . + +[ test:City "Miass" ; + test:Country "Russia" ; + + 268 +] . + +[ test:City "Mbuji-Mayi" ; + test:Country "Democratic Republic of the Congo" ; + + 232 +] . + +[ test:City "Kashgar" ; + test:Country "China" ; + + 1608 +] . + +[ test:City "Poltava" ; + test:Country "Ukraine" ; + + 1483 +] . + +[ test:City "Ise" ; + test:Country "Japan" ; + + 2859 +] . + +[ test:City "Cape Breton" ; + test:Country "Canada" ; + + 1091 +] . + +[ test:City "Toledo, Ohio" ; + test:Country "United States" ; + + 1939 +] . + +[ test:City "Envigado" ; + test:Country "Colombia" ; + + 2494 +] . + +[ test:City "Dąbrowa Górnicza" ; + test:Country "Poland" ; + + 3190 +] . + +[ test:City "Mahabad" ; + test:Country "Iran" ; + + 138 +] . + +[ test:City "Sinuiji" ; + test:Country "North Korea" ; + + 726 +] . + +[ test:City "Yima" ; + test:Country "China" ; + + 2102 +] . + +[ test:City "Palmira" ; + test:Country "Colombia" ; + + 1389 +] . + +[ test:City "Bonn" ; + test:Country "Germany" ; + + 2729 +] . + +[ test:City "Aba" ; + test:Country "Nigeria" ; + + 3317 +] . + +[ test:City "Mogilev (Mahilyow)" ; + test:Country "Belarus" ; + + 301 +] . + +[ test:City "Amsterdam" ; + test:Country "Netherlands" ; + + 3425 +] . + +[ test:City "Norzagaray, Bulacan" ; + test:Country "Philippines" ; + + 961 +] . + +[ test:City "Gandhinagar" ; + test:Country "India" ; + + 2337 +] . + +[ test:City "Prato" ; + test:Country "Italy" ; + + 1516 +] . + +[ test:City "Huis ter Heide" ; + test:Country "Netherlands" ; + + 2892 +] . + +[ test:City "San Luis Potosí" ; + test:Country "Mexico" ; + + 536 +] . + +[ test:City "Trento" ; + test:Country "Italy" ; + + 1972 +] . + +[ test:City "Bago" ; + test:Country "Myanmar" ; + + 2527 +] . + +[ test:City "Linz" ; + test:Country "Austria" ; + + 3127 +] . + +[ test:City "Mangalore" ; + test:Country "India" ; + + 171 +] . + +[ test:City "Kabul" ; + test:Country "Afghanistan" ; + + 1547 +] . + +[ test:City "Namangan" ; + test:Country "Uzbekistan" ; + + 867 +] . + +[ test:City "Pembroke Pines, Florida" ; + test:Country "United States" ; + + 1422 +] . + +[ test:City "Brescia" ; + test:Country "Italy" ; + + 2762 +] . + +[ test:City "Mönchengladbach" ; + test:Country "Germany" ; + + 334 +] . + +[ test:City "Aparecida de Goiânia" ; + test:Country "Brazil" ; + + 3458 +] . + +[ test:City "Wollongong" ; + test:Country "Australia" ; + + 1030 +] . + +[ test:City "Wałbrzych" ; + test:Country "Poland" ; + + 994 +] . + +[ test:City "Ghazni" ; + test:Country "Afghanistan" ; + + 2370 +] . + +[ test:City "Santa Cruz de la Sierra" ; + test:Country "Bolivia" ; + + 569 +] . + +[ test:City "Tyumen" ; + test:Country "Russia" ; + + 2005 +] . + +[ test:City "Bangkok" ; + test:Country "Thailand" ; + + 2560 +] . + +[ test:City "Bharatpur" ; + test:Country "Nepal" ; + + 2668 +] . + +[ test:City "Lowell" ; + test:Country "United States" ; + + 3160 +] . + +[ test:City "Maseru" ; + test:Country "Lesotho" ; + + 204 +] . + +[ test:City "Kananga" ; + test:Country "Democratic Republic of the Congo" ; + + 1580 +] . + +[ test:City "Nawabganj" ; + test:Country "Bangladesh" ; + + 900 +] . + +[ test:City "Pinar del Río" ; + test:Country "Cuba" ; + + 1455 +] . + +[ test:City "Ilopango" ; + test:Country "El Salvador" ; + + 2831 +] . + +[ test:City "Burhanpur" ; + test:Country "India" ; + + 2795 +] . + +[ test:City "Asansol" ; + test:Country "India" ; + + 3491 +] . + +[ test:City "Rockford" ; + test:Country "United States" ; + + 439 +] . + +[ test:City "Tagum City" ; + test:Country "Philippines" ; + + 1815 +] . + +[ test:City "Quilpué" ; + test:Country "Chile" ; + + 110 +] . + +[ test:City "São José do Rio Preto" ; + test:Country "Brazil" ; + + 602 +] . + +[ test:City "Valencia" ; + test:Country "Spain" ; + + 1298 +] . + +[ test:City "Zhaoqing" ; + test:Country "China" ; + + 2038 +] . + +[ test:City "Firozabad" ; + test:Country "India" ; + + 2146 +] . + +[ test:City "Bislig" ; + test:Country "Philippines" ; + + 2701 +] . + +[ test:City "Medellín" ; + test:Country "Colombia" ; + + 237 +] . + +[ test:City "Kassel" ; + test:Country "Germany" ; + + 1613 +] . + +[ test:City "Niiza" ; + test:Country "Japan" ; + + 933 +] . + +[ test:City "Jiutai" ; + test:Country "China" ; + + 2309 +] . + +[ test:City "Pontianak" ; + test:Country "Indonesia" ; + + 1488 +] . + +[ test:City "Jessore" ; + test:Country "Bangladesh" ; + + 2273 +] . + +[ test:City "Islamabad" ; + test:Country "Pakistan" ; + + 2864 +] . + +[ test:City "Hartford" ; + test:Country "United States" ; + + 2936 +] . + +[ test:City "Sadiqabad" ; + test:Country "Pakistan" ; + + 472 +] . + +[ test:City "Tandoadam" ; + test:Country "Pakistan" ; + + 1848 +] . + +[ test:City "Lhasa" ; + test:Country "China" ; + + 3099 +] . + +[ test:City "Laohekou" ; + test:Country "China" ; + + 3063 +] . + +[ test:City "Mainz" ; + test:Country "Germany" ; + + 143 +] . + +[ test:City "Vicente López" ; + test:Country "Argentina" ; + + 1331 +] . + +[ test:City "Fujimi" ; + test:Country "Japan" ; + + 2179 +] . + +[ test:City "Bosaso" ; + test:Country "Somalia" ; + + 2734 +] . + +[ test:City "Anchorage" ; + test:Country "United States" ; + + 3430 +] . + +[ test:City "Rajshahi" ; + test:Country "Bangladesh" ; + + 378 +] . + +[ test:City "Nova Iguaçu" ; + test:Country "Brazil" ; + + 966 +] . + +[ test:City "Gaocheng" ; + test:Country "China" ; + + 2342 +] . + +[ test:City "Hikone" ; + test:Country "Japan" ; + + 2969 +] . + +[ test:City "San Miguel de Tucumán" ; + test:Country "Argentina" ; + + 541 +] . + +[ test:City "Salvador" ; + test:Country "Brazil" ; + + 505 +] . + +[ test:City "Telford" ; + test:Country "United Kingdom" ; + + 1881 +] . + +[ test:City "Chula Vista" ; + test:Country "United States" ; + + 1201 +] . + +[ test:City "Barcelona" ; + test:Country "Venezuela" ; + + 2577 +] . + +[ test:City "Little Rock" ; + test:Country "United States" ; + + 3132 +] . + +[ test:City "Manizales" ; + test:Country "Colombia" ; + + 176 +] . + +[ test:City "St Louis, Missouri" ; + test:Country "United States" ; + + 776 +] . + +[ test:City "Kaesong" ; + test:Country "North Korea" ; + + 1552 +] . + +[ test:City "Volta Redonda" ; + test:Country "Brazil" ; + + 1364 +] . + +[ test:City "Ulaanbaatar" ; + test:Country "Mongolia" ; + + 2212 +] . + +[ test:City "Brisbane" ; + test:Country "Australia" ; + + 2767 +] . + +[ test:City "Akola" ; + test:Country "India" ; + + 3367 +] . + +[ test:City "Resistencia" ; + test:Country "Argentina" ; + + 411 +] . + +[ test:City "Kumamoto" ; + test:Country "Japan" ; + + 1751 +] . + +[ test:City "Hrodna" ; + test:Country "Belarus" ; + + 3002 +] . + +[ test:City "Okene" ; + test:Country "Nigeria" ; + + 19 +] . + +[ test:City "Santa Fe" ; + test:Country "Argentina" ; + + 574 +] . + +[ test:City "Colatina" ; + test:Country "Brazil" ; + + 1234 +] . + +[ test:City "Battambang" ; + test:Country "Cambodia" ; + + 2610 +] . + +[ test:City "Lübeck" ; + test:Country "Germany" ; + + 3165 +] . + +[ test:City "Sultan Kudarat, Maguindanao" ; + test:Country "Philippines" ; + + 809 +] . + +[ test:City "Khon Kaen" ; + test:Country "Thailand" ; + + 1657 +] . + +[ test:City "Jacobabad" ; + test:Country "Pakistan" ; + + 2245 +] . + +[ test:City "Busan" ; + test:Country "South Korea" ; + + 2800 +] . + +[ test:City "Almere" ; + test:Country "Netherlands" ; + + 3400 +] . + +[ test:City "Rongcheng" ; + test:Country "China" ; + + 444 +] . + +[ test:City "Xiaogan" ; + test:Country "China" ; + + 1784 +] . + +[ test:City "Taiping" ; + test:Country "Malaysia" ; + + 1820 +] . + +[ test:City "Chaozhou" ; + test:Country "China" ; + + 1140 +] . + +[ test:City "Hyderabad" ; + test:Country "Pakistan" ; + + 3035 +] . + +[ test:City "Orsha" ; + test:Country "Belarus" ; + + 52 +] . + +[ test:City "São Luís" ; + test:Country "Brazil" ; + + 607 +] . + +[ test:City "Sheopur" ; + test:Country "India" ; + + 679 +] . + +[ test:City "Zielona Góra" ; + test:Country "Poland" ; + + 2055 +] . + +[ test:City "Corona" ; + test:Country "United States" ; + + 1267 +] . + +[ test:City "Bengbu" ; + test:Country "China" ; + + 2643 +] . + +[ test:City "Szeged" ; + test:Country "Hungary" ; + + 842 +] . + +[ test:City "Klaipėda" ; + test:Country "Lithuania" ; + + 1690 +] . + +[ test:City "Jiamusi" ; + test:Country "China" ; + + 2278 +] . + +[ test:City "Hayward" ; + test:Country "United States" ; + + 2941 +] . + +[ test:City "Sagay City" ; + test:Country "Philippines" ; + + 477 +] . + +[ test:City "Tanjung Pinang" ; + test:Country "Indonesia" ; + + 1853 +] . + +[ test:City "Chikmagalur" ; + test:Country "India" ; + + 1173 +] . + +[ test:City "Exeter" ; + test:Country "United Kingdom" ; + + 2513 +] . + +[ test:City "Liaoyuan" ; + test:Country "China" ; + + 3104 +] . + +[ test:City "Larnaca" ; + test:Country "Cyprus" ; + + 3068 +] . + +[ test:City "Qarchak" ; + test:Country "Iran" ; + + 85 +] . + +[ test:City "Luoyang" ; + test:Country "China" ; + + 3176 +] . + +[ test:City "Sidi-bel-Abbès" ; + test:Country "Algeria" ; + + 712 +] . + +[ test:City "Yaroslavl" ; + test:Country "Russia" ; + + 2088 +] . + +[ test:City "Addis Ababa" ; + test:Country "Ethiopia" ; + + 3339 +] . + +[ test:City "Durban" ; + test:Country "South Africa" ; + + 3303 +] . + +[ test:City "Râmnicu Vâlcea" ; + test:Country "Romania" ; + + 383 +] . + +[ test:City "Kosti" ; + test:Country "Sudan" ; + + 1723 +] . + +[ test:City "Guangyuan" ; + test:Country "China" ; + + 2419 +] . + +[ test:City "Hindupur" ; + test:Country "India" ; + + 2974 +] . + +[ test:City "Samarkand" ; + test:Country "Uzbekistan" ; + + 510 +] . + +[ test:City "Sar-e Pol" ; + test:Country "Afghanistan" ; + + 618 +] . + +[ test:City "Tenali" ; + test:Country "India" ; + + 1886 +] . + +[ test:City "Cienfuegos" ; + test:Country "Cuba" ; + + 1206 +] . + +[ test:City "Barika" ; + test:Country "Algeria" ; + + 2582 +] . + +[ test:City "Balıkesir" ; + test:Country "Turkey" ; + + 2546 +] . + +[ test:City "Dangyang" ; + test:Country "China" ; + + 3209 +] . + +[ test:City "Stakhanov" ; + test:Country "Ukraine" ; + + 781 +] . + +[ test:City "Sobral" ; + test:Country "Brazil" ; + + 745 +] . + +[ test:City "Yoshkar-Ola" ; + test:Country "Russia" ; + + 2121 +] . + +[ test:City "Petropavlovsk-Kamchatsky" ; + test:Country "Russia" ; + + 1441 +] . + +[ test:City "Ichinomiya" ; + test:Country "Japan" ; + + 2817 +] . + +[ test:City "Al 'Arish" ; + test:Country "Egypt" ; + + 3372 +] . + +[ test:City "Ribeirão das Neves" ; + test:Country "Brazil" ; + + 416 +] . + +[ test:City "Kunshan" ; + test:Country "China" ; + + 1756 +] . + +[ test:City "Gwangju" ; + test:Country "South Korea" ; + + 2452 +] . + +[ test:City "Huaihua" ; + test:Country "China" ; + + 3007 +] . + +[ test:City "Sevastopol" ; + + 651 +] . + +[ test:City "Tumkur" ; + test:Country "India" ; + + 1991 +] . + +[ test:City "Des Moines" ; + test:Country "United States" ; + + 3242 +] . + +[ test:City "Metz" ; + test:Country "France" ; + + 259 +] . + +[ test:City "Sunderland" ; + test:Country "United Kingdom" ; + + 814 +] . + +[ test:City "Khulna" ; + test:Country "Bangladesh" ; + + 1662 +] . + +[ test:City "Plymouth" ; + test:Country "United Kingdom" ; + + 1474 +] . + +[ test:City "Iquique" ; + test:Country "Chile" ; + + 2850 +] . + +[ test:City "Altay City" ; + test:Country "China" ; + + 3405 +] . + +[ test:City "Cabimas" ; + test:Country "Venezuela" ; + + 1049 +] . + +[ test:City "Xinghua" ; + test:Country "China" ; + + 1789 +] . + +[ test:City "Thai Nguyen" ; + test:Country "Vietnam" ; + + 1897 +] . + +[ test:City "Elizabeth" ; + test:Country "United States" ; + + 2485 +] . + +[ test:City "La Paz" ; + test:Country "Mexico" ; + + 3040 +] . + +[ test:City "Madrid" ; + test:Country "Spain" ; + + 129 +] . + +[ test:City "Shihezi" ; + test:Country "China" ; + + 684 +] . + +[ test:City "Pakpattan" ; + test:Country "Pakistan" ; + + 1380 +] . + +[ test:City "Zlatoust" ; + test:Country "Russia" ; + + 2060 +] . + +[ test:City "Zaria" ; + test:Country "Nigeria" ; + + 2024 +] . + +[ test:City "Donetsk" ; + test:Country "Ukraine" ; + + 3275 +] . + +[ test:City "Miyakonojo" ; + test:Country "Japan" ; + + 292 +] . + +[ test:City "Naga" ; + test:Country "Philippines" ; + + 847 +] . + +[ test:City "New York" ; + test:Country "United States" ; + + 919 +] . + +[ test:City "Kochi" ; + test:Country "India" ; + + 1695 +] . + +[ test:City "Posadas" ; + test:Country "Argentina" ; + + 1507 +] . + +[ test:City "Iwatsuki" ; + test:Country "Japan" ; + + 2883 +] . + +[ test:City "Campina Grande" ; + test:Country "Brazil" ; + + 1082 +] . + +[ test:City "Tlemoen" ; + test:Country "Algeria" ; + + 1930 +] . + +[ test:City "Bacău" ; + test:Country "Romania" ; + + 2518 +] . + +[ test:City "Luxor" ; + test:Country "Egypt" ; + + 3181 +] . + +[ test:City "Manama" ; + test:Country "Bahrain" ; + + 162 +] . + +[ test:City "Punta Arenas" ; + test:Country "Chile" ; + + 1538 +] . + +[ test:City "Silang, Cavite" ; + test:Country "Philippines" ; + + 717 +] . + +[ test:City "Yelets" ; + test:Country "Russia" ; + + 2093 +] . + +[ test:City "Patna" ; + test:Country "India" ; + + 1413 +] . + +[ test:City "Brasília" ; + test:Country "Brazil" ; + + 2753 +] . + +[ test:City "Ado-Ekiti" ; + test:Country "Nigeria" ; + + 3344 +] . + +[ test:City "Dushanbe" ; + test:Country "Tajikistan" ; + + 3308 +] . + +[ test:City "Morioka" ; + test:Country "Japan" ; + + 325 +] . + +[ test:City "Noginsk" ; + test:Country "Russia" ; + + 952 +] . + +[ test:City "Kota" ; + test:Country "India" ; + + 1728 +] . + +[ test:City "Juliaca" ; + test:Country "Peru" ; + + 2328 +] . + +[ test:City "Sasebo" ; + test:Country "Japan" ; + + 623 +] . + +[ test:City "Catania" ; + test:Country "Italy" ; + + 1115 +] . + +[ test:City "Toulouse" ; + test:Country "France" ; + + 1963 +] . + +[ test:City "Berlin" ; + test:Country "Germany" ; + + 2659 +] . + +[ test:City "Daraga" ; + test:Country "Philippines" ; + + 3214 +] . + +[ test:City "Maringá" ; + test:Country "Brazil" ; + + 195 +] . + +[ test:City "Kamakura" ; + test:Country "Japan" ; + + 1571 +] . + +[ test:City "Solapur" ; + test:Country "India" ; + + 750 +] . + +[ test:City "Yumen" ; + test:Country "China" ; + + 2126 +] . + +[ test:City "Phuket" ; + test:Country "Thailand" ; + + 1446 +] . + +[ test:City "Ikoma" ; + test:Country "Japan" ; + + 2822 +] . + +[ test:City "Bukhara" ; + test:Country "Uzbekistan" ; + + 2786 +] . + +[ test:City "Antakya" ; + test:Country "Turkey" ; + + 3449 +] . + +[ test:City "Nyala" ; + test:Country "Sudan" ; + + 985 +] . + +[ test:City "Geneva" ; + test:Country "Switzerland" ; + + 2361 +] . + +[ test:City "Quebec City" ; + test:Country "Canada" ; + + 101 +] . + +[ test:City "Santo Tomas, Batangas" ; + test:Country "Philippines" ; + + 593 +] . + +[ test:City "Shah Alam" ; + test:Country "Malaysia" ; + + 656 +] . + +[ test:City "Turin" ; + test:Country "Italy" ; + + 1996 +] . + +[ test:City "Billings" ; + test:Country "United States" ; + + 2692 +] . + +[ test:City "Dezful" ; + test:Country "Iran" ; + + 3247 +] . + +[ test:City "Mbabane" ; + test:Country "Swaziland" ; + + 228 +] . + +[ test:City "Karlsruhe" ; + test:Country "Germany" ; + + 1604 +] . + +[ test:City "Nashville" ; + test:Country "United States" ; + + 891 +] . + +[ test:City "Ürümqi" ; + test:Country "China" ; + + 2231 +] . + +[ test:City "Armavir" ; + test:Country "Russia" ; + + 3482 +] . + +[ test:City "Cachoeiro de Itapemirim" ; + test:Country "Brazil" ; + + 1054 +] . + +[ test:City "Wichita Falls" ; + test:Country "United States" ; + + 1018 +] . + +[ test:City "Thessaloniki" ; + test:Country "Greece" ; + + 1902 +] . + +[ test:City "Gondiya" ; + test:Country "India" ; + + 2394 +] . + +[ test:City "Leninsk-Kuznetsky" ; + test:Country "Russia" ; + + 3090 +] . + +[ test:City "Magdeburg" ; + test:Country "Germany" ; + + 134 +] . + +[ test:City "Culiacán" ; + test:Country "Mexico" ; + + 1289 +] . + +[ test:City "Zhalantun" ; + test:Country "China" ; + + 2029 +] . + +[ test:City "Bole" ; + test:Country "China" ; + + 2725 +] . + +[ test:City "Dongying" ; + test:Country "China" ; + + 3280 +] . + +[ test:City "Raebareli" ; + test:Country "India" ; + + 369 +] . + +[ test:City "Neyagawa" ; + test:Country "Japan" ; + + 924 +] . + +[ test:City "Jayapura" ; + test:Country "Indonesia" ; + + 2264 +] . + +[ test:City "Avellaneda" ; + test:Country "Argentina" ; + + 3515 +] . + +[ test:City "San Juan, Argentina" ; + test:Country "Argentina" ; + + 532 +] . + +[ test:City "Candelaria" ; + test:Country "Philippines" ; + + 1087 +] . + +[ test:City "Cherkessk" ; + test:Country "Russia" ; + + 1159 +] . + +[ test:City "Tokushima" ; + test:Country "Japan" ; + + 1935 +] . + +[ test:City "Linköping" ; + test:Country "Sweden" ; + + 3123 +] . + +[ test:City "Ouagadougou" ; + test:Country "Burkina Faso" ; + + 71 +] . + +[ test:City "Vaughan" ; + test:Country "Canada" ; + + 1322 +] . + +[ test:City "Freetown" ; + test:Country "Sierra Leone" ; + + 2170 +] . + +[ test:City "Brazzaville" ; + test:Country "Republic of the Congo" ; + + 2758 +] . + +[ test:City "Regina" ; + test:Country "Canada" ; + + 402 +] . + +[ test:City "North Las Vegas" ; + test:Country "United States" ; + + 957 +] . + +[ test:City "Gaborone" ; + test:Country "Botswana" ; + + 2333 +] . + +[ test:City "Jincheng" ; + test:Country "China" ; + + 2297 +] . + +[ test:City "Horlivka" ; + test:Country "Ukraine" ; + + 2993 +] . + +[ test:City "Santa Clara, California" ; + test:Country "United States" ; + + 565 +] . + +[ test:City "Caxias do Sul" ; + test:Country "Brazil" ; + + 1120 +] . + +[ test:City "Chlef" ; + test:Country "Algeria" ; + + 1192 +] . + +[ test:City "Toyokawa" ; + test:Country "Japan" ; + + 1968 +] . + +[ test:City "Baoding" ; + test:Country "China" ; + + 2568 +] . + +[ test:City "Los Mochis" ; + test:Country "Mexico" ; + + 3156 +] . + +[ test:City "Vitoria-Gasteiz" ; + test:Country "Spain" ; + + 1355 +] . + +[ test:City "Udon Thani" ; + test:Country "Thailand" ; + + 2203 +] . + +[ test:City "Antwerp" ; + test:Country "Belgium" ; + + 3454 +] . + +[ test:City "Riyadh" ; + test:Country "Saudi Arabia" ; + + 435 +] . + +[ test:City "Wafangdian" ; + test:Country "China" ; + + 990 +] . + +[ test:City "Tacoma, Washington" ; + test:Country "United States" ; + + 1811 +] . + +[ test:City "Germiston" ; + test:Country "South Africa" ; + + 2366 +] . + +[ test:City "Huizhou" ; + test:Country "China" ; + + 3026 +] . + +[ test:City "Odessa" ; + test:Country "Ukraine" ; + + 10 +] . + +[ test:City "São Carlos" ; + test:Country "Brazil" ; + + 598 +] . + +[ test:City "Clermont-Ferrand" ; + test:Country "France" ; + + 1225 +] . + +[ test:City "Batala" ; + test:Country "India" ; + + 2601 +] . + +[ test:City "Suzuka" ; + test:Country "Japan" ; + + 833 +] . + +[ test:City "Navapolatsk" ; + test:Country "Belarus" ; + + 896 +] . + +[ test:City "Kiselyovsk" ; + test:Country "Russia" ; + + 1681 +] . + +[ test:City "Ust-Kamenogorsk" ; + test:Country "Kazakhstan" ; + + 2236 +] . + +[ test:City "Harare" ; + test:Country "Zimbabwe" ; + + 2932 +] . + +[ test:City "Arvada" ; + test:Country "United States" ; + + 3487 +] . + +[ test:City "Sabadell" ; + test:Country "Spain" ; + + 468 +] . + +[ test:City "Windsor" ; + test:Country "Canada" ; + + 1023 +] . + +[ test:City "Tampere" ; + test:Country "Finland" ; + + 1844 +] . + +[ test:City "Changde" ; + test:Country "China" ; + + 1131 +] . + +[ test:City "Gothenburg" ; + test:Country "Sweden" ; + + 2399 +] . + +[ test:City "El Alto" ; + test:Country "Bolivia" ; + + 2471 +] . + +[ test:City "Lanús" ; + test:Country "Argentina" ; + + 3059 +] . + +[ test:City "Ordos City" ; + test:Country "China" ; + + 43 +] . + +[ test:City "Cuttack" ; + test:Country "India" ; + + 1294 +] . + +[ test:City "Coquitlam" ; + test:Country "Canada" ; + + 1258 +] . + +[ test:City "Belfast" ; + test:Country "United Kingdom" ; + + 2634 +] . + +[ test:City "Abu Dhabi" ; + test:Country "United Arab Emirates" ; + + 3330 +] . + +[ test:City "Rajahmundry" ; + test:Country "India" ; + + 374 +] . + +[ test:City "Korba" ; + test:Country "India" ; + + 1714 +] . + +[ test:City "Jequié" ; + test:Country "Brazil" ; + + 2269 +] . + +[ test:City "Higashihiroshima" ; + test:Country "Japan" ; + + 2965 +] . + +[ test:City "Salinas, California" ; + test:Country "United States" ; + + 501 +] . + +[ test:City "São Vicente" ; + test:Country "Brazil" ; + + 609 +] . + +[ test:City "Tehuacán" ; + test:Country "Mexico" ; + + 1877 +] . + +[ test:City "Chiang Mai" ; + test:Country "Thailand" ; + + 1164 +] . + +[ test:City "Esfahan" ; + test:Country "Iran" ; + + 2504 +] . + +[ test:City "Overland" ; + test:Country "United States" ; + + 76 +] . + +[ test:City "Springfield, Missouri" ; + test:Country "United States" ; + + 772 +] . + +[ test:City "Veracruz" ; + test:Country "Mexico" ; + + 1327 +] . + +[ test:City "Panzhihua" ; + test:Country "China" ; + + 1399 +] . + +[ test:City "Fuchu" ; + test:Country "Japan" ; + + 2175 +] . + +[ test:City "Akashi" ; + test:Country "Japan" ; + + 3363 +] . + +[ test:City "Montes Claros" ; + test:Country "Brazil" ; + + 311 +] . + +[ test:City "Kuala Terengganu" ; + test:Country "Malaysia" ; + + 1747 +] . + +[ test:City "Jining" ; + test:Country "China" ; + + 2302 +] . + +[ test:City "Grenoble" ; + test:Country "France" ; + + 2410 +] . + +[ test:City "Houghly-Chinsura" ; + test:Country "India" ; + + 2998 +] . + +[ test:City "Serampore" ; + test:Country "India" ; + + 642 +] . + +[ test:City "Chongjin" ; + test:Country "North Korea" ; + + 1197 +] . + +[ test:City "Baraki" ; + test:Country "Algeria" ; + + 2573 +] . + +[ test:City "Baidoa" ; + test:Country "Somalia" ; + + 2537 +] . + +[ test:City "Delmas" ; + test:Country "Haiti" ; + + 3233 +] . + +[ test:City "Sukkur" ; + test:Country "Pakistan" ; + + 805 +] . + +[ test:City "Volgodonsk" ; + test:Country "Russia" ; + + 1360 +] . + +[ test:City "Kherson" ; + test:Country "Ukraine" ; + + 1653 +] . + +[ test:City "Pervouralsk" ; + test:Country "Russia" ; + + 1432 +] . + +[ test:City "Ujjain" ; + test:Country "India" ; + + 2208 +] . + +[ test:City "Allappuzha" ; + test:Country "India" ; + + 3396 +] . + +[ test:City "Murcia" ; + test:Country "Spain" ; + + 344 +] . + +[ test:City "Xiangtan" ; + test:Country "China" ; + + 1780 +] . + +[ test:City "Guna" ; + test:Country "India" ; + + 2443 +] . + +[ test:City "Ōita" ; + test:Country "Japan" ; + + 15 +] . + +[ test:City "Shchyolkovo" ; + test:Country "Russia" ; + + 675 +] . + +[ test:City "Zhuozhou" ; + test:Country "China" ; + + 2051 +] . + +[ test:City "Cochabamba" ; + test:Country "Bolivia" ; + + 1230 +] . + +[ test:City "Bathinda" ; + test:Country "India" ; + + 2606 +] . + +[ test:City "Diyarbakır" ; + test:Country "Turkey" ; + + 3266 +] . + +[ test:City "Syracuse" ; + test:Country "Italy" ; + + 838 +] . + +[ test:City "Kitakyushu" ; + test:Country "Japan" ; + + 1686 +] . + +[ test:City "Pir Mahal" ; + test:Country "Pakistan" ; + + 1465 +] . + +[ test:City "Indianapolis" ; + test:Country "United States" ; + + 2841 +] . + +[ test:City "Caloocan" ; + test:Country "Philippines" ; + + 1073 +] . + +[ test:City "Changzhi" ; + test:Country "China" ; + + 1136 +] . + +[ test:City "Tirunelveli" ; + test:Country "India" ; + + 1921 +] . + +[ test:City "El Oued" ; + test:Country "Algeria" ; + + 2476 +] . + +[ test:City "Orizaba" ; + test:Country "Mexico" ; + + 48 +] . + +[ test:City "Ludwigshafen am Rhein" ; + test:Country "Germany" ; + + 3172 +] . + +[ test:City "Macau" ; + test:Country "Macau" ; + + 120 +] . + +[ test:City "Sialkote" ; + test:Country "Pakistan" ; + + 708 +] . + +[ test:City "Yanji" ; + test:Country "China" ; + + 2084 +] . + +[ test:City "Córdoba" ; + test:Country "Mexico" ; + + 1263 +] . + +[ test:City "Bellary" ; + test:Country "India" ; + + 2639 +] . + +[ test:City "Bloemfontein" ; + test:Country "South Africa" ; + + 2711 +] . + +[ test:City "Dunhuang" ; + test:Country "China" ; + + 3299 +] . + +[ test:City "Mirzapur-cum-Vindhyachal" ; + test:Country "India" ; + + 283 +] . + +[ test:City "Melitopol" ; + test:Country "Ukraine" ; + + 247 +] . + +[ test:City "Kawachinagano" ; + test:Country "Japan" ; + + 1623 +] . + +[ test:City "Port Sudan" ; + test:Country "Sudan" ; + + 1498 +] . + +[ test:City "Itapecerica da Serra" ; + test:Country "Brazil" ; + + 2874 +] . + +[ test:City "Sarajevo" ; + test:Country "Bosnia and Herzegovina" ; + + 614 +] . + +[ test:City "Cartago" ; + test:Country "Costa Rica" ; + + 1106 +] . + +[ test:City "Toowoomba" ; + test:Country "Australia" ; + + 1954 +] . + +[ test:City "Etawah" ; + test:Country "India" ; + + 2509 +] . + +[ test:City "Dammam" ; + test:Country "Saudi Arabia" ; + + 3205 +] . + +[ test:City "Malatya" ; + test:Country "Turkey" ; + + 153 +] . + +[ test:City "Słupsk" ; + test:Country "Poland" ; + + 741 +] . + +[ test:City "Yong'an" ; + test:Country "China" ; + + 2117 +] . + +[ test:City "Paraná" ; + test:Country "Argentina" ; + + 1404 +] . + +[ test:City "Boulogne-Billancourt" ; + test:Country "France" ; + + 2744 +] . + +[ test:City "Montreuil" ; + test:Country "France" ; + + 316 +] . + +[ test:City "Puente Alto" ; + test:Country "Chile" ; + + 1531 +] . + +[ test:City "Guadalupe" ; + test:Country "Mexico" ; + + 2415 +] . + +[ test:City "Hakodate" ; + test:Country "Japan" ; + + 2907 +] . + +[ test:City "San Salvador de Jujuy" ; + test:Country "Argentina" ; + + 551 +] . + +[ test:City "Tulua" ; + test:Country "Colombia" ; + + 1987 +] . + +[ test:City "Baku" ; + test:Country "Azerbaijan" ; + + 2542 +] . + +[ test:City "Dera Ghazi Khan" ; + test:Country "Pakistan" ; + + 3238 +] . + +[ test:City "Maracay" ; + test:Country "Venezuela" ; + + 186 +] . + +[ test:City "Kakamigahara" ; + test:Country "Japan" ; + + 1562 +] . + +[ test:City "Nanyang" ; + test:Country "China" ; + + 882 +] . + +[ test:City "Petare" ; + test:Country "Venezuela" ; + + 1437 +] . + +[ test:City "Budapest" ; + test:Country "Hungary" ; + + 2777 +] . + +[ test:City "Muroran" ; + test:Country "Japan" ; + + 349 +] . + +[ test:City "Arcot" ; + test:Country "India" ; + + 3473 +] . + +[ test:City "Wuzhong" ; + test:Country "China" ; + + 1045 +] . + +[ test:City "Wellington" ; + test:Country "New Zealand" ; + + 1009 +] . + +[ test:City "Terni" ; + test:Country "Italy" ; + + 1893 +] . + +[ test:City "Godhra" ; + test:Country "India" ; + + 2385 +] . + +[ test:City "Guri" ; + test:Country "South Korea" ; + + 2448 +] . + +[ test:City "Santiago" ; + test:Country "Chile" ; + + 584 +] . + +[ test:City "Zapopan" ; + test:Country "Mexico" ; + + 2020 +] . + +[ test:City "Bidar" ; + test:Country "India" ; + + 2683 +] . + +[ test:City "Maturín" ; + test:Country "Venezuela" ; + + 219 +] . + +[ test:City "Karachi" ; + test:Country "Pakistan" ; + + 1595 +] . + +[ test:City "New Delhi" ; + test:Country "India" ; + + 915 +] . + +[ test:City "Pleven" ; + test:Country "Bulgaria" ; + + 1470 +] . + +[ test:City "Innsbruck" ; + test:Country "Austria" ; + + 2846 +] . + +[ test:City "Ibaraki" ; + test:Country "Japan" ; + + 2810 +] . + +[ test:City "Atushi" ; + test:Country "China" ; + + 3506 +] . + +[ test:City "Cambridge" ; + test:Country "Canada" ; + + 1078 +] . + +[ test:City "Tlalnepantla" ; + test:Country "Mexico" ; + + 1926 +] . + +[ test:City "Legazpi City" ; + test:Country "Philippines" ; + + 3081 +] . + +[ test:City "Machida" ; + test:Country "Japan" ; + + 125 +] . + +[ test:City "Vancouver" ; + test:Country "Canada" ; + + 1313 +] . + +[ test:City "Fortaleza" ; + test:Country "Brazil" ; + + 2161 +] . + +[ test:City "Bocaue" ; + test:Country "Philippines" ; + + 2716 +] . + +[ test:City "Mississauga" ; + test:Country "Canada" ; + + 288 +] . + +[ test:City "Mérida" ; + test:Country "Mexico" ; + + 252 +] . + +[ test:City "Mwanza" ; + test:Country "Tanzania" ; + + 360 +] . + +[ test:City "Kayseri" ; + test:Country "Turkey" ; + + 1628 +] . + +[ test:City "Nizhny Tagil" ; + test:Country "Russia" ; + + 948 +] . + +[ test:City "Porto Velho" ; + test:Country "Brazil" ; + + 1503 +] . + +[ test:City "Juazeiro do Norte" ; + test:Country "Brazil" ; + + 2324 +] . + +[ test:City "Ivano-Frankivsk" ; + test:Country "Ukraine" ; + + 2879 +] . + +[ test:City "Helsingborg" ; + test:Country "Sweden" ; + + 2951 +] . + +[ test:City "San Fernando City, La Union" ; + test:Country "Philippines" ; + + 523 +] . + +[ test:City "Saint Louis" ; + test:Country "Senegal" ; + + 487 +] . + +[ test:City "Tarlac City" ; + test:Country "Philippines" ; + + 1863 +] . + +[ test:City "Lima" ; + test:Country "Peru" ; + + 3114 +] . + +[ test:City "Malmö" ; + test:Country "Sweden" ; + + 158 +] . + +[ test:City "Viña del Mar" ; + test:Country "Chile" ; + + 1346 +] . + +[ test:City "Fuyang" ; + test:Country "China" ; + + 2194 +] . + +[ test:City "Braga" ; + test:Country "Portugal" ; + + 2749 +] . + +[ test:City "Anqing" ; + test:Country "China" ; + + 3445 +] . + +[ test:City "Rourkela" ; + test:Country "India" ; + + 393 +] . + +[ test:City "Nuevo Laredo" ; + test:Country "Mexico" ; + + 981 +] . + +[ test:City "Gejiu" ; + test:Country "China" ; + + 2357 +] . + +[ test:City "Pune" ; + test:Country "India" ; + + 1536 +] . + +[ test:City "Halle" ; + test:Country "Germany" ; + + 2912 +] . + +[ test:City "Hobart" ; + test:Country "Australia" ; + + 2984 +] . + +[ test:City "Oakland" ; + test:Country "United States" ; + + 1 +] . + +[ test:City "Sancti Spíritus" ; + test:Country "Cuba" ; + + 556 +] . + +[ test:City "Londrina" ; + test:Country "Brazil" ; + + 3147 +] . + +[ test:City "Margilan" ; + test:Country "Uzbekistan" ; + + 191 +] . + +[ test:City "Stockton, California" ; + test:Country "United States" ; + + 791 +] . + +[ test:City "Kallithea" ; + test:Country "Greece" ; + + 1567 +] . + +[ test:City "Kermanshah" ; + test:Country "Iran" ; + + 1639 +] . + +[ test:City "Urgench" ; + test:Country "Uzbekistan" ; + + 2227 +] . + +[ test:City "Buga" ; + test:Country "Colombia" ; + + 2782 +] . + +[ test:City "Arica" ; + test:Country "Chile" ; + + 3478 +] . + +[ test:City "Rio Claro" ; + test:Country "Brazil" ; + + 426 +] . + +[ test:City "West Jordan, Utah" ; + test:Country "United States" ; + + 1014 +] . + +[ test:City "Xuchang" ; + test:Country "China" ; + + 1802 +] . + +[ test:City "Cayenne" ; + test:Country "French Guiana" ; + + 1122 +] . + +[ test:City "Goma" ; + test:Country "Democratic Republic of the Congo" ; + + 2390 +] . + +[ test:City "Huaraz" ; + test:Country "Peru" ; + + 3017 +] . + +[ test:City "Ongole" ; + test:Country "India" ; + + 34 +] . + +[ test:City "Santipur" ; + test:Country "India" ; + + 589 +] . + +[ test:City "Cuddalore" ; + test:Country "India" ; + + 1285 +] . + +[ test:City "Concepción" ; + test:Country "Chile" ; + + 1249 +] . + +[ test:City "Beed" ; + test:Country "India" ; + + 2625 +] . + +[ test:City "Bikaner" ; + test:Country "India" ; + + 2688 +] . + +[ test:City "Maykop" ; + test:Country "Russia" ; + + 224 +] . + +[ test:City "Surgut" ; + test:Country "Russia" ; + + 824 +] . + +[ test:City "Karamay" ; + test:Country "China" ; + + 1600 +] . + +[ test:City "Kimhae" ; + test:Country "South Korea" ; + + 1672 +] . + +[ test:City "Jaranwala" ; + test:Country "Pakistan" ; + + 2260 +] . + +[ test:City "Ichihara" ; + test:Country "Japan" ; + + 2815 +] . + +[ test:City "Hancheng" ; + test:Country "China" ; + + 2923 +] . + +[ test:City "Ambato" ; + test:Country "Ecuador" ; + + 3415 +] . + +[ test:City "Russeifa" ; + test:Country "Jordan" ; + + 459 +] . + +[ test:City "Talisay City, Cebu" ; + test:Country "Philippines" ; + + 1835 +] . + +[ test:City "Cheonan" ; + test:Country "South Korea" ; + + 1155 +] . + +[ test:City "Leiyang" ; + test:Country "China" ; + + 3086 +] . + +[ test:City "Lahti" ; + test:Country "Finland" ; + + 3050 +] . + +[ test:City "Ōta" ; + test:Country "Japan" ; + + 67 +] . + +[ test:City "Varna" ; + test:Country "Bulgaria" ; + + 1318 +] . + +[ test:City "Francisco Morato" ; + test:Country "Brazil" ; + + 2166 +] . + +[ test:City "Mytishchi" ; + test:Country "Russia" ; + + 365 +] . + +[ test:City "Nairobi" ; + test:Country "Kenya" ; + + 857 +] . + +[ test:City "Kolhapur" ; + test:Country "India" ; + + 1705 +] . + +[ test:City "Jimma" ; + test:Country "Ethiopia" ; + + 2293 +] . + +[ test:City "Göttingen" ; + test:Country "Germany" ; + + 2401 +] . + +[ test:City "Heraklion" ; + test:Country "Greece" ; + + 2956 +] . + +[ test:City "San Jose City, Nueva Ecija" ; + test:Country "Philippines" ; + + 528 +] . + +[ test:City "Sakura, Chiba" ; + test:Country "Japan" ; + + 492 +] . + +[ test:City "Taubaté" ; + test:Country "Burkina Faso" ; + + 1868 +] . + +[ test:City "Chittagong" ; + test:Country "Bangladesh" ; + + 1188 +] . + +[ test:City "Banja Luka" ; + test:Country "Bosnia and Herzegovina" ; + + 2564 +] . + +[ test:City "Lincoln" ; + test:Country "United States" ; + + 3119 +] . + +[ test:City "Dadu" ; + test:Country "Pakistan" ; + + 3191 +] . + +[ test:City "Sioux Falls, South Dakota" ; + test:Country "United States" ; + + 727 +] . + +[ test:City "Yinchuan" ; + test:Country "China" ; + + 2103 +] . + +[ test:City "Ahome" ; + test:Country "Mexico" ; + + 3354 +] . + +[ test:City "Recife" ; + test:Country "Brazil" ; + + 398 +] . + +[ test:City "Krasnoyarsk" ; + test:Country "Russia" ; + + 1738 +] . + +[ test:City "Guelph" ; + test:Country "Canada" ; + + 2434 +] . + +[ test:City "Homyel" ; + test:Country "Belarus" ; + + 2989 +] . + +[ test:City "Obninsk" ; + test:Country "Russia" ; + + 6 +] . + +[ test:City "Seattle" ; + test:Country "United States" ; + + 633 +] . + +[ test:City "Ciudad Victoria" ; + test:Country "Mexico" ; + + 1221 +] . + +[ test:City "Basel" ; + test:Country "Switzerland" ; + + 2597 +] . + +[ test:City "Longxuyen" ; + test:Country "Vietnam" ; + + 3152 +] . + +[ test:City "Davangere" ; + test:Country "India" ; + + 3224 +] . + +[ test:City "Suceava" ; + test:Country "Romania" ; + + 796 +] . + +[ test:City "Sosnowiec" ; + test:Country "Poland" ; + + 760 +] . + +[ test:City "Khanewal" ; + test:Country "Pakistan" ; + + 1644 +] . + +[ test:City "Fatehpur" ; + test:Country "India" ; + + 2136 +] . + +[ test:City "Alexandria" ; + test:Country "United States" ; + + 3387 +] . + +[ test:City "Riobamba" ; + test:Country "Ecuador" ; + + 431 +] . + +[ test:City "Wolverhampton" ; + test:Country "United Kingdom" ; + + 1031 +] . + +[ test:City "Tacheng" ; + test:Country "China" ; + + 1807 +] . + +[ test:City "Kuytun" ; + test:Country "China" ; + + 1771 +] . + +[ test:City "Eilat" ; + test:Country "Israel" ; + + 2467 +] . + +[ test:City "Huế" ; + test:Country "Vietnam" ; + + 3022 +] . + +[ test:City "Shangrao" ; + test:Country "China" ; + + 666 +] . + +[ test:City "Contagem" ; + test:Country "Brazil" ; + + 1254 +] . + +[ test:City "Beipiao" ; + test:Country "China" ; + + 2630 +] . + +[ test:City "Dili" ; + test:Country "Timor-Leste" ; + + 3257 +] . + +[ test:City "Milton Keynes" ; + test:Country "United Kingdom" ; + + 274 +] . + +[ test:City "Suva, Fiji" ; + test:Country "Fiji" ; + + 829 +] . + +[ test:City "Kirkuk" ; + test:Country "Iraq" ; + + 1677 +] . + +[ test:City "Poole" ; + test:Country "United Kingdom" ; + + 1489 +] . + +[ test:City "Ismaïlia" ; + test:Country "Egypt" ; + + 2865 +] . + +[ test:City "Hanover" ; + test:Country "Germany" ; + + 2928 +] . + +[ test:City "Amman" ; + test:Country "Jordan" ; + + 3420 +] . + +[ test:City "Rybnik" ; + test:Country "Poland" ; + + 464 +] . + +[ test:City "Cajamarca" ; + test:Country "Peru" ; + + 1064 +] . + +[ test:City "Tama" ; + test:Country "Japan" ; + + 1840 +] . + +[ test:City "Tiaret" ; + test:Country "Algeria" ; + + 1912 +] . + +[ test:City "Erzincan" ; + test:Country "Turkey" ; + + 2500 +] . + +[ test:City "Lalitpur" ; + test:Country "India" ; + + 3055 +] . + +[ test:City "Shiyan" ; + test:Country "China" ; + + 699 +] . + +[ test:City "Panevėžys" ; + test:Country "Lithuania" ; + + 1395 +] . + +[ test:City "Yamato, Kanagawa" ; + test:Country "Japan" ; + + 2075 +] . + +[ test:City "Zhaotong" ; + test:Country "China" ; + + 2039 +] . + +[ test:City "Dublin" ; + test:Country "Ireland" ; + + 3290 +] . + +[ test:City "Moncton" ; + test:Country "Canada" ; + + 307 +] . + +[ test:City "Nakhon Ratchasima" ; + test:Country "Thailand" ; + + 862 +] . + +[ test:City "Komaki" ; + test:Country "Japan" ; + + 1710 +] . + +[ test:City "Probolinggo" ; + test:Country "Indonesia" ; + + 1522 +] . + +[ test:City "Gravataí" ; + test:Country "Brazil" ; + + 2406 +] . + +[ test:City "Haeju" ; + test:Country "North Korea" ; + + 2898 +] . + +[ test:City "Carcar" ; + test:Country "Philippines" ; + + 1097 +] . + +[ test:City "Tondabayashi" ; + test:Country "Japan" ; + + 1945 +] . + +[ test:City "Bahir Dar" ; + test:Country "Ethiopia" ; + + 2533 +] . + +[ test:City "Dakar" ; + test:Country "Senegal" ; + + 3196 +] . + +[ test:City "Mannheim" ; + test:Country "Germany" ; + + 177 +] . + +[ test:City "Sittwe" ; + test:Country "Myanmar" ; + + 732 +] . + +[ test:City "Kafr Dawar" ; + test:Country "Egypt" ; + + 1553 +] . + +[ test:City "Yiwu" ; + test:Country "China" ; + + 2108 +] . + +[ test:City "Perm" ; + test:Country "Russia" ; + + 1428 +] . + +[ test:City "Aizawl" ; + test:Country "India" ; + + 3359 +] . + +[ test:City "Abeokuta" ; + test:Country "Nigeria" ; + + 3323 +] . + +[ test:City "Mumbai" ; + test:Country "India" ; + + 340 +] . + +[ test:City "Anda" ; + test:Country "China" ; + + 3431 +] . + +[ test:City "Novara" ; + test:Country "Italy" ; + + 967 +] . + +[ test:City "Kropyvnytskyi" ; + test:Country "Ukraine" ; + + 1743 +] . + +[ test:City "Garanhuns" ; + test:Country "Brazil" ; + + 2343 +] . + +[ test:City "Semipalatinsk" ; + test:Country "Kazakhstan" ; + + 638 +] . + +[ test:City "Trujillo" ; + test:Country "Peru" ; + + 1978 +] . + +[ test:City "Bhimavaram" ; + test:Country "India" ; + + 2674 +] . + +[ test:City "Dehiwala-Mount Lavinia" ; + test:Country "Sri Lanka" ; + + 3229 +] . + +[ test:City "Mataró" ; + test:Country "Spain" ; + + 210 +] . + +[ test:City "Southend on Sea" ; + test:Country "United Kingdom" ; + + 765 +] . + +[ test:City "Kanggye" ; + test:Country "Myanmar" ; + + 1586 +] . + +[ test:City "Nanchong" ; + test:Country "China" ; + + 873 +] . + +[ test:City "Fenghua" ; + test:Country "China" ; + + 2141 +] . + +[ test:City "Pinhais" ; + test:Country "Brazil" ; + + 1461 +] . + +[ test:City "Inazawa" ; + test:Country "Japan" ; + + 2837 +] . + +[ test:City "Bushehr" ; + test:Country "Iran" ; + + 2801 +] . + +[ test:City "Alicante" ; + test:Country "Spain" ; + + 3392 +] . + +[ test:City "Araçatuba" ; + test:Country "Brazil" ; + + 3464 +] . + +[ test:City "Wu'an" ; + test:Country "China" ; + + 1036 +] . + +[ test:City "Warrington" ; + test:Country "United Kingdom" ; + + 1000 +] . + +[ test:City "Xalapa" ; + test:Country "Mexico" ; + + 1776 +] . + +[ test:City "Girardot" ; + test:Country "Colombia" ; + + 2376 +] . + +[ test:City "Maasin" ; + test:Country "Philippines" ; + + 116 +] . + +[ test:City "Shaowu" ; + test:Country "China" ; + + 671 +] . + +[ test:City "Zagreb" ; + test:Country "Croatia" ; + + 2011 +] . + +[ test:City "Blackpool" ; + test:Country "United Kingdom" ; + + 2707 +] . + +[ test:City "Dipolog City" ; + test:Country "Philippines" ; + + 3262 +] . + +[ test:City "Mejicanos" ; + test:Country "El Salvador" ; + + 243 +] . + +[ test:City "Kathmandu" ; + test:Country "Nepal" ; + + 1619 +] . + +[ test:City "Nefteyugansk" ; + test:Country "Russia" ; + + 906 +] . + +[ test:City "Port Harcourt" ; + test:Country "Nigeria" ; + + 1494 +] . + +[ test:City "Itagüí" ; + test:Country "Colombia" ; + + 2870 +] . + +[ test:City "Asunción" ; + test:Country "Paraguay" ; + + 3497 +] . + +[ test:City "San Antonio, Texas" ; + test:Country "United States" ; + + 514 +] . + +[ test:City "Calapan City" ; + test:Country "Philippines" ; + + 1069 +] . + +[ test:City "Timişoara" ; + test:Country "Romania" ; + + 1917 +] . + +[ test:City "Libreville" ; + test:Country "Gabon" ; + + 3105 +] . + +[ test:City "Malang" ; + test:Country "Indonesia" ; + + 149 +] . + +[ test:City "Shuangcheng" ; + test:Country "China" ; + + 704 +] . + +[ test:City "Valle de Chalco" ; + test:Country "Mexico" ; + + 1304 +] . + +[ test:City "Yangjiang" ; + test:Country "China" ; + + 2080 +] . + +[ test:City "Zhoukou" ; + test:Country "China" ; + + 2044 +] . + +[ test:City "Focşani" ; + test:Country "Romania" ; + + 2152 +] . + +[ test:City "Botucatu" ; + test:Country "Brazil" ; + + 2740 +] . + +[ test:City "Dumaguete City" ; + test:Country "Philippines" ; + + 3295 +] . + +[ test:City "Ningde" ; + test:Country "China" ; + + 939 +] . + +[ test:City "Jodhpur" ; + test:Country "India" ; + + 2315 +] . + +[ test:City "Ji'an" ; + test:Country "China" ; + + 2279 +] . + +[ test:City "San Pedro de Macoris" ; + test:Country "Dominican Republic" ; + + 547 +] . + +[ test:City "Carrefour" ; + test:Country "Haiti" ; + + 1102 +] . + +[ test:City "Tongliao" ; + test:Country "China" ; + + 1950 +] . + +[ test:City "Ljubljana" ; + test:Country "Slovenia" ; + + 3138 +] . + +[ test:City "Mar del Plata" ; + test:Country "Argentina" ; + + 182 +] . + +[ test:City "Kairouan" ; + test:Country "Tunisia" ; + + 1558 +] . + +[ test:City "Vigo" ; + test:Country "Spain" ; + + 1337 +] . + +[ test:City "Fukuoka" ; + test:Country "Japan" ; + + 2185 +] . + +[ test:City "Bryansk" ; + test:Country "Russia" ; + + 2773 +] . + +[ test:City "Abilene" ; + test:Country "United States" ; + + 3328 +] . + +[ test:City "Angeles City" ; + test:Country "Philippines" ; + + 3436 +] . + +[ test:City "Ribeirão Pires" ; + test:Country "Brazil" ; + + 417 +] . + +[ test:City "Xinji" ; + test:Country "China" ; + + 1793 +] . + +[ test:City "Novokuybyshevsk" ; + test:Country "Russia" ; + + 972 +] . + +[ test:City "Gateshead" ; + test:Country "United Kingdom" ; + + 2348 +] . + +[ test:City "Santa Rosa, California" ; + test:Country "United States" ; + + 580 +] . + +[ test:City "Cincinnati" ; + test:Country "United States" ; + + 1207 +] . + +[ test:City "Tucson, Arizona" ; + test:Country "United States" ; + + 1983 +] . + +[ test:City "Barinas" ; + test:Country "Venezuela" ; + + 2583 +] . + +[ test:City "Nanning" ; + test:Country "China" ; + + 878 +] . + +[ test:City "Pabna" ; + test:Country "Bangladesh" ; + + 1370 +] . + +[ test:City "Ulyanovsk" ; + test:Country "Russia" ; + + 2218 +] . + +[ test:City "Butwal" ; + test:Country "Nepal" ; + + 2806 +] . + +[ test:City "Hamadan" ; + test:Country "Iran" ; + + 2914 +] . + +[ test:City "Araraquara" ; + test:Country "Brazil" ; + + 3469 +] . + +[ test:City "Rotterdam" ; + test:Country "Netherlands" ; + + 450 +] . + +[ test:City "Takamatsu" ; + test:Country "Japan" ; + + 1826 +] . + +[ test:City "Weifang" ; + test:Country "China" ; + + 1005 +] . + +[ test:City "Glendale, Arizona" ; + test:Country "United States" ; + + 2381 +] . + +[ test:City "Le Havre" ; + test:Country "France" ; + + 3077 +] . + +[ test:City "La Plata" ; + test:Country "Argentina" ; + + 3041 +] . + +[ test:City "Olinda" ; + test:Country "Brazil" ; + + 25 +] . + +[ test:City "Colón" ; + test:Country "Panama" ; + + 1240 +] . + +[ test:City "Zanjan" ; + test:Country "Iran" ; + + 2016 +] . + +[ test:City "Bayannur" ; + test:Country "China" ; + + 2616 +] . + +[ test:City "Muzaffarnagar" ; + test:Country "India" ; + + 356 +] . + +[ test:City "Neuquén" ; + test:Country "Argentina" ; + + 911 +] . + +[ test:City "Jalandhar" ; + test:Country "India" ; + + 2251 +] . + +[ test:City "Hegang" ; + test:Country "China" ; + + 2947 +] . + +[ test:City "Athens" ; + test:Country "United States" ; + + 3502 +] . + +[ test:City "Saint Petersburg" ; + test:Country "Russia" ; + + 483 +] . + +[ test:City "Tarapoto" ; + test:Country "Peru" ; + + 1859 +] . + +[ test:City "Chatham-Kent" ; + test:Country "Canada" ; + + 1146 +] . + +[ test:City "Likasi" ; + test:Country "Democratic Republic of the Congo" ; + + 3110 +] . + +[ test:City "Osh" ; + test:Country "Kyrgyzstan" ; + + 58 +] . + +[ test:City "Valsad" ; + test:Country "India" ; + + 1309 +] . + +[ test:City "Cotia" ; + test:Country "Brazil" ; + + 1273 +] . + +[ test:City "Fort Collins" ; + test:Country "United States" ; + + 2157 +] . + +[ test:City "Benxi" ; + test:Country "China" ; + + 2649 +] . + +[ test:City "Adoni" ; + test:Country "India" ; + + 3345 +] . + +[ test:City "Rangpur" ; + test:Country "Bangladesh" ; + + 389 +] . + +[ test:City "Nizamabad" ; + test:Country "India" ; + + 944 +] . + +[ test:City "Kothagudem" ; + test:Country "India" ; + + 1729 +] . + +[ test:City "Joliet" ; + test:Country "United States" ; + + 2320 +] . + +[ test:City "Jiangyou" ; + test:Country "China" ; + + 2284 +] . + +[ test:City "Hisar" ; + test:Country "India" ; + + 2980 +] . + +[ test:City "Chincha Alta" ; + test:Country "Peru" ; + + 1179 +] . + +[ test:City "Bacolod" ; + test:Country "Philippines" ; + + 2519 +] . + +[ test:City "Qingyang" ; + test:Country "China" ; + + 91 +] . + +[ test:City "Sterling Heights, Michigan" ; + test:Country "United States" ; + + 787 +] . + +[ test:City "Villahermosa" ; + test:Country "Mexico" ; + + 1342 +] . + +[ test:City "Kempton Park" ; + test:Country "South Africa" ; + + 1635 +] . + +[ test:City "Funabashi" ; + test:Country "Japan" ; + + 2190 +] . + +[ test:City "Alanya" ; + test:Country "Turkey" ; + + 3378 +] . + +[ test:City "Riga" ; + test:Country "Latvia" ; + + 422 +] . + +[ test:City "Xinyu" ; + test:Country "China" ; + + 1798 +] . + +[ test:City "Kursk" ; + test:Country "Russia" ; + + 1762 +] . + +[ test:City "Guarujá" ; + test:Country "Brazil" ; + + 2425 +] . + +[ test:City "Huangshan" ; + test:Country "China" ; + + 3013 +] . + +[ test:City "Shahe" ; + test:Country "China" ; + + 657 +] . + +[ test:City "Ciudad del Este" ; + test:Country "Paraguay" ; + + 1212 +] . + +[ test:City "Barrackpur" ; + test:Country "India" ; + + 2588 +] . + +[ test:City "Balurghat" ; + test:Country "India" ; + + 2552 +] . + +[ test:City "Surabaya" ; + test:Country "Indonesia" ; + + 820 +] . + +[ test:City "Pagadian City" ; + test:Country "Philippines" ; + + 1375 +] . + +[ test:City "Kiev" ; + test:Country "Ukraine" ; + + 1668 +] . + +[ test:City "Phnom Penh" ; + test:Country "Cambodia" ; + + 1447 +] . + +[ test:City "Urasoe" ; + test:Country "Japan" ; + + 2223 +] . + +[ test:City "Iksan" ; + test:Country "South Korea" ; + + 2823 +] . + +[ test:City "Amarah" ; + test:Country "Iraq" ; + + 3411 +] . + +[ test:City "Ebetsu" ; + test:Country "Japan" ; + + 2458 +] . + +[ test:City "Lages" ; + test:Country "Brazil" ; + + 3046 +] . + +[ test:City "Omaha" ; + test:Country "United States" ; + + 30 +] . + +[ test:City "Shymkent" ; + test:Country "Kazakhstan" ; + + 690 +] . + +[ test:City "Zwickau" ; + test:Country "Germany" ; + + 2066 +] . + +[ test:City "Columbus, Ohio" ; + test:Country "United States" ; + + 1245 +] . + +[ test:City "Beaumont" ; + test:Country "United States" ; + + 2621 +] . + +[ test:City "Dordrecht" ; + test:Country "Netherlands" ; + + 3281 +] . + +[ test:City "Miami, Florida" ; + test:Country "United States" ; + + 265 +] . + +[ test:City "Nagoya" ; + test:Country "Japan" ; + + 853 +] . + +[ test:City "Kokand" ; + test:Country "Uzbekistan" ; + + 1701 +] . + +[ test:City "Pointe-Noire" ; + test:Country "Republic of the Congo" ; + + 1480 +] . + +[ test:City "Jambi" ; + test:Country "Indonesia" ; + + 2256 +] . + +[ test:City "Iruma" ; + test:Country "Japan" ; + + 2856 +] . + +[ test:City "Chengde" ; + test:Country "China" ; + + 1151 +] . + +[ test:City "Ensenada" ; + test:Country "Mexico" ; + + 2491 +] . + +[ test:City "Osmaniye" ; + test:Country "Turkey" ; + + 63 +] . + +[ test:City "Lyubertsy" ; + test:Country "Russia" ; + + 3187 +] . + +[ test:City "Magé" ; + test:Country "Brazil" ; + + 135 +] . + +[ test:City "Sincelejo" ; + test:Country "Colombia" ; + + 723 +] . + +[ test:City "Yichun, Heilongjiang" ; + test:Country "China" ; + + 2099 +] . + +[ test:City "Crato" ; + test:Country "Brazil" ; + + 1278 +] . + +[ test:City "Palma de Mallorca" ; + test:Country "Spain" ; + + 1386 +] . + +[ test:City "Bergamo" ; + test:Country "Italy" ; + + 2654 +] . + +[ test:City "Agra" ; + test:Country "India" ; + + 3350 +] . + +[ test:City "Aachen" ; + test:Country "Germany" ; + + 3314 +] . + +[ test:City "Moers" ; + test:Country "Germany" ; + + 298 +] . + +[ test:City "Kraków" ; + test:Country "Poland" ; + + 1734 +] . + +[ test:City "Prague" ; + test:Country "Czech Republic" ; + + 1513 +] . + +[ test:City "Izumi" ; + test:Country "Japan" ; + + 2889 +] . + +[ test:City "Sayama" ; + test:Country "Japan" ; + + 629 +] . + +[ test:City "Chishtian" ; + test:Country "Pakistan" ; + + 1184 +] . + +[ test:City "Toyonaka" ; + test:Country "Japan" ; + + 1969 +] . + +[ test:City "Bagé" ; + test:Country "Brazil" ; + + 2524 +] . + +[ test:City "Qinzhou" ; + test:Country "China" ; + + 96 +] . + +[ test:City "Dasmariñas" ; + test:Country "Philippines" ; + + 3220 +] . + +[ test:City "Mandaluyong City" ; + test:Country "Philippines" ; + + 168 +] . + +[ test:City "Songyuan" ; + test:Country "China" ; + + 756 +] . + +[ test:City "Pyatigorsk" ; + test:Country "Russia" ; + + 1544 +] . + +[ test:City "Faisalabad" ; + test:Country "Pakistan" ; + + 2132 +] . + +[ test:City "Pécs" ; + test:Country "Hungary" ; + + 1419 +] . + +[ test:City "Breda" ; + test:Country "Netherlands" ; + + 2759 +] . + +[ test:City "Mostar" ; + test:Country "Bosnia and Herzegovina" ; + + 331 +] . + +[ test:City "Witten" ; + test:Country "Germany" ; + + 1027 +] . + +[ test:City "Guaynabo" ; + test:Country "Puerto Rico" ; + + 2430 +] . + +[ test:City "Shakhty" ; + test:Country "Russia" ; + + 662 +] . + +[ test:City "Tuzla" ; + test:Country "Bosnia and Herzegovina" ; + + 2002 +] . + +[ test:City "Bandırma" ; + test:Country "Turkey" ; + + 2557 +] . + +[ test:City "Bhagalpur" ; + test:Country "India" ; + + 2665 +] . + +[ test:City "Diaobingshan" ; + test:Country "China" ; + + 3253 +] . + +[ test:City "Marvdasht" ; + test:Country "Iran" ; + + 201 +] . + +[ test:City "Kampong Cham" ; + test:Country "Cambodia" ; + + 1577 +] . + +[ test:City "Navoiy" ; + test:Country "Uzbekistan" ; + + 897 +] . + +[ test:City "Pietermaritzburg" ; + test:Country "South Africa" ; + + 1452 +] . + +[ test:City "Ilhéus" ; + test:Country "Brazil" ; + + 2828 +] . + +[ test:City "Burewala" ; + test:Country "Pakistan" ; + + 2792 +] . + +[ test:City "Caguas" ; + test:Country "Puerto Rico" ; + + 1060 +] . + +[ test:City "Thunder Bay" ; + test:Country "Canada" ; + + 1908 +] . + +[ test:City "Edéa" ; + test:Country "Cameroon" ; + + 2463 +] . + +[ test:City "Qufu" ; + test:Country "China" ; + + 107 +] . + +[ test:City "São Gonçalo" ; + test:Country "Brazil" ; + + 599 +] . + +[ test:City "Zhangzhou" ; + test:Country "China" ; + + 2035 +] . + +[ test:City "Birmingham" ; + test:Country "United Kingdom" ; + + 2698 +] . + +[ test:City "Downey" ; + test:Country "United States" ; + + 3286 +] . + +[ test:City "Middlesbrough" ; + test:Country "United Kingdom" ; + + 270 +] . + +[ test:City "Mecca" ; + test:Country "Saudi Arabia" ; + + 234 +] . + +[ test:City "Kashipur" ; + test:Country "India" ; + + 1610 +] . + +[ test:City "Nicosia" ; + test:Country "Cyprus" ; + + 930 +] . + +[ test:City "Ponce" ; + test:Country "United States" ; + + 1485 +] . + +[ test:City "Jishou" ; + test:Country "China" ; + + 2306 +] . + +[ test:City "Ishinomaki" ; + test:Country "Japan" ; + + 2861 +] . + +[ test:City "Cape Town" ; + test:Country "South Africa" ; + + 1093 +] . + +[ test:City "Toluca" ; + test:Country "Mexico" ; + + 1941 +] . + +[ test:City "Erfurt" ; + test:Country "Germany" ; + + 2496 +] . + +[ test:City "Leskovac" ; + test:Country "Serbia" ; + + 3096 +] . + +[ test:City "Maicao" ; + test:Country "Colombia" ; + + 140 +] . + +[ test:City "Pamplona" ; + test:Country "Spain" ; + + 1391 +] . + +[ test:City "Bordj Bou Arréridj" ; + test:Country "Algeria" ; + + 2731 +] . + +[ test:City "Mogi das Cruzes" ; + test:Country "Brazil" ; + + 303 +] . + +[ test:City "Anand" ; + test:Country "India" ; + + 3427 +] . + +[ test:City "Rajapalayam" ; + test:Country "India" ; + + 375 +] . + +[ test:City "Nottingham" ; + test:Country "United Kingdom" ; + + 963 +] . + +[ test:City "Preston" ; + test:Country "United Kingdom" ; + + 1518 +] . + +[ test:City "Gangneung" ; + test:Country "South Korea" ; + + 2339 +] . + +[ test:City "Habra" ; + test:Country "India" ; + + 2894 +] . + +[ test:City "San Martin" ; + test:Country "El Salvador" ; + + 538 +] . + +[ test:City "Tripoli, Lebanon" ; + test:Country "Lebanon" ; + + 1974 +] . + +[ test:City "Lipetsk" ; + test:Country "Russia" ; + + 3129 +] . + +[ test:City "Mangora" ; + test:Country "Pakistan" ; + + 173 +] . + +[ test:City "Kadhimiya" ; + test:Country "Iraq" ; + + 1549 +] . + +[ test:City "Nampo" ; + test:Country "North Korea" ; + + 869 +] . + +[ test:City "Volgograd" ; + test:Country "Russia" ; + + 1361 +] . + +[ test:City "Peoria, Arizona" ; + test:Country "United States" ; + + 1424 +] . + +[ test:City "Ujung Pandang" ; + test:Country "Indonesia" ; + + 2209 +] . + +[ test:City "Brest" ; + test:Country "France" ; + + 2764 +] . + +[ test:City "Mudanjiang" ; + test:Country "China" ; + + 336 +] . + +[ test:City "Apopa" ; + test:Country "El Salvador" ; + + 3460 +] . + +[ test:City "Reno" ; + test:Country "United States" ; + + 408 +] . + +[ test:City "Wanzhou District" ; + test:Country "China" ; + + 996 +] . + +[ test:City "Gifu" ; + test:Country "Japan" ; + + 2372 +] . + +[ test:City "Houma" ; + test:Country "China" ; + + 2999 +] . + +[ test:City "Santa Cruz do Sul" ; + test:Country "Brazil" ; + + 571 +] . + +[ test:City "Bhatpara" ; + test:Country "India" ; + + 2670 +] . + +[ test:City "Luanda" ; + test:Country "Angola" ; + + 3162 +] . + +[ test:City "Masjed Soleyman" ; + test:Country "Iran" ; + + 206 +] . + +[ test:City "Kanchipuram" ; + test:Country "India" ; + + 1582 +] . + +[ test:City "Nazilli" ; + test:Country "Turkey" ; + + 902 +] . + +[ test:City "Jacareí" ; + test:Country "Brazil" ; + + 2242 +] . + +[ test:City "Burnaby" ; + test:Country "Canada" ; + + 2797 +] . + +[ test:City "Ashikaga" ; + test:Country "Japan" ; + + 3493 +] . + +[ test:City "Rohtak" ; + test:Country "India" ; + + 441 +] . + +[ test:City "Taichung" ; + test:Country "Taiwan" ; + + 1817 +] . + +[ test:City "Changzhou" ; + test:Country "China" ; + + 1137 +] . + +[ test:City "Huozhou" ; + test:Country "China" ; + + 3032 +] . + +[ test:City "Orlando" ; + test:Country "United States" ; + + 49 +] . + +[ test:City "Qujing" ; + test:Country "China" ; + + 112 +] . + +[ test:City "São José dos Pinhais" ; + test:Country "Brazil" ; + + 604 +] . + +[ test:City "Valencia" ; + test:Country "Venezuela" ; + + 1300 +] . + +[ test:City "Florence" ; + test:Country "Italy" ; + + 2148 +] . + +[ test:City "Bissau" ; + test:Country "Guinea-Bissau" ; + + 2703 +] . + +[ test:City "Medinipur" ; + test:Country "India" ; + + 239 +] . + +[ test:City "Syracuse, New York" ; + test:Country "United States" ; + + 839 +] . + +[ test:City "Kasugai" ; + test:Country "Japan" ; + + 1615 +] . + +[ test:City "Kitami" ; + test:Country "Japan" ; + + 1687 +] . + +[ test:City "Jhansi" ; + test:Country "India" ; + + 2275 +] . + +[ test:City "Hathras" ; + test:Country "India" ; + + 2938 +] . + +[ test:City "Saga" ; + test:Country "Japan" ; + + 474 +] . + +[ test:City "Tangail" ; + test:Country "Bangladesh" ; + + 1850 +] . + +[ test:City "Chifeng" ; + test:Country "China" ; + + 1170 +] . + +[ test:City "Lianyungang" ; + test:Country "China" ; + + 3101 +] . + +[ test:City "Laredo" ; + test:Country "United States" ; + + 3065 +] . + +[ test:City "Ozamiz" ; + test:Country "Philippines" ; + + 82 +] . + +[ test:City "Victoria de Las Tunas" ; + test:Country "Cuba" ; + + 1333 +] . + +[ test:City "Fujinomiya" ; + test:Country "Japan" ; + + 2181 +] . + +[ test:City "Botoșani" ; + test:Country "Romania" ; + + 2736 +] . + +[ test:City "Achinsk" ; + test:Country "Russia" ; + + 3336 +] . + +[ test:City "Ramadi" ; + test:Country "Iraq" ; + + 380 +] . + +[ test:City "Koshigaya" ; + test:Country "Japan" ; + + 1720 +] . + +[ test:City "Hilla" ; + test:Country "Iraq" ; + + 2971 +] . + +[ test:City "San Miguelito" ; + test:Country "Panama" ; + + 543 +] . + +[ test:City "Salzgitter" ; + test:Country "Germany" ; + + 507 +] . + +[ test:City "Saransk" ; + test:Country "Russia" ; + + 615 +] . + +[ test:City "Temirtau" ; + test:Country "Kazakhstan" ; + + 1883 +] . + +[ test:City "Chungju" ; + test:Country "South Korea" ; + + 1203 +] . + +[ test:City "Bardhaman" ; + test:Country "India" ; + + 2579 +] . + +[ test:City "Liuzhou" ; + test:Country "China" ; + + 3134 +] . + +[ test:City "St Petersburg, Florida" ; + test:Country "United States" ; + + 778 +] . + +[ test:City "Voronezh" ; + test:Country "Russia" ; + + 1366 +] . + +[ test:City "Ulan-Ude" ; + test:Country "Russia" ; + + 2214 +] . + +[ test:City "Aksaray" ; + test:Country "Turkey" ; + + 3369 +] . + +[ test:City "Rewa" ; + test:Country "India" ; + + 413 +] . + +[ test:City "Kumbakonam" ; + test:Country "India" ; + + 1753 +] . + +[ test:City "Guruvayur" ; + test:Country "India" ; + + 2449 +] . + +[ test:City "Huadian" ; + test:Country "China" ; + + 3004 +] . + +[ test:City "Oklahoma City" ; + test:Country "United States" ; + + 21 +] . + +[ test:City "Santa Maria, California" ; + test:Country "United States" ; + + 576 +] . + +[ test:City "Sete Lagoas" ; + test:Country "Brazil" ; + + 648 +] . + +[ test:City "Colima" ; + test:Country "Mexico" ; + + 1236 +] . + +[ test:City "Bauru" ; + test:Country "Brazil" ; + + 2612 +] . + +[ test:City "Lubumbashi" ; + test:Country "Democratic Republic of the Congo" ; + + 3167 +] . + +[ test:City "Derbent" ; + test:Country "Russia" ; + + 3239 +] . + +[ test:City "Sumgait" ; + test:Country "Azerbaijan" ; + + 811 +] . + +[ test:City "Khoramshahr" ; + test:Country "Iran" ; + + 1659 +] . + +[ test:City "Almetyevsk" ; + test:Country "Russia" ; + + 3402 +] . + +[ test:City "Rosario" ; + test:Country "Argentina" ; + + 446 +] . + +[ test:City "Chhapra" ; + test:Country "India" ; + + 1142 +] . + +[ test:City "Taiz" ; + test:Country "Yemen" ; + + 1822 +] . + +[ test:City "Xichang" ; + test:Country "China" ; + + 1786 +] . + +[ test:City "Eldoret" ; + test:Country "Kenya" ; + + 2482 +] . + +[ test:City "La Ceiba" ; + test:Country "Honduras" ; + + 3037 +] . + +[ test:City "Oruro" ; + test:Country "Bolivia" ; + + 54 +] . + +[ test:City "Shenzhen" ; + test:Country "China" ; + + 681 +] . + +[ test:City "Ziguinchor" ; + test:Country "Senegal" ; + + 2057 +] . + +[ test:City "Corrientes" ; + test:Country "Argentina" ; + + 1269 +] . + +[ test:City "Paita" ; + test:Country "Peru" ; + + 1377 +] . + +[ test:City "Benguela" ; + test:Country "Angola" ; + + 2645 +] . + +[ test:City "Dobrich" ; + test:Country "Bulgaria" ; + + 3272 +] . + +[ test:City "Misrata" ; + test:Country "Libya" ; + + 289 +] . + +[ test:City "Nabadwip" ; + test:Country "India" ; + + 844 +] . + +[ test:City "Knoxville" ; + test:Country "United States" ; + + 1692 +] . + +[ test:City "Hebron" ; + test:Country "Palestine" ; + + 2943 +] . + +[ test:City "Saharanpur" ; + test:Country "India" ; + + 479 +] . + +[ test:City "Cambridge" ; + test:Country "United Kingdom" ; + + 1079 +] . + +[ test:City "Tanza, Cavite" ; + test:Country "Philippines" ; + + 1855 +] . + +[ test:City "Tlalpan" ; + test:Country "Mexico" ; + + 1927 +] . + +[ test:City "Bab Ezzouar" ; + test:Country "Algeria" ; + + 2515 +] . + +[ test:City "Latakia" ; + test:Country "Syria" ; + + 3070 +] . + +[ test:City "Luton" ; + test:Country "United Kingdom" ; + + 3178 +] . + +[ test:City "Sieverodonetsk" ; + test:Country "Ukraine" ; + + 714 +] . + +[ test:City "Yavatmal" ; + test:Country "India" ; + + 2090 +] . + +[ test:City "Parla" ; + test:Country "Spain" ; + + 1410 +] . + +[ test:City "Aden" ; + test:Country "Yemen" ; + + 3341 +] . + +[ test:City "Durgapur" ; + test:Country "India" ; + + 3305 +] . + +[ test:City "Morena" ; + test:Country "India" ; + + 322 +] . + +[ test:City "Koszalin" ; + test:Country "Poland" ; + + 1725 +] . + +[ test:City "Guantánamo" ; + test:Country "Cuba" ; + + 2421 +] . + +[ test:City "Hirakata" ; + test:Country "Japan" ; + + 2976 +] . + +[ test:City "Sambhal" ; + test:Country "India" ; + + 512 +] . + +[ test:City "Sari" ; + test:Country "Iran" ; + + 620 +] . + +[ test:City "Castanhal" ; + test:Country "Brazil" ; + + 1112 +] . + +[ test:City "Teófilo Otoni" ; + test:Country "Brazil" ; + + 1888 +] . + +[ test:City "Tottori" ; + test:Country "Japan" ; + + 1960 +] . + +[ test:City "Baliuag" ; + test:Country "Philippines" ; + + 2548 +] . + +[ test:City "Danyang" ; + test:Country "China" ; + + 3211 +] . + +[ test:City "Stara Zagora" ; + test:Country "Bulgaria" ; + + 783 +] . + +[ test:City "Sofia" ; + test:Country "Bulgaria" ; + + 747 +] . + +[ test:City "Yueyang" ; + test:Country "China" ; + + 2123 +] . + +[ test:City "Petrozavodsk" ; + test:Country "Russia" ; + + 1443 +] . + +[ test:City "Iida" ; + test:Country "Japan" ; + + 2819 +] . + +[ test:City "Al Minya" ; + test:Country "Egypt" ; + + 3374 +] . + +[ test:City "Kurashiki" ; + test:Country "Japan" ; + + 1758 +] . + +[ test:City "Gyeongju" ; + test:Country "South Korea" ; + + 2454 +] . + +[ test:City "Qitaihe" ; + test:Country "China" ; + + 98 +] . + +[ test:City "Seversk" ; + test:Country "Russia" ; + + 653 +] . + +[ test:City "Tunja" ; + test:Country "Colombia" ; + + 1993 +] . + +[ test:City "Bila Tserkva" ; + test:Country "Ukraine" ; + + 2689 +] . + +[ test:City "Detroit" ; + test:Country "United States" ; + + 3244 +] . + +[ test:City "Mexico City" ; + test:Country "Mexico" ; + + 261 +] . + +[ test:City "Mazari Sharif" ; + test:Country "Afghanistan" ; + + 225 +] . + +[ test:City "Sungai Petani" ; + test:Country "Malaysia" ; + + 816 +] . + +[ test:City "Karbala" ; + test:Country "Iraq" ; + + 1601 +] . + +[ test:City "Narayanganj" ; + test:Country "Bangladesh" ; + + 888 +] . + +[ test:City "Kızıltepe" ; + test:Country "Turkey" ; + + 1664 +] . + +[ test:City "Poços de Caldas" ; + test:Country "Brazil" ; + + 1476 +] . + +[ test:City "Irapuato" ; + test:Country "Mexico" ; + + 2852 +] . + +[ test:City "Alvorada" ; + test:Country "Brazil" ; + + 3407 +] . + +[ test:City "Arkhangelsk" ; + test:Country "Russia" ; + + 3479 +] . + +[ test:City "Cabo Frio" ; + test:Country "Brazil" ; + + 1051 +] . + +[ test:City "West Valley City, Utah" ; + test:Country "United States" ; + + 1015 +] . + +[ test:City "Xingyi" ; + test:Country "China" ; + + 1791 +] . + +[ test:City "Thane" ; + test:Country "India" ; + + 1899 +] . + +[ test:City "Gómez Palacio" ; + test:Country "Mexico" ; + + 2391 +] . + +[ test:City "Maebashi" ; + test:Country "Japan" ; + + 131 +] . + +[ test:City "Shijiazhuang" ; + test:Country "China" ; + + 686 +] . + +[ test:City "Zrenjanin" ; + test:Country "Serbia" ; + + 2062 +] . + +[ test:City "Zelenodolsk" ; + test:Country "Russia" ; + + 2026 +] . + +[ test:City "Palangkaraya" ; + test:Country "Indonesia" ; + + 1382 +] . + +[ test:City "Bojnord" ; + test:Country "Iran" ; + + 2722 +] . + +[ test:City "Dongguan" ; + test:Country "China" ; + + 3277 +] . + +[ test:City "Mobile, Alabama" ; + test:Country "United States" ; + + 294 +] . + +[ test:City "Newcastle upon Tyne" ; + test:Country "United Kingdom" ; + + 921 +] . + +[ test:City "Potsdam" ; + test:Country "Germany" ; + + 1509 +] . + +[ test:City "Ixtapaluca" ; + test:Country "Mexico" ; + + 2885 +] . + +[ test:City "Aurora, Colorado" ; + test:Country "United States" ; + + 3512 +] . + +[ test:City "San Jose del Monte City" ; + test:Country "Philippines" ; + + 529 +] . + +[ test:City "Campo Grande" ; + test:Country "Brazil" ; + + 1084 +] . + +[ test:City "Toda" ; + test:Country "Japan" ; + + 1932 +] . + +[ test:City "Luziânia" ; + test:Country "Brazil" ; + + 3183 +] . + +[ test:City "Manavgat" ; + test:Country "Turkey" ; + + 164 +] . + +[ test:City "Silchar" ; + test:Country "India" ; + + 719 +] . + +[ test:City "Puri" ; + test:Country "India" ; + + 1540 +] . + +[ test:City "Várzea Grande" ; + test:Country "Brazil" ; + + 1319 +] . + +[ test:City "Yeosu" ; + test:Country "South Korea" ; + + 2095 +] . + +[ test:City "Francistown" ; + test:Country "Botswana" ; + + 2167 +] . + +[ test:City "Bratislava" ; + test:Country "Slovakia" ; + + 2755 +] . + +[ test:City "Düsseldorf" ; + test:Country "Germany" ; + + 3310 +] . + +[ test:City "Norilsk" ; + test:Country "Russia" ; + + 954 +] . + +[ test:City "Jundiaí" ; + test:Country "Brazil" ; + + 2330 +] . + +[ test:City "Sanming" ; + test:Country "China" ; + + 562 +] . + +[ test:City "Cauayan City" ; + test:Country "Philippines" ; + + 1117 +] . + +[ test:City "Townsville" ; + test:Country "Australia" ; + + 1965 +] . + +[ test:City "Besançon" ; + test:Country "France" ; + + 2661 +] . + +[ test:City "Longyan" ; + test:Country "China" ; + + 3153 +] . + +[ test:City "Darlington" ; + test:Country "United Kingdom" ; + + 3216 +] . + +[ test:City "Mariveles, Bataan" ; + test:Country "Philippines" ; + + 197 +] . + +[ test:City "Solihull" ; + test:Country "United Kingdom" ; + + 752 +] . + +[ test:City "Kamensk-Uralsky" ; + test:Country "Russia" ; + + 1573 +] . + +[ test:City "Vitória da Conquista" ; + test:Country "Brazil" ; + + 1352 +] . + +[ test:City "Yuxi" ; + test:Country "China" ; + + 2128 +] . + +[ test:City "Uberlândia" ; + test:Country "Brazil" ; + + 2200 +] . + +[ test:City "Bulawayo" ; + test:Country "Zimbabwe" ; + + 2788 +] . + +[ test:City "Antananarivo" ; + test:Country "Madagascar" ; + + 3451 +] . + +[ test:City "Waco" ; + test:Country "United States" ; + + 987 +] . + +[ test:City "George Town" ; + test:Country "Malaysia" ; + + 2363 +] . + +[ test:City "Oceanside" ; + test:Country "United States" ; + + 7 +] . + +[ test:City "Sanya" ; + test:Country "China" ; + + 595 +] . + +[ test:City "Turku" ; + test:Country "Finland" ; + + 1998 +] . + +[ test:City "Binangonan" ; + test:Country "Philippines" ; + + 2694 +] . + +[ test:City "Mbeya" ; + test:Country "Tanzania" ; + + 230 +] . + +[ test:City "Karur" ; + test:Country "India" ; + + 1606 +] . + +[ test:City "Nasugbu" ; + test:Country "Philippines" ; + + 893 +] . + +[ test:City "Usolye-Sibirskoye" ; + test:Country "Russia" ; + + 2233 +] . + +[ test:City "Hanzhong" ; + test:Country "China" ; + + 2929 +] . + +[ test:City "Arnhem" ; + test:Country "Netherlands" ; + + 3484 +] . + +[ test:City "Rzeszów" ; + test:Country "Poland" ; + + 465 +] . + +[ test:City "Cádiz" ; + test:Country "Spain" ; + + 1056 +] . + +[ test:City "Tamale" ; + test:Country "Ghana" ; + + 1841 +] . + +[ test:City "Wiesbaden" ; + test:Country "Germany" ; + + 1020 +] . + +[ test:City "Chandler" ; + test:Country "United States" ; + + 1128 +] . + +[ test:City "Thimphu" ; + test:Country "Bhutan" ; + + 1904 +] . + +[ test:City "Gorakhpur" ; + test:Country "India" ; + + 2396 +] . + +[ test:City "León" ; + test:Country "Mexico" ; + + 3092 +] . + +[ test:City "Oral" ; + test:Country "Kazakhstan" ; + + 40 +] . + +[ test:City "Curicó" ; + test:Country "Chile" ; + + 1291 +] . + +[ test:City "Copenhagen" ; + test:Country "Denmark" ; + + 1255 +] . + +[ test:City "Zhangjiajie" ; + test:Country "China" ; + + 2031 +] . + +[ test:City "Beirut" ; + test:Country "Lebanon" ; + + 2631 +] . + +[ test:City "Raichur" ; + test:Country "India" ; + + 371 +] . + +[ test:City "Neyveli" ; + test:Country "India" ; + + 926 +] . + +[ test:City "Jena" ; + test:Country "Germany" ; + + 2266 +] . + +[ test:City "Heyuan" ; + test:Country "China" ; + + 2962 +] . + +[ test:City "Ayacucho" ; + test:Country "Peru" ; + + 3517 +] . + +[ test:City "San Juan City, Metro Manila" ; + test:Country "Philippines" ; + + 534 +] . + +[ test:City "Salem" ; + test:Country "India" ; + + 498 +] . + +[ test:City "Tegal" ; + test:Country "Indonesia" ; + + 1874 +] . + +[ test:City "Chernivtsi" ; + test:Country "Ukraine" ; + + 1161 +] . + +[ test:City "Linxia" ; + test:Country "China" ; + + 3125 +] . + +[ test:City "Oujda" ; + test:Country "Morocco" ; + + 73 +] . + +[ test:City "Spokane, Washington" ; + test:Country "United States" ; + + 769 +] . + +[ test:City "Veliky Novgorod" ; + test:Country "Russia" ; + + 1324 +] . + +[ test:City "Fremont" ; + test:Country "United States" ; + + 2172 +] . + +[ test:City "Reims" ; + test:Country "France" ; + + 404 +] . + +[ test:City "Norwalk" ; + test:Country "United States" ; + + 959 +] . + +[ test:City "Galați" ; + test:Country "Romania" ; + + 2335 +] . + +[ test:City "Jingmen" ; + test:Country "China" ; + + 2299 +] . + +[ test:City "Graz" ; + test:Country "Austria" ; + + 2407 +] . + +[ test:City "Hoshiarpur" ; + test:Country "India" ; + + 2995 +] . + +[ test:City "Choloma" ; + test:Country "Honduras" ; + + 1194 +] . + +[ test:City "Baoshan" ; + test:Country "China" ; + + 2570 +] . + +[ test:City "Loudi" ; + test:Country "China" ; + + 3158 +] . + +[ test:City "Suita" ; + test:Country "Japan" ; + + 802 +] . + +[ test:City "Khasavyurt" ; + test:Country "Russia" ; + + 1650 +] . + +[ test:City "Vladikavkaz" ; + test:Country "Russia" ; + + 1357 +] . + +[ test:City "Ueda" ; + test:Country "Japan" ; + + 2205 +] . + +[ test:City "Aligarh" ; + test:Country "India" ; + + 3393 +] . + +[ test:City "Anyang" ; + test:Country "South Korea" ; + + 3456 +] . + +[ test:City "Rochester, Minnesota" ; + test:Country "United States" ; + + 437 +] . + +[ test:City "Taganrog" ; + test:Country "Russia" ; + + 1813 +] . + +[ test:City "Wah Cantonment" ; + test:Country "Pakistan" ; + + 992 +] . + +[ test:City "Xiamen" ; + test:Country "China" ; + + 1777 +] . + +[ test:City "Ghardaïa" ; + test:Country "Algeria" ; + + 2368 +] . + +[ test:City "Gujrat City" ; + test:Country "India" ; + + 2440 +] . + +[ test:City "Hulunbuir" ; + test:Country "China" ; + + 3028 +] . + +[ test:City "Offenbach am Main" ; + test:Country "Germany" ; + + 12 +] . + +[ test:City "Cluj-Napoca" ; + test:Country "Romania" ; + + 1227 +] . + +[ test:City "Batangas City" ; + test:Country "Philippines" ; + + 2603 +] . + +[ test:City "Swindon" ; + test:Country "United Kingdom" ; + + 835 +] . + +[ test:City "Kislovodsk" ; + test:Country "Russia" ; + + 1683 +] . + +[ test:City "Utsunomiya" ; + test:Country "Japan" ; + + 2238 +] . + +[ test:City "Hargeisa" ; + test:Country "Somalia" ; + + 2934 +] . + +[ test:City "Sabzewar" ; + test:Country "Iran" ; + + 470 +] . + +[ test:City "Tanauan City" ; + test:Country "Philippines" ; + + 1846 +] . + +[ test:City "Changsha" ; + test:Country "China" ; + + 1133 +] . + +[ test:City "El Jadida" ; + test:Country "Morocco" ; + + 2473 +] . + +[ test:City "Lanzhou" ; + test:Country "China" ; + + 3061 +] . + +[ test:City "Örebro" ; + test:Country "Sweden" ; + + 45 +] . + +[ test:City "Lucerne" ; + test:Country "Switzerland" ; + + 3169 +] . + +[ test:City "Shuangyashan" ; + test:Country "China" ; + + 705 +] . + +[ test:City "Corby" ; + test:Country "United Kingdom" ; + + 1260 +] . + +[ test:City "Vadodara" ; + test:Country "India" ; + + 1296 +] . + +[ test:City "Yangon (Rangoon)" ; + test:Country "Myanmar" ; + + 2081 +] . + +[ test:City "Belgaum" ; + test:Country "India" ; + + 2636 +] . + +[ test:City "Acapulco" ; + test:Country "Mexico" ; + + 3332 +] . + +[ test:City "Minoh" ; + test:Country "Japan" ; + + 280 +] . + +[ test:City "Koriyama" ; + test:Country "Japan" ; + + 1716 +] . + +[ test:City "Port Louis" ; + test:Country "Mauritius" ; + + 1495 +] . + +[ test:City "Jersey City" ; + test:Country "United States" ; + + 2271 +] . + +[ test:City "Itaituba" ; + test:Country "Brazil" ; + + 2871 +] . + +[ test:City "Sapucaia do Sul" ; + test:Country "Brazil" ; + + 611 +] . + +[ test:City "Chiba" ; + test:Country "Japan" ; + + 1166 +] . + +[ test:City "Esmeraldas" ; + test:Country "Ecuador" ; + + 2506 +] . + +[ test:City "Oxford" ; + test:Country "United Kingdom" ; + + 78 +] . + +[ test:City "Daly City" ; + test:Country "United States" ; + + 3202 +] . + +[ test:City "Srinagar" ; + test:Country "India" ; + + 774 +] . + +[ test:City "Sliven" ; + test:Country "Bulgaria" ; + + 738 +] . + +[ test:City "Yokohama" ; + test:Country "Japan" ; + + 2114 +] . + +[ test:City "Paradise, Nevada" ; + test:Country "United States" ; + + 1401 +] . + +[ test:City "Akishima" ; + test:Country "Japan" ; + + 3365 +] . + +[ test:City "Montgomery, Alabama" ; + test:Country "United States" ; + + 313 +] . + +[ test:City "Kuching" ; + test:Country "Malaysia" ; + + 1749 +] . + +[ test:City "Pucallpa" ; + test:Country "Peru" ; + + 1528 +] . + +[ test:City "Jinzhong" ; + test:Country "China" ; + + 2304 +] . + +[ test:City "Grozny" ; + test:Country "Russia" ; + + 2412 +] . + +[ test:City "Hailun" ; + test:Country "China" ; + + 2904 +] . + +[ test:City "Sergiyev Posad" ; + test:Country "Russia" ; + + 644 +] . + +[ test:City "Chorzów" ; + test:Country "Poland" ; + + 1199 +] . + +[ test:City "Baranovichi" ; + test:Country "Belarus" ; + + 2575 +] . + +[ test:City "Baishan" ; + test:Country "China" ; + + 2539 +] . + +[ test:City "Denizli" ; + test:Country "Turkey" ; + + 3235 +] . + +[ test:City "Maraba" ; + test:Country "Brazil" ; + + 183 +] . + +[ test:City "Kaiserslautern" ; + test:Country "Germany" ; + + 1559 +] . + +[ test:City "Peshawar" ; + test:Country "Pakistan" ; + + 1434 +] . + +[ test:City "Almada" ; + test:Country "Portugal" ; + + 3398 +] . + +[ test:City "Muridke" ; + test:Country "Pakistan" ; + + 346 +] . + +[ test:City "Wuxi" ; + test:Country "China" ; + + 1042 +] . + +[ test:City "Xiantao" ; + test:Country "China" ; + + 1782 +] . + +[ test:City "Teresina" ; + test:Country "Brazil" ; + + 1890 +] . + +[ test:City "Gunsan" ; + test:Country "South Korea" ; + + 2445 +] . + +[ test:City "Sheffield" ; + test:Country "United Kingdom" ; + + 677 +] . + +[ test:City "Coimbatore" ; + test:Country "India" ; + + 1232 +] . + +[ test:City "Zhytomyr" ; + test:Country "Ukraine" ; + + 2053 +] . + +[ test:City "Zanzibar City" ; + test:Country "Tanzania" ; + + 2017 +] . + +[ test:City "Batna" ; + test:Country "Algeria" ; + + 2608 +] . + +[ test:City "Bhuj" ; + test:Country "India" ; + + 2680 +] . + +[ test:City "Djibouti" ; + test:Country "Djibouti" ; + + 3268 +] . + +[ test:City "Matsumoto" ; + test:Country "Japan" ; + + 216 +] . + +[ test:City "Kansk" ; + test:Country "Russia" ; + + 1592 +] . + +[ test:City "Pittsburgh, Pennsylvania" ; + test:Country "United States" ; + + 1467 +] . + +[ test:City "Inegöl" ; + test:Country "Turkey" ; + + 2843 +] . + +[ test:City "Iaşi" ; + test:Country "Romania" ; + + 2807 +] . + +[ test:City "Camagüey" ; + test:Country "Cuba" ; + + 1075 +] . + +[ test:City "Tiruppur" ; + test:Country "India" ; + + 1923 +] . + +[ test:City "El Progreso" ; + test:Country "Honduras" ; + + 2478 +] . + +[ test:City "Luján de Cuyo" ; + test:Country "Argentina" ; + + 3174 +] . + +[ test:City "Machakos" ; + test:Country "Kenya" ; + + 122 +] . + +[ test:City "Sibiu" ; + test:Country "Romania" ; + + 710 +] . + +[ test:City "Yao" ; + test:Country "Japan" ; + + 2086 +] . + +[ test:City "Bnei Brak" ; + test:Country "Israel" ; + + 2713 +] . + +[ test:City "Duque de Caxias" ; + test:Country "Brazil" ; + + 3301 +] . + +[ test:City "Mishan" ; + test:Country "China" ; + + 285 +] . + +[ test:City "Mendoza" ; + test:Country "Argentina" ; + + 249 +] . + +[ test:City "Kawaguchi" ; + test:Country "Japan" ; + + 1625 +] . + +[ test:City "Nizhnevartovsk" ; + test:Country "Russia" ; + + 945 +] . + +[ test:City "Portland, Oregon" ; + test:Country "United States" ; + + 1500 +] . + +[ test:City "Jorhat" ; + test:Country "India" ; + + 2321 +] . + +[ test:City "Itapevi" ; + test:Country "Brazil" ; + + 2876 +] . + +[ test:City "San Cristóbal" ; + test:Country "Dominican Republic" ; + + 520 +] . + +[ test:City "Caruaru" ; + test:Country "Brazil" ; + + 1108 +] . + +[ test:City "Toronto" ; + test:Country "Canada" ; + + 1956 +] . + +[ test:City "Eujeongbu" ; + test:Country "South Korea" ; + + 2511 +] . + +[ test:City "Liling" ; + test:Country "China" ; + + 3111 +] . + +[ test:City "Malayer" ; + test:Country "Iran" ; + + 155 +] . + +[ test:City "Parang, Maguindanao" ; + test:Country "Philippines" ; + + 1406 +] . + +[ test:City "Bournemouth" ; + test:Country "United Kingdom" ; + + 2746 +] . + +[ test:City "Monza" ; + test:Country "Italy" ; + + 318 +] . + +[ test:City "Anlu" ; + test:Country "China" ; + + 3442 +] . + +[ test:City "Novotroitsk" ; + test:Country "Russia" ; + + 978 +] . + +[ test:City "Puerto Montt" ; + test:Country "Chile" ; + + 1533 +] . + +[ test:City "Gdynia" ; + test:Country "Poland" ; + + 2354 +] . + +[ test:City "Haldia" ; + test:Country "India" ; + + 2909 +] . + +[ test:City "San Sebastián" ; + test:Country "Spain" ; + + 553 +] . + +[ test:City "Tumbes" ; + test:Country "Ecuador" ; + + 1989 +] . + +[ test:City "Balashikha" ; + test:Country "Russia" ; + + 2544 +] . + +[ test:City "Lomé" ; + test:Country "Togo" ; + + 3144 +] . + +[ test:City "Maraqeh" ; + test:Country "Iran" ; + + 188 +] . + +[ test:City "Kakogawa" ; + test:Country "Japan" ; + + 1564 +] . + +[ test:City "Napier-Hastings" ; + test:Country "New Zealand" ; + + 884 +] . + +[ test:City "Petrolina" ; + test:Country "Brazil" ; + + 1439 +] . + +[ test:City "Buenaventura" ; + test:Country "Colombia" ; + + 2779 +] . + +[ test:City "Musashino" ; + test:Country "Japan" ; + + 351 +] . + +[ test:City "Arecibo" ; + test:Country "Puerto Rico" ; + + 3475 +] . + +[ test:City "Rijeka" ; + test:Country "Croatia" ; + + 423 +] . + +[ test:City "Xinzhou" ; + test:Country "China" ; + + 1799 +] . + +[ test:City "Wenzhou" ; + test:Country "China" ; + + 1011 +] . + +[ test:City "Goiânia" ; + test:Country "Brazil" ; + + 2387 +] . + +[ test:City "Santiago de Cuba" ; + test:Country "Cuba" ; + + 586 +] . + +[ test:City "Cuautla" ; + test:Country "Mexico" ; + + 1282 +] . + +[ test:City "Zaragoza" ; + test:Country "Spain" ; + + 2022 +] . + +[ test:City "Bielsko-Biała" ; + test:Country "Poland" ; + + 2685 +] . + +[ test:City "Maunath Bhanjan" ; + test:Country "India" ; + + 221 +] . + +[ test:City "Karaikkudi" ; + test:Country "India" ; + + 1597 +] . + +[ test:City "Noida" ; + test:Country "India" ; + + 917 +] . + +[ test:City "Ploieşti" ; + test:Country "Romania" ; + + 1472 +] . + +[ test:City "Jamnagar" ; + test:Country "India" ; + + 2257 +] . + +[ test:City "Ipoh" ; + test:Country "Malaysia" ; + + 2848 +] . + +[ test:City "Ibirité" ; + test:Country "Brazil" ; + + 2812 +] . + +[ test:City "Hamilton" ; + test:Country "Canada" ; + + 2920 +] . + +[ test:City "Auckland" ; + test:Country "New Zealand" ; + + 3508 +] . + +[ test:City "Rudny" ; + test:Country "Kazakhstan" ; + + 456 +] . + +[ test:City "Talavera, Nueva Ecija" ; + test:Country "Philippines" ; + + 1832 +] . + +[ test:City "Leicester" ; + test:Country "United Kingdom" ; + + 3083 +] . + +[ test:City "Laghouat" ; + test:Country "Algeria" ; + + 3047 +] . + +[ test:City "Madison" ; + test:Country "United States" ; + + 127 +] . + +[ test:City "Varamin" ; + test:Country "Iran" ; + + 1315 +] . + +[ test:City "Foshan" ; + test:Country "China" ; + + 2163 +] . + +[ test:City "Bogor" ; + test:Country "Indonesia" ; + + 2718 +] . + +[ test:City "Mesa, Arizona" ; + test:Country "United States" ; + + 254 +] . + +[ test:City "Mymensingh" ; + test:Country "Bangladesh" ; + + 362 +] . + +[ test:City "Kecskemét" ; + test:Country "Hungary" ; + + 1630 +] . + +[ test:City "Noda" ; + test:Country "Japan" ; + + 950 +] . + +[ test:City "Juba" ; + test:Country "South Sudan" ; + + 2326 +] . + +[ test:City "Jiayuguan" ; + test:Country "China" ; + + 2290 +] . + +[ test:City "Henderson" ; + test:Country "United States" ; + + 2953 +] . + +[ test:City "San Fernando del Valle de Catamarca" ; + test:Country "Argentina" ; + + 525 +] . + +[ test:City "Saitama" ; + test:Country "Japan" ; + + 489 +] . + +[ test:City "Tarragona" ; + test:Country "Spain" ; + + 1865 +] . + +[ test:City "Chişinău" ; + test:Country "Moldova" ; + + 1185 +] . + +[ test:City "Bangui" ; + test:Country "Central African Republic" ; + + 2561 +] . + +[ test:City "Limeira" ; + test:Country "Brazil" ; + + 3116 +] . + +[ test:City "Manado" ; + test:Country "Indonesia" ; + + 160 +] . + +[ test:City "Vinnytsia" ; + test:Country "Ukraine" ; + + 1348 +] . + +[ test:City "Fuzhou, Jiangxi" ; + test:Country "China" ; + + 2196 +] . + +[ test:City "Brăila" ; + test:Country "Romania" ; + + 2751 +] . + +[ test:City "Aguascalientes" ; + test:Country "Mexico" ; + + 3351 +] . + +[ test:City "Rawalpindi" ; + test:Country "Pakistan" ; + + 395 +] . + +[ test:City "Kraljevo" ; + test:Country "Serbia" ; + + 1735 +] . + +[ test:City "Holguín" ; + test:Country "Cuba" ; + + 2986 +] . + +[ test:City "Oaxaca de Juárez" ; + test:Country "Mexico" ; + + 3 +] . + +[ test:City "Sandakan" ; + test:Country "Malaysia" ; + + 558 +] . + +[ test:City "Ciudad Madero" ; + test:Country "Mexico" ; + + 1218 +] . + +[ test:City "Barueri" ; + test:Country "Brazil" ; + + 2594 +] . + +[ test:City "Longjing" ; + test:Country "China" ; + + 3149 +] . + +[ test:City "Strasbourg" ; + test:Country "France" ; + + 793 +] . + +[ test:City "Khairpur" ; + test:Country "Pakistan" ; + + 1641 +] . + +[ test:City "Uruapan" ; + test:Country "Mexico" ; + + 2229 +] . + +[ test:City "Bukan" ; + test:Country "Iran" ; + + 2784 +] . + +[ test:City "Alcorcón" ; + test:Country "Spain" ; + + 3384 +] . + +[ test:City "Rio de Janeiro" ; + test:Country "Brazil" ; + + 428 +] . + +[ test:City "Cedar Rapids" ; + test:Country "United States" ; + + 1124 +] . + +[ test:City "Tabaco City" ; + test:Country "Philippines" ; + + 1804 +] . + +[ test:City "Kuwait City" ; + test:Country "Kuwait" ; + + 1768 +] . + +[ test:City "Hubli-Dharwad" ; + test:Country "India" ; + + 3019 +] . + +[ test:City "Ontario" ; + test:Country "United States" ; + + 36 +] . + +[ test:City "Santo Domingo de los Colorados" ; + test:Country "Ecuador" ; + + 591 +] . + +[ test:City "Shanghai" ; + test:Country "China" ; + + 663 +] . + +[ test:City "Concordia" ; + test:Country "Argentina" ; + + 1251 +] . + +[ test:City "Bei'an" ; + test:Country "China" ; + + 2627 +] . + +[ test:City "Surrey" ; + test:Country "Canada" ; + + 826 +] . + +[ test:City "Kingston" ; + test:Country "Canada" ; + + 1674 +] . + +[ test:City "Jaú" ; + test:Country "Brazil" ; + + 2262 +] . + +[ test:City "Handan" ; + test:Country "China" ; + + 2925 +] . + +[ test:City "Americana" ; + test:Country "Brazil" ; + + 3417 +] . + +[ test:City "Ruzhou" ; + test:Country "China" ; + + 461 +] . + +[ test:City "Talsi" ; + test:Country "Latvia" ; + + 1837 +] . + +[ test:City "Cherepovets" ; + test:Country "Russia" ; + + 1157 +] . + +[ test:City "Erie" ; + test:Country "United States" ; + + 2497 +] . + +[ test:City "Lengshuijiang" ; + test:Country "China" ; + + 3088 +] . + +[ test:City "Laiyang" ; + test:Country "China" ; + + 3052 +] . + +[ test:City "Ōtsu" ; + test:Country "Japan" ; + + 69 +] . + +[ test:City "Shishi City" ; + test:Country "China" ; + + 696 +] . + +[ test:City "Yakutsk" ; + test:Country "Russia" ; + + 2072 +] . + +[ test:City "Dresden" ; + test:Country "Germany" ; + + 3287 +] . + +[ test:City "Rạch Giá" ; + test:Country "Vietnam" ; + + 367 +] . + +[ test:City "Najafabad" ; + test:Country "Iran" ; + + 859 +] . + +[ test:City "Kollam" ; + test:Country "India" ; + + 1707 +] . + +[ test:City "Granada" ; + test:Country "Spain" ; + + 2403 +] . + +[ test:City "Hermosillo" ; + test:Country "Mexico" ; + + 2958 +] . + +[ test:City "Salamanca" ; + test:Country "Spain" ; + + 494 +] . + +[ test:City "Tauranga" ; + test:Country "New Zealand" ; + + 1870 +] . + +[ test:City "Chitungwiza" ; + test:Country "Zimbabwe" ; + + 1190 +] . + +[ test:City "Banjul" ; + test:Country "Gambia" ; + + 2566 +] . + +[ test:City "Bahawalnagar" ; + test:Country "Pakistan" ; + + 2530 +] . + +[ test:City "Daejeon" ; + test:Country "South Korea" ; + + 3193 +] . + +[ test:City "Sirjan" ; + test:Country "Iran" ; + + 729 +] . + +[ test:City "Yingkou" ; + test:Country "China" ; + + 2105 +] . + +[ test:City "Peoria, Illinois" ; + test:Country "United States" ; + + 1425 +] . + +[ test:City "Ahvaz" ; + test:Country "Iran" ; + + 3356 +] . + +[ test:City "Abakan" ; + test:Country "Russia" ; + + 3320 +] . + +[ test:City "Mufulira" ; + test:Country "Zambia" ; + + 337 +] . + +[ test:City "Regensburg" ; + test:Country "Germany" ; + + 400 +] . + +[ test:City "Krefeld" ; + test:Country "Germany" ; + + 1740 +] . + +[ test:City "Guilin" ; + test:Country "China" ; + + 2436 +] . + +[ test:City "Honghu" ; + test:Country "China" ; + + 2991 +] . + +[ test:City "Sekondi-Takoradi" ; + test:Country "Ghana" ; + + 635 +] . + +[ test:City "Tripoli, Libya" ; + test:Country "Libya" ; + + 1975 +] . + +[ test:City "Dayton" ; + test:Country "United States" ; + + 3226 +] . + +[ test:City "Suez" ; + test:Country "Egypt" ; + + 798 +] . + +[ test:City "South Bend, Indiana" ; + test:Country "United States" ; + + 762 +] . + +[ test:City "Kharagpur" ; + test:Country "India" ; + + 1646 +] . + +[ test:City "Fayyum" ; + test:Country "Egypt" ; + + 2138 +] . + +[ test:City "Pingdu" ; + test:Country "China" ; + + 1458 +] . + +[ test:City "Imbaba" ; + test:Country "Egypt" ; + + 2834 +] . + +[ test:City "Al-Fashir" ; + test:Country "Sudan" ; + + 3389 +] . + +[ test:City "Wonsan" ; + test:Country "North Korea" ; + + 1033 +] . + +[ test:City "Kyoto" ; + test:Country "Japan" ; + + 1773 +] . + +[ test:City "Ekibastuz" ; + test:Country "Kazakhstan" ; + + 2469 +] . + +[ test:City "Huhehaote" ; + test:Country "China" ; + + 3024 +] . + +[ test:City "Quzhou" ; + test:Country "China" ; + + 113 +] . + +[ test:City "Shantou" ; + test:Country "China" ; + + 668 +] . + +[ test:City "Zabrze" ; + test:Country "Poland" ; + + 2008 +] . + +[ test:City "Dinajpur" ; + test:Country "Bangladesh" ; + + 3259 +] . + +[ test:City "Milwaukee, Wisconsin" ; + test:Country "United States" ; + + 276 +] . + +[ test:City "Suzhou, Anhui" ; + test:Country "China" ; + + 831 +] . + +[ test:City "N'Djamena" ; + test:Country "Chad" ; + + 903 +] . + +[ test:City "Kisangani" ; + test:Country "Democratic Republic of the Congo" ; + + 1679 +] . + +[ test:City "Porac, Pampanga" ; + test:Country "Philippines" ; + + 1491 +] . + +[ test:City "İstanbul" ; + test:Country "Turkey" ; + + 2867 +] . + +[ test:City "Amravati" ; + test:Country "India" ; + + 3422 +] . + +[ test:City "Calais" ; + test:Country "France" ; + + 1066 +] . + +[ test:City "Tieling" ; + test:Country "China" ; + + 1914 +] . + +[ test:City "Escondido" ; + test:Country "United States" ; + + 2502 +] . + +[ test:City "Makiivka" ; + test:Country "Ukraine" ; + + 146 +] . + +[ test:City "Shizuoka" ; + test:Country "Japan" ; + + 701 +] . + +[ test:City "Zhengzhou" ; + test:Country "China" ; + + 2041 +] . + +[ test:City "Yamuna Nagar" ; + test:Country "India" ; + + 2077 +] . + +[ test:City "Panipat" ; + test:Country "India" ; + + 1397 +] . + +[ test:City "Botou" ; + test:Country "China" ; + + 2737 +] . + +[ test:City "Duisburg" ; + test:Country "Germany" ; + + 3292 +] . + +[ test:City "Montería" ; + test:Country "Colombia" ; + + 309 +] . + +[ test:City "Nakhon Si Thammarat" ; + test:Country "Thailand" ; + + 864 +] . + +[ test:City "Nilópolis" ; + test:Country "Brazil" ; + + 936 +] . + +[ test:City "Komsomolsk-on-Amur" ; + test:Country "Russia" ; + + 1712 +] . + +[ test:City "Jiyuan" ; + test:Country "China" ; + + 2312 +] . + +[ test:City "Prokopyevsk" ; + test:Country "Russia" ; + + 1524 +] . + +[ test:City "Hagen" ; + test:Country "Germany" ; + + 2900 +] . + +[ test:City "Cariacica" ; + test:Country "Brazil" ; + + 1099 +] . + +[ test:City "Tonghua" ; + test:Country "China" ; + + 1947 +] . + +[ test:City "Dali" ; + test:Country "China" ; + + 3198 +] . + +[ test:City "Manzhouli" ; + test:Country "China" ; + + 179 +] . + +[ test:City "Kahramanmaraş" ; + test:Country "Turkey" ; + + 1555 +] . + +[ test:City "Sivas" ; + test:Country "Turkey" ; + + 734 +] . + +[ test:City "Yiyang" ; + test:Country "China" ; + + 2110 +] . + +[ test:City "Perth" ; + test:Country "Australia" ; + + 1430 +] . + +[ test:City "Brownsville" ; + test:Country "United States" ; + + 2770 +] . + +[ test:City "Abha" ; + test:Country "Saudi Arabia" ; + + 3325 +] . + +[ test:City "Munich" ; + test:Country "Germany" ; + + 342 +] . + +[ test:City "Andimeshk" ; + test:Country "Iran" ; + + 3433 +] . + +[ test:City "Novo Hamburgo" ; + test:Country "Brazil" ; + + 969 +] . + +[ test:City "Garland" ; + test:Country "United States" ; + + 2345 +] . + +[ test:City "Santa Maria, Bulacan" ; + test:Country "Philippines" ; + + 577 +] . + +[ test:City "Seongnam" ; + test:Country "South Korea" ; + + 640 +] . + +[ test:City "Tsuchiura" ; + test:Country "Japan" ; + + 1980 +] . + +[ test:City "Bhiwandi" ; + test:Country "India" ; + + 2676 +] . + +[ test:City "Deir ez Zor" ; + test:Country "Syria" ; + + 3231 +] . + +[ test:City "Mati, Davao Oriental" ; + test:Country "Philippines" ; + + 212 +] . + +[ test:City "Kannur" ; + test:Country "India" ; + + 1588 +] . + +[ test:City "Soyapango" ; + test:Country "El Salvador" ; + + 767 +] . + +[ test:City "Nanded" ; + test:Country "India" ; + + 875 +] . + +[ test:City "Votkinsk" ; + test:Country "Russia" ; + + 1367 +] . + +[ test:City "Ferrara" ; + test:Country "Italy" ; + + 2143 +] . + +[ test:City "Ulhasnagar" ; + test:Country "India" ; + + 2215 +] . + +[ test:City "Buzău" ; + test:Country "Romania" ; + + 2803 +] . + +[ test:City "Araguaína" ; + test:Country "Brazil" ; + + 3466 +] . + +[ test:City "Wuhan" ; + test:Country "China" ; + + 1038 +] . + +[ test:City "Washington, D.C." ; + test:Country "United States" ; + + 1002 +] . + +[ test:City "Giza" ; + test:Country "Egypt" ; + + 2378 +] . + +[ test:City "Lauro de Freitas" ; + test:Country "Brazil" ; + + 3074 +] . + +[ test:City "Macaé" ; + test:Country "Brazil" ; + + 118 +] . + +[ test:City "Zama" ; + test:Country "Japan" ; + + 2013 +] . + +[ test:City "Blantyre" ; + test:Country "Malawi" ; + + 2709 +] . + +[ test:City "Divinópolis" ; + test:Country "Brazil" ; + + 3264 +] . + +[ test:City "Meknes" ; + test:Country "Morocco" ; + + 245 +] . + +[ test:City "Mushin" ; + test:Country "Nigeria" ; + + 353 +] . + +[ test:City "Katowice" ; + test:Country "Poland" ; + + 1621 +] . + +[ test:City "Neiva" ; + test:Country "Colombia" ; + + 908 +] . + +[ test:City "Jaipur" ; + test:Country "India" ; + + 2248 +] . + +[ test:City "Asyut" ; + test:Country "Egypt" ; + + 3499 +] . + +[ test:City "San Bernardo" ; + test:Country "Chile" ; + + 516 +] . + +[ test:City "Calgary" ; + test:Country "Canada" ; + + 1071 +] . + +[ test:City "Charikar" ; + test:Country "Afghanistan" ; + + 1143 +] . + +[ test:City "Tirana" ; + test:Country "Albania" ; + + 1919 +] . + +[ test:City "Lida" ; + test:Country "Belarus" ; + + 3107 +] . + +[ test:City "Oryol" ; + test:Country "Russia" ; + + 55 +] . + +[ test:City "Vallejo" ; + test:Country "United States" ; + + 1306 +] . + +[ test:City "Zhucheng" ; + test:Country "China" ; + + 2046 +] . + +[ test:City "Fontana" ; + test:Country "United States" ; + + 2154 +] . + +[ test:City "Bouaké" ; + test:Country "Ivory Coast" ; + + 2742 +] . + +[ test:City "Rancagua" ; + test:Country "Chile" ; + + 386 +] . + +[ test:City "Nishinomiya" ; + test:Country "Japan" ; + + 941 +] . + +[ test:City "Johannesburg" ; + test:Country "South Africa" ; + + 2317 +] . + +[ test:City "Jiangmen" ; + test:Country "China" ; + + 2281 +] . + +[ test:City "Hiratsuka" ; + test:Country "Japan" ; + + 2977 +] . + +[ test:City "San Pedro, Laguna" ; + test:Country "Philippines" ; + + 549 +] . + +[ test:City "Cartagena de Indias" ; + test:Country "Colombia" ; + + 1104 +] . + +[ test:City "Chimalhuacán" ; + test:Country "Mexico" ; + + 1176 +] . + +[ test:City "Tongren" ; + test:Country "China" ; + + 1952 +] . + +[ test:City "Lobito" ; + test:Country "Angola" ; + + 3140 +] . + +[ test:City "Qidong" ; + test:Country "China" ; + + 88 +] . + +[ test:City "Vila Nova de Gaia" ; + test:Country "Portugal" ; + + 1339 +] . + +[ test:City "Fukuyama" ; + test:Country "Japan" ; + + 2187 +] . + +[ test:City "Angren" ; + test:Country "Uzbekistan" ; + + 3438 +] . + +[ test:City "Richmond Hill" ; + test:Country "Canada" ; + + 419 +] . + +[ test:City "Xinxiang" ; + test:Country "China" ; + + 1795 +] . + +[ test:City "Novomoskovsk" ; + test:Country "Russia" ; + + 974 +] . + +[ test:City "Gaya" ; + test:Country "India" ; + + 2350 +] . + +[ test:City "Huambo" ; + test:Country "Angola" ; + + 3010 +] . + +[ test:City "Santander" ; + test:Country "Spain" ; + + 582 +] . + +[ test:City "Ciudad Apodaca" ; + test:Country "Mexico" ; + + 1209 +] . + +[ test:City "Barnaul" ; + test:Country "Russia" ; + + 2585 +] . + +[ test:City "Sunnyvale, California" ; + test:Country "United States" ; + + 817 +] . + +[ test:City "Nantes" ; + test:Country "France" ; + + 880 +] . + +[ test:City "Kidapawan City" ; + test:Country "Philippines" ; + + 1665 +] . + +[ test:City "Padang" ; + test:Country "Indonesia" ; + + 1372 +] . + +[ test:City "Umlazi" ; + test:Country "South Africa" ; + + 2220 +] . + +[ test:City "Hamburg" ; + test:Country "Germany" ; + + 2916 +] . + +[ test:City "Araure" ; + test:Country "Venezuela" ; + + 3471 +] . + +[ test:City "Ruse" ; + test:Country "Bulgaria" ; + + 452 +] . + +[ test:City "Takarazuka" ; + test:Country "Japan" ; + + 1828 +] . + +[ test:City "Weihui" ; + test:Country "China" ; + + 1007 +] . + +[ test:City "Gliwice" ; + test:Country "Poland" ; + + 2383 +] . + +[ test:City "Győr" ; + test:Country "Hungary" ; + + 2455 +] . + +[ test:City "La Serena" ; + test:Country "Chile" ; + + 3043 +] . + +[ test:City "Olomouc" ; + test:Country "Czech Republic" ; + + 27 +] . + +[ test:City "Columbia" ; + test:Country "United States" ; + + 1242 +] . + +[ test:City "Baybay" ; + test:Country "Philippines" ; + + 2618 +] . + +[ test:City "Mülheim an der Ruhr" ; + test:Country "Germany" ; + + 358 +] . + +[ test:City "Nagareyama" ; + test:Country "Japan" ; + + 850 +] . + +[ test:City "Kofu" ; + test:Country "Japan" ; + + 1698 +] . + +[ test:City "Jalpaiguri" ; + test:Country "India" ; + + 2253 +] . + +[ test:City "Heihe" ; + test:Country "China" ; + + 2949 +] . + +[ test:City "Atlanta" ; + test:Country "United States" ; + + 3504 +] . + +[ test:City "Saint-Étienne" ; + test:Country "France" ; + + 485 +] . + +[ test:City "Târgu-Mureş" ; + test:Country "Romania" ; + + 1861 +] . + +[ test:City "Cheboksary" ; + test:Country "Russia" ; + + 1148 +] . + +[ test:City "Eluru" ; + test:Country "India" ; + + 2488 +] . + +[ test:City "Oshogbo" ; + test:Country "Nigeria" ; + + 60 +] . + +[ test:City "Vanadzor" ; + test:Country "Armenia" ; + + 1311 +] . + +[ test:City "Cottbus" ; + test:Country "Germany" ; + + 1275 +] . + +[ test:City "Palembang" ; + test:Country "Indonesia" ; + + 1383 +] . + +[ test:City "Fort Wayne" ; + test:Country "United States" ; + + 2159 +] . + +[ test:City "Berbera" ; + test:Country "Somalia" ; + + 2651 +] . + +[ test:City "Agadir" ; + test:Country "Morocco" ; + + 3347 +] . + +[ test:City "Modena" ; + test:Country "Italy" ; + + 295 +] . + +[ test:City "Kovrov" ; + test:Country "Russia" ; + + 1731 +] . + +[ test:City "Jiaojiang" ; + test:Country "China" ; + + 2286 +] . + +[ test:City "Hitachinaka" ; + test:Country "Japan" ; + + 2982 +] . + +[ test:City "Satna" ; + test:Country "India" ; + + 626 +] . + +[ test:City "Chiniot" ; + test:Country "Pakistan" ; + + 1181 +] . + +[ test:City "Badajoz" ; + test:Country "Spain" ; + + 2521 +] . + +[ test:City "Qingzhou" ; + test:Country "China" ; + + 93 +] . + +[ test:City "Darmstadt" ; + test:Country "Germany" ; + + 3217 +] . + +[ test:City "Stockholm" ; + test:Country "Sweden" ; + + 789 +] . + +[ test:City "Solikamsk" ; + test:Country "Russia" ; + + 753 +] . + +[ test:City "Kerch" ; + test:Country "Ukraine" ; + + 1637 +] . + +[ test:City "Villeurbanne" ; + test:Country "France" ; + + 1344 +] . + +[ test:City "Yuyao" ; + test:Country "China" ; + + 2129 +] . + +[ test:City "Paulista" ; + test:Country "Brazil" ; + + 1416 +] . + +[ test:City "Fushun" ; + test:Country "China" ; + + 2192 +] . + +[ test:City "Albuquerque" ; + test:Country "United States" ; + + 3380 +] . + +[ test:City "Moscow" ; + test:Country "Russia" ; + + 328 +] . + +[ test:City "Kusatsu" ; + test:Country "Japan" ; + + 1764 +] . + +[ test:City "Guatemala City" ; + test:Country "Guatemala" ; + + 2427 +] . + +[ test:City "Shahrak-e Gharb" ; + test:Country "Iran" ; + + 659 +] . + +[ test:City "Ciudad Guayana" ; + test:Country "Venezuela" ; + + 1214 +] . + +[ test:City "Barranquilla" ; + test:Country "Colombia" ; + + 2590 +] . + +[ test:City "Bamenda" ; + test:Country "Cameroon" ; + + 2554 +] . + +[ test:City "Dhanbad" ; + test:Country "India" ; + + 3250 +] . + +[ test:City "Surat Thani" ; + test:Country "Thailand" ; + + 822 +] . + +[ test:City "Kikwit" ; + test:Country "Democratic Republic of the Congo" ; + + 1670 +] . + +[ test:City "Phusro" ; + test:Country "India" ; + + 1449 +] . + +[ test:City "Ilagan" ; + test:Country "Philippines" ; + + 2825 +] . + +[ test:City "Amarillo" ; + test:Country "United States" ; + + 3413 +] . + +[ test:City "Caen" ; + test:Country "France" ; + + 1057 +] . + +[ test:City "Thiruvananthapuram" ; + test:Country "India" ; + + 1905 +] . + +[ test:City "Ecatepec" ; + test:Country "Mexico" ; + + 2460 +] . + +[ test:City "Omsk" ; + test:Country "Russia" ; + + 32 +] . + +[ test:City "Quetta" ; + test:Country "Pakistan" ; + + 104 +] . + +[ test:City "Shimoga" ; + test:Country "India" ; + + 692 +] . + +[ test:City "Comodoro Rivadavia" ; + test:Country "Argentina" ; + + 1247 +] . + +[ test:City "Zakopane" ; + test:Country "Poland" ; + + 2068 +] . + +[ test:City "Beawar" ; + test:Country "India" ; + + 2623 +] . + +[ test:City "Binzhou" ; + test:Country "China" ; + + 2695 +] . + +[ test:City "Dos Quebradas" ; + test:Country "Colombia" ; + + 3283 +] . + +[ test:City "Mianyang" ; + test:Country "China" ; + + 267 +] . + +[ test:City "Mbour" ; + test:Country "Senegal" ; + + 231 +] . + +[ test:City "Kashan" ; + test:Country "Iran" ; + + 1607 +] . + +[ test:City "Polomolok, South Cotabato" ; + test:Country "Philippines" ; + + 1482 +] . + +[ test:City "Irving" ; + test:Country "United States" ; + + 2858 +] . + +[ test:City "Cần Thơ" ; + test:Country "Vietnam" ; + + 1090 +] . + +[ test:City "Toledo City, Cebu" ; + test:Country "Philippines" ; + + 1938 +] . + +[ test:City "Enugu" ; + test:Country "Nigeria" ; + + 2493 +] . + +[ test:City "Dabgram" ; + test:Country "India" ; + + 3189 +] . + +[ test:City "Magnitogorsk" ; + test:Country "Russia" ; + + 137 +] . + +[ test:City "Singkawang" ; + test:Country "Indonesia" ; + + 725 +] . + +[ test:City "Criciúma" ; + test:Country "Brazil" ; + + 1280 +] . + +[ test:City "Yidu" ; + test:Country "China" ; + + 2101 +] . + +[ test:City "Palmdale, California" ; + test:Country "United States" ; + + 1388 +] . + +[ test:City "Bergisch Gladbach" ; + test:Country "Germany" ; + + 2656 +] . + +[ test:City "Boma" ; + test:Country "Democratic Republic of the Congo" ; + + 2728 +] . + +[ test:City "Aarhus" ; + test:Country "Denmark" ; + + 3316 +] . + +[ test:City "Mogadishu" ; + test:Country "Somalia" ; + + 300 +] . + +[ test:City "Praia" ; + test:Country "Cape Verde" ; + + 1515 +] . + +[ test:City "Haarlem" ; + test:Country "Netherlands" ; + + 2891 +] . + +[ test:City "San Lorenzo" ; + test:Country "Paraguay" ; + + 535 +] . + +[ test:City "Trabzon" ; + test:Country "Turkey" ; + + 1971 +] . + +[ test:City "Bago City" ; + test:Country "Philippines" ; + + 2526 +] . + +[ test:City "Datong" ; + test:Country "China" ; + + 3222 +] . + +[ test:City "Mandya" ; + test:Country "India" ; + + 170 +] . + +[ test:City "Kabankalan" ; + test:Country "Philippines" ; + + 1546 +] . + +[ test:City "Sorocaba" ; + test:Country "Brazil" ; + + 758 +] . + +[ test:City "Nalchik" ; + test:Country "Russia" ; + + 866 +] . + +[ test:City "Faridabad" ; + test:Country "India" ; + + 2134 +] . + +[ test:City "Pematang Siantar" ; + test:Country "Indonesia" ; + + 1421 +] . + +[ test:City "Bremerhaven" ; + test:Country "Germany" ; + + 2761 +] . + +[ test:City "Mosul" ; + test:Country "Iraq" ; + + 333 +] . + +[ test:City "Aomori" ; + test:Country "Japan" ; + + 3457 +] . + +[ test:City "Wolfsburg" ; + test:Country "Germany" ; + + 1029 +] . + +[ test:City "Wakayama" ; + test:Country "Japan" ; + + 993 +] . + +[ test:City "Ghaziabad" ; + test:Country "India" ; + + 2369 +] . + +[ test:City "Guédiawaye" ; + test:Country "Senegal" ; + + 2432 +] . + +[ test:City "Santa Coloma de Gramanet" ; + test:Country "Spain" ; + + 568 +] . + +[ test:City "Tychy" ; + test:Country "Poland" ; + + 2004 +] . + +[ test:City "Bangalore" ; + test:Country "India" ; + + 2559 +] . + +[ test:City "Bharatpur" ; + test:Country "India" ; + + 2667 +] . + +[ test:City "Louisville" ; + test:Country "United States" ; + + 3159 +] . + +[ test:City "Masaya" ; + test:Country "Nicaragua" ; + + 203 +] . + +[ test:City "Kamyshin" ; + test:Country "Russia" ; + + 1579 +] . + +[ test:City "Navsari" ; + test:Country "India" ; + + 899 +] . + +[ test:City "Pilibhit" ; + test:Country "India" ; + + 1454 +] . + +[ test:City "Iloilo City" ; + test:Country "Philippines" ; + + 2830 +] . + +[ test:City "Burgos" ; + test:Country "Spain" ; + + 2794 +] . + +[ test:City "Asaka" ; + test:Country "Japan" ; + + 3490 +] . + +[ test:City "Cairns" ; + test:Country "Australia" ; + + 1062 +] . + +[ test:City "Tianmen" ; + test:Country "China" ; + + 1910 +] . + +[ test:City "Quilmes" ; + test:Country "Argentina" ; + + 109 +] . + +[ test:City "São José de Ribamar" ; + test:Country "Brazil" ; + + 601 +] . + +[ test:City "Valdivia" ; + test:Country "Chile" ; + + 1297 +] . + +[ test:City "Zhaodong" ; + test:Country "China" ; + + 2037 +] . + +[ test:City "Fes" ; + test:Country "Morocco" ; + + 2145 +] . + +[ test:City "Bishkek" ; + test:Country "Kyrgyzstan" ; + + 2700 +] . + +[ test:City "Milagro" ; + test:Country "Ecuador" ; + + 272 +] . + +[ test:City "Medea" ; + test:Country "Algeria" ; + + 236 +] . + +[ test:City "Kassala" ; + test:Country "Sudan" ; + + 1612 +] . + +[ test:City "Niihama" ; + test:Country "Japan" ; + + 932 +] . + +[ test:City "Jiuquan" ; + test:Country "China" ; + + 2308 +] . + +[ test:City "Ponta Grossa" ; + test:Country "Brazil" ; + + 1487 +] . + +[ test:City "Islam Shahr" ; + test:Country "Iran" ; + + 2863 +] . + +[ test:City "Haridwar" ; + test:Country "India" ; + + 2935 +] . + +[ test:City "Sacramento, California" ; + test:Country "United States" ; + + 471 +] . + +[ test:City "Tandil" ; + test:Country "Argentina" ; + + 1847 +] . + +[ test:City "Lexington" ; + test:Country "United States" ; + + 3098 +] . + +[ test:City "Maiduguri" ; + test:Country "Nigeria" ; + + 142 +] . + +[ test:City "Viamão" ; + test:Country "Brazil" ; + + 1330 +] . + +[ test:City "Fujieda" ; + test:Country "Japan" ; + + 2178 +] . + +[ test:City "Borujerd" ; + test:Country "Iran" ; + + 2733 +] . + +[ test:City "Anápolis" ; + test:Country "Brazil" ; + + 3429 +] . + +[ test:City "Rajnandgaon" ; + test:Country "India" ; + + 377 +] . + +[ test:City "Nova Friburgo" ; + test:Country "Brazil" ; + + 965 +] . + +[ test:City "Ganzhou" ; + test:Country "China" ; + + 2341 +] . + +[ test:City "Prijedor" ; + test:Country "Bosnia and Herzegovina" ; + + 1520 +] . + +[ test:City "Hachiōji" ; + test:Country "Japan" ; + + 2896 +] . + +[ test:City "Higashiōsaka" ; + test:Country "Japan" ; + + 2968 +] . + +[ test:City "San Miguel" ; + test:Country "El Salvador" ; + + 540 +] . + +[ test:City "Saltillo" ; + test:Country "Mexico" ; + + 504 +] . + +[ test:City "Tel Aviv" ; + test:Country "Israel" ; + + 1880 +] . + +[ test:City "Lishui" ; + test:Country "China" ; + + 3131 +] . + +[ test:City "Manisa" ; + test:Country "Turkey" ; + + 175 +] . + +[ test:City "St Helens" ; + test:Country "United Kingdom" ; + + 775 +] . + +[ test:City "Kaduna" ; + test:Country "Nigeria" ; + + 1551 +] . + +[ test:City "Volos" ; + test:Country "Greece" ; + + 1363 +] . + +[ test:City "Ulanqab" ; + test:Country "China" ; + + 2211 +] . + +[ test:City "Brighton" ; + test:Country "United Kingdom" ; + + 2766 +] . + +[ test:City "Raqqa" ; + test:Country "Syria" ; + + 3462 +] . + +[ test:City "Resende" ; + test:Country "Brazil" ; + + 410 +] . + +[ test:City "Wardha" ; + test:Country "India" ; + + 998 +] . + +[ test:City "Gilbert" ; + test:Country "United States" ; + + 2374 +] . + +[ test:City "Hoya" ; + test:Country "Japan" ; + + 3001 +] . + +[ test:City "Okazaki" ; + test:Country "Japan" ; + + 18 +] . + +[ test:City "Santa Fe de Bogotá" ; + test:Country "Colombia" ; + + 573 +] . + +[ test:City "Coimbra" ; + test:Country "Portugal" ; + + 1233 +] . + +[ test:City "Baton Rouge" ; + test:Country "United States" ; + + 2609 +] . + +[ test:City "Bhilai" ; + test:Country "India" ; + + 2672 +] . + +[ test:City "Lubbock" ; + test:Country "United States" ; + + 3164 +] . + +[ test:City "Matamoros, Tamaulipas" ; + test:Country "Mexico" ; + + 208 +] . + +[ test:City "Sultanbeyli" ; + test:Country "Turkey" ; + + 808 +] . + +[ test:City "Kandahar" ; + test:Country "Afghanistan" ; + + 1584 +] . + +[ test:City "Khomeini Shahr" ; + test:Country "Iran" ; + + 1656 +] . + +[ test:City "Jacksonville" ; + test:Country "United States" ; + + 2244 +] . + +[ test:City "Bury" ; + test:Country "United Kingdom" ; + + 2799 +] . + +[ test:City "Almaty" ; + test:Country "Kazakhstan" ; + + 3399 +] . + +[ test:City "Rondonópolis" ; + test:Country "Brazil" ; + + 443 +] . + +[ test:City "Taipei" ; + test:Country "Taiwan" ; + + 1819 +] . + +[ test:City "Xianyang" ; + test:Country "China" ; + + 1783 +] . + +[ test:City "Chaoyang" ; + test:Country "China" ; + + 1139 +] . + +[ test:City "Hyderabad" ; + test:Country "India" ; + + 3034 +] . + +[ test:City "Ormoc" ; + test:Country "Philippines" ; + + 51 +] . + +[ test:City "São Leopoldo" ; + test:Country "Brazil" ; + + 606 +] . + +[ test:City "Valera" ; + test:Country "Venezuela" ; + + 1302 +] . + +[ test:City "Coro" ; + test:Country "Venezuela" ; + + 1266 +] . + +[ test:City "Florianópolis" ; + test:Country "Brazil" ; + + 2150 +] . + +[ test:City "Belo Horizonte" ; + test:Country "Brazil" ; + + 2642 +] . + +[ test:City "Szczecin" ; + test:Country "Poland" ; + + 841 +] . + +[ test:City "Kitwe" ; + test:Country "Zambia" ; + + 1689 +] . + +[ test:City "Jiagedaqi" ; + test:Country "China" ; + + 2277 +] . + +[ test:City "Havana" ; + test:Country "Cuba" ; + + 2940 +] . + +[ test:City "Sagar" ; + test:Country "India" ; + + 476 +] . + +[ test:City "Tangshan" ; + test:Country "China" ; + + 1852 +] . + +[ test:City "Chihuahua" ; + test:Country "Mexico" ; + + 1172 +] . + +[ test:City "Liaoyang" ; + test:Country "China" ; + + 3103 +] . + +[ test:City "Larkana" ; + test:Country "Pakistan" ; + + 3067 +] . + +[ test:City "Qamishli" ; + test:Country "Syria" ; + + 84 +] . + +[ test:City "Luohe" ; + test:Country "China" ; + + 3175 +] . + +[ test:City "Sibu" ; + test:Country "Malaysia" ; + + 711 +] . + +[ test:City "Yaoundé" ; + test:Country "Cameroon" ; + + 2087 +] . + +[ test:City "Adapazarı" ; + test:Country "Turkey" ; + + 3338 +] . + +[ test:City "Ramat Gan" ; + test:Country "Israel" ; + + 382 +] . + +[ test:City "Kostanay" ; + test:Country "Kazakhstan" ; + + 1722 +] . + +[ test:City "Guangshui" ; + test:Country "China" ; + + 2418 +] . + +[ test:City "Himeji" ; + test:Country "Japan" ; + + 2973 +] . + +[ test:City "Samarinda" ; + test:Country "Indonesia" ; + + 509 +] . + +[ test:City "Saratov" ; + test:Country "Russia" ; + + 617 +] . + +[ test:City "Temuco" ; + test:Country "Chile" ; + + 1885 +] . + +[ test:City "Chuzhou" ; + test:Country "China" ; + + 1205 +] . + +[ test:City "Bari" ; + test:Country "Italy" ; + + 2581 +] . + +[ test:City "Baleshwar" ; + test:Country "India" ; + + 2545 +] . + +[ test:City "Livonia" ; + test:Country "United States" ; + + 3136 +] . + +[ test:City "Dandong" ; + test:Country "China" ; + + 3208 +] . + +[ test:City "St. John's" ; + test:Country "Canada" ; + + 780 +] . + +[ test:City "Soacha" ; + test:Country "Colombia" ; + + 744 +] . + +[ test:City "York" ; + test:Country "United Kingdom" ; + + 2120 +] . + +[ test:City "Aktobe" ; + test:Country "Kazakhstan" ; + + 3371 +] . + +[ test:City "Reynosa" ; + test:Country "Mexico" ; + + 415 +] . + +[ test:City "Kunming" ; + test:Country "China" ; + + 1755 +] . + +[ test:City "Gwalior" ; + test:Country "India" ; + + 2451 +] . + +[ test:City "Huaibei" ; + test:Country "China" ; + + 3006 +] . + +[ test:City "Seto" ; + test:Country "Japan" ; + + 650 +] . + +[ test:City "Colombo" ; + test:Country "Brazil" ; + + 1238 +] . + +[ test:City "Bayamo" ; + test:Country "Cuba" ; + + 2614 +] . + +[ test:City "Derince" ; + test:Country "Turkey" ; + + 3241 +] . + +[ test:City "Metepec" ; + test:Country "Mexico" ; + + 258 +] . + +[ test:City "Suncheon, South Korea" ; + test:Country "South Korea" ; + + 813 +] . + +[ test:City "Khoy" ; + test:Country "Iran" ; + + 1661 +] . + +[ test:City "Plovdiv" ; + test:Country "Bulgaria" ; + + 1473 +] . + +[ test:City "Ipswich" ; + test:Country "United Kingdom" ; + + 2849 +] . + +[ test:City "Al Qadarif" ; + test:Country "Sudan" ; + + 3404 +] . + +[ test:City "Rostov-on-Don" ; + test:Country "Russia" ; + + 448 +] . + +[ test:City "Cabanatuan City" ; + test:Country "Philippines" ; + + 1048 +] . + +[ test:City "Taizhou, Zhejiang" ; + test:Country "China" ; + + 1824 +] . + +[ test:City "Xingcheng" ; + test:Country "China" ; + + 1788 +] . + +[ test:City "Tétouan" ; + test:Country "Monaco" ; + + 1896 +] . + +[ test:City "Elista" ; + test:Country "Russia" ; + + 2484 +] . + +[ test:City "La Paz" ; + test:Country "Bolivia" ; + + 3039 +] . + +[ test:City "Shibin el-Kom" ; + test:Country "Egypt" ; + + 683 +] . + +[ test:City "Zárate" ; + test:Country "Argentina" ; + + 2023 +] . + +[ test:City "Zixing" ; + test:Country "China" ; + + 2059 +] . + +[ test:City "Pakan Baru" ; + test:Country "Indonesia" ; + + 1379 +] . + +[ test:City "Doha" ; + test:Country "Qatar" ; + + 3274 +] . + +[ test:City "Mito" ; + test:Country "Japan" ; + + 291 +] . + +[ test:City "Nadiad" ; + test:Country "India" ; + + 846 +] . + +[ test:City "Koblenz" ; + test:Country "Germany" ; + + 1694 +] . + +[ test:City "Portsmouth" ; + test:Country "United Kingdom" ; + + 1506 +] . + +[ test:City "Iwakuni" ; + test:Country "Japan" ; + + 2882 +] . + +[ test:City "Cẩm Phả" ; + test:Country "Vietnam" ; + + 1081 +] . + +[ test:City "Tlaxcala" ; + test:Country "Mexico" ; + + 1929 +] . + +[ test:City "Babruysk" ; + test:Country "Belarus" ; + + 2517 +] . + +[ test:City "Latur" ; + test:Country "India" ; + + 3072 +] . + +[ test:City "Luxembourg" ; + test:Country "Luxembourg" ; + + 3180 +] . + +[ test:City "Managua" ; + test:Country "Nicaragua" ; + + 161 +] . + +[ test:City "Puno" ; + test:Country "Peru" ; + + 1537 +] . + +[ test:City "Sikar" ; + test:Country "India" ; + + 716 +] . + +[ test:City "Yekaterinburg" ; + test:Country "Russia" ; + + 2092 +] . + +[ test:City "Patos de Minas" ; + test:Country "Brazil" ; + + 1412 +] . + +[ test:City "Adıyaman" ; + test:Country "Turkey" ; + + 3343 +] . + +[ test:City "Durrës" ; + test:Country "Albania" ; + + 3307 +] . + +[ test:City "Moriguchi" ; + test:Country "Japan" ; + + 324 +] . + +[ test:City "Nogales" ; + test:Country "Mexico" ; + + 951 +] . + +[ test:City "Kota Kinabalu" ; + test:Country "Malaysia" ; + + 1727 +] . + +[ test:City "Juiz de Fora" ; + test:Country "Brazil" ; + + 2327 +] . + +[ test:City "Sariwon" ; + test:Country "North Korea" ; + + 622 +] . + +[ test:City "Catanduva" ; + test:Country "Brazil" ; + + 1114 +] . + +[ test:City "Toulon" ; + test:Country "France" ; + + 1962 +] . + +[ test:City "Bălți" ; + test:Country "Moldova" ; + + 2550 +] . + +[ test:City "Berkeley" ; + test:Country "United States" ; + + 2658 +] . + +[ test:City "Dar Es Salaam" ; + test:Country "Tanzania" ; + + 3213 +] . + +[ test:City "Marília" ; + test:Country "Brazil" ; + + 194 +] . + +[ test:City "Kamagaya" ; + test:Country "Japan" ; + + 1570 +] . + +[ test:City "Soka" ; + test:Country "Japan" ; + + 749 +] . + +[ test:City "Yulin, Shaanxi" ; + test:Country "China" ; + + 2125 +] . + +[ test:City "Philadelphia, Pennsylvania" ; + test:Country "United States" ; + + 1445 +] . + +[ test:City "Ikere-Ekiti" ; + test:Country "Nigeria" ; + + 2821 +] . + +[ test:City "Bukavu" ; + test:Country "Democratic Republic of the Congo" ; + + 2785 +] . + +[ test:City "Al Ain" ; + test:Country "United Arab Emirates" ; + + 3376 +] . + +[ test:City "Anshun" ; + test:Country "China" ; + + 3448 +] . + +[ test:City "Nuremberg" ; + test:Country "Germany" ; + + 984 +] . + +[ test:City "Kurgan" ; + test:Country "Russia" ; + + 1760 +] . + +[ test:City "General Santos City" ; + test:Country "Philippines" ; + + 2360 +] . + +[ test:City "Quanzhou" ; + test:Country "China" ; + + 100 +] . + +[ test:City "Sfax" ; + test:Country "Tunisia" ; + + 655 +] . + +[ test:City "Turhal" ; + test:Country "Turkey" ; + + 1995 +] . + +[ test:City "Bilbao" ; + test:Country "Spain" ; + + 2691 +] . + +[ test:City "Deyang" ; + test:Country "China" ; + + 3246 +] . + +[ test:City "Mazyr" ; + test:Country "Belarus" ; + + 227 +] . + +[ test:City "Kariya" ; + test:Country "Japan" ; + + 1603 +] . + +[ test:City "Nashik" ; + test:Country "India" ; + + 890 +] . + +[ test:City "Podolsk" ; + test:Country "Russia" ; + + 1478 +] . + +[ test:City "Iriga" ; + test:Country "Philippines" ; + + 2854 +] . + +[ test:City "Arlington, Virginia" ; + test:Country "United States" ; + + 3481 +] . + +[ test:City "Cachoeirinha" ; + test:Country "Brazil" ; + + 1053 +] . + +[ test:City "Whitby" ; + test:Country "Canada" ; + + 1017 +] . + +[ test:City "The Hague" ; + test:Country "Netherlands" ; + + 1901 +] . + +[ test:City "Gondar" ; + test:Country "Ethiopia" ; + + 2393 +] . + +[ test:City "Lengshuitan" ; + test:Country "China" ; + + 3089 +] . + +[ test:City "Magangué" ; + test:Country "Colombia" ; + + 133 +] . + +[ test:City "Shillong" ; + test:Country "India" ; + + 688 +] . + +[ test:City "Cuiabá" ; + test:Country "Brazil" ; + + 1288 +] . + +[ test:City "Zuwarah" ; + test:Country "Libya" ; + + 2064 +] . + +[ test:City "Zenica" ; + test:Country "Bosnia and Herzegovina" ; + + 2028 +] . + +[ test:City "Boksburg" ; + test:Country "South Africa" ; + + 2724 +] . + +[ test:City "Dongyang" ; + test:Country "China" ; + + 3279 +] . + +[ test:City "Newport" ; + test:Country "United Kingdom" ; + + 923 +] . + +[ test:City "Jaunpur" ; + test:Country "India" ; + + 2263 +] . + +[ test:City "Austin" ; + test:Country "United States" ; + + 3514 +] . + +[ test:City "San Jose, Occidental Mindoro" ; + test:Country "Philippines" ; + + 531 +] . + +[ test:City "Canberra" ; + test:Country "Australia" ; + + 1086 +] . + +[ test:City "Tokorozawa" ; + test:Country "Japan" ; + + 1934 +] . + +[ test:City "Linhares" ; + test:Country "Brazil" ; + + 3122 +] . + +[ test:City "Manchester" ; + test:Country "United Kingdom" ; + + 166 +] . + +[ test:City "Putian" ; + test:Country "China" ; + + 1542 +] . + +[ test:City "Vatakara" ; + test:Country "India" ; + + 1321 +] . + +[ test:City "Frankfurt am Main" ; + test:Country "Germany" ; + + 2169 +] . + +[ test:City "Braunschweig" ; + test:Country "Germany" ; + + 2757 +] . + +[ test:City "Davenport" ; + test:Country "United States" ; + + 3312 +] . + +[ test:City "Reggio Calabria" ; + test:Country "Italy" ; + + 401 +] . + +[ test:City "Norrköping" ; + test:Country "Sweden" ; + + 956 +] . + +[ test:City "Gabès" ; + test:Country "Tunisia" ; + + 2332 +] . + +[ test:City "Jinchang" ; + test:Country "China" ; + + 2296 +] . + +[ test:City "Santa Bárbara d'Oeste" ; + test:Country "Brazil" ; + + 564 +] . + +[ test:City "Cavite City" ; + test:Country "Philippines" ; + + 1119 +] . + +[ test:City "Chizhou" ; + test:Country "China" ; + + 1191 +] . + +[ test:City "Toyohashi" ; + test:Country "Japan" ; + + 1967 +] . + +[ test:City "Bankura" ; + test:Country "India" ; + + 2567 +] . + +[ test:City "Los Ángeles" ; + test:Country "Chile" ; + + 3155 +] . + +[ test:City "Vitória" ; + test:Country "Brazil" ; + + 1354 +] . + +[ test:City "Udaipur" ; + test:Country "India" ; + + 2202 +] . + +[ test:City "Burao" ; + test:Country "Somalia" ; + + 2790 +] .