aboutsummaryrefslogtreecommitdiff
path: root/admin/private
diff options
context:
space:
mode:
authorMinteck <contact@minteck.org>2022-01-01 10:37:28 +0100
committerMinteck <contact@minteck.org>2022-01-01 10:37:28 +0100
commitef055e79855cf3be1ad5e1aa5f9ebad480062384 (patch)
treeff074b29a7a87c3ccfc3b10741bbe30cb28e103e /admin/private
parente3a79df6428799024eac64e9cffbb062317aeb95 (diff)
downloadmain-ef055e79855cf3be1ad5e1aa5f9ebad480062384.tar.gz
main-ef055e79855cf3be1ad5e1aa5f9ebad480062384.tar.bz2
main-ef055e79855cf3be1ad5e1aa5f9ebad480062384.zip
Bye furriesHEADtrunk
Diffstat (limited to 'admin/private')
-rw-r--r--admin/private/footer.php2
-rw-r--r--admin/private/header.api.php26
-rw-r--r--admin/private/header.php47
-rw-r--r--admin/private/header.sso.php26
-rw-r--r--admin/private/ipcache.json1
-rw-r--r--admin/private/permissions.json28
-rw-r--r--admin/private/permissions.php37
7 files changed, 0 insertions, 167 deletions
diff --git a/admin/private/footer.php b/admin/private/footer.php
deleted file mode 100644
index d733a1f..0000000
--- a/admin/private/footer.php
+++ /dev/null
@@ -1,2 +0,0 @@
-</body>
-</html> \ No newline at end of file
diff --git a/admin/private/header.api.php b/admin/private/header.api.php
deleted file mode 100644
index c2d8f2f..0000000
--- a/admin/private/header.api.php
+++ /dev/null
@@ -1,26 +0,0 @@
-<?php
-
-if (!isset($_COOKIE["ADMIN_TOKEN"])) {
- header("Location: https://account.minteck.org/hub/hub/api/rest/oauth2/auth?client_id=36245ba5-ee9f-44c1-a149-ab2006fcb226&response_type=code&redirect_uri=https://minteck.org/admin/callback&scope=hub&request_credentials=default&access_type=offline");
- die();
-} else if (ctype_xdigit($_COOKIE["ADMIN_TOKEN"]) && file_exists($_SERVER['DOCUMENT_ROOT'] . "/admin/private/tokens/" . $_COOKIE['ADMIN_TOKEN'])) {
- $_DATA = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/admin/private/tokens/" . $_COOKIE['ADMIN_TOKEN']), true);
-} else {
- header("Location: https://account.minteck.org/hub/hub/api/rest/oauth2/auth?client_id=36245ba5-ee9f-44c1-a149-ab2006fcb226&response_type=code&redirect_uri=https://minteck.org/admin/callback&scope=hub&request_credentials=default&access_type=offline");
- die();
-}
-
-$_PERMSFORAPI = true;
-require_once $_SERVER['DOCUMENT_ROOT'] . "/admin/private/permissions.php";
-
-function l($en, $fr = null)
-{
- global $lang;
-
- if ((($lang === "fr" && isset($fr)) || (isset($_GET['fr']) && isset($fr) || isset($_COOKIE['fr']))) && !isset($_GET['en']) && !isset($_COOKIE['en']) && isset($fr)) {
- setlocale(LC_TIME, array('fr_FR.UTF-8', 'fr_FR@euro', 'fr_FR', 'french'));
- return $fr;
- } else {
- return $en;
- }
-} \ No newline at end of file
diff --git a/admin/private/header.php b/admin/private/header.php
deleted file mode 100644
index d3d3ce8..0000000
--- a/admin/private/header.php
+++ /dev/null
@@ -1,47 +0,0 @@
-<?php
-
-if (!isset($_COOKIE["ADMIN_TOKEN"])) {
- header("Location: https://account.minteck.org/hub/hub/api/rest/oauth2/auth?client_id=36245ba5-ee9f-44c1-a149-ab2006fcb226&response_type=code&redirect_uri=https://minteck.org/admin/callback&scope=hub&request_credentials=default&access_type=offline");
- die();
-} else if (ctype_xdigit($_COOKIE["ADMIN_TOKEN"]) && file_exists($_SERVER['DOCUMENT_ROOT'] . "/admin/private/tokens/" . $_COOKIE['ADMIN_TOKEN'])) {
- $_DATA = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/admin/private/tokens/" . $_COOKIE['ADMIN_TOKEN']), true);
-} else {
- header("Location: https://account.minteck.org/hub/hub/api/rest/oauth2/auth?client_id=36245ba5-ee9f-44c1-a149-ab2006fcb226&response_type=code&redirect_uri=https://minteck.org/admin/callback&scope=hub&request_credentials=default&access_type=offline");
- die();
-}
-
-$_PERMSFORAPI = false;
-require_once $_SERVER['DOCUMENT_ROOT'] . "/admin/private/permissions.php";
-
-if (!function_exists("l")) {
- function l($en, $fr = null)
- {
- global $lang;
-
- if ((($lang === "fr" && isset($fr)) || (isset($_GET['fr']) && isset($fr) || isset($_COOKIE['fr']))) && !isset($_GET['en']) && !isset($_COOKIE['en']) && isset($fr)) {
- setlocale(LC_TIME, array('fr_FR.UTF-8', 'fr_FR@euro', 'fr_FR', 'french'));
- return $fr;
- } else {
- return $en;
- }
- }
-}
-
-ob_start();
-
-?>
-
-<!DOCTYPE html>
-<html lang="en" style="height:100%;">
-<head>
- <meta charset="UTF-8">
- <title>Minteck Cloud Admin Console</title>
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <link rel="icon" href="/logo.svg">
- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
- <link rel="stylesheet" href="/static/css/fonts">
- <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
- <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
- <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
-</head>
-<body class="admin" style="background-color:transparent;height:100%;"> \ No newline at end of file
diff --git a/admin/private/header.sso.php b/admin/private/header.sso.php
deleted file mode 100644
index 4dec3d9..0000000
--- a/admin/private/header.sso.php
+++ /dev/null
@@ -1,26 +0,0 @@
-<?php
-
-if (!isset($_COOKIE["ADMIN_TOKEN"])) {
- header("Location: https://account.minteck.org/hub/hub/api/rest/oauth2/auth?client_id=36245ba5-ee9f-44c1-a149-ab2006fcb226&response_type=code&redirect_uri=https://minteck.org/admin/callback&scope=hub&request_credentials=default&access_type=offline");
- die();
-} else if (ctype_xdigit($_COOKIE["ADMIN_TOKEN"]) && file_exists($_SERVER['DOCUMENT_ROOT'] . "/admin/private/tokens/" . $_COOKIE['ADMIN_TOKEN'])) {
- $_DATA = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/admin/private/tokens/" . $_COOKIE['ADMIN_TOKEN']), true);
-} else {
- header("Location: https://account.minteck.org/hub/hub/api/rest/oauth2/auth?client_id=36245ba5-ee9f-44c1-a149-ab2006fcb226&response_type=code&redirect_uri=https://minteck.org/admin/callback&scope=hub&request_credentials=default&access_type=offline");
- die();
-}
-
-$_PERMSFORSSO = true;
-require_once $_SERVER['DOCUMENT_ROOT'] . "/admin/private/permissions.php";
-
-function l($en, $fr = null)
-{
- global $lang;
-
- if ((($lang === "fr" && isset($fr)) || (isset($_GET['fr']) && isset($fr) || isset($_COOKIE['fr']))) && !isset($_GET['en']) && !isset($_COOKIE['en']) && isset($fr)) {
- setlocale(LC_TIME, array('fr_FR.UTF-8', 'fr_FR@euro', 'fr_FR', 'french'));
- return $fr;
- } else {
- return $en;
- }
-} \ No newline at end of file
diff --git a/admin/private/ipcache.json b/admin/private/ipcache.json
deleted file mode 100644
index cb7b89a..0000000
--- a/admin/private/ipcache.json
+++ /dev/null
@@ -1 +0,0 @@
-{"127.0.0.1":{"geoplugin_request":"127.0.0.1","geoplugin_status":404,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":null,"geoplugin_region":null,"geoplugin_regionCode":null,"geoplugin_regionName":null,"geoplugin_areaCode":null,"geoplugin_dmaCode":null,"geoplugin_countryCode":null,"geoplugin_countryName":null,"geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":null,"geoplugin_continentName":null,"geoplugin_latitude":null,"geoplugin_longitude":null,"geoplugin_locationAccuracyRadius":null,"geoplugin_timezone":null,"geoplugin_currencyCode":null,"geoplugin_currencySymbol":null,"geoplugin_currencySymbol_UTF8":"","geoplugin_currencyConverter":"0"},"92.152.77.195":{"geoplugin_request":"92.152.77.195","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Orl\u00e9ans","geoplugin_region":"Centre-Val de Loire","geoplugin_regionCode":"45","geoplugin_regionName":"Loiret","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"FR","geoplugin_countryName":"France","geoplugin_inEU":1,"geoplugin_euVATrate":20,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"47.9047","geoplugin_longitude":"1.9076","geoplugin_locationAccuracyRadius":"5","geoplugin_timezone":"Europe\/Paris","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8501"},"190.2.132.224":{"geoplugin_request":"190.2.132.224","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Naaldwijk","geoplugin_region":"South Holland","geoplugin_regionCode":"ZH","geoplugin_regionName":"South Holland","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"NL","geoplugin_countryName":"Netherlands","geoplugin_inEU":1,"geoplugin_euVATrate":21,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"51.9934","geoplugin_longitude":"4.2158","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"Europe\/Amsterdam","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8501"},"86.196.89.109":{"geoplugin_request":"86.196.89.109","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Orl\u00e9ans","geoplugin_region":"Centre-Val de Loire","geoplugin_regionCode":"45","geoplugin_regionName":"Loiret","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"FR","geoplugin_countryName":"France","geoplugin_inEU":1,"geoplugin_euVATrate":20,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"47.9047","geoplugin_longitude":"1.9076","geoplugin_locationAccuracyRadius":"10","geoplugin_timezone":"Europe\/Paris","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8501"},"141.98.10.27":{"geoplugin_request":"141.98.10.27","geoplugin_status":206,"geoplugin_delay":"0ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"LT","geoplugin_countryName":"Lithuania","geoplugin_inEU":1,"geoplugin_euVATrate":21,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"56","geoplugin_longitude":"24","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"Europe\/Vilnius","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8501"},"82.65.121.132":{"geoplugin_request":"82.65.121.132","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Paris","geoplugin_region":"\u00cele-de-France","geoplugin_regionCode":"75","geoplugin_regionName":"Paris","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"FR","geoplugin_countryName":"France","geoplugin_inEU":1,"geoplugin_euVATrate":20,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"48.8579","geoplugin_longitude":"2.3491","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"Europe\/Paris","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8501"},"209.141.47.35":{"geoplugin_request":"209.141.47.35","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Las Vegas","geoplugin_region":"Nevada","geoplugin_regionCode":"NV","geoplugin_regionName":"Nevada","geoplugin_areaCode":"","geoplugin_dmaCode":"839","geoplugin_countryCode":"US","geoplugin_countryName":"United States","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"NA","geoplugin_continentName":"North America","geoplugin_latitude":"36.1685","geoplugin_longitude":"-115.1164","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"America\/Los_Angeles","geoplugin_currencyCode":"USD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1"},"125.160.65.57":{"geoplugin_request":"125.160.65.57","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Balikpapan","geoplugin_region":"East Kalimantan","geoplugin_regionCode":"KI","geoplugin_regionName":"East Kalimantan","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"ID","geoplugin_countryName":"Indonesia","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"-1.2551","geoplugin_longitude":"116.8428","geoplugin_locationAccuracyRadius":"100","geoplugin_timezone":"Asia\/Makassar","geoplugin_currencyCode":"IDR","geoplugin_currencySymbol":"&#82;&#112;","geoplugin_currencySymbol_UTF8":"Rp","geoplugin_currencyConverter":"14444.5"},"37.239.53.5":{"geoplugin_request":"37.239.53.5","geoplugin_status":206,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"IQ","geoplugin_countryName":"Iraq","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"33","geoplugin_longitude":"44","geoplugin_locationAccuracyRadius":"50","geoplugin_timezone":"Asia\/Baghdad","geoplugin_currencyCode":"IQD","geoplugin_currencySymbol":"ID","geoplugin_currencySymbol_UTF8":"ID","geoplugin_currencyConverter":"1464.2007"},"188.157.253.48":{"geoplugin_request":"188.157.253.48","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Szigetszentmiklos","geoplugin_region":"Pest megye","geoplugin_regionCode":"PE","geoplugin_regionName":"Pest megye","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"HU","geoplugin_countryName":"Hungary","geoplugin_inEU":1,"geoplugin_euVATrate":27,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"47.3485","geoplugin_longitude":"19.0476","geoplugin_locationAccuracyRadius":"5","geoplugin_timezone":"Europe\/Budapest","geoplugin_currencyCode":"HUF","geoplugin_currencySymbol":"&#70;&#116;","geoplugin_currencySymbol_UTF8":"Ft","geoplugin_currencyConverter":"300.8604"},"37.239.53.14":{"geoplugin_request":"37.239.53.14","geoplugin_status":206,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"IQ","geoplugin_countryName":"Iraq","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"33","geoplugin_longitude":"44","geoplugin_locationAccuracyRadius":"50","geoplugin_timezone":"Asia\/Baghdad","geoplugin_currencyCode":"IQD","geoplugin_currencySymbol":"ID","geoplugin_currencySymbol_UTF8":"ID","geoplugin_currencyConverter":"1458.954"},"141.98.10.56":{"geoplugin_request":"141.98.10.56","geoplugin_status":206,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"LT","geoplugin_countryName":"Lithuania","geoplugin_inEU":1,"geoplugin_euVATrate":21,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"56","geoplugin_longitude":"24","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"Europe\/Vilnius","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8501"},"141.98.10.203":{"geoplugin_request":"141.98.10.203","geoplugin_status":206,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"LT","geoplugin_countryName":"Lithuania","geoplugin_inEU":1,"geoplugin_euVATrate":21,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"56","geoplugin_longitude":"24","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"Europe\/Vilnius","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8501"},"103.249.7.138":{"geoplugin_request":"103.249.7.138","geoplugin_status":206,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"West Bengal","geoplugin_regionCode":"WB","geoplugin_regionName":"West Bengal","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"IN","geoplugin_countryName":"India","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"24","geoplugin_longitude":"87.5833","geoplugin_locationAccuracyRadius":"500","geoplugin_timezone":"Asia\/Kolkata","geoplugin_currencyCode":"INR","geoplugin_currencySymbol":"&#8377;","geoplugin_currencySymbol_UTF8":"\u20b9","geoplugin_currencyConverter":"74.2105"},"27.72.97.134":{"geoplugin_request":"27.72.97.134","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Hanoi","geoplugin_region":"Hanoi","geoplugin_regionCode":"HN","geoplugin_regionName":"Hanoi","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"21.0313","geoplugin_longitude":"105.8516","geoplugin_locationAccuracyRadius":"20","geoplugin_timezone":"Asia\/Bangkok","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.38"},"141.98.10.125":{"geoplugin_request":"141.98.10.125","geoplugin_status":206,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"LT","geoplugin_countryName":"Lithuania","geoplugin_inEU":1,"geoplugin_euVATrate":21,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"56","geoplugin_longitude":"24","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"Europe\/Vilnius","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8501"},"109.104.151.106":{"geoplugin_request":"109.104.151.106","geoplugin_status":206,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"AL","geoplugin_countryName":"Albania","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"41","geoplugin_longitude":"20","geoplugin_locationAccuracyRadius":"50","geoplugin_timezone":"Europe\/Tirane","geoplugin_currencyCode":"ALL","geoplugin_currencySymbol":"&#76;&#101;&#107;","geoplugin_currencySymbol_UTF8":"Lek","geoplugin_currencyConverter":"103.2407"},"195.133.40.158":{"geoplugin_request":"195.133.40.158","geoplugin_status":206,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"CZ","geoplugin_countryName":"Czechia","geoplugin_inEU":1,"geoplugin_euVATrate":21,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"50.0848","geoplugin_longitude":"14.4112","geoplugin_locationAccuracyRadius":"100","geoplugin_timezone":"Europe\/Prague","geoplugin_currencyCode":"CZK","geoplugin_currencySymbol":"&#75;&#269;","geoplugin_currencySymbol_UTF8":"K\u010d","geoplugin_currencyConverter":"21.6018"},"209.141.36.53":{"geoplugin_request":"209.141.36.53","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Las Vegas","geoplugin_region":"Nevada","geoplugin_regionCode":"NV","geoplugin_regionName":"Nevada","geoplugin_areaCode":"","geoplugin_dmaCode":"839","geoplugin_countryCode":"US","geoplugin_countryName":"United States","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"NA","geoplugin_continentName":"North America","geoplugin_latitude":"36.1685","geoplugin_longitude":"-115.1164","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"America\/Los_Angeles","geoplugin_currencyCode":"USD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1"},"141.98.10.29":{"geoplugin_request":"141.98.10.29","geoplugin_status":206,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"LT","geoplugin_countryName":"Lithuania","geoplugin_inEU":1,"geoplugin_euVATrate":21,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"56","geoplugin_longitude":"24","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"Europe\/Vilnius","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8501"},"82.64.46.144":{"geoplugin_request":"82.64.46.144","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Les Mureaux","geoplugin_region":"\u00cele-de-France","geoplugin_regionCode":"78","geoplugin_regionName":"Yvelines","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"FR","geoplugin_countryName":"France","geoplugin_inEU":1,"geoplugin_euVATrate":20,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"48.9917","geoplugin_longitude":"1.9097","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"Europe\/Paris","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8501"},"165.227.180.20":{"geoplugin_request":"165.227.180.20","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Clifton","geoplugin_region":"New Jersey","geoplugin_regionCode":"NJ","geoplugin_regionName":"New Jersey","geoplugin_areaCode":"","geoplugin_dmaCode":"501","geoplugin_countryCode":"US","geoplugin_countryName":"United States","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"NA","geoplugin_continentName":"North America","geoplugin_latitude":"40.8364","geoplugin_longitude":"-74.1403","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"America\/New_York","geoplugin_currencyCode":"USD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1"},"116.101.236.208":{"geoplugin_request":"116.101.236.208","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Hung Yen","geoplugin_region":"Tinh Hung Yen","geoplugin_regionCode":"66","geoplugin_regionName":"Tinh Hung Yen","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"20.65","geoplugin_longitude":"106.0667","geoplugin_locationAccuracyRadius":"50","geoplugin_timezone":"Asia\/Bangkok","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"22931"},"65.49.20.69":{"geoplugin_request":"65.49.20.69","geoplugin_status":206,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"US","geoplugin_countryName":"United States","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"NA","geoplugin_continentName":"North America","geoplugin_latitude":"37.751","geoplugin_longitude":"-97.822","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"America\/Chicago","geoplugin_currencyCode":"USD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1"},"37.0.11.249":{"geoplugin_request":"37.0.11.249","geoplugin_status":206,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"NL","geoplugin_countryName":"Netherlands","geoplugin_inEU":1,"geoplugin_euVATrate":21,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"52.3824","geoplugin_longitude":"4.8995","geoplugin_locationAccuracyRadius":"100","geoplugin_timezone":"Europe\/Amsterdam","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8501"},"180.241.155.196":{"geoplugin_request":"180.241.155.196","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Pekan Baru","geoplugin_region":"Riau","geoplugin_regionCode":"RI","geoplugin_regionName":"Riau","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"ID","geoplugin_countryName":"Indonesia","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"1.0128","geoplugin_longitude":"100.5037","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"Asia\/Jakarta","geoplugin_currencyCode":"IDR","geoplugin_currencySymbol":"&#82;&#112;","geoplugin_currencySymbol_UTF8":"Rp","geoplugin_currencyConverter":"14444.5"},"167.99.34.181":{"geoplugin_request":"167.99.34.181","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Amsterdam","geoplugin_region":"North Holland","geoplugin_regionCode":"NH","geoplugin_regionName":"North Holland","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"NL","geoplugin_countryName":"Netherlands","geoplugin_inEU":1,"geoplugin_euVATrate":21,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"52.352","geoplugin_longitude":"4.9392","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"Europe\/Amsterdam","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8501"},"134.122.63.163":{"geoplugin_request":"134.122.63.163","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Amsterdam","geoplugin_region":"North Holland","geoplugin_regionCode":"NH","geoplugin_regionName":"North Holland","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"NL","geoplugin_countryName":"Netherlands","geoplugin_inEU":1,"geoplugin_euVATrate":21,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"52.352","geoplugin_longitude":"4.9392","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"Europe\/Amsterdam","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8501"},"104.248.20.236":{"geoplugin_request":"104.248.20.236","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Frankfurt am Main","geoplugin_region":"Hesse","geoplugin_regionCode":"HE","geoplugin_regionName":"Hesse","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"DE","geoplugin_countryName":"Germany","geoplugin_inEU":1,"geoplugin_euVATrate":19,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"50.1188","geoplugin_longitude":"8.6843","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"Europe\/Berlin","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8501"},"147.182.205.185":{"geoplugin_request":"147.182.205.185","geoplugin_status":206,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"US","geoplugin_countryName":"United States","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"NA","geoplugin_continentName":"North America","geoplugin_latitude":"37.751","geoplugin_longitude":"-97.822","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"America\/Chicago","geoplugin_currencyCode":"USD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1"},"199.19.226.145":{"geoplugin_request":"199.19.226.145","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"San Jose","geoplugin_region":"California","geoplugin_regionCode":"CA","geoplugin_regionName":"California","geoplugin_areaCode":"","geoplugin_dmaCode":"807","geoplugin_countryCode":"US","geoplugin_countryName":"United States","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"NA","geoplugin_continentName":"North America","geoplugin_latitude":"37.3387","geoplugin_longitude":"-121.8914","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"America\/Los_Angeles","geoplugin_currencyCode":"USD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1"},"31.173.8.214":{"geoplugin_request":"31.173.8.214","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Moscow","geoplugin_region":"Moscow","geoplugin_regionCode":"MOW","geoplugin_regionName":"Moscow","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"RU","geoplugin_countryName":"Russia","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"55.7482","geoplugin_longitude":"37.6177","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"Europe\/Moscow","geoplugin_currencyCode":"RUB","geoplugin_currencySymbol":"&#1088;&#1091;&#1073;","geoplugin_currencySymbol_UTF8":"\u0440\u0443\u0431","geoplugin_currencyConverter":"73.0649"},"193.169.254.113":{"geoplugin_request":"193.169.254.113","geoplugin_status":206,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"PL","geoplugin_countryName":"Poland","geoplugin_inEU":1,"geoplugin_euVATrate":23,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"52.2394","geoplugin_longitude":"21.0362","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"Europe\/Warsaw","geoplugin_currencyCode":"PLN","geoplugin_currencySymbol":"&#122;&#322;","geoplugin_currencySymbol_UTF8":"z\u0142","geoplugin_currencyConverter":"3.8885"},"199.195.248.154":{"geoplugin_request":"199.195.248.154","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Buffalo","geoplugin_region":"New York","geoplugin_regionCode":"NY","geoplugin_regionName":"New York","geoplugin_areaCode":"","geoplugin_dmaCode":"514","geoplugin_countryCode":"US","geoplugin_countryName":"United States","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"NA","geoplugin_continentName":"North America","geoplugin_latitude":"42.8864","geoplugin_longitude":"-78.8784","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"America\/New_York","geoplugin_currencyCode":"USD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1"},"92.150.186.106":{"geoplugin_request":"92.150.186.106","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Toulon","geoplugin_region":"Provence-Alpes-C\u00f4te d'Azur","geoplugin_regionCode":"83","geoplugin_regionName":"Var","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"FR","geoplugin_countryName":"France","geoplugin_inEU":1,"geoplugin_euVATrate":20,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"43.1263","geoplugin_longitude":"5.9257","geoplugin_locationAccuracyRadius":"10","geoplugin_timezone":"Europe\/Paris","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8501"},"81.251.37.51":{"geoplugin_request":"81.251.37.51","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Elincourt-Sainte-Marguerite","geoplugin_region":"Hauts-de-France","geoplugin_regionCode":"60","geoplugin_regionName":"Oise","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"FR","geoplugin_countryName":"France","geoplugin_inEU":1,"geoplugin_euVATrate":20,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"49.5255","geoplugin_longitude":"2.8153","geoplugin_locationAccuracyRadius":"100","geoplugin_timezone":"Europe\/Paris","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8501"},"205.185.125.109":{"geoplugin_request":"205.185.125.109","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"San Jose","geoplugin_region":"California","geoplugin_regionCode":"CA","geoplugin_regionName":"California","geoplugin_areaCode":"","geoplugin_dmaCode":"807","geoplugin_countryCode":"US","geoplugin_countryName":"United States","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"NA","geoplugin_continentName":"North America","geoplugin_latitude":"37.3387","geoplugin_longitude":"-121.8914","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"America\/Los_Angeles","geoplugin_currencyCode":"USD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1"},"95.223.250.241":{"geoplugin_request":"95.223.250.241","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Lennestadt","geoplugin_region":"North Rhine-Westphalia","geoplugin_regionCode":"NW","geoplugin_regionName":"North Rhine-Westphalia","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"DE","geoplugin_countryName":"Germany","geoplugin_inEU":1,"geoplugin_euVATrate":19,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"51.1166","geoplugin_longitude":"8.0645","geoplugin_locationAccuracyRadius":"20","geoplugin_timezone":"Europe\/Berlin","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8501"},"171.236.48.66":{"geoplugin_request":"171.236.48.66","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Hanoi","geoplugin_region":"Hanoi","geoplugin_regionCode":"HN","geoplugin_regionName":"Hanoi","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"21.0313","geoplugin_longitude":"105.8516","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"Asia\/Bangkok","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.378"},"105.203.195.68":{"geoplugin_request":"105.203.195.68","geoplugin_status":206,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"EG","geoplugin_countryName":"Egypt","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AF","geoplugin_continentName":"Africa","geoplugin_latitude":"30.0355","geoplugin_longitude":"31.223","geoplugin_locationAccuracyRadius":"100","geoplugin_timezone":"Africa\/Cairo","geoplugin_currencyCode":"EGP","geoplugin_currencySymbol":"&#163;","geoplugin_currencySymbol_UTF8":"\u00a3","geoplugin_currencyConverter":"15.7003"},"154.183.77.133":{"geoplugin_request":"154.183.77.133","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Cairo","geoplugin_region":"Cairo Governorate","geoplugin_regionCode":"C","geoplugin_regionName":"Cairo Governorate","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"EG","geoplugin_countryName":"Egypt","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AF","geoplugin_continentName":"Africa","geoplugin_latitude":"30.0778","geoplugin_longitude":"31.2852","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"Africa\/Cairo","geoplugin_currencyCode":"EGP","geoplugin_currencySymbol":"&#163;","geoplugin_currencySymbol_UTF8":"\u00a3","geoplugin_currencyConverter":"15.7003"},"39.50.118.215":{"geoplugin_request":"39.50.118.215","geoplugin_status":200,"geoplugin_delay":"0ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Islamabad","geoplugin_region":"Islamabad","geoplugin_regionCode":"IS","geoplugin_regionName":"Islamabad","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"PK","geoplugin_countryName":"Pakistan","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"33.6957","geoplugin_longitude":"73.0113","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"Asia\/Karachi","geoplugin_currencyCode":"PKR","geoplugin_currencySymbol":"&#8360;","geoplugin_currencySymbol_UTF8":"\u20a8","geoplugin_currencyConverter":"164.7598"},"31.215.235.24":{"geoplugin_request":"31.215.235.24","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Al Fujairah City","geoplugin_region":"Fujairah","geoplugin_regionCode":"FU","geoplugin_regionName":"Fujairah","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"AE","geoplugin_countryName":"United Arab Emirates","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"25.1164","geoplugin_longitude":"56.3414","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"Asia\/Dubai","geoplugin_currencyCode":"AED","geoplugin_currencySymbol":"Dh","geoplugin_currencySymbol_UTF8":"Dh","geoplugin_currencyConverter":"3.6732"},"195.133.40.46":{"geoplugin_request":"195.133.40.46","geoplugin_status":206,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"CZ","geoplugin_countryName":"Czechia","geoplugin_inEU":1,"geoplugin_euVATrate":21,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"50.0848","geoplugin_longitude":"14.4112","geoplugin_locationAccuracyRadius":"100","geoplugin_timezone":"Europe\/Prague","geoplugin_currencyCode":"CZK","geoplugin_currencySymbol":"&#75;&#269;","geoplugin_currencySymbol_UTF8":"K\u010d","geoplugin_currencyConverter":"21.6022"},"142.93.105.220":{"geoplugin_request":"142.93.105.220","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Frankfurt am Main","geoplugin_region":"Hesse","geoplugin_regionCode":"HE","geoplugin_regionName":"Hesse","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"DE","geoplugin_countryName":"Germany","geoplugin_inEU":1,"geoplugin_euVATrate":19,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"50.1188","geoplugin_longitude":"8.6843","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"Europe\/Berlin","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8501"},"134.236.50.202":{"geoplugin_request":"134.236.50.202","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Ban Khok Kruat","geoplugin_region":"Nakhon Ratchasima","geoplugin_regionCode":"30","geoplugin_regionName":"Nakhon Ratchasima","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"TH","geoplugin_countryName":"Thailand","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"14.9333","geoplugin_longitude":"101.95","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"Asia\/Bangkok","geoplugin_currencyCode":"THB","geoplugin_currencySymbol":"&#3647;","geoplugin_currencySymbol_UTF8":"\u0e3f","geoplugin_currencyConverter":"33.431"},"178.130.102.173":{"geoplugin_request":"178.130.102.173","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Sanaa","geoplugin_region":"Sanaa","geoplugin_regionCode":"SN","geoplugin_regionName":"Sanaa","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"YE","geoplugin_countryName":"Yemen","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"15.3522","geoplugin_longitude":"44.2095","geoplugin_locationAccuracyRadius":"100","geoplugin_timezone":"Asia\/Aden","geoplugin_currencyCode":"YER","geoplugin_currencySymbol":"&#65020;","geoplugin_currencySymbol_UTF8":"\ufdfc","geoplugin_currencyConverter":"250.0003"},"43.231.78.78":{"geoplugin_request":"43.231.78.78","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Dhaka","geoplugin_region":"Dhaka Division","geoplugin_regionCode":"13","geoplugin_regionName":"Dhaka","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"BD","geoplugin_countryName":"Bangladesh","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"23.7272","geoplugin_longitude":"90.4093","geoplugin_locationAccuracyRadius":"500","geoplugin_timezone":"Asia\/Dhaka","geoplugin_currencyCode":"BDT","geoplugin_currencySymbol":"Tk","geoplugin_currencySymbol_UTF8":"Tk","geoplugin_currencyConverter":"84.9816"},"187.19.216.198":{"geoplugin_request":"187.19.216.198","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Campina Grande","geoplugin_region":"Para\u00edba","geoplugin_regionCode":"PB","geoplugin_regionName":"Para\u00edba","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"BR","geoplugin_countryName":"Brazil","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"SA","geoplugin_continentName":"South America","geoplugin_latitude":"-7.2782","geoplugin_longitude":"-35.9763","geoplugin_locationAccuracyRadius":"500","geoplugin_timezone":"America\/Fortaleza","geoplugin_currencyCode":"BRL","geoplugin_currencySymbol":"&#82;&#36;","geoplugin_currencySymbol_UTF8":"R$","geoplugin_currencyConverter":"5.2654"},"161.35.80.11":{"geoplugin_request":"161.35.80.11","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Amsterdam","geoplugin_region":"North Holland","geoplugin_regionCode":"NH","geoplugin_regionName":"North Holland","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"NL","geoplugin_countryName":"Netherlands","geoplugin_inEU":1,"geoplugin_euVATrate":21,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"52.352","geoplugin_longitude":"4.9392","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"Europe\/Amsterdam","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8501"},"205.185.127.25":{"geoplugin_request":"205.185.127.25","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"San Jose","geoplugin_region":"California","geoplugin_regionCode":"CA","geoplugin_regionName":"California","geoplugin_areaCode":"","geoplugin_dmaCode":"807","geoplugin_countryCode":"US","geoplugin_countryName":"United States","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"NA","geoplugin_continentName":"North America","geoplugin_latitude":"37.3387","geoplugin_longitude":"-121.8914","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"America\/Los_Angeles","geoplugin_currencyCode":"USD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1"},"113.190.245.190":{"geoplugin_request":"113.190.245.190","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Hanoi","geoplugin_region":"Hanoi","geoplugin_regionCode":"HN","geoplugin_regionName":"Hanoi","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"21.0313","geoplugin_longitude":"105.8516","geoplugin_locationAccuracyRadius":"5","geoplugin_timezone":"Asia\/Bangkok","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"22931"},"109.104.151.112":{"geoplugin_request":"109.104.151.112","geoplugin_status":206,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"AL","geoplugin_countryName":"Albania","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"41","geoplugin_longitude":"20","geoplugin_locationAccuracyRadius":"50","geoplugin_timezone":"Europe\/Tirane","geoplugin_currencyCode":"ALL","geoplugin_currencySymbol":"&#76;&#101;&#107;","geoplugin_currencySymbol_UTF8":"Lek","geoplugin_currencyConverter":"103.2407"},"181.117.202.100":{"geoplugin_request":"181.117.202.100","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Rosario","geoplugin_region":"Santa Fe","geoplugin_regionCode":"S","geoplugin_regionName":"Santa Fe","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"AR","geoplugin_countryName":"Argentina","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"SA","geoplugin_continentName":"South America","geoplugin_latitude":"-32.9511","geoplugin_longitude":"-60.6664","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"America\/Argentina\/Cordoba","geoplugin_currencyCode":"ARS","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"97.1463"},"190.77.220.51":{"geoplugin_request":"190.77.220.51","geoplugin_status":200,"geoplugin_delay":"3ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Cabudare","geoplugin_region":"Lara","geoplugin_regionCode":"K","geoplugin_regionName":"Lara","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VE","geoplugin_countryName":"Venezuela","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"SA","geoplugin_continentName":"South America","geoplugin_latitude":"10.0268","geoplugin_longitude":"-69.0914","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"America\/Caracas","geoplugin_currencyCode":"VEB","geoplugin_currencySymbol":null,"geoplugin_currencySymbol_UTF8":"","geoplugin_currencyConverter":"0"},"46.223.113.27":{"geoplugin_request":"46.223.113.27","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Geisingen","geoplugin_region":"Baden-W\u00fcrttemberg","geoplugin_regionCode":"BW","geoplugin_regionName":"Baden-W\u00fcrttemberg","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"DE","geoplugin_countryName":"Germany","geoplugin_inEU":1,"geoplugin_euVATrate":19,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"47.9205","geoplugin_longitude":"8.6503","geoplugin_locationAccuracyRadius":"20","geoplugin_timezone":"Europe\/Berlin","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8501"},"2.56.59.136":{"geoplugin_request":"2.56.59.136","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Dulles","geoplugin_region":"Virginia","geoplugin_regionCode":"VA","geoplugin_regionName":"Virginia","geoplugin_areaCode":"","geoplugin_dmaCode":"511","geoplugin_countryCode":"US","geoplugin_countryName":"United States","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"NA","geoplugin_continentName":"North America","geoplugin_latitude":"38.9876","geoplugin_longitude":"-77.4554","geoplugin_locationAccuracyRadius":"100","geoplugin_timezone":"America\/New_York","geoplugin_currencyCode":"USD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1"},"141.98.10.179":{"geoplugin_request":"141.98.10.179","geoplugin_status":206,"geoplugin_delay":"0ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"LT","geoplugin_countryName":"Lithuania","geoplugin_inEU":1,"geoplugin_euVATrate":21,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"56","geoplugin_longitude":"24","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"Europe\/Vilnius","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8501"},"161.35.91.205":{"geoplugin_request":"161.35.91.205","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Amsterdam","geoplugin_region":"North Holland","geoplugin_regionCode":"NH","geoplugin_regionName":"North Holland","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"NL","geoplugin_countryName":"Netherlands","geoplugin_inEU":1,"geoplugin_euVATrate":21,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"52.352","geoplugin_longitude":"4.9392","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"Europe\/Amsterdam","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8501"},"92.52.132.163":{"geoplugin_request":"92.52.132.163","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Rivne","geoplugin_region":"Rivnenska Oblast","geoplugin_regionCode":"56","geoplugin_regionName":"Rivnenska Oblast","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"UA","geoplugin_countryName":"Ukraine","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"50.6223","geoplugin_longitude":"26.2396","geoplugin_locationAccuracyRadius":"5","geoplugin_timezone":"Europe\/Kiev","geoplugin_currencyCode":"UAH","geoplugin_currencySymbol":"&#8372;","geoplugin_currencySymbol_UTF8":"\u20b4","geoplugin_currencyConverter":"26.8193"},"167.99.118.199":{"geoplugin_request":"167.99.118.199","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Clifton","geoplugin_region":"New Jersey","geoplugin_regionCode":"NJ","geoplugin_regionName":"New Jersey","geoplugin_areaCode":"","geoplugin_dmaCode":"501","geoplugin_countryCode":"US","geoplugin_countryName":"United States","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"NA","geoplugin_continentName":"North America","geoplugin_latitude":"40.8364","geoplugin_longitude":"-74.1403","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"America\/New_York","geoplugin_currencyCode":"USD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1"},"103.99.217.54":{"geoplugin_request":"103.99.217.54","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Salem","geoplugin_region":"Tamil Nadu","geoplugin_regionCode":"TN","geoplugin_regionName":"Tamil Nadu","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"IN","geoplugin_countryName":"India","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"11.6538","geoplugin_longitude":"78.1554","geoplugin_locationAccuracyRadius":"100","geoplugin_timezone":"Asia\/Kolkata","geoplugin_currencyCode":"INR","geoplugin_currencySymbol":"&#8377;","geoplugin_currencySymbol_UTF8":"\u20b9","geoplugin_currencyConverter":"74.2105"},"175.29.122.147":{"geoplugin_request":"175.29.122.147","geoplugin_status":206,"geoplugin_delay":"0ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"BD","geoplugin_countryName":"Bangladesh","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"23.7018","geoplugin_longitude":"90.3742","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"Asia\/Dhaka","geoplugin_currencyCode":"BDT","geoplugin_currencySymbol":"Tk","geoplugin_currencySymbol_UTF8":"Tk","geoplugin_currencyConverter":"84.9816"},"93.84.85.138":{"geoplugin_request":"93.84.85.138","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Minsk","geoplugin_region":"Minsk City","geoplugin_regionCode":"HM","geoplugin_regionName":"Minsk City","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"BY","geoplugin_countryName":"Belarus","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"53.9","geoplugin_longitude":"27.5667","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"Europe\/Minsk","geoplugin_currencyCode":"BYN","geoplugin_currencySymbol":"&#66;&#114;","geoplugin_currencySymbol_UTF8":"Br","geoplugin_currencyConverter":"2.5218"},"67.6.49.83":{"geoplugin_request":"67.6.49.83","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Troy","geoplugin_region":"Missouri","geoplugin_regionCode":"MO","geoplugin_regionName":"Missouri","geoplugin_areaCode":"","geoplugin_dmaCode":"609","geoplugin_countryCode":"US","geoplugin_countryName":"United States","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"NA","geoplugin_continentName":"North America","geoplugin_latitude":"39.0012","geoplugin_longitude":"-90.9624","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"America\/Chicago","geoplugin_currencyCode":"USD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1"},"221.127.63.17":{"geoplugin_request":"221.127.63.17","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Ma On Shan Tsuen","geoplugin_region":"Sha Tin","geoplugin_regionCode":"NST","geoplugin_regionName":"Sha Tin","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"HK","geoplugin_countryName":"Hong Kong","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"22.4","geoplugin_longitude":"114.2333","geoplugin_locationAccuracyRadius":"5","geoplugin_timezone":"Asia\/Hong_Kong","geoplugin_currencyCode":"HKD","geoplugin_currencySymbol":"&#20803;","geoplugin_currencySymbol_UTF8":"\u5143","geoplugin_currencyConverter":"7.7799"},"101.93.221.17":{"geoplugin_request":"101.93.221.17","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Shanghai","geoplugin_region":"Shanghai","geoplugin_regionCode":"SH","geoplugin_regionName":"Shanghai","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"CN","geoplugin_countryName":"China","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"31.0456","geoplugin_longitude":"121.3997","geoplugin_locationAccuracyRadius":"50","geoplugin_timezone":"Asia\/Shanghai","geoplugin_currencyCode":"CNY","geoplugin_currencySymbol":"&#20803;","geoplugin_currencySymbol_UTF8":"\u5143","geoplugin_currencyConverter":"6.4836"},"183.238.10.198":{"geoplugin_request":"183.238.10.198","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Shenzhen","geoplugin_region":"Guangdong","geoplugin_regionCode":"GD","geoplugin_regionName":"Guangdong","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"CN","geoplugin_countryName":"China","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"22.5333","geoplugin_longitude":"114.1333","geoplugin_locationAccuracyRadius":"500","geoplugin_timezone":"Asia\/Shanghai","geoplugin_currencyCode":"CNY","geoplugin_currencySymbol":"&#20803;","geoplugin_currencySymbol_UTF8":"\u5143","geoplugin_currencyConverter":"6.4836"},"50.92.91.238":{"geoplugin_request":"50.92.91.238","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Courtenay","geoplugin_region":"British Columbia","geoplugin_regionCode":"BC","geoplugin_regionName":"British Columbia","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"CA","geoplugin_countryName":"Canada","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"NA","geoplugin_continentName":"North America","geoplugin_latitude":"49.6585","geoplugin_longitude":"-124.9835","geoplugin_locationAccuracyRadius":"5","geoplugin_timezone":"America\/Vancouver","geoplugin_currencyCode":"CAD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1.2555"},"200.232.245.106":{"geoplugin_request":"200.232.245.106","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Campinas","geoplugin_region":"Sao Paulo","geoplugin_regionCode":"SP","geoplugin_regionName":"Sao Paulo","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"BR","geoplugin_countryName":"Brazil","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"SA","geoplugin_continentName":"South America","geoplugin_latitude":"-22.897","geoplugin_longitude":"-47.0444","geoplugin_locationAccuracyRadius":"20","geoplugin_timezone":"America\/Sao_Paulo","geoplugin_currencyCode":"BRL","geoplugin_currencySymbol":"&#82;&#36;","geoplugin_currencySymbol_UTF8":"R$","geoplugin_currencyConverter":"5.2654"},"124.121.155.72":{"geoplugin_request":"124.121.155.72","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Bangkok","geoplugin_region":"Bangkok","geoplugin_regionCode":"10","geoplugin_regionName":"Bangkok","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"TH","geoplugin_countryName":"Thailand","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"13.7333","geoplugin_longitude":"100.5333","geoplugin_locationAccuracyRadius":"20","geoplugin_timezone":"Asia\/Bangkok","geoplugin_currencyCode":"THB","geoplugin_currencySymbol":"&#3647;","geoplugin_currencySymbol_UTF8":"\u0e3f","geoplugin_currencyConverter":"33.431"},"95.88.251.81":{"geoplugin_request":"95.88.251.81","geoplugin_status":200,"geoplugin_delay":"3ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Speyer","geoplugin_region":"Rheinland-Pfalz","geoplugin_regionCode":"RP","geoplugin_regionName":"Rheinland-Pfalz","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"DE","geoplugin_countryName":"Germany","geoplugin_inEU":1,"geoplugin_euVATrate":19,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"49.3226","geoplugin_longitude":"8.4281","geoplugin_locationAccuracyRadius":"10","geoplugin_timezone":"Europe\/Berlin","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8501"},"114.107.238.204":{"geoplugin_request":"114.107.238.204","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Liqiao","geoplugin_region":"Anhui","geoplugin_regionCode":"AH","geoplugin_regionName":"Anhui","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"CN","geoplugin_countryName":"China","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"31.6287","geoplugin_longitude":"118.5","geoplugin_locationAccuracyRadius":"500","geoplugin_timezone":"Asia\/Shanghai","geoplugin_currencyCode":"CNY","geoplugin_currencySymbol":"&#20803;","geoplugin_currencySymbol_UTF8":"\u5143","geoplugin_currencyConverter":"6.4836"},"73.46.205.33":{"geoplugin_request":"73.46.205.33","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Miami","geoplugin_region":"Florida","geoplugin_regionCode":"FL","geoplugin_regionName":"Florida","geoplugin_areaCode":"","geoplugin_dmaCode":"528","geoplugin_countryCode":"US","geoplugin_countryName":"United States","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"NA","geoplugin_continentName":"North America","geoplugin_latitude":"25.8153","geoplugin_longitude":"-80.3577","geoplugin_locationAccuracyRadius":"10","geoplugin_timezone":"America\/New_York","geoplugin_currencyCode":"USD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1"},"58.8.119.197":{"geoplugin_request":"58.8.119.197","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Chiang Mai","geoplugin_region":"Chiang Mai","geoplugin_regionCode":"50","geoplugin_regionName":"Chiang Mai","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"TH","geoplugin_countryName":"Thailand","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"18.7904","geoplugin_longitude":"98.9847","geoplugin_locationAccuracyRadius":"50","geoplugin_timezone":"Asia\/Bangkok","geoplugin_currencyCode":"THB","geoplugin_currencySymbol":"&#3647;","geoplugin_currencySymbol_UTF8":"\u0e3f","geoplugin_currencyConverter":"33.4504"},"114.242.200.61":{"geoplugin_request":"114.242.200.61","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Beijing","geoplugin_region":"Beijing","geoplugin_regionCode":"BJ","geoplugin_regionName":"Beijing","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"CN","geoplugin_countryName":"China","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"39.9288","geoplugin_longitude":"116.3889","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"Asia\/Shanghai","geoplugin_currencyCode":"CNY","geoplugin_currencySymbol":"&#20803;","geoplugin_currencySymbol_UTF8":"\u5143","geoplugin_currencyConverter":"6.4836"},"73.52.31.134":{"geoplugin_request":"73.52.31.134","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Scranton","geoplugin_region":"Pennsylvania","geoplugin_regionCode":"PA","geoplugin_regionName":"Pennsylvania","geoplugin_areaCode":"","geoplugin_dmaCode":"577","geoplugin_countryCode":"US","geoplugin_countryName":"United States","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"NA","geoplugin_continentName":"North America","geoplugin_latitude":"41.39","geoplugin_longitude":"-75.6636","geoplugin_locationAccuracyRadius":"10","geoplugin_timezone":"America\/New_York","geoplugin_currencyCode":"USD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1"},"193.169.254.138":{"geoplugin_request":"193.169.254.138","geoplugin_status":206,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"PL","geoplugin_countryName":"Poland","geoplugin_inEU":1,"geoplugin_euVATrate":23,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"52.2394","geoplugin_longitude":"21.0362","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"Europe\/Warsaw","geoplugin_currencyCode":"PLN","geoplugin_currencySymbol":"&#122;&#322;","geoplugin_currencySymbol_UTF8":"z\u0142","geoplugin_currencyConverter":"3.8895"},"75.81.153.157":{"geoplugin_request":"75.81.153.157","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Bedford","geoplugin_region":"Texas","geoplugin_regionCode":"TX","geoplugin_regionName":"Texas","geoplugin_areaCode":"","geoplugin_dmaCode":"623","geoplugin_countryCode":"US","geoplugin_countryName":"United States","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"NA","geoplugin_continentName":"North America","geoplugin_latitude":"32.8545","geoplugin_longitude":"-97.1359","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"America\/Chicago","geoplugin_currencyCode":"USD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1"},"117.247.86.228":{"geoplugin_request":"117.247.86.228","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Kolhapur","geoplugin_region":"Maharashtra","geoplugin_regionCode":"MH","geoplugin_regionName":"Maharashtra","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"IN","geoplugin_countryName":"India","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"16.6956","geoplugin_longitude":"74.2317","geoplugin_locationAccuracyRadius":"20","geoplugin_timezone":"Asia\/Kolkata","geoplugin_currencyCode":"INR","geoplugin_currencySymbol":"&#8377;","geoplugin_currencySymbol_UTF8":"\u20b9","geoplugin_currencyConverter":"74.2105"},"209.141.56.41":{"geoplugin_request":"209.141.56.41","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Las Vegas","geoplugin_region":"Nevada","geoplugin_regionCode":"NV","geoplugin_regionName":"Nevada","geoplugin_areaCode":"","geoplugin_dmaCode":"839","geoplugin_countryCode":"US","geoplugin_countryName":"United States","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"NA","geoplugin_continentName":"North America","geoplugin_latitude":"36.1685","geoplugin_longitude":"-115.1164","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"America\/Los_Angeles","geoplugin_currencyCode":"USD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1"},"210.14.108.60":{"geoplugin_request":"210.14.108.60","geoplugin_status":206,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"MM","geoplugin_countryName":"Myanmar","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"22","geoplugin_longitude":"98","geoplugin_locationAccuracyRadius":"50","geoplugin_timezone":"Asia\/Yangon","geoplugin_currencyCode":"MMK","geoplugin_currencySymbol":null,"geoplugin_currencySymbol_UTF8":"","geoplugin_currencyConverter":"1651.8632"},"180.244.128.244":{"geoplugin_request":"180.244.128.244","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Depok","geoplugin_region":"West Java","geoplugin_regionCode":"JB","geoplugin_regionName":"West Java","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"ID","geoplugin_countryName":"Indonesia","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"-6.3457","geoplugin_longitude":"106.5011","geoplugin_locationAccuracyRadius":"50","geoplugin_timezone":"Asia\/Jakarta","geoplugin_currencyCode":"IDR","geoplugin_currencySymbol":"&#82;&#112;","geoplugin_currencySymbol_UTF8":"Rp","geoplugin_currencyConverter":"14444.5"},"122.180.235.1":{"geoplugin_request":"122.180.235.1","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Gurgaon","geoplugin_region":"Haryana","geoplugin_regionCode":"HR","geoplugin_regionName":"Haryana","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"IN","geoplugin_countryName":"India","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"28.4597","geoplugin_longitude":"77.0282","geoplugin_locationAccuracyRadius":"20","geoplugin_timezone":"Asia\/Kolkata","geoplugin_currencyCode":"INR","geoplugin_currencySymbol":"&#8377;","geoplugin_currencySymbol_UTF8":"\u20b9","geoplugin_currencyConverter":"74.2105"},"159.65.169.139":{"geoplugin_request":"159.65.169.139","geoplugin_status":200,"geoplugin_delay":"0ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Clifton","geoplugin_region":"New Jersey","geoplugin_regionCode":"NJ","geoplugin_regionName":"New Jersey","geoplugin_areaCode":"","geoplugin_dmaCode":"501","geoplugin_countryCode":"US","geoplugin_countryName":"United States","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"NA","geoplugin_continentName":"North America","geoplugin_latitude":"40.8364","geoplugin_longitude":"-74.1403","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"America\/New_York","geoplugin_currencyCode":"USD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1"},"138.186.117.96":{"geoplugin_request":"138.186.117.96","geoplugin_status":200,"geoplugin_delay":"0ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Lages","geoplugin_region":"Santa Catarina","geoplugin_regionCode":"SC","geoplugin_regionName":"Santa Catarina","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"BR","geoplugin_countryName":"Brazil","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"SA","geoplugin_continentName":"South America","geoplugin_latitude":"-27.9449","geoplugin_longitude":"-50.3525","geoplugin_locationAccuracyRadius":"100","geoplugin_timezone":"America\/Sao_Paulo","geoplugin_currencyCode":"BRL","geoplugin_currencySymbol":"&#82;&#36;","geoplugin_currencySymbol_UTF8":"R$","geoplugin_currencyConverter":"5.2654"},"65.49.20.66":{"geoplugin_request":"65.49.20.66","geoplugin_status":206,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"US","geoplugin_countryName":"United States","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"NA","geoplugin_continentName":"North America","geoplugin_latitude":"37.751","geoplugin_longitude":"-97.822","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"America\/Chicago","geoplugin_currencyCode":"USD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1"},"14.185.111.136":{"geoplugin_request":"14.185.111.136","geoplugin_status":206,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"16.0016","geoplugin_longitude":"105.9986","geoplugin_locationAccuracyRadius":"50","geoplugin_timezone":"Asia\/Vientiane","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.38"},"42.119.152.69":{"geoplugin_request":"42.119.152.69","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Ho Chi Minh City","geoplugin_region":"Ho Chi Minh","geoplugin_regionCode":"SG","geoplugin_regionName":"Ho Chi Minh","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"10.8142","geoplugin_longitude":"106.6438","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"Asia\/Ho_Chi_Minh","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.38"},"27.69.244.53":{"geoplugin_request":"27.69.244.53","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Da Nang","geoplugin_region":"Da Nang","geoplugin_regionCode":"DN","geoplugin_regionName":"Da Nang","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"16.0685","geoplugin_longitude":"108.2215","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"Asia\/Ho_Chi_Minh","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.38"},"171.226.0.216":{"geoplugin_request":"171.226.0.216","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Ho Chi Minh City","geoplugin_region":"Ho Chi Minh","geoplugin_regionCode":"SG","geoplugin_regionName":"Ho Chi Minh","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"10.8142","geoplugin_longitude":"106.6438","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"Asia\/Ho_Chi_Minh","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.38"},"116.110.77.159":{"geoplugin_request":"116.110.77.159","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Hoi An","geoplugin_region":"Tinh Quang Nam","geoplugin_regionCode":"27","geoplugin_regionName":"Tinh Quang Nam","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"15.8794","geoplugin_longitude":"108.335","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"Asia\/Ho_Chi_Minh","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.38"},"171.251.26.14":{"geoplugin_request":"171.251.26.14","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Da Nang","geoplugin_region":"Da Nang","geoplugin_regionCode":"DN","geoplugin_regionName":"Da Nang","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"16.0685","geoplugin_longitude":"108.2215","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"Asia\/Ho_Chi_Minh","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.378"},"116.105.217.153":{"geoplugin_request":"116.105.217.153","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Dien Ban","geoplugin_region":"Tinh Quang Nam","geoplugin_regionCode":"27","geoplugin_regionName":"Tinh Quang Nam","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"15.8858","geoplugin_longitude":"108.2569","geoplugin_locationAccuracyRadius":"20","geoplugin_timezone":"Asia\/Ho_Chi_Minh","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.38"},"116.110.120.106":{"geoplugin_request":"116.110.120.106","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Da Nang","geoplugin_region":"Da Nang","geoplugin_regionCode":"DN","geoplugin_regionName":"Da Nang","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"16.0685","geoplugin_longitude":"108.2215","geoplugin_locationAccuracyRadius":"100","geoplugin_timezone":"Asia\/Ho_Chi_Minh","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.38"},"103.251.133.134":{"geoplugin_request":"103.251.133.134","geoplugin_status":206,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"PW","geoplugin_countryName":"Palau","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"OC","geoplugin_continentName":"Oceania","geoplugin_latitude":"7.4968","geoplugin_longitude":"134.6232","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"Pacific\/Palau","geoplugin_currencyCode":"USD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1"},"103.251.133.182":{"geoplugin_request":"103.251.133.182","geoplugin_status":206,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"PW","geoplugin_countryName":"Palau","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"OC","geoplugin_continentName":"Oceania","geoplugin_latitude":"7.4968","geoplugin_longitude":"134.6232","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"Pacific\/Palau","geoplugin_currencyCode":"USD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1"},"103.251.133.177":{"geoplugin_request":"103.251.133.177","geoplugin_status":206,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"PW","geoplugin_countryName":"Palau","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"OC","geoplugin_continentName":"Oceania","geoplugin_latitude":"7.4968","geoplugin_longitude":"134.6232","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"Pacific\/Palau","geoplugin_currencyCode":"USD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1"},"103.251.133.163":{"geoplugin_request":"103.251.133.163","geoplugin_status":206,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"PW","geoplugin_countryName":"Palau","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"OC","geoplugin_continentName":"Oceania","geoplugin_latitude":"7.4968","geoplugin_longitude":"134.6232","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"Pacific\/Palau","geoplugin_currencyCode":"USD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1"},"103.251.133.135":{"geoplugin_request":"103.251.133.135","geoplugin_status":206,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"PW","geoplugin_countryName":"Palau","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"OC","geoplugin_continentName":"Oceania","geoplugin_latitude":"7.4968","geoplugin_longitude":"134.6232","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"Pacific\/Palau","geoplugin_currencyCode":"USD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1"},"45.125.65.88":{"geoplugin_request":"45.125.65.88","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Kaunas","geoplugin_region":"Kaunas","geoplugin_regionCode":"16","geoplugin_regionName":"Kaunas","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"LT","geoplugin_countryName":"Lithuania","geoplugin_inEU":1,"geoplugin_euVATrate":21,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"54.9","geoplugin_longitude":"23.9","geoplugin_locationAccuracyRadius":"50","geoplugin_timezone":"Europe\/Vilnius","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8501"},"123.25.55.236":{"geoplugin_request":"123.25.55.236","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Hai Duong","geoplugin_region":"Tinh Hai Duong","geoplugin_regionCode":"61","geoplugin_regionName":"Tinh Hai Duong","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"20.9369","geoplugin_longitude":"106.3218","geoplugin_locationAccuracyRadius":"100","geoplugin_timezone":"Asia\/Bangkok","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.38"},"156.221.56.117":{"geoplugin_request":"156.221.56.117","geoplugin_status":200,"geoplugin_delay":"3ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Port Said","geoplugin_region":"Port Said","geoplugin_regionCode":"PTS","geoplugin_regionName":"Port Said","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"EG","geoplugin_countryName":"Egypt","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AF","geoplugin_continentName":"Africa","geoplugin_latitude":"31.2565","geoplugin_longitude":"32.2841","geoplugin_locationAccuracyRadius":"100","geoplugin_timezone":"Africa\/Cairo","geoplugin_currencyCode":"EGP","geoplugin_currencySymbol":"&#163;","geoplugin_currencySymbol_UTF8":"\u00a3","geoplugin_currencyConverter":"15.7003"},"185.239.196.220":{"geoplugin_request":"185.239.196.220","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Lampertsloch","geoplugin_region":"Grand Est","geoplugin_regionCode":"67","geoplugin_regionName":"Bas-Rhin","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"FR","geoplugin_countryName":"France","geoplugin_inEU":1,"geoplugin_euVATrate":20,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"48.9594","geoplugin_longitude":"7.8166","geoplugin_locationAccuracyRadius":"10","geoplugin_timezone":"Europe\/Paris","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8501"},"14.242.104.108":{"geoplugin_request":"14.242.104.108","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Ho Chi Minh City","geoplugin_region":"Ho Chi Minh","geoplugin_regionCode":"SG","geoplugin_regionName":"Ho Chi Minh","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"10.8142","geoplugin_longitude":"106.6438","geoplugin_locationAccuracyRadius":"100","geoplugin_timezone":"Asia\/Ho_Chi_Minh","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"22931"},"157.45.164.71":{"geoplugin_request":"157.45.164.71","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Bengaluru","geoplugin_region":"Karnataka","geoplugin_regionCode":"KA","geoplugin_regionName":"Karnataka","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"IN","geoplugin_countryName":"India","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"12.9719","geoplugin_longitude":"77.5937","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"Asia\/Kolkata","geoplugin_currencyCode":"INR","geoplugin_currencySymbol":"&#8377;","geoplugin_currencySymbol_UTF8":"\u20b9","geoplugin_currencyConverter":"74.2105"},"27.69.249.201":{"geoplugin_request":"27.69.249.201","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Son Tra","geoplugin_region":"Qu\u1ea3ng Ng\u00e3i Province","geoplugin_regionCode":"29","geoplugin_regionName":"Qu\u1ea3ng Ng\u00e3i Province","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"15.3833","geoplugin_longitude":"108.7833","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"Asia\/Ho_Chi_Minh","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.378"},"116.110.124.162":{"geoplugin_request":"116.110.124.162","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Da Nang","geoplugin_region":"Da Nang","geoplugin_regionCode":"DN","geoplugin_regionName":"Da Nang","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"16.0685","geoplugin_longitude":"108.2215","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"Asia\/Ho_Chi_Minh","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"22931"},"171.240.200.32":{"geoplugin_request":"171.240.200.32","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Ho Chi Minh City","geoplugin_region":"Ho Chi Minh","geoplugin_regionCode":"SG","geoplugin_regionName":"Ho Chi Minh","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"10.8142","geoplugin_longitude":"106.6438","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"Asia\/Ho_Chi_Minh","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"22931"},"103.132.52.190":{"geoplugin_request":"103.132.52.190","geoplugin_status":206,"geoplugin_delay":"3ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"ID","geoplugin_countryName":"Indonesia","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"-6.1728","geoplugin_longitude":"106.8272","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"Asia\/Jakarta","geoplugin_currencyCode":"IDR","geoplugin_currencySymbol":"&#82;&#112;","geoplugin_currencySymbol_UTF8":"Rp","geoplugin_currencyConverter":"14444.5"},"31.162.161.156":{"geoplugin_request":"31.162.161.156","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Uray","geoplugin_region":"Khanty-Mansia","geoplugin_regionCode":"KHM","geoplugin_regionName":"Khanty-Mansia","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"RU","geoplugin_countryName":"Russia","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"60.126","geoplugin_longitude":"64.7721","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"Asia\/Yekaterinburg","geoplugin_currencyCode":"RUB","geoplugin_currencySymbol":"&#1088;&#1091;&#1073;","geoplugin_currencySymbol_UTF8":"\u0440\u0443\u0431","geoplugin_currencyConverter":"73.0649"},"103.127.165.83":{"geoplugin_request":"103.127.165.83","geoplugin_status":200,"geoplugin_delay":"0ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Pune","geoplugin_region":"Maharashtra","geoplugin_regionCode":"MH","geoplugin_regionName":"Maharashtra","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"IN","geoplugin_countryName":"India","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"18.5196","geoplugin_longitude":"73.8554","geoplugin_locationAccuracyRadius":"20","geoplugin_timezone":"Asia\/Kolkata","geoplugin_currencyCode":"INR","geoplugin_currencySymbol":"&#8377;","geoplugin_currencySymbol_UTF8":"\u20b9","geoplugin_currencyConverter":"74.2105"},"180.245.126.203":{"geoplugin_request":"180.245.126.203","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Sumedang","geoplugin_region":"West Java","geoplugin_regionCode":"JB","geoplugin_regionName":"West Java","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"ID","geoplugin_countryName":"Indonesia","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"-6.8576","geoplugin_longitude":"107.9127","geoplugin_locationAccuracyRadius":"50","geoplugin_timezone":"Asia\/Jakarta","geoplugin_currencyCode":"IDR","geoplugin_currencySymbol":"&#82;&#112;","geoplugin_currencySymbol_UTF8":"Rp","geoplugin_currencyConverter":"14444.5"},"122.171.202.248":{"geoplugin_request":"122.171.202.248","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Bengaluru","geoplugin_region":"Karnataka","geoplugin_regionCode":"KA","geoplugin_regionName":"Karnataka","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"IN","geoplugin_countryName":"India","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"12.9719","geoplugin_longitude":"77.5937","geoplugin_locationAccuracyRadius":"100","geoplugin_timezone":"Asia\/Kolkata","geoplugin_currencyCode":"INR","geoplugin_currencySymbol":"&#8377;","geoplugin_currencySymbol_UTF8":"\u20b9","geoplugin_currencyConverter":"74.2421"},"36.73.35.162":{"geoplugin_request":"36.73.35.162","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Purwokerto","geoplugin_region":"Central Java","geoplugin_regionCode":"JT","geoplugin_regionName":"Central Java","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"ID","geoplugin_countryName":"Indonesia","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"-7.4214","geoplugin_longitude":"109.2344","geoplugin_locationAccuracyRadius":"20","geoplugin_timezone":"Asia\/Jakarta","geoplugin_currencyCode":"IDR","geoplugin_currencySymbol":"&#82;&#112;","geoplugin_currencySymbol_UTF8":"Rp","geoplugin_currencyConverter":"14444.5"},"182.53.234.146":{"geoplugin_request":"182.53.234.146","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Phrae","geoplugin_region":"Phrae","geoplugin_regionCode":"54","geoplugin_regionName":"Phrae","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"TH","geoplugin_countryName":"Thailand","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"18.15","geoplugin_longitude":"100.1333","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"Asia\/Bangkok","geoplugin_currencyCode":"THB","geoplugin_currencySymbol":"&#3647;","geoplugin_currencySymbol_UTF8":"\u0e3f","geoplugin_currencyConverter":"33.431"},"223.206.221.180":{"geoplugin_request":"223.206.221.180","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Khon Kaen","geoplugin_region":"Khon Kaen","geoplugin_regionCode":"40","geoplugin_regionName":"Khon Kaen","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"TH","geoplugin_countryName":"Thailand","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"16.2931","geoplugin_longitude":"102.6157","geoplugin_locationAccuracyRadius":"100","geoplugin_timezone":"Asia\/Bangkok","geoplugin_currencyCode":"THB","geoplugin_currencySymbol":"&#3647;","geoplugin_currencySymbol_UTF8":"\u0e3f","geoplugin_currencyConverter":"33.431"},"179.43.175.105":{"geoplugin_request":"179.43.175.105","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Zurich","geoplugin_region":"Zurich","geoplugin_regionCode":"ZH","geoplugin_regionName":"Zurich","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"CH","geoplugin_countryName":"Switzerland","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"47.3667","geoplugin_longitude":"8.55","geoplugin_locationAccuracyRadius":"50","geoplugin_timezone":"Europe\/Zurich","geoplugin_currencyCode":"CHF","geoplugin_currencySymbol":"&#67;&#72;&#70;","geoplugin_currencySymbol_UTF8":"CHF","geoplugin_currencyConverter":"0.9145"},"203.159.80.76":{"geoplugin_request":"203.159.80.76","geoplugin_status":206,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"NL","geoplugin_countryName":"Netherlands","geoplugin_inEU":1,"geoplugin_euVATrate":21,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"52.3824","geoplugin_longitude":"4.8995","geoplugin_locationAccuracyRadius":"100","geoplugin_timezone":"Europe\/Amsterdam","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8501"},"79.7.234.144":{"geoplugin_request":"79.7.234.144","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Albano Laziale","geoplugin_region":"Latium","geoplugin_regionCode":"RM","geoplugin_regionName":"Rome","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"IT","geoplugin_countryName":"Italy","geoplugin_inEU":1,"geoplugin_euVATrate":22,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"41.7312","geoplugin_longitude":"12.6517","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"Europe\/Rome","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8501"},"86.185.183.185":{"geoplugin_request":"86.185.183.185","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"North Walsham","geoplugin_region":"England","geoplugin_regionCode":"NFK","geoplugin_regionName":"Norfolk","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"GB","geoplugin_countryName":"United Kingdom","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"52.8499","geoplugin_longitude":"1.3547","geoplugin_locationAccuracyRadius":"10","geoplugin_timezone":"Europe\/London","geoplugin_currencyCode":"GBP","geoplugin_currencySymbol":"&#163;","geoplugin_currencySymbol_UTF8":"\u00a3","geoplugin_currencyConverter":"0.7206"},"47.208.249.199":{"geoplugin_request":"47.208.249.199","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Auburn","geoplugin_region":"California","geoplugin_regionCode":"CA","geoplugin_regionName":"California","geoplugin_areaCode":"","geoplugin_dmaCode":"862","geoplugin_countryCode":"US","geoplugin_countryName":"United States","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"NA","geoplugin_continentName":"North America","geoplugin_latitude":"38.9838","geoplugin_longitude":"-121.102","geoplugin_locationAccuracyRadius":"20","geoplugin_timezone":"America\/Los_Angeles","geoplugin_currencyCode":"USD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1"},"78.190.72.2":{"geoplugin_request":"78.190.72.2","geoplugin_status":200,"geoplugin_delay":"0ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Adana","geoplugin_region":"Adana","geoplugin_regionCode":"01","geoplugin_regionName":"Adana","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"TR","geoplugin_countryName":"Turkey","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"37.0695","geoplugin_longitude":"35.0907","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"Europe\/Istanbul","geoplugin_currencyCode":"TRY","geoplugin_currencySymbol":"&#89;&#84;&#76;","geoplugin_currencySymbol_UTF8":"YTL","geoplugin_currencyConverter":"8.628"},"188.240.208.176":{"geoplugin_request":"188.240.208.176","geoplugin_status":206,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"RO","geoplugin_countryName":"Romania","geoplugin_inEU":1,"geoplugin_euVATrate":19,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"45.9968","geoplugin_longitude":"24.997","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"Europe\/Bucharest","geoplugin_currencyCode":"RON","geoplugin_currencySymbol":"&#108;&#101;&#105;","geoplugin_currencySymbol_UTF8":"lei","geoplugin_currencyConverter":"4.1778"},"176.111.173.212":{"geoplugin_request":"176.111.173.212","geoplugin_status":206,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"EE","geoplugin_countryName":"Estonia","geoplugin_inEU":1,"geoplugin_euVATrate":20,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"59","geoplugin_longitude":"26","geoplugin_locationAccuracyRadius":"100","geoplugin_timezone":"Europe\/Tallinn","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8501"},"157.230.116.129":{"geoplugin_request":"157.230.116.129","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Frankfurt am Main","geoplugin_region":"Hesse","geoplugin_regionCode":"HE","geoplugin_regionName":"Hesse","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"DE","geoplugin_countryName":"Germany","geoplugin_inEU":1,"geoplugin_euVATrate":19,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"50.1188","geoplugin_longitude":"8.6843","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"Europe\/Berlin","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8501"},"60.53.110.143":{"geoplugin_request":"60.53.110.143","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Kuala Lumpur","geoplugin_region":"Kuala Lumpur","geoplugin_regionCode":"14","geoplugin_regionName":"Kuala Lumpur","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"MY","geoplugin_countryName":"Malaysia","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"3.1013","geoplugin_longitude":"101.6915","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"Asia\/Kuala_Lumpur","geoplugin_currencyCode":"MYR","geoplugin_currencySymbol":"&#82;&#77;","geoplugin_currencySymbol_UTF8":"RM","geoplugin_currencyConverter":"4.219"},"46.42.1.156":{"geoplugin_request":"46.42.1.156","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Kostroma","geoplugin_region":"Kostroma Oblast","geoplugin_regionCode":"KOS","geoplugin_regionName":"Kostroma Oblast","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"RU","geoplugin_countryName":"Russia","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"57.7708","geoplugin_longitude":"40.9344","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"Europe\/Moscow","geoplugin_currencyCode":"RUB","geoplugin_currencySymbol":"&#1088;&#1091;&#1073;","geoplugin_currencySymbol_UTF8":"\u0440\u0443\u0431","geoplugin_currencyConverter":"73.0649"},"116.110.84.61":{"geoplugin_request":"116.110.84.61","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Da Nang","geoplugin_region":"Da Nang","geoplugin_regionCode":"DN","geoplugin_regionName":"Da Nang","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"16.0685","geoplugin_longitude":"108.2215","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"Asia\/Ho_Chi_Minh","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.38"},"171.251.26.142":{"geoplugin_request":"171.251.26.142","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Da Nang","geoplugin_region":"Da Nang","geoplugin_regionCode":"DN","geoplugin_regionName":"Da Nang","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"16.0685","geoplugin_longitude":"108.2215","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"Asia\/Ho_Chi_Minh","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.38"},"171.240.199.246":{"geoplugin_request":"171.240.199.246","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Ho Chi Minh City","geoplugin_region":"Ho Chi Minh","geoplugin_regionCode":"SG","geoplugin_regionName":"Ho Chi Minh","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"10.8142","geoplugin_longitude":"106.6438","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"Asia\/Ho_Chi_Minh","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.38"},"116.110.72.178":{"geoplugin_request":"116.110.72.178","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Da Nang","geoplugin_region":"Da Nang","geoplugin_regionCode":"DN","geoplugin_regionName":"Da Nang","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"16.0685","geoplugin_longitude":"108.2215","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"Asia\/Ho_Chi_Minh","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"22931"},"116.110.10.75":{"geoplugin_request":"116.110.10.75","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Da Nang","geoplugin_region":"Da Nang","geoplugin_regionCode":"DN","geoplugin_regionName":"Da Nang","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"16.0685","geoplugin_longitude":"108.2215","geoplugin_locationAccuracyRadius":"20","geoplugin_timezone":"Asia\/Ho_Chi_Minh","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.38"},"72.27.85.5":{"geoplugin_request":"72.27.85.5","geoplugin_status":200,"geoplugin_delay":"0ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Falmouth","geoplugin_region":"Trelawny","geoplugin_regionCode":"07","geoplugin_regionName":"Trelawny","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"JM","geoplugin_countryName":"Jamaica","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"NA","geoplugin_continentName":"North America","geoplugin_latitude":"18.5","geoplugin_longitude":"-77.65","geoplugin_locationAccuracyRadius":"50","geoplugin_timezone":"America\/Jamaica","geoplugin_currencyCode":"JMD","geoplugin_currencySymbol":"&#74;&#36;","geoplugin_currencySymbol_UTF8":"J$","geoplugin_currencyConverter":"154.9699"},"195.133.40.226":{"geoplugin_request":"195.133.40.226","geoplugin_status":206,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"CZ","geoplugin_countryName":"Czechia","geoplugin_inEU":1,"geoplugin_euVATrate":21,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"50.0848","geoplugin_longitude":"14.4112","geoplugin_locationAccuracyRadius":"100","geoplugin_timezone":"Europe\/Prague","geoplugin_currencyCode":"CZK","geoplugin_currencySymbol":"&#75;&#269;","geoplugin_currencySymbol_UTF8":"K\u010d","geoplugin_currencyConverter":"21.6022"},"187.79.242.249":{"geoplugin_request":"187.79.242.249","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Juazeiro do Norte","geoplugin_region":"Ceara","geoplugin_regionCode":"CE","geoplugin_regionName":"Ceara","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"BR","geoplugin_countryName":"Brazil","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"SA","geoplugin_continentName":"South America","geoplugin_latitude":"-7.1467","geoplugin_longitude":"-39.247","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"America\/Fortaleza","geoplugin_currencyCode":"BRL","geoplugin_currencySymbol":"&#82;&#36;","geoplugin_currencySymbol_UTF8":"R$","geoplugin_currencyConverter":"5.2654"},"2.132.33.58":{"geoplugin_request":"2.132.33.58","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Almaty","geoplugin_region":"Almaty","geoplugin_regionCode":"ALA","geoplugin_regionName":"Almaty","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"KZ","geoplugin_countryName":"Kazakhstan","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"43.2638","geoplugin_longitude":"76.9293","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"Asia\/Almaty","geoplugin_currencyCode":"KZT","geoplugin_currencySymbol":"&#1083;&#1074;","geoplugin_currencySymbol_UTF8":"\u043b\u0432","geoplugin_currencyConverter":"426.3186"},"136.158.64.154":{"geoplugin_request":"136.158.64.154","geoplugin_status":206,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"PH","geoplugin_countryName":"Philippines","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"14.5955","geoplugin_longitude":"120.9721","geoplugin_locationAccuracyRadius":"500","geoplugin_timezone":"Asia\/Manila","geoplugin_currencyCode":"PHP","geoplugin_currencySymbol":"&#80;&#104;&#112;","geoplugin_currencySymbol_UTF8":"Php","geoplugin_currencyConverter":"50.6385"},"185.244.158.111":{"geoplugin_request":"185.244.158.111","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Kyiv","geoplugin_region":"Kyiv City","geoplugin_regionCode":"30","geoplugin_regionName":"Kyiv City","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"UA","geoplugin_countryName":"Ukraine","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"50.4333","geoplugin_longitude":"30.5167","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"Europe\/Kiev","geoplugin_currencyCode":"UAH","geoplugin_currencySymbol":"&#8372;","geoplugin_currencySymbol_UTF8":"\u20b4","geoplugin_currencyConverter":"26.916"},"117.223.242.9":{"geoplugin_request":"117.223.242.9","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Thanjavur","geoplugin_region":"Tamil Nadu","geoplugin_regionCode":"TN","geoplugin_regionName":"Tamil Nadu","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"IN","geoplugin_countryName":"India","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"10.7852","geoplugin_longitude":"79.1391","geoplugin_locationAccuracyRadius":"50","geoplugin_timezone":"Asia\/Kolkata","geoplugin_currencyCode":"INR","geoplugin_currencySymbol":"&#8377;","geoplugin_currencySymbol_UTF8":"\u20b9","geoplugin_currencyConverter":"74.2105"},"27.106.36.246":{"geoplugin_request":"27.106.36.246","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Mumbai","geoplugin_region":"Maharashtra","geoplugin_regionCode":"MH","geoplugin_regionName":"Maharashtra","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"IN","geoplugin_countryName":"India","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"19.0748","geoplugin_longitude":"72.8856","geoplugin_locationAccuracyRadius":"5","geoplugin_timezone":"Asia\/Kolkata","geoplugin_currencyCode":"INR","geoplugin_currencySymbol":"&#8377;","geoplugin_currencySymbol_UTF8":"\u20b9","geoplugin_currencyConverter":"74.2105"},"47.29.53.50":{"geoplugin_request":"47.29.53.50","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Imphal","geoplugin_region":"Manipur","geoplugin_regionCode":"MN","geoplugin_regionName":"Manipur","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"IN","geoplugin_countryName":"India","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"24.8081","geoplugin_longitude":"93.9442","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"Asia\/Kolkata","geoplugin_currencyCode":"INR","geoplugin_currencySymbol":"&#8377;","geoplugin_currencySymbol_UTF8":"\u20b9","geoplugin_currencyConverter":"74.2105"},"14.167.102.154":{"geoplugin_request":"14.167.102.154","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Ho Chi Minh City","geoplugin_region":"Ho Chi Minh","geoplugin_regionCode":"SG","geoplugin_regionName":"Ho Chi Minh","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"10.8142","geoplugin_longitude":"106.6438","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"Asia\/Ho_Chi_Minh","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.378"},"176.99.163.36":{"geoplugin_request":"176.99.163.36","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Moscow","geoplugin_region":"Moscow","geoplugin_regionCode":"MOW","geoplugin_regionName":"Moscow","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"RU","geoplugin_countryName":"Russia","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"55.7482","geoplugin_longitude":"37.6177","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"Europe\/Moscow","geoplugin_currencyCode":"RUB","geoplugin_currencySymbol":"&#1088;&#1091;&#1073;","geoplugin_currencySymbol_UTF8":"\u0440\u0443\u0431","geoplugin_currencyConverter":"73.0649"},"185.217.1.246":{"geoplugin_request":"185.217.1.246","geoplugin_status":206,"geoplugin_delay":"0ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"IM","geoplugin_countryName":"Isle of Man","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"54.23","geoplugin_longitude":"-4.57","geoplugin_locationAccuracyRadius":"50","geoplugin_timezone":"Europe\/Isle_of_Man","geoplugin_currencyCode":"GBP","geoplugin_currencySymbol":"&#163;","geoplugin_currencySymbol_UTF8":"\u00a3","geoplugin_currencyConverter":"0.7206"},"156.213.95.254":{"geoplugin_request":"156.213.95.254","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Cairo","geoplugin_region":"Cairo Governorate","geoplugin_regionCode":"C","geoplugin_regionName":"Cairo Governorate","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"EG","geoplugin_countryName":"Egypt","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AF","geoplugin_continentName":"Africa","geoplugin_latitude":"30.0778","geoplugin_longitude":"31.2852","geoplugin_locationAccuracyRadius":"10","geoplugin_timezone":"Africa\/Cairo","geoplugin_currencyCode":"EGP","geoplugin_currencySymbol":"&#163;","geoplugin_currencySymbol_UTF8":"\u00a3","geoplugin_currencyConverter":"15.7003"},"75.57.32.100":{"geoplugin_request":"75.57.32.100","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Lawrenceville","geoplugin_region":"Georgia","geoplugin_regionCode":"GA","geoplugin_regionName":"Georgia","geoplugin_areaCode":"","geoplugin_dmaCode":"524","geoplugin_countryCode":"US","geoplugin_countryName":"United States","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"NA","geoplugin_continentName":"North America","geoplugin_latitude":"34.0014","geoplugin_longitude":"-84.0144","geoplugin_locationAccuracyRadius":"10","geoplugin_timezone":"America\/New_York","geoplugin_currencyCode":"USD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1"},"38.143.137.90":{"geoplugin_request":"38.143.137.90","geoplugin_status":206,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"US","geoplugin_countryName":"United States","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"NA","geoplugin_continentName":"North America","geoplugin_latitude":"37.751","geoplugin_longitude":"-97.822","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"America\/Chicago","geoplugin_currencyCode":"USD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1"},"89.147.191.113":{"geoplugin_request":"89.147.191.113","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Muscat","geoplugin_region":"Muscat","geoplugin_regionCode":"MA","geoplugin_regionName":"Muscat","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"OM","geoplugin_countryName":"Oman","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"23.6182","geoplugin_longitude":"58.5945","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"Asia\/Muscat","geoplugin_currencyCode":"OMR","geoplugin_currencySymbol":"&#65020;","geoplugin_currencySymbol_UTF8":"\ufdfc","geoplugin_currencyConverter":"0.3849"},"200.48.37.68":{"geoplugin_request":"200.48.37.68","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Ica","geoplugin_region":"Ica","geoplugin_regionCode":"ICA","geoplugin_regionName":"Ica","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"PE","geoplugin_countryName":"Peru","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"SA","geoplugin_continentName":"South America","geoplugin_latitude":"-14.0681","geoplugin_longitude":"-75.7256","geoplugin_locationAccuracyRadius":"100","geoplugin_timezone":"America\/Lima","geoplugin_currencyCode":"PEN","geoplugin_currencySymbol":"&#83;&#47;&#46;","geoplugin_currencySymbol_UTF8":"S\/.","geoplugin_currencyConverter":"4.0889"},"198.98.53.212":{"geoplugin_request":"198.98.53.212","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Buffalo","geoplugin_region":"New York","geoplugin_regionCode":"NY","geoplugin_regionName":"New York","geoplugin_areaCode":"","geoplugin_dmaCode":"514","geoplugin_countryCode":"US","geoplugin_countryName":"United States","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"NA","geoplugin_continentName":"North America","geoplugin_latitude":"42.8864","geoplugin_longitude":"-78.8784","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"America\/New_York","geoplugin_currencyCode":"USD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1"},"43.252.10.253":{"geoplugin_request":"43.252.10.253","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Tangerang","geoplugin_region":"Banten","geoplugin_regionCode":"BT","geoplugin_regionName":"Banten","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"ID","geoplugin_countryName":"Indonesia","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"-6.177","geoplugin_longitude":"106.6284","geoplugin_locationAccuracyRadius":"20","geoplugin_timezone":"Asia\/Jakarta","geoplugin_currencyCode":"IDR","geoplugin_currencySymbol":"&#82;&#112;","geoplugin_currencySymbol_UTF8":"Rp","geoplugin_currencyConverter":"14444.5"},"105.163.239.114":{"geoplugin_request":"105.163.239.114","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Nairobi","geoplugin_region":"Nairobi Province","geoplugin_regionCode":"30","geoplugin_regionName":"Nairobi Province","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"KE","geoplugin_countryName":"Kenya","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AF","geoplugin_continentName":"Africa","geoplugin_latitude":"-1.2841","geoplugin_longitude":"36.8155","geoplugin_locationAccuracyRadius":"50","geoplugin_timezone":"Africa\/Nairobi","geoplugin_currencyCode":"KES","geoplugin_currencySymbol":"K Sh","geoplugin_currencySymbol_UTF8":"K Sh","geoplugin_currencyConverter":"109.1374"},"41.186.54.105":{"geoplugin_request":"41.186.54.105","geoplugin_status":206,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"RW","geoplugin_countryName":"Rwanda","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AF","geoplugin_continentName":"Africa","geoplugin_latitude":"-2","geoplugin_longitude":"30","geoplugin_locationAccuracyRadius":"50","geoplugin_timezone":"Africa\/Kigali","geoplugin_currencyCode":"RWF","geoplugin_currencySymbol":"RWF","geoplugin_currencySymbol_UTF8":"RWF","geoplugin_currencyConverter":"1011.2813"},"144.86.27.24":{"geoplugin_request":"144.86.27.24","geoplugin_status":206,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"SA","geoplugin_countryName":"Saudi Arabia","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"25","geoplugin_longitude":"45","geoplugin_locationAccuracyRadius":"500","geoplugin_timezone":"Asia\/Riyadh","geoplugin_currencyCode":"SAR","geoplugin_currencySymbol":"&#65020;","geoplugin_currencySymbol_UTF8":"\ufdfc","geoplugin_currencyConverter":"3.75"},"106.67.29.169":{"geoplugin_request":"106.67.29.169","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Muzaffarpur","geoplugin_region":"Bihar","geoplugin_regionCode":"BR","geoplugin_regionName":"Bihar","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"IN","geoplugin_countryName":"India","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"26.1192","geoplugin_longitude":"85.3963","geoplugin_locationAccuracyRadius":"500","geoplugin_timezone":"Asia\/Kolkata","geoplugin_currencyCode":"INR","geoplugin_currencySymbol":"&#8377;","geoplugin_currencySymbol_UTF8":"\u20b9","geoplugin_currencyConverter":"74.2105"},"82.65.33.144":{"geoplugin_request":"82.65.33.144","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Livry-Gargan","geoplugin_region":"\u00cele-de-France","geoplugin_regionCode":"93","geoplugin_regionName":"Seine-Saint-Denis","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"FR","geoplugin_countryName":"France","geoplugin_inEU":1,"geoplugin_euVATrate":20,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"48.9188","geoplugin_longitude":"2.5454","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"Europe\/Paris","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8501"},"122.11.173.23":{"geoplugin_request":"122.11.173.23","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Singapore","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"SG","geoplugin_countryName":"Singapore","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"1.3616","geoplugin_longitude":"103.8657","geoplugin_locationAccuracyRadius":"10","geoplugin_timezone":"Asia\/Singapore","geoplugin_currencyCode":"SGD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1.3546"},"116.110.25.207":{"geoplugin_request":"116.110.25.207","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Dien Ban","geoplugin_region":"Tinh Quang Nam","geoplugin_regionCode":"27","geoplugin_regionName":"Tinh Quang Nam","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"15.8858","geoplugin_longitude":"108.2569","geoplugin_locationAccuracyRadius":"20","geoplugin_timezone":"Asia\/Ho_Chi_Minh","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.38"},"116.110.156.31":{"geoplugin_request":"116.110.156.31","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Hoi An","geoplugin_region":"Tinh Quang Nam","geoplugin_regionCode":"27","geoplugin_regionName":"Tinh Quang Nam","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"15.8794","geoplugin_longitude":"108.335","geoplugin_locationAccuracyRadius":"20","geoplugin_timezone":"Asia\/Ho_Chi_Minh","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"22931"},"116.110.115.168":{"geoplugin_request":"116.110.115.168","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Da Nang","geoplugin_region":"Da Nang","geoplugin_regionCode":"DN","geoplugin_regionName":"Da Nang","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"16.0685","geoplugin_longitude":"108.2215","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"Asia\/Ho_Chi_Minh","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.378"},"171.247.101.31":{"geoplugin_request":"171.247.101.31","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Ho Chi Minh City","geoplugin_region":"Ho Chi Minh","geoplugin_regionCode":"SG","geoplugin_regionName":"Ho Chi Minh","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"10.8142","geoplugin_longitude":"106.6438","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"Asia\/Ho_Chi_Minh","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"22931"},"116.98.169.190":{"geoplugin_request":"116.98.169.190","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Da Nang","geoplugin_region":"Da Nang","geoplugin_regionCode":"DN","geoplugin_regionName":"Da Nang","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"16.0685","geoplugin_longitude":"108.2215","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"Asia\/Ho_Chi_Minh","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.38"},"27.71.84.39":{"geoplugin_request":"27.71.84.39","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Viet Tri","geoplugin_region":"Tinh Phu Tho","geoplugin_regionCode":"68","geoplugin_regionName":"Tinh Phu Tho","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"21.3065","geoplugin_longitude":"105.4188","geoplugin_locationAccuracyRadius":"100","geoplugin_timezone":"Asia\/Bangkok","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.38"},"201.162.111.248":{"geoplugin_request":"201.162.111.248","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Pedro Leopoldo","geoplugin_region":"Minas Gerais","geoplugin_regionCode":"MG","geoplugin_regionName":"Minas Gerais","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"BR","geoplugin_countryName":"Brazil","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"SA","geoplugin_continentName":"South America","geoplugin_latitude":"-19.6447","geoplugin_longitude":"-44.0394","geoplugin_locationAccuracyRadius":"100","geoplugin_timezone":"America\/Sao_Paulo","geoplugin_currencyCode":"BRL","geoplugin_currencySymbol":"&#82;&#36;","geoplugin_currencySymbol_UTF8":"R$","geoplugin_currencyConverter":"5.2654"},"171.25.193.78":{"geoplugin_request":"171.25.193.78","geoplugin_status":206,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"SE","geoplugin_countryName":"Sweden","geoplugin_inEU":1,"geoplugin_euVATrate":25,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"59.3247","geoplugin_longitude":"18.056","geoplugin_locationAccuracyRadius":"500","geoplugin_timezone":"Europe\/Stockholm","geoplugin_currencyCode":"SEK","geoplugin_currencySymbol":"&#107;&#114;","geoplugin_currencySymbol_UTF8":"kr","geoplugin_currencyConverter":"8.6571"},"165.56.182.77":{"geoplugin_request":"165.56.182.77","geoplugin_status":200,"geoplugin_delay":"0ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Lusaka","geoplugin_region":"Lusaka Province","geoplugin_regionCode":"09","geoplugin_regionName":"Lusaka Province","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"ZM","geoplugin_countryName":"Zambia","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AF","geoplugin_continentName":"Africa","geoplugin_latitude":"-15.4167","geoplugin_longitude":"28.2833","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"Africa\/Lusaka","geoplugin_currencyCode":"ZMW","geoplugin_currencySymbol":null,"geoplugin_currencySymbol_UTF8":"","geoplugin_currencyConverter":"19.3387"},"152.231.45.78":{"geoplugin_request":"152.231.45.78","geoplugin_status":200,"geoplugin_delay":"0ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Managua","geoplugin_region":"Departamento de Managua","geoplugin_regionCode":"MN","geoplugin_regionName":"Departamento de Managua","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"NI","geoplugin_countryName":"Nicaragua","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"NA","geoplugin_continentName":"North America","geoplugin_latitude":"12.1518","geoplugin_longitude":"-86.2711","geoplugin_locationAccuracyRadius":"50","geoplugin_timezone":"America\/Managua","geoplugin_currencyCode":"NIO","geoplugin_currencySymbol":"&#67;&#36;","geoplugin_currencySymbol_UTF8":"C$","geoplugin_currencyConverter":"35.2399"},"27.255.217.181":{"geoplugin_request":"27.255.217.181","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Hoshiarpur","geoplugin_region":"Punjab","geoplugin_regionCode":"PB","geoplugin_regionName":"Punjab","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"IN","geoplugin_countryName":"India","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"31.5404","geoplugin_longitude":"75.9135","geoplugin_locationAccuracyRadius":"100","geoplugin_timezone":"Asia\/Kolkata","geoplugin_currencyCode":"INR","geoplugin_currencySymbol":"&#8377;","geoplugin_currencySymbol_UTF8":"\u20b9","geoplugin_currencyConverter":"74.2105"},"116.110.222.71":{"geoplugin_request":"116.110.222.71","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Da Nang","geoplugin_region":"Da Nang","geoplugin_regionCode":"DN","geoplugin_regionName":"Da Nang","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"16.0685","geoplugin_longitude":"108.2215","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"Asia\/Ho_Chi_Minh","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"22931"},"116.105.194.247":{"geoplugin_request":"116.105.194.247","geoplugin_status":200,"geoplugin_delay":"0ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Da Nang","geoplugin_region":"Da Nang","geoplugin_regionCode":"DN","geoplugin_regionName":"Da Nang","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"16.0685","geoplugin_longitude":"108.2215","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"Asia\/Ho_Chi_Minh","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.38"},"171.251.22.24":{"geoplugin_request":"171.251.22.24","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Hoi An","geoplugin_region":"Tinh Quang Nam","geoplugin_regionCode":"27","geoplugin_regionName":"Tinh Quang Nam","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"15.8794","geoplugin_longitude":"108.335","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"Asia\/Ho_Chi_Minh","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.378"},"115.76.161.227":{"geoplugin_request":"115.76.161.227","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Ho Chi Minh City","geoplugin_region":"Ho Chi Minh","geoplugin_regionCode":"SG","geoplugin_regionName":"Ho Chi Minh","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"10.8142","geoplugin_longitude":"106.6438","geoplugin_locationAccuracyRadius":"20","geoplugin_timezone":"Asia\/Ho_Chi_Minh","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.38"},"103.120.211.142":{"geoplugin_request":"103.120.211.142","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Mumbai","geoplugin_region":"Maharashtra","geoplugin_regionCode":"MH","geoplugin_regionName":"Maharashtra","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"IN","geoplugin_countryName":"India","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"19.0748","geoplugin_longitude":"72.8856","geoplugin_locationAccuracyRadius":"20","geoplugin_timezone":"Asia\/Kolkata","geoplugin_currencyCode":"INR","geoplugin_currencySymbol":"&#8377;","geoplugin_currencySymbol_UTF8":"\u20b9","geoplugin_currencyConverter":"74.2105"},"171.7.44.109":{"geoplugin_request":"171.7.44.109","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Pathum Thani","geoplugin_region":"Pathum Thani","geoplugin_regionCode":"13","geoplugin_regionName":"Pathum Thani","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"TH","geoplugin_countryName":"Thailand","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"14.0333","geoplugin_longitude":"100.4167","geoplugin_locationAccuracyRadius":"10","geoplugin_timezone":"Asia\/Bangkok","geoplugin_currencyCode":"THB","geoplugin_currencySymbol":"&#3647;","geoplugin_currencySymbol_UTF8":"\u0e3f","geoplugin_currencyConverter":"33.431"},"123.19.128.153":{"geoplugin_request":"123.19.128.153","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Nha Trang","geoplugin_region":"Tinh Khanh Hoa","geoplugin_regionCode":"34","geoplugin_regionName":"Tinh Khanh Hoa","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"12.25","geoplugin_longitude":"109.1833","geoplugin_locationAccuracyRadius":"50","geoplugin_timezone":"Asia\/Ho_Chi_Minh","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.38"},"202.142.188.158":{"geoplugin_request":"202.142.188.158","geoplugin_status":206,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"PK","geoplugin_countryName":"Pakistan","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"30","geoplugin_longitude":"70","geoplugin_locationAccuracyRadius":"50","geoplugin_timezone":"Asia\/Karachi","geoplugin_currencyCode":"PKR","geoplugin_currencySymbol":"&#8360;","geoplugin_currencySymbol_UTF8":"\u20a8","geoplugin_currencyConverter":"164.7598"},"110.137.72.27":{"geoplugin_request":"110.137.72.27","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Bengkulu","geoplugin_region":"Bengkulu","geoplugin_regionCode":"BE","geoplugin_regionName":"Bengkulu","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"ID","geoplugin_countryName":"Indonesia","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"-3.8125","geoplugin_longitude":"102.2875","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"Asia\/Jakarta","geoplugin_currencyCode":"IDR","geoplugin_currencySymbol":"&#82;&#112;","geoplugin_currencySymbol_UTF8":"Rp","geoplugin_currencyConverter":"14444.5"},"101.255.171.218":{"geoplugin_request":"101.255.171.218","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Jakarta","geoplugin_region":"Jakarta","geoplugin_regionCode":"JK","geoplugin_regionName":"Jakarta","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"ID","geoplugin_countryName":"Indonesia","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"-6.1741","geoplugin_longitude":"106.8296","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"Asia\/Jakarta","geoplugin_currencyCode":"IDR","geoplugin_currencySymbol":"&#82;&#112;","geoplugin_currencySymbol_UTF8":"Rp","geoplugin_currencyConverter":"14444.5"},"118.173.128.153":{"geoplugin_request":"118.173.128.153","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Phatthalung","geoplugin_region":"Phatthalung","geoplugin_regionCode":"93","geoplugin_regionName":"Phatthalung","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"TH","geoplugin_countryName":"Thailand","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"7.4944","geoplugin_longitude":"100.0583","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"Asia\/Bangkok","geoplugin_currencyCode":"THB","geoplugin_currencySymbol":"&#3647;","geoplugin_currencySymbol_UTF8":"\u0e3f","geoplugin_currencyConverter":"33.431"},"190.217.28.242":{"geoplugin_request":"190.217.28.242","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Supia","geoplugin_region":"Departamento de Caldas","geoplugin_regionCode":"CAL","geoplugin_regionName":"Departamento de Caldas","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"CO","geoplugin_countryName":"Colombia","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"SA","geoplugin_continentName":"South America","geoplugin_latitude":"5.4557","geoplugin_longitude":"-75.6533","geoplugin_locationAccuracyRadius":"50","geoplugin_timezone":"America\/Bogota","geoplugin_currencyCode":"COP","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"3931.972"},"99.46.1.60":{"geoplugin_request":"99.46.1.60","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Kansas City","geoplugin_region":"Missouri","geoplugin_regionCode":"MO","geoplugin_regionName":"Missouri","geoplugin_areaCode":"","geoplugin_dmaCode":"616","geoplugin_countryCode":"US","geoplugin_countryName":"United States","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"NA","geoplugin_continentName":"North America","geoplugin_latitude":"39.0537","geoplugin_longitude":"-94.5906","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"America\/Chicago","geoplugin_currencyCode":"USD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1"},"27.69.252.87":{"geoplugin_request":"27.69.252.87","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Son Tra","geoplugin_region":"Qu\u1ea3ng Ng\u00e3i Province","geoplugin_regionCode":"29","geoplugin_regionName":"Qu\u1ea3ng Ng\u00e3i Province","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"15.3833","geoplugin_longitude":"108.7833","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"Asia\/Ho_Chi_Minh","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.38"},"116.110.86.204":{"geoplugin_request":"116.110.86.204","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Da Nang","geoplugin_region":"Da Nang","geoplugin_regionCode":"DN","geoplugin_regionName":"Da Nang","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"16.0685","geoplugin_longitude":"108.2215","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"Asia\/Ho_Chi_Minh","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.378"},"171.251.31.244":{"geoplugin_request":"171.251.31.244","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Da Nang","geoplugin_region":"Da Nang","geoplugin_regionCode":"DN","geoplugin_regionName":"Da Nang","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"16.0685","geoplugin_longitude":"108.2215","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"Asia\/Ho_Chi_Minh","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.38"},"171.235.86.144":{"geoplugin_request":"171.235.86.144","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Ho Chi Minh City","geoplugin_region":"Ho Chi Minh","geoplugin_regionCode":"SG","geoplugin_regionName":"Ho Chi Minh","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"10.8142","geoplugin_longitude":"106.6438","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"Asia\/Ho_Chi_Minh","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.378"},"179.6.194.84":{"geoplugin_request":"179.6.194.84","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Lima","geoplugin_region":"Lima","geoplugin_regionCode":"LMA","geoplugin_regionName":"Lima","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"PE","geoplugin_countryName":"Peru","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"SA","geoplugin_continentName":"South America","geoplugin_latitude":"-12.0464","geoplugin_longitude":"-77.0428","geoplugin_locationAccuracyRadius":"10","geoplugin_timezone":"America\/Lima","geoplugin_currencyCode":"PEN","geoplugin_currencySymbol":"&#83;&#47;&#46;","geoplugin_currencySymbol_UTF8":"S\/.","geoplugin_currencyConverter":"4.0743"},"171.252.189.158":{"geoplugin_request":"171.252.189.158","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Ho Chi Minh City","geoplugin_region":"Ho Chi Minh","geoplugin_regionCode":"SG","geoplugin_regionName":"Ho Chi Minh","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"10.8142","geoplugin_longitude":"106.6438","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"Asia\/Ho_Chi_Minh","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.378"},"112.250.108.127":{"geoplugin_request":"112.250.108.127","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Tai'an","geoplugin_region":"Shandong","geoplugin_regionCode":"SD","geoplugin_regionName":"Shandong","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"CN","geoplugin_countryName":"China","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"36.1853","geoplugin_longitude":"117.12","geoplugin_locationAccuracyRadius":"500","geoplugin_timezone":"Asia\/Shanghai","geoplugin_currencyCode":"CNY","geoplugin_currencySymbol":"&#20803;","geoplugin_currencySymbol_UTF8":"\u5143","geoplugin_currencyConverter":"6.4836"},"49.150.86.108":{"geoplugin_request":"49.150.86.108","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Tarlac City","geoplugin_region":"Central Luzon","geoplugin_regionCode":"TAR","geoplugin_regionName":"Province of Tarlac","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"PH","geoplugin_countryName":"Philippines","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"15.4802","geoplugin_longitude":"120.5979","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"Asia\/Manila","geoplugin_currencyCode":"PHP","geoplugin_currencySymbol":"&#80;&#104;&#112;","geoplugin_currencySymbol_UTF8":"Php","geoplugin_currencyConverter":"50.6385"},"42.117.168.187":{"geoplugin_request":"42.117.168.187","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Da Nang","geoplugin_region":"Da Nang","geoplugin_regionCode":"DN","geoplugin_regionName":"Da Nang","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"16.0685","geoplugin_longitude":"108.2215","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"Asia\/Ho_Chi_Minh","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.38"},"174.51.6.131":{"geoplugin_request":"174.51.6.131","geoplugin_status":200,"geoplugin_delay":"0ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Denver","geoplugin_region":"Colorado","geoplugin_regionCode":"CO","geoplugin_regionName":"Colorado","geoplugin_areaCode":"","geoplugin_dmaCode":"751","geoplugin_countryCode":"US","geoplugin_countryName":"United States","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"NA","geoplugin_continentName":"North America","geoplugin_latitude":"39.7628","geoplugin_longitude":"-105.0263","geoplugin_locationAccuracyRadius":"5","geoplugin_timezone":"America\/Denver","geoplugin_currencyCode":"USD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1"},"195.135.17.170":{"geoplugin_request":"195.135.17.170","geoplugin_status":206,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"FR","geoplugin_countryName":"France","geoplugin_inEU":1,"geoplugin_euVATrate":20,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"48.8582","geoplugin_longitude":"2.3387","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"Europe\/Paris","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8501"},"222.84.64.68":{"geoplugin_request":"222.84.64.68","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Nanning","geoplugin_region":"Guangxi","geoplugin_regionCode":"GX","geoplugin_regionName":"Guangxi","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"CN","geoplugin_countryName":"China","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"22.8108","geoplugin_longitude":"108.3165","geoplugin_locationAccuracyRadius":"500","geoplugin_timezone":"Asia\/Shanghai","geoplugin_currencyCode":"CNY","geoplugin_currencySymbol":"&#20803;","geoplugin_currencySymbol_UTF8":"\u5143","geoplugin_currencyConverter":"6.4836"},"60.248.83.32":{"geoplugin_request":"60.248.83.32","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Hsinchu County","geoplugin_region":"Hsinchu County","geoplugin_regionCode":"HSZ","geoplugin_regionName":"Hsinchu County","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"TW","geoplugin_countryName":"Taiwan","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"24.6742","geoplugin_longitude":"121.1611","geoplugin_locationAccuracyRadius":"20","geoplugin_timezone":"Asia\/Taipei","geoplugin_currencyCode":"TWD","geoplugin_currencySymbol":"&#78;&#84;&#36;","geoplugin_currencySymbol_UTF8":"NT$","geoplugin_currencyConverter":"27.822"},"115.76.54.117":{"geoplugin_request":"115.76.54.117","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Dien Ban","geoplugin_region":"Tinh Quang Nam","geoplugin_regionCode":"27","geoplugin_regionName":"Tinh Quang Nam","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"15.8858","geoplugin_longitude":"108.2569","geoplugin_locationAccuracyRadius":"500","geoplugin_timezone":"Asia\/Ho_Chi_Minh","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.378"},"103.82.145.41":{"geoplugin_request":"103.82.145.41","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Pune","geoplugin_region":"Maharashtra","geoplugin_regionCode":"MH","geoplugin_regionName":"Maharashtra","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"IN","geoplugin_countryName":"India","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"18.5196","geoplugin_longitude":"73.8554","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"Asia\/Kolkata","geoplugin_currencyCode":"INR","geoplugin_currencySymbol":"&#8377;","geoplugin_currencySymbol_UTF8":"\u20b9","geoplugin_currencyConverter":"74.2105"},"49.49.247.14":{"geoplugin_request":"49.49.247.14","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Bangkok","geoplugin_region":"Bangkok","geoplugin_regionCode":"10","geoplugin_regionName":"Bangkok","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"TH","geoplugin_countryName":"Thailand","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"13.7083","geoplugin_longitude":"100.4562","geoplugin_locationAccuracyRadius":"20","geoplugin_timezone":"Asia\/Bangkok","geoplugin_currencyCode":"THB","geoplugin_currencySymbol":"&#3647;","geoplugin_currencySymbol_UTF8":"\u0e3f","geoplugin_currencyConverter":"33.431"},"113.160.214.40":{"geoplugin_request":"113.160.214.40","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Haiphong","geoplugin_region":"Haiphong","geoplugin_regionCode":"HP","geoplugin_regionName":"Haiphong","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"20.8567","geoplugin_longitude":"106.6826","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"Asia\/Bangkok","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.38"},"122.173.29.233":{"geoplugin_request":"122.173.29.233","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Badheri","geoplugin_region":"Chandigarh","geoplugin_regionCode":"CH","geoplugin_regionName":"Chandigarh","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"IN","geoplugin_countryName":"India","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"30.7271","geoplugin_longitude":"76.7379","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"Asia\/Kolkata","geoplugin_currencyCode":"INR","geoplugin_currencySymbol":"&#8377;","geoplugin_currencySymbol_UTF8":"\u20b9","geoplugin_currencyConverter":"74.2105"},"59.88.234.173":{"geoplugin_request":"59.88.234.173","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Neyveli","geoplugin_region":"Tamil Nadu","geoplugin_regionCode":"TN","geoplugin_regionName":"Tamil Nadu","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"IN","geoplugin_countryName":"India","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"11.6088","geoplugin_longitude":"79.4994","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"Asia\/Kolkata","geoplugin_currencyCode":"INR","geoplugin_currencySymbol":"&#8377;","geoplugin_currencySymbol_UTF8":"\u20b9","geoplugin_currencyConverter":"74.2421"},"94.141.237.214":{"geoplugin_request":"94.141.237.214","geoplugin_status":206,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"KZ","geoplugin_countryName":"Kazakhstan","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"48","geoplugin_longitude":"68","geoplugin_locationAccuracyRadius":"50","geoplugin_timezone":"Asia\/Almaty","geoplugin_currencyCode":"KZT","geoplugin_currencySymbol":"&#1083;&#1074;","geoplugin_currencySymbol_UTF8":"\u043b\u0432","geoplugin_currencyConverter":"426.3186"},"86.98.51.248":{"geoplugin_request":"86.98.51.248","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Dubai","geoplugin_region":"Dubai","geoplugin_regionCode":"DU","geoplugin_regionName":"Dubai","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"AE","geoplugin_countryName":"United Arab Emirates","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"25.2633","geoplugin_longitude":"55.3087","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"Asia\/Dubai","geoplugin_currencyCode":"AED","geoplugin_currencySymbol":"Dh","geoplugin_currencySymbol_UTF8":"Dh","geoplugin_currencyConverter":"3.6732"},"217.164.255.38":{"geoplugin_request":"217.164.255.38","geoplugin_status":200,"geoplugin_delay":"0ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Abu Dhabi","geoplugin_region":"Abu Dhabi","geoplugin_regionCode":"AZ","geoplugin_regionName":"Abu Dhabi","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"AE","geoplugin_countryName":"United Arab Emirates","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"24.4638","geoplugin_longitude":"54.363","geoplugin_locationAccuracyRadius":"100","geoplugin_timezone":"Asia\/Dubai","geoplugin_currencyCode":"AED","geoplugin_currencySymbol":"Dh","geoplugin_currencySymbol_UTF8":"Dh","geoplugin_currencyConverter":"3.6732"},"202.9.40.213":{"geoplugin_request":"202.9.40.213","geoplugin_status":206,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"MN","geoplugin_countryName":"Mongolia","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"46","geoplugin_longitude":"105","geoplugin_locationAccuracyRadius":"50","geoplugin_timezone":"Asia\/Ulaanbaatar","geoplugin_currencyCode":"MNT","geoplugin_currencySymbol":"&#8366;","geoplugin_currencySymbol_UTF8":"\u20ae","geoplugin_currencyConverter":"2848.1146"},"58.186.112.76":{"geoplugin_request":"58.186.112.76","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Hanoi","geoplugin_region":"Hanoi","geoplugin_regionCode":"HN","geoplugin_regionName":"Hanoi","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"21.0313","geoplugin_longitude":"105.8516","geoplugin_locationAccuracyRadius":"20","geoplugin_timezone":"Asia\/Bangkok","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"22931"},"223.206.224.234":{"geoplugin_request":"223.206.224.234","geoplugin_status":200,"geoplugin_delay":"0ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Ban Phan Don","geoplugin_region":"Udon Thani","geoplugin_regionCode":"41","geoplugin_regionName":"Udon Thani","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"TH","geoplugin_countryName":"Thailand","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"17.135","geoplugin_longitude":"102.972","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"Asia\/Bangkok","geoplugin_currencyCode":"THB","geoplugin_currencySymbol":"&#3647;","geoplugin_currencySymbol_UTF8":"\u0e3f","geoplugin_currencyConverter":"33.431"},"125.160.65.22":{"geoplugin_request":"125.160.65.22","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Samarinda","geoplugin_region":"East Kalimantan","geoplugin_regionCode":"KI","geoplugin_regionName":"East Kalimantan","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"ID","geoplugin_countryName":"Indonesia","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"-0.4917","geoplugin_longitude":"117.1458","geoplugin_locationAccuracyRadius":"100","geoplugin_timezone":"Asia\/Makassar","geoplugin_currencyCode":"IDR","geoplugin_currencySymbol":"&#82;&#112;","geoplugin_currencySymbol_UTF8":"Rp","geoplugin_currencyConverter":"14444.5"},"124.107.253.80":{"geoplugin_request":"124.107.253.80","geoplugin_status":206,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"PH","geoplugin_countryName":"Philippines","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"14.5955","geoplugin_longitude":"120.9721","geoplugin_locationAccuracyRadius":"500","geoplugin_timezone":"Asia\/Manila","geoplugin_currencyCode":"PHP","geoplugin_currencySymbol":"&#80;&#104;&#112;","geoplugin_currencySymbol_UTF8":"Php","geoplugin_currencyConverter":"50.6385"},"171.238.165.136":{"geoplugin_request":"171.238.165.136","geoplugin_status":206,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"16.0016","geoplugin_longitude":"105.9986","geoplugin_locationAccuracyRadius":"50","geoplugin_timezone":"Asia\/Vientiane","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.38"},"54.219.23.190":{"geoplugin_request":"54.219.23.190","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"San Jose","geoplugin_region":"California","geoplugin_regionCode":"CA","geoplugin_regionName":"California","geoplugin_areaCode":"","geoplugin_dmaCode":"807","geoplugin_countryCode":"US","geoplugin_countryName":"United States","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"NA","geoplugin_continentName":"North America","geoplugin_latitude":"37.3388","geoplugin_longitude":"-121.8914","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"America\/Los_Angeles","geoplugin_currencyCode":"USD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1"},"179.43.175.125":{"geoplugin_request":"179.43.175.125","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Zurich","geoplugin_region":"Zurich","geoplugin_regionCode":"ZH","geoplugin_regionName":"Zurich","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"CH","geoplugin_countryName":"Switzerland","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"47.3667","geoplugin_longitude":"8.55","geoplugin_locationAccuracyRadius":"50","geoplugin_timezone":"Europe\/Zurich","geoplugin_currencyCode":"CHF","geoplugin_currencySymbol":"&#67;&#72;&#70;","geoplugin_currencySymbol_UTF8":"CHF","geoplugin_currencyConverter":"0.9149"},"157.44.211.152":{"geoplugin_request":"157.44.211.152","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Ernakulam","geoplugin_region":"Kerala","geoplugin_regionCode":"KL","geoplugin_regionName":"Kerala","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"IN","geoplugin_countryName":"India","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"9.9671","geoplugin_longitude":"76.2904","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"Asia\/Kolkata","geoplugin_currencyCode":"INR","geoplugin_currencySymbol":"&#8377;","geoplugin_currencySymbol_UTF8":"\u20b9","geoplugin_currencyConverter":"74.2105"},"117.7.234.156":{"geoplugin_request":"117.7.234.156","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Hanoi","geoplugin_region":"Hanoi","geoplugin_regionCode":"HN","geoplugin_regionName":"Hanoi","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"21.0313","geoplugin_longitude":"105.8516","geoplugin_locationAccuracyRadius":"20","geoplugin_timezone":"Asia\/Bangkok","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.378"},"120.28.99.115":{"geoplugin_request":"120.28.99.115","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Pasig","geoplugin_region":"Metro Manila","geoplugin_regionCode":"00","geoplugin_regionName":"Metro Manila","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"PH","geoplugin_countryName":"Philippines","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"14.5818","geoplugin_longitude":"121.076","geoplugin_locationAccuracyRadius":"5","geoplugin_timezone":"Asia\/Manila","geoplugin_currencyCode":"PHP","geoplugin_currencySymbol":"&#80;&#104;&#112;","geoplugin_currencySymbol_UTF8":"Php","geoplugin_currencyConverter":"50.5365"},"201.239.204.174":{"geoplugin_request":"201.239.204.174","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Concepci\u00f3n","geoplugin_region":"Region del Biobio","geoplugin_regionCode":"BI","geoplugin_regionName":"Region del Biobio","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"CL","geoplugin_countryName":"Chile","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"SA","geoplugin_continentName":"South America","geoplugin_latitude":"-36.8335","geoplugin_longitude":"-73.0487","geoplugin_locationAccuracyRadius":"5","geoplugin_timezone":"America\/Santiago","geoplugin_currencyCode":"CLP","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"788.2504"},"88.241.72.54":{"geoplugin_request":"88.241.72.54","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Aydin","geoplugin_region":"Ayd\u0131n","geoplugin_regionCode":"09","geoplugin_regionName":"Ayd\u0131n","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"TR","geoplugin_countryName":"Turkey","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"37.845","geoplugin_longitude":"27.8396","geoplugin_locationAccuracyRadius":"50","geoplugin_timezone":"Europe\/Istanbul","geoplugin_currencyCode":"TRY","geoplugin_currencySymbol":"&#89;&#84;&#76;","geoplugin_currencySymbol_UTF8":"YTL","geoplugin_currencyConverter":"8.628"},"190.150.232.99":{"geoplugin_request":"190.150.232.99","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Santa Ana","geoplugin_region":"Departamento de Santa Ana","geoplugin_regionCode":"SA","geoplugin_regionName":"Departamento de Santa Ana","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"SV","geoplugin_countryName":"El Salvador","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"NA","geoplugin_continentName":"North America","geoplugin_latitude":"13.9954","geoplugin_longitude":"-89.5607","geoplugin_locationAccuracyRadius":"50","geoplugin_timezone":"America\/El_Salvador","geoplugin_currencyCode":"USD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1"},"85.74.109.61":{"geoplugin_request":"85.74.109.61","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Athens","geoplugin_region":"Attica","geoplugin_regionCode":"I","geoplugin_regionName":"Attica","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"GR","geoplugin_countryName":"Greece","geoplugin_inEU":1,"geoplugin_euVATrate":24,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"37.9842","geoplugin_longitude":"23.7353","geoplugin_locationAccuracyRadius":"10","geoplugin_timezone":"Europe\/Athens","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8501"},"222.103.167.174":{"geoplugin_request":"222.103.167.174","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Sangju","geoplugin_region":"Gyeongsangbuk-do","geoplugin_regionCode":"47","geoplugin_regionName":"Gyeongsangbuk-do","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"KR","geoplugin_countryName":"South Korea","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"36.4153","geoplugin_longitude":"128.1606","geoplugin_locationAccuracyRadius":"20","geoplugin_timezone":"Asia\/Seoul","geoplugin_currencyCode":"KRW","geoplugin_currencySymbol":"&#8361;","geoplugin_currencySymbol_UTF8":"\u20a9","geoplugin_currencyConverter":"1146.14"},"124.246.105.158":{"geoplugin_request":"124.246.105.158","geoplugin_status":206,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"SG","geoplugin_countryName":"Singapore","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"1.3667","geoplugin_longitude":"103.8","geoplugin_locationAccuracyRadius":"50","geoplugin_timezone":"Asia\/Singapore","geoplugin_currencyCode":"SGD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1.3546"},"188.19.162.183":{"geoplugin_request":"188.19.162.183","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Surgut","geoplugin_region":"Khanty-Mansia","geoplugin_regionCode":"KHM","geoplugin_regionName":"Khanty-Mansia","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"RU","geoplugin_countryName":"Russia","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"61.25","geoplugin_longitude":"73.4167","geoplugin_locationAccuracyRadius":"500","geoplugin_timezone":"Asia\/Yekaterinburg","geoplugin_currencyCode":"RUB","geoplugin_currencySymbol":"&#1088;&#1091;&#1073;","geoplugin_currencySymbol_UTF8":"\u0440\u0443\u0431","geoplugin_currencyConverter":"73.0649"},"203.159.80.131":{"geoplugin_request":"203.159.80.131","geoplugin_status":206,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"NL","geoplugin_countryName":"Netherlands","geoplugin_inEU":1,"geoplugin_euVATrate":21,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"52.3824","geoplugin_longitude":"4.8995","geoplugin_locationAccuracyRadius":"100","geoplugin_timezone":"Europe\/Amsterdam","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8501"},"138.117.63.182":{"geoplugin_request":"138.117.63.182","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Santana de Parnaiba","geoplugin_region":"Sao Paulo","geoplugin_regionCode":"SP","geoplugin_regionName":"Sao Paulo","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"BR","geoplugin_countryName":"Brazil","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"SA","geoplugin_continentName":"South America","geoplugin_latitude":"-23.4469","geoplugin_longitude":"-46.9111","geoplugin_locationAccuracyRadius":"10","geoplugin_timezone":"America\/Sao_Paulo","geoplugin_currencyCode":"BRL","geoplugin_currencySymbol":"&#82;&#36;","geoplugin_currencySymbol_UTF8":"R$","geoplugin_currencyConverter":"5.2654"},"182.52.30.169":{"geoplugin_request":"182.52.30.169","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Buriram","geoplugin_region":"Buriram","geoplugin_regionCode":"31","geoplugin_regionName":"Buriram","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"TH","geoplugin_countryName":"Thailand","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"14.6244","geoplugin_longitude":"103.0807","geoplugin_locationAccuracyRadius":"50","geoplugin_timezone":"Asia\/Bangkok","geoplugin_currencyCode":"THB","geoplugin_currencySymbol":"&#3647;","geoplugin_currencySymbol_UTF8":"\u0e3f","geoplugin_currencyConverter":"33.4504"},"43.231.241.130":{"geoplugin_request":"43.231.241.130","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Kolkata","geoplugin_region":"West Bengal","geoplugin_regionCode":"WB","geoplugin_regionName":"West Bengal","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"IN","geoplugin_countryName":"India","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"22.5626","geoplugin_longitude":"88.363","geoplugin_locationAccuracyRadius":"5","geoplugin_timezone":"Asia\/Kolkata","geoplugin_currencyCode":"INR","geoplugin_currencySymbol":"&#8377;","geoplugin_currencySymbol_UTF8":"\u20b9","geoplugin_currencyConverter":"74.2421"},"103.83.149.239":{"geoplugin_request":"103.83.149.239","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Ghaziabad","geoplugin_region":"Uttar Pradesh","geoplugin_regionCode":"UP","geoplugin_regionName":"Uttar Pradesh","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"IN","geoplugin_countryName":"India","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"28.6677","geoplugin_longitude":"77.4337","geoplugin_locationAccuracyRadius":"20","geoplugin_timezone":"Asia\/Kolkata","geoplugin_currencyCode":"INR","geoplugin_currencySymbol":"&#8377;","geoplugin_currencySymbol_UTF8":"\u20b9","geoplugin_currencyConverter":"74.2105"},"122.175.154.220":{"geoplugin_request":"122.175.154.220","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Indore","geoplugin_region":"Madhya Pradesh","geoplugin_regionCode":"MP","geoplugin_regionName":"Madhya Pradesh","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"IN","geoplugin_countryName":"India","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"22.7165","geoplugin_longitude":"75.8307","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"Asia\/Kolkata","geoplugin_currencyCode":"INR","geoplugin_currencySymbol":"&#8377;","geoplugin_currencySymbol_UTF8":"\u20b9","geoplugin_currencyConverter":"74.2105"},"14.161.6.201":{"geoplugin_request":"14.161.6.201","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Ho Chi Minh City","geoplugin_region":"Ho Chi Minh","geoplugin_regionCode":"SG","geoplugin_regionName":"Ho Chi Minh","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"10.8142","geoplugin_longitude":"106.6438","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"Asia\/Ho_Chi_Minh","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.38"},"168.149.126.148":{"geoplugin_request":"168.149.126.148","geoplugin_status":206,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"SA","geoplugin_countryName":"Saudi Arabia","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"25","geoplugin_longitude":"45","geoplugin_locationAccuracyRadius":"500","geoplugin_timezone":"Asia\/Riyadh","geoplugin_currencyCode":"SAR","geoplugin_currencySymbol":"&#65020;","geoplugin_currencySymbol_UTF8":"\ufdfc","geoplugin_currencyConverter":"3.75"},"103.148.210.154":{"geoplugin_request":"103.148.210.154","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Narayanganj","geoplugin_region":"Dhaka Division","geoplugin_regionCode":"40","geoplugin_regionName":"Narayanganj","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"BD","geoplugin_countryName":"Bangladesh","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"23.65","geoplugin_longitude":"90.49","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"Asia\/Dhaka","geoplugin_currencyCode":"BDT","geoplugin_currencySymbol":"Tk","geoplugin_currencySymbol_UTF8":"Tk","geoplugin_currencyConverter":"84.9816"},"5.44.174.139":{"geoplugin_request":"5.44.174.139","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Kemerovo","geoplugin_region":"Kemerovo Oblast","geoplugin_regionCode":"KEM","geoplugin_regionName":"Kemerovo Oblast","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"RU","geoplugin_countryName":"Russia","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"55.3333","geoplugin_longitude":"86.0833","geoplugin_locationAccuracyRadius":"100","geoplugin_timezone":"Asia\/Novokuznetsk","geoplugin_currencyCode":"RUB","geoplugin_currencySymbol":"&#1088;&#1091;&#1073;","geoplugin_currencySymbol_UTF8":"\u0440\u0443\u0431","geoplugin_currencyConverter":"73.0649"},"41.233.241.152":{"geoplugin_request":"41.233.241.152","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Cairo","geoplugin_region":"Cairo Governorate","geoplugin_regionCode":"C","geoplugin_regionName":"Cairo Governorate","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"EG","geoplugin_countryName":"Egypt","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AF","geoplugin_continentName":"Africa","geoplugin_latitude":"30.0778","geoplugin_longitude":"31.2852","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"Africa\/Cairo","geoplugin_currencyCode":"EGP","geoplugin_currencySymbol":"&#163;","geoplugin_currencySymbol_UTF8":"\u00a3","geoplugin_currencyConverter":"15.7003"},"116.111.212.159":{"geoplugin_request":"116.111.212.159","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Qu\u1ea3ng Ng\u00e3i","geoplugin_region":"Qu\u1ea3ng Ng\u00e3i Province","geoplugin_regionCode":"29","geoplugin_regionName":"Qu\u1ea3ng Ng\u00e3i Province","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"15.1167","geoplugin_longitude":"108.8","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"Asia\/Ho_Chi_Minh","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.378"},"103.240.115.196":{"geoplugin_request":"103.240.115.196","geoplugin_status":206,"geoplugin_delay":"0ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"KH","geoplugin_countryName":"Cambodia","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"13","geoplugin_longitude":"105","geoplugin_locationAccuracyRadius":"50","geoplugin_timezone":"Asia\/Phnom_Penh","geoplugin_currencyCode":"KHR","geoplugin_currencySymbol":"&#6107;","geoplugin_currencySymbol_UTF8":"\u17db","geoplugin_currencyConverter":"4090.523"},"1.53.2.5":{"geoplugin_request":"1.53.2.5","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Ho Chi Minh City","geoplugin_region":"Ho Chi Minh","geoplugin_regionCode":"SG","geoplugin_regionName":"Ho Chi Minh","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"10.8142","geoplugin_longitude":"106.6438","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"Asia\/Ho_Chi_Minh","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.378"},"46.250.1.192":{"geoplugin_request":"46.250.1.192","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Odessa","geoplugin_region":"Odessa","geoplugin_regionCode":"51","geoplugin_regionName":"Odessa","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"UA","geoplugin_countryName":"Ukraine","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"46.4639","geoplugin_longitude":"30.7386","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"Europe\/Kiev","geoplugin_currencyCode":"UAH","geoplugin_currencySymbol":"&#8372;","geoplugin_currencySymbol_UTF8":"\u20b4","geoplugin_currencyConverter":"26.916"},"14.42.154.57":{"geoplugin_request":"14.42.154.57","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Busan","geoplugin_region":"Busan","geoplugin_regionCode":"26","geoplugin_regionName":"Busan","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"KR","geoplugin_countryName":"South Korea","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"35.1003","geoplugin_longitude":"129.0442","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"Asia\/Seoul","geoplugin_currencyCode":"KRW","geoplugin_currencySymbol":"&#8361;","geoplugin_currencySymbol_UTF8":"\u20a9","geoplugin_currencyConverter":"1146.1404"},"188.43.136.32":{"geoplugin_request":"188.43.136.32","geoplugin_status":206,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"RU","geoplugin_countryName":"Russia","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"55.7386","geoplugin_longitude":"37.6068","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"Europe\/Moscow","geoplugin_currencyCode":"RUB","geoplugin_currencySymbol":"&#1088;&#1091;&#1073;","geoplugin_currencySymbol_UTF8":"\u0440\u0443\u0431","geoplugin_currencyConverter":"73.0649"},"180.244.170.86":{"geoplugin_request":"180.244.170.86","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Jakarta","geoplugin_region":"Jakarta","geoplugin_regionCode":"JK","geoplugin_regionName":"Jakarta","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"ID","geoplugin_countryName":"Indonesia","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"-6.1741","geoplugin_longitude":"106.8296","geoplugin_locationAccuracyRadius":"5","geoplugin_timezone":"Asia\/Jakarta","geoplugin_currencyCode":"IDR","geoplugin_currencySymbol":"&#82;&#112;","geoplugin_currencySymbol_UTF8":"Rp","geoplugin_currencyConverter":"14444.5"},"178.189.204.236":{"geoplugin_request":"178.189.204.236","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Langenzersdorf","geoplugin_region":"Lower Austria","geoplugin_regionCode":"3","geoplugin_regionName":"Lower Austria","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"AT","geoplugin_countryName":"Austria","geoplugin_inEU":1,"geoplugin_euVATrate":20,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"48.3","geoplugin_longitude":"16.35","geoplugin_locationAccuracyRadius":"5","geoplugin_timezone":"Europe\/Vienna","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8501"},"43.241.194.135":{"geoplugin_request":"43.241.194.135","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Gandhinagar","geoplugin_region":"Gujarat","geoplugin_regionCode":"GJ","geoplugin_regionName":"Gujarat","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"IN","geoplugin_countryName":"India","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"23.2167","geoplugin_longitude":"72.6833","geoplugin_locationAccuracyRadius":"10","geoplugin_timezone":"Asia\/Kolkata","geoplugin_currencyCode":"INR","geoplugin_currencySymbol":"&#8377;","geoplugin_currencySymbol_UTF8":"\u20b9","geoplugin_currencyConverter":"74.2105"},"24.23.75.147":{"geoplugin_request":"24.23.75.147","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Tucson","geoplugin_region":"Arizona","geoplugin_regionCode":"AZ","geoplugin_regionName":"Arizona","geoplugin_areaCode":"","geoplugin_dmaCode":"789","geoplugin_countryCode":"US","geoplugin_countryName":"United States","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"NA","geoplugin_continentName":"North America","geoplugin_latitude":"32.413","geoplugin_longitude":"-110.942","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"America\/Phoenix","geoplugin_currencyCode":"USD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1"},"185.191.166.111":{"geoplugin_request":"185.191.166.111","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Podujevo","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"XK","geoplugin_countryName":"Kosovo","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"42.9106","geoplugin_longitude":"21.1931","geoplugin_locationAccuracyRadius":"20","geoplugin_timezone":"Europe\/Belgrade","geoplugin_currencyCode":null,"geoplugin_currencySymbol":null,"geoplugin_currencySymbol_UTF8":"","geoplugin_currencyConverter":"0"},"91.160.19.34":{"geoplugin_request":"91.160.19.34","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Rennes","geoplugin_region":"Brittany","geoplugin_regionCode":"35","geoplugin_regionName":"Ille-et-Vilaine","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"FR","geoplugin_countryName":"France","geoplugin_inEU":1,"geoplugin_euVATrate":20,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"48.11","geoplugin_longitude":"-1.6744","geoplugin_locationAccuracyRadius":"5","geoplugin_timezone":"Europe\/Paris","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8501"},"197.156.72.221":{"geoplugin_request":"197.156.72.221","geoplugin_status":206,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"ET","geoplugin_countryName":"Ethiopia","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AF","geoplugin_continentName":"Africa","geoplugin_latitude":"8","geoplugin_longitude":"38","geoplugin_locationAccuracyRadius":"50","geoplugin_timezone":"Africa\/Addis_Ababa","geoplugin_currencyCode":"ETB","geoplugin_currencySymbol":"ETB","geoplugin_currencySymbol_UTF8":"ETB","geoplugin_currencyConverter":"44.933"},"65.60.148.14":{"geoplugin_request":"65.60.148.14","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Naperville","geoplugin_region":"Illinois","geoplugin_regionCode":"IL","geoplugin_regionName":"Illinois","geoplugin_areaCode":"","geoplugin_dmaCode":"602","geoplugin_countryCode":"US","geoplugin_countryName":"United States","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"NA","geoplugin_continentName":"North America","geoplugin_latitude":"41.7323","geoplugin_longitude":"-88.1282","geoplugin_locationAccuracyRadius":"5","geoplugin_timezone":"America\/Chicago","geoplugin_currencyCode":"USD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1"},"39.40.36.73":{"geoplugin_request":"39.40.36.73","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Islamabad","geoplugin_region":"Islamabad","geoplugin_regionCode":"IS","geoplugin_regionName":"Islamabad","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"PK","geoplugin_countryName":"Pakistan","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"33.6957","geoplugin_longitude":"73.0113","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"Asia\/Karachi","geoplugin_currencyCode":"PKR","geoplugin_currencySymbol":"&#8360;","geoplugin_currencySymbol_UTF8":"\u20a8","geoplugin_currencyConverter":"164.7598"},"113.165.166.188":{"geoplugin_request":"113.165.166.188","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Da Lat","geoplugin_region":"Tinh Lam GJong","geoplugin_regionCode":"35","geoplugin_regionName":"Tinh Lam GJong","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"11.9362","geoplugin_longitude":"108.4172","geoplugin_locationAccuracyRadius":"100","geoplugin_timezone":"Asia\/Ho_Chi_Minh","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.38"},"65.49.20.67":{"geoplugin_request":"65.49.20.67","geoplugin_status":206,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"US","geoplugin_countryName":"United States","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"NA","geoplugin_continentName":"North America","geoplugin_latitude":"37.751","geoplugin_longitude":"-97.822","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"America\/Chicago","geoplugin_currencyCode":"USD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1"},"36.68.8.56":{"geoplugin_request":"36.68.8.56","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Surakarta","geoplugin_region":"Central Java","geoplugin_regionCode":"JT","geoplugin_regionName":"Central Java","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"ID","geoplugin_countryName":"Indonesia","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"-7.5533","geoplugin_longitude":"110.831","geoplugin_locationAccuracyRadius":"20","geoplugin_timezone":"Asia\/Jakarta","geoplugin_currencyCode":"IDR","geoplugin_currencySymbol":"&#82;&#112;","geoplugin_currencySymbol_UTF8":"Rp","geoplugin_currencyConverter":"14444.5"},"92.9.44.145":{"geoplugin_request":"92.9.44.145","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Rotherham","geoplugin_region":"England","geoplugin_regionCode":"ROT","geoplugin_regionName":"Rotherham","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"GB","geoplugin_countryName":"United Kingdom","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"53.4333","geoplugin_longitude":"-1.35","geoplugin_locationAccuracyRadius":"20","geoplugin_timezone":"Europe\/London","geoplugin_currencyCode":"GBP","geoplugin_currencySymbol":"&#163;","geoplugin_currencySymbol_UTF8":"\u00a3","geoplugin_currencyConverter":"0.7206"},"112.27.128.211":{"geoplugin_request":"112.27.128.211","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Bengbu","geoplugin_region":"Anhui","geoplugin_regionCode":"AH","geoplugin_regionName":"Anhui","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"CN","geoplugin_countryName":"China","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"32.9408","geoplugin_longitude":"117.3608","geoplugin_locationAccuracyRadius":"100","geoplugin_timezone":"Asia\/Shanghai","geoplugin_currencyCode":"CNY","geoplugin_currencySymbol":"&#20803;","geoplugin_currencySymbol_UTF8":"\u5143","geoplugin_currencyConverter":"6.4836"},"91.180.238.209":{"geoplugin_request":"91.180.238.209","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Lokeren","geoplugin_region":"Flanders","geoplugin_regionCode":"VOV","geoplugin_regionName":"East Flanders Province","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"BE","geoplugin_countryName":"Belgium","geoplugin_inEU":1,"geoplugin_euVATrate":21,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"51.1049","geoplugin_longitude":"3.9834","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"Europe\/Brussels","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8501"},"93.108.215.238":{"geoplugin_request":"93.108.215.238","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Lisbon","geoplugin_region":"Lisbon","geoplugin_regionCode":"11","geoplugin_regionName":"Lisbon","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"PT","geoplugin_countryName":"Portugal","geoplugin_inEU":1,"geoplugin_euVATrate":23,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"38.7167","geoplugin_longitude":"-9.1333","geoplugin_locationAccuracyRadius":"10","geoplugin_timezone":"Europe\/Lisbon","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8501"},"14.46.199.21":{"geoplugin_request":"14.46.199.21","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Daegu","geoplugin_region":"Daegu","geoplugin_regionCode":"27","geoplugin_regionName":"Daegu","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"KR","geoplugin_countryName":"South Korea","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"35.8723","geoplugin_longitude":"128.5924","geoplugin_locationAccuracyRadius":"100","geoplugin_timezone":"Asia\/Seoul","geoplugin_currencyCode":"KRW","geoplugin_currencySymbol":"&#8361;","geoplugin_currencySymbol_UTF8":"\u20a9","geoplugin_currencyConverter":"1146.14"},"118.103.253.207":{"geoplugin_request":"118.103.253.207","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Bandar Seri Begawan","geoplugin_region":"Brunei-Muara District","geoplugin_regionCode":"BM","geoplugin_regionName":"Brunei-Muara District","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"BN","geoplugin_countryName":"Brunei","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"4.8817","geoplugin_longitude":"114.9359","geoplugin_locationAccuracyRadius":"50","geoplugin_timezone":"Asia\/Brunei","geoplugin_currencyCode":"BND","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1.3561"},"70.53.139.197":{"geoplugin_request":"70.53.139.197","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Shawinigan","geoplugin_region":"Quebec","geoplugin_regionCode":"QC","geoplugin_regionName":"Quebec","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"CA","geoplugin_countryName":"Canada","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"NA","geoplugin_continentName":"North America","geoplugin_latitude":"46.6315","geoplugin_longitude":"-72.737","geoplugin_locationAccuracyRadius":"10","geoplugin_timezone":"America\/Toronto","geoplugin_currencyCode":"CAD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1.2555"},"78.189.223.60":{"geoplugin_request":"78.189.223.60","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Istanbul","geoplugin_region":"Istanbul","geoplugin_regionCode":"34","geoplugin_regionName":"Istanbul","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"TR","geoplugin_countryName":"Turkey","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"41.0177","geoplugin_longitude":"28.9744","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"Europe\/Istanbul","geoplugin_currencyCode":"TRY","geoplugin_currencySymbol":"&#89;&#84;&#76;","geoplugin_currencySymbol_UTF8":"YTL","geoplugin_currencyConverter":"8.628"},"37.41.56.63":{"geoplugin_request":"37.41.56.63","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Muscat","geoplugin_region":"Muscat","geoplugin_regionCode":"MA","geoplugin_regionName":"Muscat","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"OM","geoplugin_countryName":"Oman","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"23.6182","geoplugin_longitude":"58.5945","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"Asia\/Muscat","geoplugin_currencyCode":"OMR","geoplugin_currencySymbol":"&#65020;","geoplugin_currencySymbol_UTF8":"\ufdfc","geoplugin_currencyConverter":"0.3849"},"222.182.118.124":{"geoplugin_request":"222.182.118.124","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Chongqing","geoplugin_region":"Chongqing","geoplugin_regionCode":"CQ","geoplugin_regionName":"Chongqing","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"CN","geoplugin_countryName":"China","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"29.5514","geoplugin_longitude":"106.5555","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"Asia\/Shanghai","geoplugin_currencyCode":"CNY","geoplugin_currencySymbol":"&#20803;","geoplugin_currencySymbol_UTF8":"\u5143","geoplugin_currencyConverter":"6.4836"},"176.132.174.139":{"geoplugin_request":"176.132.174.139","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Nantes","geoplugin_region":"Pays de la Loire","geoplugin_regionCode":"44","geoplugin_regionName":"Loire-Atlantique","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"FR","geoplugin_countryName":"France","geoplugin_inEU":1,"geoplugin_euVATrate":20,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"47.2144","geoplugin_longitude":"-1.5512","geoplugin_locationAccuracyRadius":"5","geoplugin_timezone":"Europe\/Paris","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8501"},"73.230.36.240":{"geoplugin_request":"73.230.36.240","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"New Cumberland","geoplugin_region":"Pennsylvania","geoplugin_regionCode":"PA","geoplugin_regionName":"Pennsylvania","geoplugin_areaCode":"","geoplugin_dmaCode":"566","geoplugin_countryCode":"US","geoplugin_countryName":"United States","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"NA","geoplugin_continentName":"North America","geoplugin_latitude":"40.2162","geoplugin_longitude":"-76.8664","geoplugin_locationAccuracyRadius":"10","geoplugin_timezone":"America\/New_York","geoplugin_currencyCode":"USD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1"},"24.12.251.151":{"geoplugin_request":"24.12.251.151","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Chicago","geoplugin_region":"Illinois","geoplugin_regionCode":"IL","geoplugin_regionName":"Illinois","geoplugin_areaCode":"","geoplugin_dmaCode":"602","geoplugin_countryCode":"US","geoplugin_countryName":"United States","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"NA","geoplugin_continentName":"North America","geoplugin_latitude":"41.9704","geoplugin_longitude":"-87.7036","geoplugin_locationAccuracyRadius":"5","geoplugin_timezone":"America\/Chicago","geoplugin_currencyCode":"USD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1"},"171.97.30.57":{"geoplugin_request":"171.97.30.57","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Bangkok","geoplugin_region":"Bangkok","geoplugin_regionCode":"10","geoplugin_regionName":"Bangkok","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"TH","geoplugin_countryName":"Thailand","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"13.6984","geoplugin_longitude":"100.4638","geoplugin_locationAccuracyRadius":"5","geoplugin_timezone":"Asia\/Bangkok","geoplugin_currencyCode":"THB","geoplugin_currencySymbol":"&#3647;","geoplugin_currencySymbol_UTF8":"\u0e3f","geoplugin_currencyConverter":"33.431"},"171.101.228.205":{"geoplugin_request":"171.101.228.205","geoplugin_status":206,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"Bangkok","geoplugin_regionCode":"10","geoplugin_regionName":"Bangkok","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"TH","geoplugin_countryName":"Thailand","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"13.8638","geoplugin_longitude":"100.5998","geoplugin_locationAccuracyRadius":"20","geoplugin_timezone":"Asia\/Bangkok","geoplugin_currencyCode":"THB","geoplugin_currencySymbol":"&#3647;","geoplugin_currencySymbol_UTF8":"\u0e3f","geoplugin_currencyConverter":"33.431"},"195.133.40.2":{"geoplugin_request":"195.133.40.2","geoplugin_status":206,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"CZ","geoplugin_countryName":"Czechia","geoplugin_inEU":1,"geoplugin_euVATrate":21,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"50.0848","geoplugin_longitude":"14.4112","geoplugin_locationAccuracyRadius":"100","geoplugin_timezone":"Europe\/Prague","geoplugin_currencyCode":"CZK","geoplugin_currencySymbol":"&#75;&#269;","geoplugin_currencySymbol_UTF8":"K\u010d","geoplugin_currencyConverter":"21.6022"},"154.160.26.215":{"geoplugin_request":"154.160.26.215","geoplugin_status":200,"geoplugin_delay":"0ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Accra","geoplugin_region":"Greater Accra Region","geoplugin_regionCode":"AA","geoplugin_regionName":"Greater Accra Region","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"GH","geoplugin_countryName":"Ghana","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AF","geoplugin_continentName":"Africa","geoplugin_latitude":"5.5502","geoplugin_longitude":"-0.2174","geoplugin_locationAccuracyRadius":"5","geoplugin_timezone":"Africa\/Accra","geoplugin_currencyCode":"GHS","geoplugin_currencySymbol":"&#162;","geoplugin_currencySymbol_UTF8":"\u00a2","geoplugin_currencyConverter":"5.9997"},"154.160.10.192":{"geoplugin_request":"154.160.10.192","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Accra","geoplugin_region":"Greater Accra Region","geoplugin_regionCode":"AA","geoplugin_regionName":"Greater Accra Region","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"GH","geoplugin_countryName":"Ghana","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AF","geoplugin_continentName":"Africa","geoplugin_latitude":"5.5502","geoplugin_longitude":"-0.2174","geoplugin_locationAccuracyRadius":"20","geoplugin_timezone":"Africa\/Accra","geoplugin_currencyCode":"GHS","geoplugin_currencySymbol":"&#162;","geoplugin_currencySymbol_UTF8":"\u00a2","geoplugin_currencyConverter":"6.0214"},"84.1.195.209":{"geoplugin_request":"84.1.195.209","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Kunszentmarton","geoplugin_region":"J\u00e1sz-Nagykun-Szolnok","geoplugin_regionCode":"JN","geoplugin_regionName":"J\u00e1sz-Nagykun-Szolnok","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"HU","geoplugin_countryName":"Hungary","geoplugin_inEU":1,"geoplugin_euVATrate":27,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"46.8392","geoplugin_longitude":"20.2888","geoplugin_locationAccuracyRadius":"100","geoplugin_timezone":"Europe\/Budapest","geoplugin_currencyCode":"HUF","geoplugin_currencySymbol":"&#70;&#116;","geoplugin_currencySymbol_UTF8":"Ft","geoplugin_currencyConverter":"300.9038"},"159.224.232.202":{"geoplugin_request":"159.224.232.202","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Dnipropetrovsk","geoplugin_region":"Dnipropetrovsk Oblast","geoplugin_regionCode":"12","geoplugin_regionName":"Dnipropetrovsk Oblast","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"UA","geoplugin_countryName":"Ukraine","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"48.4735","geoplugin_longitude":"35.046","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"Europe\/Kiev","geoplugin_currencyCode":"UAH","geoplugin_currencySymbol":"&#8372;","geoplugin_currencySymbol_UTF8":"\u20b4","geoplugin_currencyConverter":"26.916"},"38.121.242.134":{"geoplugin_request":"38.121.242.134","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Montreal","geoplugin_region":"Quebec","geoplugin_regionCode":"QC","geoplugin_regionName":"Quebec","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"CA","geoplugin_countryName":"Canada","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"NA","geoplugin_continentName":"North America","geoplugin_latitude":"45.5533","geoplugin_longitude":"-73.6405","geoplugin_locationAccuracyRadius":"20","geoplugin_timezone":"America\/Toronto","geoplugin_currencyCode":"CAD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1.2555"},"103.119.123.170":{"geoplugin_request":"103.119.123.170","geoplugin_status":200,"geoplugin_delay":"0ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Moradabad","geoplugin_region":"Uttar Pradesh","geoplugin_regionCode":"UP","geoplugin_regionName":"Uttar Pradesh","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"IN","geoplugin_countryName":"India","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"28.8395","geoplugin_longitude":"78.7699","geoplugin_locationAccuracyRadius":"50","geoplugin_timezone":"Asia\/Kolkata","geoplugin_currencyCode":"INR","geoplugin_currencySymbol":"&#8377;","geoplugin_currencySymbol_UTF8":"\u20b9","geoplugin_currencyConverter":"74.2105"},"188.163.42.188":{"geoplugin_request":"188.163.42.188","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Kryvyi Rih","geoplugin_region":"Dnipropetrovsk Oblast","geoplugin_regionCode":"12","geoplugin_regionName":"Dnipropetrovsk Oblast","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"UA","geoplugin_countryName":"Ukraine","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"47.9097","geoplugin_longitude":"33.3804","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"Europe\/Kiev","geoplugin_currencyCode":"UAH","geoplugin_currencySymbol":"&#8372;","geoplugin_currencySymbol_UTF8":"\u20b4","geoplugin_currencyConverter":"26.916"},"201.182.66.34":{"geoplugin_request":"201.182.66.34","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"S\u00e3o Lu\u00eds","geoplugin_region":"Maranhao","geoplugin_regionCode":"MA","geoplugin_regionName":"Maranhao","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"BR","geoplugin_countryName":"Brazil","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"SA","geoplugin_continentName":"South America","geoplugin_latitude":"-2.6495","geoplugin_longitude":"-44.3044","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"America\/Fortaleza","geoplugin_currencyCode":"BRL","geoplugin_currencySymbol":"&#82;&#36;","geoplugin_currencySymbol_UTF8":"R$","geoplugin_currencyConverter":"5.2654"},"103.43.82.89":{"geoplugin_request":"103.43.82.89","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Kolkata","geoplugin_region":"West Bengal","geoplugin_regionCode":"WB","geoplugin_regionName":"West Bengal","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"IN","geoplugin_countryName":"India","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"22.5626","geoplugin_longitude":"88.363","geoplugin_locationAccuracyRadius":"50","geoplugin_timezone":"Asia\/Kolkata","geoplugin_currencyCode":"INR","geoplugin_currencySymbol":"&#8377;","geoplugin_currencySymbol_UTF8":"\u20b9","geoplugin_currencyConverter":"74.2421"},"200.203.144.27":{"geoplugin_request":"200.203.144.27","geoplugin_status":200,"geoplugin_delay":"0ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Urupa","geoplugin_region":"Rondonia","geoplugin_regionCode":"RO","geoplugin_regionName":"Rondonia","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"BR","geoplugin_countryName":"Brazil","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"SA","geoplugin_continentName":"South America","geoplugin_latitude":"-11.0792","geoplugin_longitude":"-62.3813","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"America\/Porto_Velho","geoplugin_currencyCode":"BRL","geoplugin_currencySymbol":"&#82;&#36;","geoplugin_currencySymbol_UTF8":"R$","geoplugin_currencyConverter":"5.2654"},"180.247.33.96":{"geoplugin_request":"180.247.33.96","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Surabaya","geoplugin_region":"East Java","geoplugin_regionCode":"JI","geoplugin_regionName":"East Java","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"ID","geoplugin_countryName":"Indonesia","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"-7.2484","geoplugin_longitude":"112.7419","geoplugin_locationAccuracyRadius":"20","geoplugin_timezone":"Asia\/Jakarta","geoplugin_currencyCode":"IDR","geoplugin_currencySymbol":"&#82;&#112;","geoplugin_currencySymbol_UTF8":"Rp","geoplugin_currencyConverter":"14444.5"},"222.252.58.85":{"geoplugin_request":"222.252.58.85","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Hanoi","geoplugin_region":"Hanoi","geoplugin_regionCode":"HN","geoplugin_regionName":"Hanoi","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"21.0313","geoplugin_longitude":"105.8516","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"Asia\/Bangkok","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.38"},"116.110.113.112":{"geoplugin_request":"116.110.113.112","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Da Nang","geoplugin_region":"Da Nang","geoplugin_regionCode":"DN","geoplugin_regionName":"Da Nang","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"16.0685","geoplugin_longitude":"108.2215","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"Asia\/Ho_Chi_Minh","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.38"},"116.110.22.133":{"geoplugin_request":"116.110.22.133","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Da Nang","geoplugin_region":"Da Nang","geoplugin_regionCode":"DN","geoplugin_regionName":"Da Nang","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"16.0685","geoplugin_longitude":"108.2215","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"Asia\/Ho_Chi_Minh","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.378"},"190.215.109.154":{"geoplugin_request":"190.215.109.154","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Vitacura","geoplugin_region":"Santiago Metropolitan","geoplugin_regionCode":"RM","geoplugin_regionName":"Santiago Metropolitan","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"CL","geoplugin_countryName":"Chile","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"SA","geoplugin_continentName":"South America","geoplugin_latitude":"-33.4","geoplugin_longitude":"-70.6","geoplugin_locationAccuracyRadius":"10","geoplugin_timezone":"America\/Santiago","geoplugin_currencyCode":"CLP","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"788.2504"},"175.176.54.29":{"geoplugin_request":"175.176.54.29","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"San Pablo City","geoplugin_region":"Calabarzon","geoplugin_regionCode":"LAG","geoplugin_regionName":"Province of Laguna","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"PH","geoplugin_countryName":"Philippines","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"14.0751","geoplugin_longitude":"121.3289","geoplugin_locationAccuracyRadius":"50","geoplugin_timezone":"Asia\/Manila","geoplugin_currencyCode":"PHP","geoplugin_currencySymbol":"&#80;&#104;&#112;","geoplugin_currencySymbol_UTF8":"Php","geoplugin_currencyConverter":"50.6385"},"77.22.26.210":{"geoplugin_request":"77.22.26.210","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Bremen","geoplugin_region":"Bremen","geoplugin_regionCode":"HB","geoplugin_regionName":"Bremen","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"DE","geoplugin_countryName":"Germany","geoplugin_inEU":1,"geoplugin_euVATrate":19,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"53.0552","geoplugin_longitude":"8.7455","geoplugin_locationAccuracyRadius":"5","geoplugin_timezone":"Europe\/Berlin","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8501"},"27.65.61.145":{"geoplugin_request":"27.65.61.145","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Ho Chi Minh City","geoplugin_region":"Ho Chi Minh","geoplugin_regionCode":"SG","geoplugin_regionName":"Ho Chi Minh","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"10.8142","geoplugin_longitude":"106.6438","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"Asia\/Ho_Chi_Minh","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.38"},"41.143.94.179":{"geoplugin_request":"41.143.94.179","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"T\u00e9touan","geoplugin_region":"Tanger-Tetouan-Al Hoceima","geoplugin_regionCode":"TET","geoplugin_regionName":"Tetouan","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"MA","geoplugin_countryName":"Morocco","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AF","geoplugin_continentName":"Africa","geoplugin_latitude":"35.572","geoplugin_longitude":"-5.3732","geoplugin_locationAccuracyRadius":"10","geoplugin_timezone":"Africa\/Casablanca","geoplugin_currencyCode":"MAD","geoplugin_currencySymbol":"DH","geoplugin_currencySymbol_UTF8":"DH","geoplugin_currencyConverter":"8.9827"},"88.166.170.133":{"geoplugin_request":"88.166.170.133","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Paris","geoplugin_region":"\u00cele-de-France","geoplugin_regionCode":"75","geoplugin_regionName":"Paris","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"FR","geoplugin_countryName":"France","geoplugin_inEU":1,"geoplugin_euVATrate":20,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"48.8579","geoplugin_longitude":"2.3491","geoplugin_locationAccuracyRadius":"5","geoplugin_timezone":"Europe\/Paris","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8501"},"142.93.97.193":{"geoplugin_request":"142.93.97.193","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Frankfurt am Main","geoplugin_region":"Hesse","geoplugin_regionCode":"HE","geoplugin_regionName":"Hesse","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"DE","geoplugin_countryName":"Germany","geoplugin_inEU":1,"geoplugin_euVATrate":19,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"50.1188","geoplugin_longitude":"8.6843","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"Europe\/Berlin","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8501"},"101.166.192.3":{"geoplugin_request":"101.166.192.3","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Adelaide","geoplugin_region":"South Australia","geoplugin_regionCode":"SA","geoplugin_regionName":"South Australia","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"AU","geoplugin_countryName":"Australia","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"OC","geoplugin_continentName":"Oceania","geoplugin_latitude":"-34.9274","geoplugin_longitude":"138.6005","geoplugin_locationAccuracyRadius":"5","geoplugin_timezone":"Australia\/Adelaide","geoplugin_currencyCode":"AUD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1.3594"},"177.229.194.170":{"geoplugin_request":"177.229.194.170","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Morelia","geoplugin_region":"Michoac\u00e1n","geoplugin_regionCode":"MIC","geoplugin_regionName":"Michoac\u00e1n","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"MX","geoplugin_countryName":"Mexico","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"NA","geoplugin_continentName":"North America","geoplugin_latitude":"19.6745","geoplugin_longitude":"-101.2423","geoplugin_locationAccuracyRadius":"5","geoplugin_timezone":"America\/Mexico_City","geoplugin_currencyCode":"MXN","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"20.0442"},"180.244.164.137":{"geoplugin_request":"180.244.164.137","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Bekasi","geoplugin_region":"West Java","geoplugin_regionCode":"JB","geoplugin_regionName":"West Java","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"ID","geoplugin_countryName":"Indonesia","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"-6.2352","geoplugin_longitude":"106.9922","geoplugin_locationAccuracyRadius":"20","geoplugin_timezone":"Asia\/Jakarta","geoplugin_currencyCode":"IDR","geoplugin_currencySymbol":"&#82;&#112;","geoplugin_currencySymbol_UTF8":"Rp","geoplugin_currencyConverter":"14444.5"},"195.133.40.104":{"geoplugin_request":"195.133.40.104","geoplugin_status":206,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"CZ","geoplugin_countryName":"Czechia","geoplugin_inEU":1,"geoplugin_euVATrate":21,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"50.0848","geoplugin_longitude":"14.4112","geoplugin_locationAccuracyRadius":"100","geoplugin_timezone":"Europe\/Prague","geoplugin_currencyCode":"CZK","geoplugin_currencySymbol":"&#75;&#269;","geoplugin_currencySymbol_UTF8":"K\u010d","geoplugin_currencyConverter":"21.6022"},"197.210.55.143":{"geoplugin_request":"197.210.55.143","geoplugin_status":206,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"NG","geoplugin_countryName":"Nigeria","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AF","geoplugin_continentName":"Africa","geoplugin_latitude":"10","geoplugin_longitude":"8","geoplugin_locationAccuracyRadius":"500","geoplugin_timezone":"Africa\/Lagos","geoplugin_currencyCode":"NGN","geoplugin_currencySymbol":"&#8358;","geoplugin_currencySymbol_UTF8":"\u20a6","geoplugin_currencyConverter":"411.4804"},"197.210.54.72":{"geoplugin_request":"197.210.54.72","geoplugin_status":206,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"NG","geoplugin_countryName":"Nigeria","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AF","geoplugin_continentName":"Africa","geoplugin_latitude":"10","geoplugin_longitude":"8","geoplugin_locationAccuracyRadius":"500","geoplugin_timezone":"Africa\/Lagos","geoplugin_currencyCode":"NGN","geoplugin_currencySymbol":"&#8358;","geoplugin_currencySymbol_UTF8":"\u20a6","geoplugin_currencyConverter":"411.4804"},"197.210.227.76":{"geoplugin_request":"197.210.227.76","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Lagos","geoplugin_region":"Lagos","geoplugin_regionCode":"LA","geoplugin_regionName":"Lagos","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"NG","geoplugin_countryName":"Nigeria","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AF","geoplugin_continentName":"Africa","geoplugin_latitude":"6.4474","geoplugin_longitude":"3.3903","geoplugin_locationAccuracyRadius":"500","geoplugin_timezone":"Africa\/Lagos","geoplugin_currencyCode":"NGN","geoplugin_currencySymbol":"&#8358;","geoplugin_currencySymbol_UTF8":"\u20a6","geoplugin_currencyConverter":"411.4804"},"45.71.194.42":{"geoplugin_request":"45.71.194.42","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Lucena","geoplugin_region":"Para\u00edba","geoplugin_regionCode":"PB","geoplugin_regionName":"Para\u00edba","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"BR","geoplugin_countryName":"Brazil","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"SA","geoplugin_continentName":"South America","geoplugin_latitude":"-6.9246","geoplugin_longitude":"-34.9027","geoplugin_locationAccuracyRadius":"100","geoplugin_timezone":"America\/Fortaleza","geoplugin_currencyCode":"BRL","geoplugin_currencySymbol":"&#82;&#36;","geoplugin_currencySymbol_UTF8":"R$","geoplugin_currencyConverter":"5.2654"},"186.236.0.25":{"geoplugin_request":"186.236.0.25","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Palmitos","geoplugin_region":"Santa Catarina","geoplugin_regionCode":"SC","geoplugin_regionName":"Santa Catarina","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"BR","geoplugin_countryName":"Brazil","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"SA","geoplugin_continentName":"South America","geoplugin_latitude":"-27.0807","geoplugin_longitude":"-53.1781","geoplugin_locationAccuracyRadius":"500","geoplugin_timezone":"America\/Sao_Paulo","geoplugin_currencyCode":"BRL","geoplugin_currencySymbol":"&#82;&#36;","geoplugin_currencySymbol_UTF8":"R$","geoplugin_currencyConverter":"5.2654"},"202.63.243.132":{"geoplugin_request":"202.63.243.132","geoplugin_status":206,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"NP","geoplugin_countryName":"Nepal","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"28","geoplugin_longitude":"84","geoplugin_locationAccuracyRadius":"50","geoplugin_timezone":"Asia\/Kathmandu","geoplugin_currencyCode":"NPR","geoplugin_currencySymbol":"&#8360;","geoplugin_currencySymbol_UTF8":"\u20a8","geoplugin_currencyConverter":"119.0176"},"113.175.184.208":{"geoplugin_request":"113.175.184.208","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Yen Bai","geoplugin_region":"Tinh Yen Bai","geoplugin_regionCode":"06","geoplugin_regionName":"Tinh Yen Bai","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"21.7","geoplugin_longitude":"104.8667","geoplugin_locationAccuracyRadius":"100","geoplugin_timezone":"Asia\/Bangkok","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.378"},"14.226.133.12":{"geoplugin_request":"14.226.133.12","geoplugin_status":206,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"16.0016","geoplugin_longitude":"105.9986","geoplugin_locationAccuracyRadius":"50","geoplugin_timezone":"Asia\/Vientiane","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.38"},"59.2.207.18":{"geoplugin_request":"59.2.207.18","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Iksan","geoplugin_region":"Jeollabuk-do","geoplugin_regionCode":"45","geoplugin_regionName":"Jeollabuk-do","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"KR","geoplugin_countryName":"South Korea","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"35.9439","geoplugin_longitude":"126.9544","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"Asia\/Seoul","geoplugin_currencyCode":"KRW","geoplugin_currencySymbol":"&#8361;","geoplugin_currencySymbol_UTF8":"\u20a9","geoplugin_currencyConverter":"1145.92"},"66.181.191.248":{"geoplugin_request":"66.181.191.248","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Ulan Bator","geoplugin_region":"Ulaanbaatar Hot","geoplugin_regionCode":"1","geoplugin_regionName":"Ulaanbaatar Hot","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"MN","geoplugin_countryName":"Mongolia","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"47.9173","geoplugin_longitude":"106.9177","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"Asia\/Ulaanbaatar","geoplugin_currencyCode":"MNT","geoplugin_currencySymbol":"&#8366;","geoplugin_currencySymbol_UTF8":"\u20ae","geoplugin_currencyConverter":"2848.115"},"123.25.212.119":{"geoplugin_request":"123.25.212.119","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Binh Minh","geoplugin_region":"Tinh Vinh Long","geoplugin_regionCode":"49","geoplugin_regionName":"Tinh Vinh Long","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"10.0111","geoplugin_longitude":"105.8501","geoplugin_locationAccuracyRadius":"100","geoplugin_timezone":"Asia\/Ho_Chi_Minh","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.378"},"14.252.60.71":{"geoplugin_request":"14.252.60.71","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Ca Mau","geoplugin_region":"Tinh Ca Mau","geoplugin_regionCode":"59","geoplugin_regionName":"Tinh Ca Mau","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"9.1769","geoplugin_longitude":"105.15","geoplugin_locationAccuracyRadius":"500","geoplugin_timezone":"Asia\/Ho_Chi_Minh","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.38"},"94.114.125.32":{"geoplugin_request":"94.114.125.32","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"M\u00f6nchengladbach","geoplugin_region":"North Rhine-Westphalia","geoplugin_regionCode":"NW","geoplugin_regionName":"North Rhine-Westphalia","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"DE","geoplugin_countryName":"Germany","geoplugin_inEU":1,"geoplugin_euVATrate":19,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"51.1804","geoplugin_longitude":"6.4346","geoplugin_locationAccuracyRadius":"5","geoplugin_timezone":"Europe\/Berlin","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8501"},"143.244.169.230":{"geoplugin_request":"143.244.169.230","geoplugin_status":206,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"US","geoplugin_countryName":"United States","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"NA","geoplugin_continentName":"North America","geoplugin_latitude":"37.751","geoplugin_longitude":"-97.822","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"America\/Chicago","geoplugin_currencyCode":"USD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1"},"202.29.241.229":{"geoplugin_request":"202.29.241.229","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Phetchabun","geoplugin_region":"Phetchabun","geoplugin_regionCode":"67","geoplugin_regionName":"Phetchabun","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"TH","geoplugin_countryName":"Thailand","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"16.4161","geoplugin_longitude":"101.1322","geoplugin_locationAccuracyRadius":"500","geoplugin_timezone":"Asia\/Bangkok","geoplugin_currencyCode":"THB","geoplugin_currencySymbol":"&#3647;","geoplugin_currencySymbol_UTF8":"\u0e3f","geoplugin_currencyConverter":"33.431"},"185.193.199.96":{"geoplugin_request":"185.193.199.96","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Kyzyl","geoplugin_region":"Republic of Tyva","geoplugin_regionCode":"TY","geoplugin_regionName":"Republic of Tyva","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"RU","geoplugin_countryName":"Russia","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"51.7","geoplugin_longitude":"94.45","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"Asia\/Krasnoyarsk","geoplugin_currencyCode":"RUB","geoplugin_currencySymbol":"&#1088;&#1091;&#1073;","geoplugin_currencySymbol_UTF8":"\u0440\u0443\u0431","geoplugin_currencyConverter":"73.0649"},"74.201.28.120":{"geoplugin_request":"74.201.28.120","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Los Angeles","geoplugin_region":"California","geoplugin_regionCode":"CA","geoplugin_regionName":"California","geoplugin_areaCode":"","geoplugin_dmaCode":"803","geoplugin_countryCode":"US","geoplugin_countryName":"United States","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"NA","geoplugin_continentName":"North America","geoplugin_latitude":"34.0544","geoplugin_longitude":"-118.244","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"America\/Los_Angeles","geoplugin_currencyCode":"USD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1"},"209.141.55.110":{"geoplugin_request":"209.141.55.110","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Las Vegas","geoplugin_region":"Nevada","geoplugin_regionCode":"NV","geoplugin_regionName":"Nevada","geoplugin_areaCode":"","geoplugin_dmaCode":"839","geoplugin_countryCode":"US","geoplugin_countryName":"United States","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"NA","geoplugin_continentName":"North America","geoplugin_latitude":"36.1685","geoplugin_longitude":"-115.1164","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"America\/Los_Angeles","geoplugin_currencyCode":"USD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1"},"176.125.51.14":{"geoplugin_request":"176.125.51.14","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Lviv","geoplugin_region":"Lvivska Oblast","geoplugin_regionCode":"46","geoplugin_regionName":"Lvivska Oblast","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"UA","geoplugin_countryName":"Ukraine","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"49.8486","geoplugin_longitude":"24.0323","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"Europe\/Kiev","geoplugin_currencyCode":"UAH","geoplugin_currencySymbol":"&#8372;","geoplugin_currencySymbol_UTF8":"\u20b4","geoplugin_currencyConverter":"26.916"},"180.248.117.103":{"geoplugin_request":"180.248.117.103","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Balikpapan","geoplugin_region":"East Kalimantan","geoplugin_regionCode":"KI","geoplugin_regionName":"East Kalimantan","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"ID","geoplugin_countryName":"Indonesia","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"-1.2551","geoplugin_longitude":"116.8428","geoplugin_locationAccuracyRadius":"500","geoplugin_timezone":"Asia\/Makassar","geoplugin_currencyCode":"IDR","geoplugin_currencySymbol":"&#82;&#112;","geoplugin_currencySymbol_UTF8":"Rp","geoplugin_currencyConverter":"14444.5"},"132.255.51.97":{"geoplugin_request":"132.255.51.97","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Monte Dourado","geoplugin_region":"Para","geoplugin_regionCode":"PA","geoplugin_regionName":"Para","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"BR","geoplugin_countryName":"Brazil","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"SA","geoplugin_continentName":"South America","geoplugin_latitude":"-0.8609","geoplugin_longitude":"-52.5256","geoplugin_locationAccuracyRadius":"50","geoplugin_timezone":"America\/Santarem","geoplugin_currencyCode":"BRL","geoplugin_currencySymbol":"&#82;&#36;","geoplugin_currencySymbol_UTF8":"R$","geoplugin_currencyConverter":"5.2335"},"45.171.43.6":{"geoplugin_request":"45.171.43.6","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"S\u00e3o Paulo","geoplugin_region":"Sao Paulo","geoplugin_regionCode":"SP","geoplugin_regionName":"Sao Paulo","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"BR","geoplugin_countryName":"Brazil","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"SA","geoplugin_continentName":"South America","geoplugin_latitude":"-23.627","geoplugin_longitude":"-46.635","geoplugin_locationAccuracyRadius":"10","geoplugin_timezone":"America\/Sao_Paulo","geoplugin_currencyCode":"BRL","geoplugin_currencySymbol":"&#82;&#36;","geoplugin_currencySymbol_UTF8":"R$","geoplugin_currencyConverter":"5.2654"},"102.187.80.227":{"geoplugin_request":"102.187.80.227","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Alexandria","geoplugin_region":"Alexandria","geoplugin_regionCode":"ALX","geoplugin_regionName":"Alexandria","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"EG","geoplugin_countryName":"Egypt","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AF","geoplugin_continentName":"Africa","geoplugin_latitude":"31.2162","geoplugin_longitude":"29.9529","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"Africa\/Cairo","geoplugin_currencyCode":"EGP","geoplugin_currencySymbol":"&#163;","geoplugin_currencySymbol_UTF8":"\u00a3","geoplugin_currencyConverter":"15.7003"},"171.249.118.234":{"geoplugin_request":"171.249.118.234","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Ho Chi Minh City","geoplugin_region":"Ho Chi Minh","geoplugin_regionCode":"SG","geoplugin_regionName":"Ho Chi Minh","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"10.8142","geoplugin_longitude":"106.6438","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"Asia\/Ho_Chi_Minh","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.38"},"178.168.83.7":{"geoplugin_request":"178.168.83.7","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Chisinau","geoplugin_region":"Chi\u0219in\u0103u Municipality","geoplugin_regionCode":"CU","geoplugin_regionName":"Chi\u0219in\u0103u Municipality","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"MD","geoplugin_countryName":"Moldova","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"47.0056","geoplugin_longitude":"28.8575","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"Europe\/Chisinau","geoplugin_currencyCode":"MDL","geoplugin_currencySymbol":"MDL","geoplugin_currencySymbol_UTF8":"MDL","geoplugin_currencyConverter":"17.9136"},"134.35.215.134":{"geoplugin_request":"134.35.215.134","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Sanaa","geoplugin_region":"Sanaa","geoplugin_regionCode":"SN","geoplugin_regionName":"Sanaa","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"YE","geoplugin_countryName":"Yemen","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"15.3522","geoplugin_longitude":"44.2095","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"Asia\/Aden","geoplugin_currencyCode":"YER","geoplugin_currencySymbol":"&#65020;","geoplugin_currencySymbol_UTF8":"\ufdfc","geoplugin_currencyConverter":"250.0003"},"165.227.152.165":{"geoplugin_request":"165.227.152.165","geoplugin_status":200,"geoplugin_delay":"0ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Frankfurt am Main","geoplugin_region":"Hesse","geoplugin_regionCode":"HE","geoplugin_regionName":"Hesse","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"DE","geoplugin_countryName":"Germany","geoplugin_inEU":1,"geoplugin_euVATrate":19,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"50.1188","geoplugin_longitude":"8.6843","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"Europe\/Berlin","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8501"},"201.50.241.81":{"geoplugin_request":"201.50.241.81","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Rio de Janeiro","geoplugin_region":"Rio de Janeiro","geoplugin_regionCode":"RJ","geoplugin_regionName":"Rio de Janeiro","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"BR","geoplugin_countryName":"Brazil","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"SA","geoplugin_continentName":"South America","geoplugin_latitude":"-22.9201","geoplugin_longitude":"-43.3307","geoplugin_locationAccuracyRadius":"20","geoplugin_timezone":"America\/Sao_Paulo","geoplugin_currencyCode":"BRL","geoplugin_currencySymbol":"&#82;&#36;","geoplugin_currencySymbol_UTF8":"R$","geoplugin_currencyConverter":"5.2654"},"171.25.193.25":{"geoplugin_request":"171.25.193.25","geoplugin_status":206,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"SE","geoplugin_countryName":"Sweden","geoplugin_inEU":1,"geoplugin_euVATrate":25,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"59.3247","geoplugin_longitude":"18.056","geoplugin_locationAccuracyRadius":"500","geoplugin_timezone":"Europe\/Stockholm","geoplugin_currencyCode":"SEK","geoplugin_currencySymbol":"&#107;&#114;","geoplugin_currencySymbol_UTF8":"kr","geoplugin_currencyConverter":"8.6571"},"5.69.106.27":{"geoplugin_request":"5.69.106.27","geoplugin_status":200,"geoplugin_delay":"0ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Bromley","geoplugin_region":"England","geoplugin_regionCode":"BRY","geoplugin_regionName":"Bromley","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"GB","geoplugin_countryName":"United Kingdom","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"51.3693","geoplugin_longitude":"0.0221","geoplugin_locationAccuracyRadius":"20","geoplugin_timezone":"Europe\/London","geoplugin_currencyCode":"GBP","geoplugin_currencySymbol":"&#163;","geoplugin_currencySymbol_UTF8":"\u00a3","geoplugin_currencyConverter":"0.7206"},"190.113.40.66":{"geoplugin_request":"190.113.40.66","geoplugin_status":206,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"NI","geoplugin_countryName":"Nicaragua","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"NA","geoplugin_continentName":"North America","geoplugin_latitude":"13","geoplugin_longitude":"-85","geoplugin_locationAccuracyRadius":"100","geoplugin_timezone":"America\/Managua","geoplugin_currencyCode":"NIO","geoplugin_currencySymbol":"&#67;&#36;","geoplugin_currencySymbol_UTF8":"C$","geoplugin_currencyConverter":"35.2399"},"84.154.7.137":{"geoplugin_request":"84.154.7.137","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Bremerhaven","geoplugin_region":"Bremen","geoplugin_regionCode":"HB","geoplugin_regionName":"Bremen","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"DE","geoplugin_countryName":"Germany","geoplugin_inEU":1,"geoplugin_euVATrate":19,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"53.5687","geoplugin_longitude":"8.5741","geoplugin_locationAccuracyRadius":"10","geoplugin_timezone":"Europe\/Berlin","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8501"},"115.186.145.126":{"geoplugin_request":"115.186.145.126","geoplugin_status":200,"geoplugin_delay":"3ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Islamabad","geoplugin_region":"Islamabad","geoplugin_regionCode":"IS","geoplugin_regionName":"Islamabad","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"PK","geoplugin_countryName":"Pakistan","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"33.6957","geoplugin_longitude":"73.0113","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"Asia\/Karachi","geoplugin_currencyCode":"PKR","geoplugin_currencySymbol":"&#8360;","geoplugin_currencySymbol_UTF8":"\u20a8","geoplugin_currencyConverter":"164.7598"},"190.238.100.2":{"geoplugin_request":"190.238.100.2","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Lima","geoplugin_region":"Lima","geoplugin_regionCode":"LMA","geoplugin_regionName":"Lima","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"PE","geoplugin_countryName":"Peru","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"SA","geoplugin_continentName":"South America","geoplugin_latitude":"-12.0464","geoplugin_longitude":"-77.0428","geoplugin_locationAccuracyRadius":"5","geoplugin_timezone":"America\/Lima","geoplugin_currencyCode":"PEN","geoplugin_currencySymbol":"&#83;&#47;&#46;","geoplugin_currencySymbol_UTF8":"S\/.","geoplugin_currencyConverter":"4.0743"},"119.76.153.189":{"geoplugin_request":"119.76.153.189","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Min Buri","geoplugin_region":"Bangkok","geoplugin_regionCode":"10","geoplugin_regionName":"Bangkok","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"TH","geoplugin_countryName":"Thailand","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"13.8177","geoplugin_longitude":"100.7465","geoplugin_locationAccuracyRadius":"10","geoplugin_timezone":"Asia\/Bangkok","geoplugin_currencyCode":"THB","geoplugin_currencySymbol":"&#3647;","geoplugin_currencySymbol_UTF8":"\u0e3f","geoplugin_currencyConverter":"33.4504"},"212.58.121.237":{"geoplugin_request":"212.58.121.237","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Tbilisi","geoplugin_region":"K'alak'i T'bilisi","geoplugin_regionCode":"TB","geoplugin_regionName":"K'alak'i T'bilisi","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"GE","geoplugin_countryName":"Georgia","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"41.6959","geoplugin_longitude":"44.832","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"Asia\/Tbilisi","geoplugin_currencyCode":"GEL","geoplugin_currencySymbol":"GEL","geoplugin_currencySymbol_UTF8":"GEL","geoplugin_currencyConverter":"3.085"},"103.214.63.121":{"geoplugin_request":"103.214.63.121","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Bengaluru","geoplugin_region":"Karnataka","geoplugin_regionCode":"KA","geoplugin_regionName":"Karnataka","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"IN","geoplugin_countryName":"India","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"12.9719","geoplugin_longitude":"77.5937","geoplugin_locationAccuracyRadius":"10","geoplugin_timezone":"Asia\/Kolkata","geoplugin_currencyCode":"INR","geoplugin_currencySymbol":"&#8377;","geoplugin_currencySymbol_UTF8":"\u20b9","geoplugin_currencyConverter":"74.2105"},"103.140.250.66":{"geoplugin_request":"103.140.250.66","geoplugin_status":206,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"16.0016","geoplugin_longitude":"105.9986","geoplugin_locationAccuracyRadius":"50","geoplugin_timezone":"Asia\/Vientiane","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.378"},"105.162.15.49":{"geoplugin_request":"105.162.15.49","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Nairobi","geoplugin_region":"Nairobi Province","geoplugin_regionCode":"30","geoplugin_regionName":"Nairobi Province","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"KE","geoplugin_countryName":"Kenya","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AF","geoplugin_continentName":"Africa","geoplugin_latitude":"-1.2841","geoplugin_longitude":"36.8155","geoplugin_locationAccuracyRadius":"50","geoplugin_timezone":"Africa\/Nairobi","geoplugin_currencyCode":"KES","geoplugin_currencySymbol":"K Sh","geoplugin_currencySymbol_UTF8":"K Sh","geoplugin_currencyConverter":"109.1374"},"41.80.107.115":{"geoplugin_request":"41.80.107.115","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Nairobi","geoplugin_region":"Nairobi Province","geoplugin_regionCode":"30","geoplugin_regionName":"Nairobi Province","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"KE","geoplugin_countryName":"Kenya","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AF","geoplugin_continentName":"Africa","geoplugin_latitude":"-1.2841","geoplugin_longitude":"36.8155","geoplugin_locationAccuracyRadius":"20","geoplugin_timezone":"Africa\/Nairobi","geoplugin_currencyCode":"KES","geoplugin_currencySymbol":"K Sh","geoplugin_currencySymbol_UTF8":"K Sh","geoplugin_currencyConverter":"109.1374"},"178.174.148.58":{"geoplugin_request":"178.174.148.58","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Link\u00f6ping","geoplugin_region":"\u00d6sterg\u00f6tland County","geoplugin_regionCode":"E","geoplugin_regionName":"\u00d6sterg\u00f6tland County","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"SE","geoplugin_countryName":"Sweden","geoplugin_inEU":1,"geoplugin_euVATrate":25,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"58.4167","geoplugin_longitude":"15.6167","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"Europe\/Stockholm","geoplugin_currencyCode":"SEK","geoplugin_currencySymbol":"&#107;&#114;","geoplugin_currencySymbol_UTF8":"kr","geoplugin_currencyConverter":"8.6571"},"2.57.122.9":{"geoplugin_request":"2.57.122.9","geoplugin_status":206,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"RO","geoplugin_countryName":"Romania","geoplugin_inEU":1,"geoplugin_euVATrate":19,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"45.9968","geoplugin_longitude":"24.997","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"Europe\/Bucharest","geoplugin_currencyCode":"RON","geoplugin_currencySymbol":"&#108;&#101;&#105;","geoplugin_currencySymbol_UTF8":"lei","geoplugin_currencyConverter":"4.1778"},"95.235.80.132":{"geoplugin_request":"95.235.80.132","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Fiumicino","geoplugin_region":"Latium","geoplugin_regionCode":"RM","geoplugin_regionName":"Rome","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"IT","geoplugin_countryName":"Italy","geoplugin_inEU":1,"geoplugin_euVATrate":22,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"41.7709","geoplugin_longitude":"12.2366","geoplugin_locationAccuracyRadius":"50","geoplugin_timezone":"Europe\/Rome","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8501"},"41.141.57.196":{"geoplugin_request":"41.141.57.196","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Agadir","geoplugin_region":"Souss-Massa","geoplugin_regionCode":"AGD","geoplugin_regionName":"Agadir-Ida-ou-Tnan","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"MA","geoplugin_countryName":"Morocco","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AF","geoplugin_continentName":"Africa","geoplugin_latitude":"30.4201","geoplugin_longitude":"-9.5912","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"Africa\/Casablanca","geoplugin_currencyCode":"MAD","geoplugin_currencySymbol":"DH","geoplugin_currencySymbol_UTF8":"DH","geoplugin_currencyConverter":"8.9827"},"114.218.79.206":{"geoplugin_request":"114.218.79.206","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Chengxiang","geoplugin_region":"Jiangsu","geoplugin_regionCode":"JS","geoplugin_regionName":"Jiangsu","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"CN","geoplugin_countryName":"China","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"31.4478","geoplugin_longitude":"121.0939","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"Asia\/Shanghai","geoplugin_currencyCode":"CNY","geoplugin_currencySymbol":"&#20803;","geoplugin_currencySymbol_UTF8":"\u5143","geoplugin_currencyConverter":"6.4836"},"14.181.220.131":{"geoplugin_request":"14.181.220.131","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Vinh Yen","geoplugin_region":"Tinh Vinh Phuc","geoplugin_regionCode":"70","geoplugin_regionName":"Tinh Vinh Phuc","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"21.31","geoplugin_longitude":"105.5967","geoplugin_locationAccuracyRadius":"500","geoplugin_timezone":"Asia\/Bangkok","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.38"},"188.235.156.53":{"geoplugin_request":"188.235.156.53","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Saratov","geoplugin_region":"Saratovskaya Oblast","geoplugin_regionCode":"SAR","geoplugin_regionName":"Saratovskaya Oblast","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"RU","geoplugin_countryName":"Russia","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"51.5667","geoplugin_longitude":"46.0333","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"Europe\/Saratov","geoplugin_currencyCode":"RUB","geoplugin_currencySymbol":"&#1088;&#1091;&#1073;","geoplugin_currencySymbol_UTF8":"\u0440\u0443\u0431","geoplugin_currencyConverter":"73.0649"},"194.0.71.211":{"geoplugin_request":"194.0.71.211","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Lipetsk","geoplugin_region":"Lipetsk Oblast","geoplugin_regionCode":"LIP","geoplugin_regionName":"Lipetsk Oblast","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"RU","geoplugin_countryName":"Russia","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"52.6186","geoplugin_longitude":"39.5689","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"Europe\/Moscow","geoplugin_currencyCode":"RUB","geoplugin_currencySymbol":"&#1088;&#1091;&#1073;","geoplugin_currencySymbol_UTF8":"\u0440\u0443\u0431","geoplugin_currencyConverter":"73.0649"},"76.177.197.140":{"geoplugin_request":"76.177.197.140","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Zanesville","geoplugin_region":"Ohio","geoplugin_regionCode":"OH","geoplugin_regionName":"Ohio","geoplugin_areaCode":"","geoplugin_dmaCode":"596","geoplugin_countryCode":"US","geoplugin_countryName":"United States","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"NA","geoplugin_continentName":"North America","geoplugin_latitude":"39.9275","geoplugin_longitude":"-82.0032","geoplugin_locationAccuracyRadius":"10","geoplugin_timezone":"America\/New_York","geoplugin_currencyCode":"USD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1"},"118.173.179.1":{"geoplugin_request":"118.173.179.1","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Trang","geoplugin_region":"Trang","geoplugin_regionCode":"92","geoplugin_regionName":"Trang","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"TH","geoplugin_countryName":"Thailand","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"7.5611","geoplugin_longitude":"99.5417","geoplugin_locationAccuracyRadius":"100","geoplugin_timezone":"Asia\/Bangkok","geoplugin_currencyCode":"THB","geoplugin_currencySymbol":"&#3647;","geoplugin_currencySymbol_UTF8":"\u0e3f","geoplugin_currencyConverter":"33.431"},"88.241.91.137":{"geoplugin_request":"88.241.91.137","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Malatya","geoplugin_region":"Malatya","geoplugin_regionCode":"44","geoplugin_regionName":"Malatya","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"TR","geoplugin_countryName":"Turkey","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"38.3602","geoplugin_longitude":"38.3313","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"Europe\/Istanbul","geoplugin_currencyCode":"TRY","geoplugin_currencySymbol":"&#89;&#84;&#76;","geoplugin_currencySymbol_UTF8":"YTL","geoplugin_currencyConverter":"8.628"},"218.44.18.247":{"geoplugin_request":"218.44.18.247","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Ichihara","geoplugin_region":"Chiba","geoplugin_regionCode":"12","geoplugin_regionName":"Chiba","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"JP","geoplugin_countryName":"Japan","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"35.4828","geoplugin_longitude":"140.0429","geoplugin_locationAccuracyRadius":"20","geoplugin_timezone":"Asia\/Tokyo","geoplugin_currencyCode":"JPY","geoplugin_currencySymbol":"&#165;","geoplugin_currencySymbol_UTF8":"\u00a5","geoplugin_currencyConverter":"110.215"},"65.49.20.68":{"geoplugin_request":"65.49.20.68","geoplugin_status":206,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"US","geoplugin_countryName":"United States","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"NA","geoplugin_continentName":"North America","geoplugin_latitude":"37.751","geoplugin_longitude":"-97.822","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"America\/Chicago","geoplugin_currencyCode":"USD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1"},"41.111.11.235":{"geoplugin_request":"41.111.11.235","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Laghouat","geoplugin_region":"Laghouat","geoplugin_regionCode":"03","geoplugin_regionName":"Laghouat","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"DZ","geoplugin_countryName":"Algeria","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AF","geoplugin_continentName":"Africa","geoplugin_latitude":"33.8","geoplugin_longitude":"2.8833","geoplugin_locationAccuracyRadius":"100","geoplugin_timezone":"Africa\/Algiers","geoplugin_currencyCode":"DZD","geoplugin_currencySymbol":"DA","geoplugin_currencySymbol_UTF8":"DA","geoplugin_currencyConverter":"135.33"},"189.79.26.193":{"geoplugin_request":"189.79.26.193","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"S\u00e3o Paulo","geoplugin_region":"Sao Paulo","geoplugin_regionCode":"SP","geoplugin_regionName":"Sao Paulo","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"BR","geoplugin_countryName":"Brazil","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"SA","geoplugin_continentName":"South America","geoplugin_latitude":"-23.627","geoplugin_longitude":"-46.635","geoplugin_locationAccuracyRadius":"20","geoplugin_timezone":"America\/Sao_Paulo","geoplugin_currencyCode":"BRL","geoplugin_currencySymbol":"&#82;&#36;","geoplugin_currencySymbol_UTF8":"R$","geoplugin_currencyConverter":"5.2654"},"177.81.84.102":{"geoplugin_request":"177.81.84.102","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"S\u00e3o Paulo","geoplugin_region":"Sao Paulo","geoplugin_regionCode":"SP","geoplugin_regionName":"Sao Paulo","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"BR","geoplugin_countryName":"Brazil","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"SA","geoplugin_continentName":"South America","geoplugin_latitude":"-23.627","geoplugin_longitude":"-46.635","geoplugin_locationAccuracyRadius":"20","geoplugin_timezone":"America\/Sao_Paulo","geoplugin_currencyCode":"BRL","geoplugin_currencySymbol":"&#82;&#36;","geoplugin_currencySymbol_UTF8":"R$","geoplugin_currencyConverter":"5.2654"},"180.242.216.181":{"geoplugin_request":"180.242.216.181","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Jakarta","geoplugin_region":"Jakarta","geoplugin_regionCode":"JK","geoplugin_regionName":"Jakarta","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"ID","geoplugin_countryName":"Indonesia","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"-6.1741","geoplugin_longitude":"106.8296","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"Asia\/Jakarta","geoplugin_currencyCode":"IDR","geoplugin_currencySymbol":"&#82;&#112;","geoplugin_currencySymbol_UTF8":"Rp","geoplugin_currencyConverter":"14444.5"},"109.92.64.129":{"geoplugin_request":"109.92.64.129","geoplugin_status":200,"geoplugin_delay":"0ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Novi Sad","geoplugin_region":"Vojvodina","geoplugin_regionCode":"06","geoplugin_regionName":"South Backa","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"RS","geoplugin_countryName":"Serbia","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"45.25","geoplugin_longitude":"19.8362","geoplugin_locationAccuracyRadius":"5","geoplugin_timezone":"Europe\/Belgrade","geoplugin_currencyCode":"RSD","geoplugin_currencySymbol":"&#1044;&#1080;&#1085;&#46;","geoplugin_currencySymbol_UTF8":"\u0414\u0438\u043d.","geoplugin_currencyConverter":"99.9337"},"175.176.55.6":{"geoplugin_request":"175.176.55.6","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"San Pablo City","geoplugin_region":"Calabarzon","geoplugin_regionCode":"LAG","geoplugin_regionName":"Province of Laguna","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"PH","geoplugin_countryName":"Philippines","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"14.0751","geoplugin_longitude":"121.3289","geoplugin_locationAccuracyRadius":"50","geoplugin_timezone":"Asia\/Manila","geoplugin_currencyCode":"PHP","geoplugin_currencySymbol":"&#80;&#104;&#112;","geoplugin_currencySymbol_UTF8":"Php","geoplugin_currencyConverter":"50.6385"},"190.152.185.19":{"geoplugin_request":"190.152.185.19","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Esmeraldas","geoplugin_region":"Provincia de Esmeraldas","geoplugin_regionCode":"E","geoplugin_regionName":"Provincia de Esmeraldas","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"EC","geoplugin_countryName":"Ecuador","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"SA","geoplugin_continentName":"South America","geoplugin_latitude":"0.9833","geoplugin_longitude":"-79.7","geoplugin_locationAccuracyRadius":"20","geoplugin_timezone":"America\/Guayaquil","geoplugin_currencyCode":"USD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1"},"179.51.239.161":{"geoplugin_request":"179.51.239.161","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Mar de Ajo","geoplugin_region":"Buenos Aires","geoplugin_regionCode":"B","geoplugin_regionName":"Buenos Aires","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"AR","geoplugin_countryName":"Argentina","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"SA","geoplugin_continentName":"South America","geoplugin_latitude":"-36.7244","geoplugin_longitude":"-56.6722","geoplugin_locationAccuracyRadius":"5","geoplugin_timezone":"America\/Argentina\/Buenos_Aires","geoplugin_currencyCode":"ARS","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"97.1463"},"183.196.230.35":{"geoplugin_request":"183.196.230.35","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Beijing","geoplugin_region":"Beijing","geoplugin_regionCode":"BJ","geoplugin_regionName":"Beijing","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"CN","geoplugin_countryName":"China","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"39.9288","geoplugin_longitude":"116.3889","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"Asia\/Shanghai","geoplugin_currencyCode":"CNY","geoplugin_currencySymbol":"&#20803;","geoplugin_currencySymbol_UTF8":"\u5143","geoplugin_currencyConverter":"6.4836"},"27.64.11.251":{"geoplugin_request":"27.64.11.251","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Ho Chi Minh City","geoplugin_region":"Ho Chi Minh","geoplugin_regionCode":"SG","geoplugin_regionName":"Ho Chi Minh","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"10.8142","geoplugin_longitude":"106.6438","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"Asia\/Ho_Chi_Minh","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"22931"},"36.92.93.93":{"geoplugin_request":"36.92.93.93","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Cikarang","geoplugin_region":"West Java","geoplugin_regionCode":"JB","geoplugin_regionName":"West Java","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"ID","geoplugin_countryName":"Indonesia","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"-6.2625","geoplugin_longitude":"107.1561","geoplugin_locationAccuracyRadius":"50","geoplugin_timezone":"Asia\/Jakarta","geoplugin_currencyCode":"IDR","geoplugin_currencySymbol":"&#82;&#112;","geoplugin_currencySymbol_UTF8":"Rp","geoplugin_currencyConverter":"14444.5"},"103.165.21.37":{"geoplugin_request":"103.165.21.37","geoplugin_status":404,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":null,"geoplugin_region":null,"geoplugin_regionCode":null,"geoplugin_regionName":null,"geoplugin_areaCode":null,"geoplugin_dmaCode":null,"geoplugin_countryCode":null,"geoplugin_countryName":null,"geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":null,"geoplugin_continentName":null,"geoplugin_latitude":null,"geoplugin_longitude":null,"geoplugin_locationAccuracyRadius":null,"geoplugin_timezone":null,"geoplugin_currencyCode":null,"geoplugin_currencySymbol":null,"geoplugin_currencySymbol_UTF8":"","geoplugin_currencyConverter":"0"},"103.85.60.170":{"geoplugin_request":"103.85.60.170","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Tangerang","geoplugin_region":"Banten","geoplugin_regionCode":"BT","geoplugin_regionName":"Banten","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"ID","geoplugin_countryName":"Indonesia","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"-6.177","geoplugin_longitude":"106.6284","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"Asia\/Jakarta","geoplugin_currencyCode":"IDR","geoplugin_currencySymbol":"&#82;&#112;","geoplugin_currencySymbol_UTF8":"Rp","geoplugin_currencyConverter":"14444.5"},"80.189.161.194":{"geoplugin_request":"80.189.161.194","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Sittingbourne","geoplugin_region":"England","geoplugin_regionCode":"KEN","geoplugin_regionName":"Kent","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"GB","geoplugin_countryName":"United Kingdom","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"51.3464","geoplugin_longitude":"0.7372","geoplugin_locationAccuracyRadius":"10","geoplugin_timezone":"Europe\/London","geoplugin_currencyCode":"GBP","geoplugin_currencySymbol":"&#163;","geoplugin_currencySymbol_UTF8":"\u00a3","geoplugin_currencyConverter":"0.7206"},"182.73.32.138":{"geoplugin_request":"182.73.32.138","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Ambala","geoplugin_region":"Haryana","geoplugin_regionCode":"HR","geoplugin_regionName":"Haryana","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"IN","geoplugin_countryName":"India","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"30.3578","geoplugin_longitude":"76.8027","geoplugin_locationAccuracyRadius":"500","geoplugin_timezone":"Asia\/Kolkata","geoplugin_currencyCode":"INR","geoplugin_currencySymbol":"&#8377;","geoplugin_currencySymbol_UTF8":"\u20b9","geoplugin_currencyConverter":"74.2105"},"171.76.40.153":{"geoplugin_request":"171.76.40.153","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Chennai","geoplugin_region":"Tamil Nadu","geoplugin_regionCode":"TN","geoplugin_regionName":"Tamil Nadu","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"IN","geoplugin_countryName":"India","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"13.0878","geoplugin_longitude":"80.2785","geoplugin_locationAccuracyRadius":"5","geoplugin_timezone":"Asia\/Kolkata","geoplugin_currencyCode":"INR","geoplugin_currencySymbol":"&#8377;","geoplugin_currencySymbol_UTF8":"\u20b9","geoplugin_currencyConverter":"74.2421"},"102.42.240.55":{"geoplugin_request":"102.42.240.55","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Alexandria","geoplugin_region":"Alexandria","geoplugin_regionCode":"ALX","geoplugin_regionName":"Alexandria","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"EG","geoplugin_countryName":"Egypt","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AF","geoplugin_continentName":"Africa","geoplugin_latitude":"31.2162","geoplugin_longitude":"29.9529","geoplugin_locationAccuracyRadius":"20","geoplugin_timezone":"Africa\/Cairo","geoplugin_currencyCode":"EGP","geoplugin_currencySymbol":"&#163;","geoplugin_currencySymbol_UTF8":"\u00a3","geoplugin_currencyConverter":"15.7003"},"101.51.249.32":{"geoplugin_request":"101.51.249.32","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Yala","geoplugin_region":"Yala","geoplugin_regionCode":"95","geoplugin_regionName":"Yala","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"TH","geoplugin_countryName":"Thailand","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"6.5428","geoplugin_longitude":"101.2836","geoplugin_locationAccuracyRadius":"500","geoplugin_timezone":"Asia\/Bangkok","geoplugin_currencyCode":"THB","geoplugin_currencySymbol":"&#3647;","geoplugin_currencySymbol_UTF8":"\u0e3f","geoplugin_currencyConverter":"33.4504"},"180.251.143.247":{"geoplugin_request":"180.251.143.247","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Bekasi","geoplugin_region":"West Java","geoplugin_regionCode":"JB","geoplugin_regionName":"West Java","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"ID","geoplugin_countryName":"Indonesia","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"-6.2352","geoplugin_longitude":"106.9922","geoplugin_locationAccuracyRadius":"20","geoplugin_timezone":"Asia\/Jakarta","geoplugin_currencyCode":"IDR","geoplugin_currencySymbol":"&#82;&#112;","geoplugin_currencySymbol_UTF8":"Rp","geoplugin_currencyConverter":"14444.5"},"118.71.198.102":{"geoplugin_request":"118.71.198.102","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Ho Chi Minh City","geoplugin_region":"Ho Chi Minh","geoplugin_regionCode":"SG","geoplugin_regionName":"Ho Chi Minh","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"10.8142","geoplugin_longitude":"106.6438","geoplugin_locationAccuracyRadius":"500","geoplugin_timezone":"Asia\/Ho_Chi_Minh","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.38"},"105.189.34.189":{"geoplugin_request":"105.189.34.189","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Casablanca","geoplugin_region":"Casablanca-Settat","geoplugin_regionCode":"CAS","geoplugin_regionName":"Casablanca","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"MA","geoplugin_countryName":"Morocco","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AF","geoplugin_continentName":"Africa","geoplugin_latitude":"33.5922","geoplugin_longitude":"-7.6184","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"Africa\/Casablanca","geoplugin_currencyCode":"MAD","geoplugin_currencySymbol":"DH","geoplugin_currencySymbol_UTF8":"DH","geoplugin_currencyConverter":"8.9827"},"20.94.231.186":{"geoplugin_request":"20.94.231.186","geoplugin_status":206,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"US","geoplugin_countryName":"United States","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"NA","geoplugin_continentName":"North America","geoplugin_latitude":"37.751","geoplugin_longitude":"-97.822","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"America\/Chicago","geoplugin_currencyCode":"USD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1"},"128.116.164.216":{"geoplugin_request":"128.116.164.216","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Misano Adriatico","geoplugin_region":"Emilia-Romagna","geoplugin_regionCode":"RN","geoplugin_regionName":"Provincia di Rimini","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"IT","geoplugin_countryName":"Italy","geoplugin_inEU":1,"geoplugin_euVATrate":22,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"43.9816","geoplugin_longitude":"12.7042","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"Europe\/Rome","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8501"},"188.170.76.31":{"geoplugin_request":"188.170.76.31","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"St Petersburg","geoplugin_region":"St.-Petersburg","geoplugin_regionCode":"SPE","geoplugin_regionName":"St.-Petersburg","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"RU","geoplugin_countryName":"Russia","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"59.8944","geoplugin_longitude":"30.2642","geoplugin_locationAccuracyRadius":"5","geoplugin_timezone":"Europe\/Moscow","geoplugin_currencyCode":"RUB","geoplugin_currencySymbol":"&#1088;&#1091;&#1073;","geoplugin_currencySymbol_UTF8":"\u0440\u0443\u0431","geoplugin_currencyConverter":"73.0649"},"116.98.169.131":{"geoplugin_request":"116.98.169.131","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Da Nang","geoplugin_region":"Da Nang","geoplugin_regionCode":"DN","geoplugin_regionName":"Da Nang","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"16.0685","geoplugin_longitude":"108.2215","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"Asia\/Ho_Chi_Minh","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.38"},"171.232.240.55":{"geoplugin_request":"171.232.240.55","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Ho Chi Minh City","geoplugin_region":"Ho Chi Minh","geoplugin_regionCode":"SG","geoplugin_regionName":"Ho Chi Minh","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"10.8142","geoplugin_longitude":"106.6438","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"Asia\/Ho_Chi_Minh","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.378"},"160.202.42.27":{"geoplugin_request":"160.202.42.27","geoplugin_status":206,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"ID","geoplugin_countryName":"Indonesia","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"-6.1728","geoplugin_longitude":"106.8272","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"Asia\/Jakarta","geoplugin_currencyCode":"IDR","geoplugin_currencySymbol":"&#82;&#112;","geoplugin_currencySymbol_UTF8":"Rp","geoplugin_currencyConverter":"14444.5"},"121.105.215.185":{"geoplugin_request":"121.105.215.185","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Akita","geoplugin_region":"Akita","geoplugin_regionCode":"05","geoplugin_regionName":"Akita","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"JP","geoplugin_countryName":"Japan","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"39.69","geoplugin_longitude":"140.1375","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"Asia\/Tokyo","geoplugin_currencyCode":"JPY","geoplugin_currencySymbol":"&#165;","geoplugin_currencySymbol_UTF8":"\u00a5","geoplugin_currencyConverter":"110.215"},"197.25.222.248":{"geoplugin_request":"197.25.222.248","geoplugin_status":206,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"TN","geoplugin_countryName":"Tunisia","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AF","geoplugin_continentName":"Africa","geoplugin_latitude":"34.4739","geoplugin_longitude":"9.4613","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"Africa\/Tunis","geoplugin_currencyCode":"TND","geoplugin_currencySymbol":"TD","geoplugin_currencySymbol_UTF8":"TD","geoplugin_currencyConverter":"2.7765"},"52.167.170.66":{"geoplugin_request":"52.167.170.66","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Boydton","geoplugin_region":"Virginia","geoplugin_regionCode":"VA","geoplugin_regionName":"Virginia","geoplugin_areaCode":"","geoplugin_dmaCode":"560","geoplugin_countryCode":"US","geoplugin_countryName":"United States","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"NA","geoplugin_continentName":"North America","geoplugin_latitude":"36.6534","geoplugin_longitude":"-78.375","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"America\/New_York","geoplugin_currencyCode":"USD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1"},"103.97.211.118":{"geoplugin_request":"103.97.211.118","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Lucknow","geoplugin_region":"Uttar Pradesh","geoplugin_regionCode":"UP","geoplugin_regionName":"Uttar Pradesh","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"IN","geoplugin_countryName":"India","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"26.8756","geoplugin_longitude":"80.9115","geoplugin_locationAccuracyRadius":"50","geoplugin_timezone":"Asia\/Kolkata","geoplugin_currencyCode":"INR","geoplugin_currencySymbol":"&#8377;","geoplugin_currencySymbol_UTF8":"\u20b9","geoplugin_currencyConverter":"74.2105"},"90.127.39.230":{"geoplugin_request":"90.127.39.230","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Chatou","geoplugin_region":"\u00cele-de-France","geoplugin_regionCode":"78","geoplugin_regionName":"Yvelines","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"FR","geoplugin_countryName":"France","geoplugin_inEU":1,"geoplugin_euVATrate":20,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"48.8898","geoplugin_longitude":"2.1586","geoplugin_locationAccuracyRadius":"5","geoplugin_timezone":"Europe\/Paris","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8501"},"157.230.120.157":{"geoplugin_request":"157.230.120.157","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Frankfurt am Main","geoplugin_region":"Hesse","geoplugin_regionCode":"HE","geoplugin_regionName":"Hesse","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"DE","geoplugin_countryName":"Germany","geoplugin_inEU":1,"geoplugin_euVATrate":19,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"50.1188","geoplugin_longitude":"8.6843","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"Europe\/Berlin","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8501"},"202.43.15.253":{"geoplugin_request":"202.43.15.253","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Nuku'alofa","geoplugin_region":"Tongatapu","geoplugin_regionCode":"04","geoplugin_regionName":"Tongatapu","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"TO","geoplugin_countryName":"Tonga","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"OC","geoplugin_continentName":"Oceania","geoplugin_latitude":"-21.1474","geoplugin_longitude":"-175.2032","geoplugin_locationAccuracyRadius":"50","geoplugin_timezone":"Pacific\/Tongatapu","geoplugin_currencyCode":"TOP","geoplugin_currencySymbol":null,"geoplugin_currencySymbol_UTF8":"","geoplugin_currencyConverter":"2.2526"},"86.127.233.23":{"geoplugin_request":"86.127.233.23","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"San Fernando de Henares","geoplugin_region":"Madrid","geoplugin_regionCode":"M","geoplugin_regionName":"Madrid","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"ES","geoplugin_countryName":"Spain","geoplugin_inEU":1,"geoplugin_euVATrate":21,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"40.4239","geoplugin_longitude":"-3.5326","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"Europe\/Madrid","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8501"},"14.175.235.135":{"geoplugin_request":"14.175.235.135","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Dien Ban","geoplugin_region":"Tinh Quang Nam","geoplugin_regionCode":"27","geoplugin_regionName":"Tinh Quang Nam","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"15.8858","geoplugin_longitude":"108.2569","geoplugin_locationAccuracyRadius":"50","geoplugin_timezone":"Asia\/Ho_Chi_Minh","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.378"},"14.245.65.194":{"geoplugin_request":"14.245.65.194","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Da Nang","geoplugin_region":"Da Nang","geoplugin_regionCode":"DN","geoplugin_regionName":"Da Nang","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"16.0685","geoplugin_longitude":"108.2215","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"Asia\/Ho_Chi_Minh","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.378"},"141.98.10.49":{"geoplugin_request":"141.98.10.49","geoplugin_status":206,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"LT","geoplugin_countryName":"Lithuania","geoplugin_inEU":1,"geoplugin_euVATrate":21,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"56","geoplugin_longitude":"24","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"Europe\/Vilnius","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8501"},"197.87.186.162":{"geoplugin_request":"197.87.186.162","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Cape Town","geoplugin_region":"Western Cape","geoplugin_regionCode":"WC","geoplugin_regionName":"Western Cape","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"ZA","geoplugin_countryName":"South Africa","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AF","geoplugin_continentName":"Africa","geoplugin_latitude":"-33.914","geoplugin_longitude":"18.4129","geoplugin_locationAccuracyRadius":"10","geoplugin_timezone":"Africa\/Johannesburg","geoplugin_currencyCode":"ZAR","geoplugin_currencySymbol":"&#82;","geoplugin_currencySymbol_UTF8":"R","geoplugin_currencyConverter":"14.6345"},"40.79.248.37":{"geoplugin_request":"40.79.248.37","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Boydton","geoplugin_region":"Virginia","geoplugin_regionCode":"VA","geoplugin_regionName":"Virginia","geoplugin_areaCode":"","geoplugin_dmaCode":"560","geoplugin_countryCode":"US","geoplugin_countryName":"United States","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"NA","geoplugin_continentName":"North America","geoplugin_latitude":"36.6534","geoplugin_longitude":"-78.375","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"America\/New_York","geoplugin_currencyCode":"USD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1"},"94.232.24.38":{"geoplugin_request":"94.232.24.38","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Boysun","geoplugin_region":"Surxondaryo Viloyati","geoplugin_regionCode":"SU","geoplugin_regionName":"Surxondaryo Viloyati","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"UZ","geoplugin_countryName":"Uzbekistan","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"38.2063","geoplugin_longitude":"67.1966","geoplugin_locationAccuracyRadius":"5","geoplugin_timezone":"Asia\/Samarkand","geoplugin_currencyCode":"UZS","geoplugin_currencySymbol":"&#1083;&#1074;","geoplugin_currencySymbol_UTF8":"\u043b\u0432","geoplugin_currencyConverter":"10617.73"},"120.28.184.135":{"geoplugin_request":"120.28.184.135","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Caniogan","geoplugin_region":"Metro Manila","geoplugin_regionCode":"00","geoplugin_regionName":"Metro Manila","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"PH","geoplugin_countryName":"Philippines","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"14.5599","geoplugin_longitude":"121.081","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"Asia\/Manila","geoplugin_currencyCode":"PHP","geoplugin_currencySymbol":"&#80;&#104;&#112;","geoplugin_currencySymbol_UTF8":"Php","geoplugin_currencyConverter":"50.5365"},"113.23.6.37":{"geoplugin_request":"113.23.6.37","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Haiphong","geoplugin_region":"Haiphong","geoplugin_regionCode":"HP","geoplugin_regionName":"Haiphong","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"20.8567","geoplugin_longitude":"106.6826","geoplugin_locationAccuracyRadius":"20","geoplugin_timezone":"Asia\/Bangkok","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.38"},"49.36.209.226":{"geoplugin_request":"49.36.209.226","geoplugin_status":206,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"IN","geoplugin_countryName":"India","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"20.0063","geoplugin_longitude":"77.006","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"Asia\/Kolkata","geoplugin_currencyCode":"INR","geoplugin_currencySymbol":"&#8377;","geoplugin_currencySymbol_UTF8":"\u20b9","geoplugin_currencyConverter":"74.2105"},"27.252.75.7":{"geoplugin_request":"27.252.75.7","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Auckland","geoplugin_region":"Auckland","geoplugin_regionCode":"AUK","geoplugin_regionName":"Auckland","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"NZ","geoplugin_countryName":"New Zealand","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"OC","geoplugin_continentName":"Oceania","geoplugin_latitude":"-36.8506","geoplugin_longitude":"174.7679","geoplugin_locationAccuracyRadius":"10","geoplugin_timezone":"Pacific\/Auckland","geoplugin_currencyCode":"NZD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1.4264"},"106.77.95.74":{"geoplugin_request":"106.77.95.74","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Ahmedabad","geoplugin_region":"Gujarat","geoplugin_regionCode":"GJ","geoplugin_regionName":"Gujarat","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"IN","geoplugin_countryName":"India","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"23.0276","geoplugin_longitude":"72.5871","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"Asia\/Kolkata","geoplugin_currencyCode":"INR","geoplugin_currencySymbol":"&#8377;","geoplugin_currencySymbol_UTF8":"\u20b9","geoplugin_currencyConverter":"74.2421"},"39.42.185.208":{"geoplugin_request":"39.42.185.208","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Faisalabad","geoplugin_region":"Punjab","geoplugin_regionCode":"PB","geoplugin_regionName":"Punjab","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"PK","geoplugin_countryName":"Pakistan","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"31.4137","geoplugin_longitude":"73.0805","geoplugin_locationAccuracyRadius":"20","geoplugin_timezone":"Asia\/Karachi","geoplugin_currencyCode":"PKR","geoplugin_currencySymbol":"&#8360;","geoplugin_currencySymbol_UTF8":"\u20a8","geoplugin_currencyConverter":"164.1695"},"179.53.40.240":{"geoplugin_request":"179.53.40.240","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Santo Domingo Este","geoplugin_region":"Provincia de Santo Domingo","geoplugin_regionCode":"32","geoplugin_regionName":"Provincia de Santo Domingo","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"DO","geoplugin_countryName":"Dominican Republic","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"NA","geoplugin_continentName":"North America","geoplugin_latitude":"18.4667","geoplugin_longitude":"-69.9","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"America\/Santo_Domingo","geoplugin_currencyCode":"DOP","geoplugin_currencySymbol":"&#82;&#68;&#36;","geoplugin_currencySymbol_UTF8":"RD$","geoplugin_currencyConverter":"57.2933"},"45.141.84.10":{"geoplugin_request":"45.141.84.10","geoplugin_status":206,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"RU","geoplugin_countryName":"Russia","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"55.7386","geoplugin_longitude":"37.6068","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"Europe\/Moscow","geoplugin_currencyCode":"RUB","geoplugin_currencySymbol":"&#1088;&#1091;&#1073;","geoplugin_currencySymbol_UTF8":"\u0440\u0443\u0431","geoplugin_currencyConverter":"73.0649"},"88.147.174.26":{"geoplugin_request":"88.147.174.26","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Saratov","geoplugin_region":"Saratovskaya Oblast","geoplugin_regionCode":"SAR","geoplugin_regionName":"Saratovskaya Oblast","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"RU","geoplugin_countryName":"Russia","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"51.5667","geoplugin_longitude":"46.0333","geoplugin_locationAccuracyRadius":"100","geoplugin_timezone":"Europe\/Saratov","geoplugin_currencyCode":"RUB","geoplugin_currencySymbol":"&#1088;&#1091;&#1073;","geoplugin_currencySymbol_UTF8":"\u0440\u0443\u0431","geoplugin_currencyConverter":"73.0649"},"196.190.128.10":{"geoplugin_request":"196.190.128.10","geoplugin_status":206,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"ET","geoplugin_countryName":"Ethiopia","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AF","geoplugin_continentName":"Africa","geoplugin_latitude":"8","geoplugin_longitude":"38","geoplugin_locationAccuracyRadius":"50","geoplugin_timezone":"Africa\/Addis_Ababa","geoplugin_currencyCode":"ETB","geoplugin_currencySymbol":"ETB","geoplugin_currencySymbol_UTF8":"ETB","geoplugin_currencyConverter":"45.095"},"171.49.160.17":{"geoplugin_request":"171.49.160.17","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Chennai","geoplugin_region":"Tamil Nadu","geoplugin_regionCode":"TN","geoplugin_regionName":"Tamil Nadu","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"IN","geoplugin_countryName":"India","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"13.0878","geoplugin_longitude":"80.2785","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"Asia\/Kolkata","geoplugin_currencyCode":"INR","geoplugin_currencySymbol":"&#8377;","geoplugin_currencySymbol_UTF8":"\u20b9","geoplugin_currencyConverter":"74.2105"},"183.83.39.123":{"geoplugin_request":"183.83.39.123","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Hyderabad","geoplugin_region":"Telangana","geoplugin_regionCode":"TG","geoplugin_regionName":"Telangana","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"IN","geoplugin_countryName":"India","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"17.3753","geoplugin_longitude":"78.4744","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"Asia\/Kolkata","geoplugin_currencyCode":"INR","geoplugin_currencySymbol":"&#8377;","geoplugin_currencySymbol_UTF8":"\u20b9","geoplugin_currencyConverter":"74.2105"},"145.40.40.109":{"geoplugin_request":"145.40.40.109","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Pollham","geoplugin_region":"Upper Austria","geoplugin_regionCode":"4","geoplugin_regionName":"Upper Austria","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"AT","geoplugin_countryName":"Austria","geoplugin_inEU":1,"geoplugin_euVATrate":20,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"48.2629","geoplugin_longitude":"13.8494","geoplugin_locationAccuracyRadius":"20","geoplugin_timezone":"Europe\/Vienna","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8501"},"93.43.223.61":{"geoplugin_request":"93.43.223.61","geoplugin_status":200,"geoplugin_delay":"0ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Vigevano","geoplugin_region":"Lombardy","geoplugin_regionCode":"PV","geoplugin_regionName":"Provincia di Pavia","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"IT","geoplugin_countryName":"Italy","geoplugin_inEU":1,"geoplugin_euVATrate":22,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"45.3141","geoplugin_longitude":"8.8544","geoplugin_locationAccuracyRadius":"20","geoplugin_timezone":"Europe\/Rome","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8501"},"14.181.171.193":{"geoplugin_request":"14.181.171.193","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Lai Chau","geoplugin_region":"Tinh Lai Chau","geoplugin_regionCode":"01","geoplugin_regionName":"Tinh Lai Chau","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"22.0667","geoplugin_longitude":"103.1667","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"Asia\/Bangkok","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"22931"},"125.25.131.142":{"geoplugin_request":"125.25.131.142","geoplugin_status":200,"geoplugin_delay":"0ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Bangkok","geoplugin_region":"Bangkok","geoplugin_regionCode":"10","geoplugin_regionName":"Bangkok","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"TH","geoplugin_countryName":"Thailand","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"13.8177","geoplugin_longitude":"100.7465","geoplugin_locationAccuracyRadius":"20","geoplugin_timezone":"Asia\/Bangkok","geoplugin_currencyCode":"THB","geoplugin_currencySymbol":"&#3647;","geoplugin_currencySymbol_UTF8":"\u0e3f","geoplugin_currencyConverter":"33.431"},"124.120.80.132":{"geoplugin_request":"124.120.80.132","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Chiang Mai","geoplugin_region":"Chiang Mai","geoplugin_regionCode":"50","geoplugin_regionName":"Chiang Mai","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"TH","geoplugin_countryName":"Thailand","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"18.7903","geoplugin_longitude":"98.9817","geoplugin_locationAccuracyRadius":"100","geoplugin_timezone":"Asia\/Bangkok","geoplugin_currencyCode":"THB","geoplugin_currencySymbol":"&#3647;","geoplugin_currencySymbol_UTF8":"\u0e3f","geoplugin_currencyConverter":"33.4504"},"185.36.81.56":{"geoplugin_request":"185.36.81.56","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Kaunas","geoplugin_region":"Kaunas","geoplugin_regionCode":"16","geoplugin_regionName":"Kaunas","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"LT","geoplugin_countryName":"Lithuania","geoplugin_inEU":1,"geoplugin_euVATrate":21,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"54.9","geoplugin_longitude":"23.9","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"Europe\/Vilnius","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8501"},"177.200.2.241":{"geoplugin_request":"177.200.2.241","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Forquilhinha","geoplugin_region":"Santa Catarina","geoplugin_regionCode":"SC","geoplugin_regionName":"Santa Catarina","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"BR","geoplugin_countryName":"Brazil","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"SA","geoplugin_continentName":"South America","geoplugin_latitude":"-28.7861","geoplugin_longitude":"-49.467","geoplugin_locationAccuracyRadius":"5","geoplugin_timezone":"America\/Sao_Paulo","geoplugin_currencyCode":"BRL","geoplugin_currencySymbol":"&#82;&#36;","geoplugin_currencySymbol_UTF8":"R$","geoplugin_currencyConverter":"5.2654"},"62.99.27.89":{"geoplugin_request":"62.99.27.89","geoplugin_status":200,"geoplugin_delay":"0ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Barcelona","geoplugin_region":"Catalonia","geoplugin_regionCode":"B","geoplugin_regionName":"Barcelona","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"ES","geoplugin_countryName":"Spain","geoplugin_inEU":1,"geoplugin_euVATrate":21,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"41.3888","geoplugin_longitude":"2.159","geoplugin_locationAccuracyRadius":"20","geoplugin_timezone":"Europe\/Madrid","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8501"},"222.252.35.210":{"geoplugin_request":"222.252.35.210","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Hanoi","geoplugin_region":"Hanoi","geoplugin_regionCode":"HN","geoplugin_regionName":"Hanoi","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"21.0313","geoplugin_longitude":"105.8516","geoplugin_locationAccuracyRadius":"5","geoplugin_timezone":"Asia\/Bangkok","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.38"},"45.79.191.232":{"geoplugin_request":"45.79.191.232","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Cedar Knolls","geoplugin_region":"New Jersey","geoplugin_regionCode":"NJ","geoplugin_regionName":"New Jersey","geoplugin_areaCode":"","geoplugin_dmaCode":"501","geoplugin_countryCode":"US","geoplugin_countryName":"United States","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"NA","geoplugin_continentName":"North America","geoplugin_latitude":"40.8229","geoplugin_longitude":"-74.4592","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"America\/New_York","geoplugin_currencyCode":"USD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1"},"179.43.175.9":{"geoplugin_request":"179.43.175.9","geoplugin_status":200,"geoplugin_delay":"0ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Zurich","geoplugin_region":"Zurich","geoplugin_regionCode":"ZH","geoplugin_regionName":"Zurich","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"CH","geoplugin_countryName":"Switzerland","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"47.3667","geoplugin_longitude":"8.55","geoplugin_locationAccuracyRadius":"50","geoplugin_timezone":"Europe\/Zurich","geoplugin_currencyCode":"CHF","geoplugin_currencySymbol":"&#67;&#72;&#70;","geoplugin_currencySymbol_UTF8":"CHF","geoplugin_currencyConverter":"0.9145"},"179.43.176.112":{"geoplugin_request":"179.43.176.112","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Zurich","geoplugin_region":"Zurich","geoplugin_regionCode":"ZH","geoplugin_regionName":"Zurich","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"CH","geoplugin_countryName":"Switzerland","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"47.3667","geoplugin_longitude":"8.55","geoplugin_locationAccuracyRadius":"50","geoplugin_timezone":"Europe\/Zurich","geoplugin_currencyCode":"CHF","geoplugin_currencySymbol":"&#67;&#72;&#70;","geoplugin_currencySymbol_UTF8":"CHF","geoplugin_currencyConverter":"0.9145"},"82.121.65.223":{"geoplugin_request":"82.121.65.223","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Montargis","geoplugin_region":"Centre-Val de Loire","geoplugin_regionCode":"45","geoplugin_regionName":"Loiret","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"FR","geoplugin_countryName":"France","geoplugin_inEU":1,"geoplugin_euVATrate":20,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"48.0044","geoplugin_longitude":"2.7562","geoplugin_locationAccuracyRadius":"50","geoplugin_timezone":"Europe\/Paris","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8501"},"190.199.86.30":{"geoplugin_request":"190.199.86.30","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Agua Fria","geoplugin_region":"Sucre","geoplugin_regionCode":"R","geoplugin_regionName":"Sucre","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VE","geoplugin_countryName":"Venezuela","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"SA","geoplugin_continentName":"South America","geoplugin_latitude":"10.1611","geoplugin_longitude":"-63.8","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"America\/Caracas","geoplugin_currencyCode":"VEB","geoplugin_currencySymbol":null,"geoplugin_currencySymbol_UTF8":"","geoplugin_currencyConverter":"0"},"41.36.35.118":{"geoplugin_request":"41.36.35.118","geoplugin_status":200,"geoplugin_delay":"0ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Cairo","geoplugin_region":"Cairo Governorate","geoplugin_regionCode":"C","geoplugin_regionName":"Cairo Governorate","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"EG","geoplugin_countryName":"Egypt","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AF","geoplugin_continentName":"Africa","geoplugin_latitude":"30.0778","geoplugin_longitude":"31.2852","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"Africa\/Cairo","geoplugin_currencyCode":"EGP","geoplugin_currencySymbol":"&#163;","geoplugin_currencySymbol_UTF8":"\u00a3","geoplugin_currencyConverter":"15.7003"},"182.186.34.184":{"geoplugin_request":"182.186.34.184","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Multan","geoplugin_region":"Punjab","geoplugin_regionCode":"PB","geoplugin_regionName":"Punjab","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"PK","geoplugin_countryName":"Pakistan","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"30.1599","geoplugin_longitude":"71.5189","geoplugin_locationAccuracyRadius":"100","geoplugin_timezone":"Asia\/Karachi","geoplugin_currencyCode":"PKR","geoplugin_currencySymbol":"&#8360;","geoplugin_currencySymbol_UTF8":"\u20a8","geoplugin_currencyConverter":"164.7598"},"91.167.123.220":{"geoplugin_request":"91.167.123.220","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Chaville","geoplugin_region":"\u00cele-de-France","geoplugin_regionCode":"92","geoplugin_regionName":"Hauts-de-Seine","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"FR","geoplugin_countryName":"France","geoplugin_inEU":1,"geoplugin_euVATrate":20,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"48.803","geoplugin_longitude":"2.191","geoplugin_locationAccuracyRadius":"5","geoplugin_timezone":"Europe\/Paris","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8501"},"39.40.30.119":{"geoplugin_request":"39.40.30.119","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Islamabad","geoplugin_region":"Islamabad","geoplugin_regionCode":"IS","geoplugin_regionName":"Islamabad","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"PK","geoplugin_countryName":"Pakistan","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"33.6957","geoplugin_longitude":"73.0113","geoplugin_locationAccuracyRadius":"500","geoplugin_timezone":"Asia\/Karachi","geoplugin_currencyCode":"PKR","geoplugin_currencySymbol":"&#8360;","geoplugin_currencySymbol_UTF8":"\u20a8","geoplugin_currencyConverter":"164.7598"},"94.114.32.15":{"geoplugin_request":"94.114.32.15","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Dortmund","geoplugin_region":"North Rhine-Westphalia","geoplugin_regionCode":"NW","geoplugin_regionName":"North Rhine-Westphalia","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"DE","geoplugin_countryName":"Germany","geoplugin_inEU":1,"geoplugin_euVATrate":19,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"51.5615","geoplugin_longitude":"7.47","geoplugin_locationAccuracyRadius":"5","geoplugin_timezone":"Europe\/Berlin","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8501"},"116.110.79.78":{"geoplugin_request":"116.110.79.78","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Hoi An","geoplugin_region":"Tinh Quang Nam","geoplugin_regionCode":"27","geoplugin_regionName":"Tinh Quang Nam","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"15.8794","geoplugin_longitude":"108.335","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"Asia\/Ho_Chi_Minh","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.38"},"116.110.27.231":{"geoplugin_request":"116.110.27.231","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Da Nang","geoplugin_region":"Da Nang","geoplugin_regionCode":"DN","geoplugin_regionName":"Da Nang","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"16.0685","geoplugin_longitude":"108.2215","geoplugin_locationAccuracyRadius":"20","geoplugin_timezone":"Asia\/Ho_Chi_Minh","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.38"},"171.226.4.5":{"geoplugin_request":"171.226.4.5","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Ho Chi Minh City","geoplugin_region":"Ho Chi Minh","geoplugin_regionCode":"SG","geoplugin_regionName":"Ho Chi Minh","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"10.8142","geoplugin_longitude":"106.6438","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"Asia\/Ho_Chi_Minh","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.378"},"116.105.194.166":{"geoplugin_request":"116.105.194.166","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Da Nang","geoplugin_region":"Da Nang","geoplugin_regionCode":"DN","geoplugin_regionName":"Da Nang","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"16.0685","geoplugin_longitude":"108.2215","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"Asia\/Ho_Chi_Minh","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.378"},"103.150.112.90":{"geoplugin_request":"103.150.112.90","geoplugin_status":206,"geoplugin_delay":"3ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"ID","geoplugin_countryName":"Indonesia","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"-6.1728","geoplugin_longitude":"106.8272","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"Asia\/Jakarta","geoplugin_currencyCode":"IDR","geoplugin_currencySymbol":"&#82;&#112;","geoplugin_currencySymbol_UTF8":"Rp","geoplugin_currencyConverter":"14444.5"},"192.140.149.249":{"geoplugin_request":"192.140.149.249","geoplugin_status":200,"geoplugin_delay":"3ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Peshawar","geoplugin_region":"Khyber Pakhtunkhwa","geoplugin_regionCode":"KP","geoplugin_regionName":"Khyber Pakhtunkhwa","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"PK","geoplugin_countryName":"Pakistan","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"33.8813","geoplugin_longitude":"71.8761","geoplugin_locationAccuracyRadius":"20","geoplugin_timezone":"Asia\/Karachi","geoplugin_currencyCode":"PKR","geoplugin_currencySymbol":"&#8360;","geoplugin_currencySymbol_UTF8":"\u20a8","geoplugin_currencyConverter":"164.7598"},"14.185.140.110":{"geoplugin_request":"14.185.140.110","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Da Nang","geoplugin_region":"Da Nang","geoplugin_regionCode":"DN","geoplugin_regionName":"Da Nang","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"16.0685","geoplugin_longitude":"108.2215","geoplugin_locationAccuracyRadius":"100","geoplugin_timezone":"Asia\/Ho_Chi_Minh","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.38"},"113.161.67.242":{"geoplugin_request":"113.161.67.242","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Ho Chi Minh City","geoplugin_region":"Ho Chi Minh","geoplugin_regionCode":"SG","geoplugin_regionName":"Ho Chi Minh","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"10.8142","geoplugin_longitude":"106.6438","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"Asia\/Ho_Chi_Minh","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.38"},"221.126.113.221":{"geoplugin_request":"221.126.113.221","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Central","geoplugin_region":"Central and Western District","geoplugin_regionCode":"HCW","geoplugin_regionName":"Central and Western District","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"HK","geoplugin_countryName":"Hong Kong","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"22.2795","geoplugin_longitude":"114.146","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"Asia\/Hong_Kong","geoplugin_currencyCode":"HKD","geoplugin_currencySymbol":"&#20803;","geoplugin_currencySymbol_UTF8":"\u5143","geoplugin_currencyConverter":"7.7799"},"104.14.139.111":{"geoplugin_request":"104.14.139.111","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Visalia","geoplugin_region":"California","geoplugin_regionCode":"CA","geoplugin_regionName":"California","geoplugin_areaCode":"","geoplugin_dmaCode":"866","geoplugin_countryCode":"US","geoplugin_countryName":"United States","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"NA","geoplugin_continentName":"North America","geoplugin_latitude":"36.3528","geoplugin_longitude":"-119.3007","geoplugin_locationAccuracyRadius":"5","geoplugin_timezone":"America\/Los_Angeles","geoplugin_currencyCode":"USD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1"},"178.254.171.212":{"geoplugin_request":"178.254.171.212","geoplugin_status":206,"geoplugin_delay":"0ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"RS","geoplugin_countryName":"Serbia","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"43.9921","geoplugin_longitude":"20.9658","geoplugin_locationAccuracyRadius":"50","geoplugin_timezone":"Europe\/Belgrade","geoplugin_currencyCode":"RSD","geoplugin_currencySymbol":"&#1044;&#1080;&#1085;&#46;","geoplugin_currencySymbol_UTF8":"\u0414\u0438\u043d.","geoplugin_currencyConverter":"99.9337"},"75.109.122.100":{"geoplugin_request":"75.109.122.100","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Mullens","geoplugin_region":"West Virginia","geoplugin_regionCode":"WV","geoplugin_regionName":"West Virginia","geoplugin_areaCode":"","geoplugin_dmaCode":"559","geoplugin_countryCode":"US","geoplugin_countryName":"United States","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"NA","geoplugin_continentName":"North America","geoplugin_latitude":"37.5815","geoplugin_longitude":"-81.3928","geoplugin_locationAccuracyRadius":"50","geoplugin_timezone":"America\/New_York","geoplugin_currencyCode":"USD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1"},"113.194.134.146":{"geoplugin_request":"113.194.134.146","geoplugin_status":206,"geoplugin_delay":"3ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"CN","geoplugin_countryName":"China","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"34.7732","geoplugin_longitude":"113.722","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"Asia\/Shanghai","geoplugin_currencyCode":"CNY","geoplugin_currencySymbol":"&#20803;","geoplugin_currencySymbol_UTF8":"\u5143","geoplugin_currencyConverter":"6.4836"},"73.157.151.79":{"geoplugin_request":"73.157.151.79","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Vancouver","geoplugin_region":"Washington","geoplugin_regionCode":"WA","geoplugin_regionName":"Washington","geoplugin_areaCode":"","geoplugin_dmaCode":"820","geoplugin_countryCode":"US","geoplugin_countryName":"United States","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"NA","geoplugin_continentName":"North America","geoplugin_latitude":"45.6911","geoplugin_longitude":"-122.585","geoplugin_locationAccuracyRadius":"10","geoplugin_timezone":"America\/Los_Angeles","geoplugin_currencyCode":"USD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1"},"178.156.67.182":{"geoplugin_request":"178.156.67.182","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Murcia","geoplugin_region":"Murcia","geoplugin_regionCode":"MU","geoplugin_regionName":"Murcia","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"ES","geoplugin_countryName":"Spain","geoplugin_inEU":1,"geoplugin_euVATrate":21,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"37.987","geoplugin_longitude":"-1.13","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"Europe\/Madrid","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8501"},"177.99.235.9":{"geoplugin_request":"177.99.235.9","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Vila Velha","geoplugin_region":"Espirito Santo","geoplugin_regionCode":"ES","geoplugin_regionName":"Espirito Santo","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"BR","geoplugin_countryName":"Brazil","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"SA","geoplugin_continentName":"South America","geoplugin_latitude":"-20.3848","geoplugin_longitude":"-40.3226","geoplugin_locationAccuracyRadius":"100","geoplugin_timezone":"America\/Sao_Paulo","geoplugin_currencyCode":"BRL","geoplugin_currencySymbol":"&#82;&#36;","geoplugin_currencySymbol_UTF8":"R$","geoplugin_currencyConverter":"5.2654"},"203.135.25.19":{"geoplugin_request":"203.135.25.19","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Khanewal","geoplugin_region":"Punjab","geoplugin_regionCode":"PB","geoplugin_regionName":"Punjab","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"PK","geoplugin_countryName":"Pakistan","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"30.3","geoplugin_longitude":"71.9333","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"Asia\/Karachi","geoplugin_currencyCode":"PKR","geoplugin_currencySymbol":"&#8360;","geoplugin_currencySymbol_UTF8":"\u20a8","geoplugin_currencyConverter":"164.7598"},"197.248.18.127":{"geoplugin_request":"197.248.18.127","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Nairobi","geoplugin_region":"Nairobi Province","geoplugin_regionCode":"30","geoplugin_regionName":"Nairobi Province","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"KE","geoplugin_countryName":"Kenya","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AF","geoplugin_continentName":"Africa","geoplugin_latitude":"-1.2841","geoplugin_longitude":"36.8155","geoplugin_locationAccuracyRadius":"50","geoplugin_timezone":"Africa\/Nairobi","geoplugin_currencyCode":"KES","geoplugin_currencySymbol":"K Sh","geoplugin_currencySymbol_UTF8":"K Sh","geoplugin_currencyConverter":"109.1374"},"141.105.104.69":{"geoplugin_request":"141.105.104.69","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Port de Pollen\u00e7a","geoplugin_region":"Balearic Islands","geoplugin_regionCode":"PM","geoplugin_regionName":"Balearic Islands","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"ES","geoplugin_countryName":"Spain","geoplugin_inEU":1,"geoplugin_euVATrate":21,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"39.9075","geoplugin_longitude":"3.0814","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"Europe\/Madrid","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8501"},"188.255.132.78":{"geoplugin_request":"188.255.132.78","geoplugin_status":206,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"RS","geoplugin_countryName":"Serbia","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"43.9921","geoplugin_longitude":"20.9658","geoplugin_locationAccuracyRadius":"50","geoplugin_timezone":"Europe\/Belgrade","geoplugin_currencyCode":"RSD","geoplugin_currencySymbol":"&#1044;&#1080;&#1085;&#46;","geoplugin_currencySymbol_UTF8":"\u0414\u0438\u043d.","geoplugin_currencyConverter":"99.5748"},"14.142.251.124":{"geoplugin_request":"14.142.251.124","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Gurgaon","geoplugin_region":"Haryana","geoplugin_regionCode":"HR","geoplugin_regionName":"Haryana","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"IN","geoplugin_countryName":"India","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"28.4597","geoplugin_longitude":"77.0282","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"Asia\/Kolkata","geoplugin_currencyCode":"INR","geoplugin_currencySymbol":"&#8377;","geoplugin_currencySymbol_UTF8":"\u20b9","geoplugin_currencyConverter":"74.2421"},"73.45.169.181":{"geoplugin_request":"73.45.169.181","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Chicago","geoplugin_region":"Illinois","geoplugin_regionCode":"IL","geoplugin_regionName":"Illinois","geoplugin_areaCode":"","geoplugin_dmaCode":"602","geoplugin_countryCode":"US","geoplugin_countryName":"United States","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"NA","geoplugin_continentName":"North America","geoplugin_latitude":"41.9209","geoplugin_longitude":"-87.7043","geoplugin_locationAccuracyRadius":"5","geoplugin_timezone":"America\/Chicago","geoplugin_currencyCode":"USD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1"},"58.11.157.255":{"geoplugin_request":"58.11.157.255","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Bangkok","geoplugin_region":"Bangkok","geoplugin_regionCode":"10","geoplugin_regionName":"Bangkok","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"TH","geoplugin_countryName":"Thailand","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"13.8583","geoplugin_longitude":"100.4688","geoplugin_locationAccuracyRadius":"20","geoplugin_timezone":"Asia\/Bangkok","geoplugin_currencyCode":"THB","geoplugin_currencySymbol":"&#3647;","geoplugin_currencySymbol_UTF8":"\u0e3f","geoplugin_currencyConverter":"33.431"},"49.49.223.159":{"geoplugin_request":"49.49.223.159","geoplugin_status":200,"geoplugin_delay":"0ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Bangkok","geoplugin_region":"Bangkok","geoplugin_regionCode":"10","geoplugin_regionName":"Bangkok","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"TH","geoplugin_countryName":"Thailand","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"13.7663","geoplugin_longitude":"100.6503","geoplugin_locationAccuracyRadius":"20","geoplugin_timezone":"Asia\/Bangkok","geoplugin_currencyCode":"THB","geoplugin_currencySymbol":"&#3647;","geoplugin_currencySymbol_UTF8":"\u0e3f","geoplugin_currencyConverter":"33.431"},"103.136.136.42":{"geoplugin_request":"103.136.136.42","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Chennai","geoplugin_region":"Tamil Nadu","geoplugin_regionCode":"TN","geoplugin_regionName":"Tamil Nadu","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"IN","geoplugin_countryName":"India","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"13.0878","geoplugin_longitude":"80.2785","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"Asia\/Kolkata","geoplugin_currencyCode":"INR","geoplugin_currencySymbol":"&#8377;","geoplugin_currencySymbol_UTF8":"\u20b9","geoplugin_currencyConverter":"74.2105"},"118.173.9.250":{"geoplugin_request":"118.173.9.250","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Surat Thani","geoplugin_region":"Surat Thani","geoplugin_regionCode":"84","geoplugin_regionName":"Surat Thani","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"TH","geoplugin_countryName":"Thailand","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"9.1417","geoplugin_longitude":"99.3313","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"Asia\/Bangkok","geoplugin_currencyCode":"THB","geoplugin_currencySymbol":"&#3647;","geoplugin_currencySymbol_UTF8":"\u0e3f","geoplugin_currencyConverter":"33.431"},"103.90.74.251":{"geoplugin_request":"103.90.74.251","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Raipur","geoplugin_region":"Chhattisgarh","geoplugin_regionCode":"CT","geoplugin_regionName":"Chhattisgarh","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"IN","geoplugin_countryName":"India","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"21.2333","geoplugin_longitude":"81.6333","geoplugin_locationAccuracyRadius":"20","geoplugin_timezone":"Asia\/Kolkata","geoplugin_currencyCode":"INR","geoplugin_currencySymbol":"&#8377;","geoplugin_currencySymbol_UTF8":"\u20b9","geoplugin_currencyConverter":"74.2105"},"61.90.39.27":{"geoplugin_request":"61.90.39.27","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Ban Phan Don","geoplugin_region":"Udon Thani","geoplugin_regionCode":"41","geoplugin_regionName":"Udon Thani","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"TH","geoplugin_countryName":"Thailand","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"17.135","geoplugin_longitude":"102.972","geoplugin_locationAccuracyRadius":"100","geoplugin_timezone":"Asia\/Bangkok","geoplugin_currencyCode":"THB","geoplugin_currencySymbol":"&#3647;","geoplugin_currencySymbol_UTF8":"\u0e3f","geoplugin_currencyConverter":"33.431"},"14.183.128.200":{"geoplugin_request":"14.183.128.200","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Tra Vinh","geoplugin_region":"Tinh Tra Vinh","geoplugin_regionCode":"51","geoplugin_regionName":"Tinh Tra Vinh","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"9.9347","geoplugin_longitude":"106.3453","geoplugin_locationAccuracyRadius":"100","geoplugin_timezone":"Asia\/Ho_Chi_Minh","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"22931"},"36.68.52.103":{"geoplugin_request":"36.68.52.103","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Pekalongan","geoplugin_region":"Central Java","geoplugin_regionCode":"JT","geoplugin_regionName":"Central Java","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"ID","geoplugin_countryName":"Indonesia","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"-6.8882","geoplugin_longitude":"109.6724","geoplugin_locationAccuracyRadius":"100","geoplugin_timezone":"Asia\/Jakarta","geoplugin_currencyCode":"IDR","geoplugin_currencySymbol":"&#82;&#112;","geoplugin_currencySymbol_UTF8":"Rp","geoplugin_currencyConverter":"14444.5"},"192.24.196.187":{"geoplugin_request":"192.24.196.187","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Florence","geoplugin_region":"Kentucky","geoplugin_regionCode":"KY","geoplugin_regionName":"Kentucky","geoplugin_areaCode":"","geoplugin_dmaCode":"515","geoplugin_countryCode":"US","geoplugin_countryName":"United States","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"NA","geoplugin_continentName":"North America","geoplugin_latitude":"38.9924","geoplugin_longitude":"-84.6462","geoplugin_locationAccuracyRadius":"5","geoplugin_timezone":"America\/New_York","geoplugin_currencyCode":"USD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1"},"46.139.38.62":{"geoplugin_request":"46.139.38.62","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"\u00c9rd","geoplugin_region":"Pest megye","geoplugin_regionCode":"PE","geoplugin_regionName":"Pest megye","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"HU","geoplugin_countryName":"Hungary","geoplugin_inEU":1,"geoplugin_euVATrate":27,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"47.3949","geoplugin_longitude":"18.9136","geoplugin_locationAccuracyRadius":"5","geoplugin_timezone":"Europe\/Budapest","geoplugin_currencyCode":"HUF","geoplugin_currencySymbol":"&#70;&#116;","geoplugin_currencySymbol_UTF8":"Ft","geoplugin_currencyConverter":"300.9038"},"198.98.51.104":{"geoplugin_request":"198.98.51.104","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Buffalo","geoplugin_region":"New York","geoplugin_regionCode":"NY","geoplugin_regionName":"New York","geoplugin_areaCode":"","geoplugin_dmaCode":"514","geoplugin_countryCode":"US","geoplugin_countryName":"United States","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"NA","geoplugin_continentName":"North America","geoplugin_latitude":"42.8864","geoplugin_longitude":"-78.8784","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"America\/New_York","geoplugin_currencyCode":"USD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1"},"62.34.241.167":{"geoplugin_request":"62.34.241.167","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Salaise-sur-Sanne","geoplugin_region":"Auvergne-Rhone-Alpes","geoplugin_regionCode":"38","geoplugin_regionName":"Is\u00e8re","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"FR","geoplugin_countryName":"France","geoplugin_inEU":1,"geoplugin_euVATrate":20,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"45.3406","geoplugin_longitude":"4.8135","geoplugin_locationAccuracyRadius":"50","geoplugin_timezone":"Europe\/Paris","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8501"},"203.129.24.189":{"geoplugin_request":"203.129.24.189","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Sydney","geoplugin_region":"New South Wales","geoplugin_regionCode":"NSW","geoplugin_regionName":"New South Wales","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"AU","geoplugin_countryName":"Australia","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"OC","geoplugin_continentName":"Oceania","geoplugin_latitude":"-33.8591","geoplugin_longitude":"151.2002","geoplugin_locationAccuracyRadius":"50","geoplugin_timezone":"Australia\/Sydney","geoplugin_currencyCode":"AUD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1.3604"},"191.7.212.170":{"geoplugin_request":"191.7.212.170","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Croata","geoplugin_region":"Ceara","geoplugin_regionCode":"CE","geoplugin_regionName":"Ceara","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"BR","geoplugin_countryName":"Brazil","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"SA","geoplugin_continentName":"South America","geoplugin_latitude":"-4.3909","geoplugin_longitude":"-40.8679","geoplugin_locationAccuracyRadius":"20","geoplugin_timezone":"America\/Fortaleza","geoplugin_currencyCode":"BRL","geoplugin_currencySymbol":"&#82;&#36;","geoplugin_currencySymbol_UTF8":"R$","geoplugin_currencyConverter":"5.2335"},"179.6.49.28":{"geoplugin_request":"179.6.49.28","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Piura","geoplugin_region":"Piura","geoplugin_regionCode":"PIU","geoplugin_regionName":"Piura","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"PE","geoplugin_countryName":"Peru","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"SA","geoplugin_continentName":"South America","geoplugin_latitude":"-5.1991","geoplugin_longitude":"-80.6309","geoplugin_locationAccuracyRadius":"10","geoplugin_timezone":"America\/Lima","geoplugin_currencyCode":"PEN","geoplugin_currencySymbol":"&#83;&#47;&#46;","geoplugin_currencySymbol_UTF8":"S\/.","geoplugin_currencyConverter":"4.0743"},"41.139.12.178":{"geoplugin_request":"41.139.12.178","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Accra","geoplugin_region":"Greater Accra Region","geoplugin_regionCode":"AA","geoplugin_regionName":"Greater Accra Region","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"GH","geoplugin_countryName":"Ghana","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AF","geoplugin_continentName":"Africa","geoplugin_latitude":"5.5502","geoplugin_longitude":"-0.2174","geoplugin_locationAccuracyRadius":"20","geoplugin_timezone":"Africa\/Accra","geoplugin_currencyCode":"GHS","geoplugin_currencySymbol":"&#162;","geoplugin_currencySymbol_UTF8":"\u00a2","geoplugin_currencyConverter":"6.0214"},"113.174.100.128":{"geoplugin_request":"113.174.100.128","geoplugin_status":206,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"16.0016","geoplugin_longitude":"105.9986","geoplugin_locationAccuracyRadius":"50","geoplugin_timezone":"Asia\/Vientiane","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"22931"},"157.39.141.158":{"geoplugin_request":"157.39.141.158","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Ludhiana","geoplugin_region":"Punjab","geoplugin_regionCode":"PB","geoplugin_regionName":"Punjab","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"IN","geoplugin_countryName":"India","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"31.0048","geoplugin_longitude":"75.9463","geoplugin_locationAccuracyRadius":"100","geoplugin_timezone":"Asia\/Kolkata","geoplugin_currencyCode":"INR","geoplugin_currencySymbol":"&#8377;","geoplugin_currencySymbol_UTF8":"\u20b9","geoplugin_currencyConverter":"74.2105"},"193.183.240.97":{"geoplugin_request":"193.183.240.97","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Arsunda","geoplugin_region":"G\u00e4vleborg County","geoplugin_regionCode":"X","geoplugin_regionName":"G\u00e4vleborg County","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"SE","geoplugin_countryName":"Sweden","geoplugin_inEU":1,"geoplugin_euVATrate":25,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"60.5332","geoplugin_longitude":"16.729","geoplugin_locationAccuracyRadius":"10","geoplugin_timezone":"Europe\/Stockholm","geoplugin_currencyCode":"SEK","geoplugin_currencySymbol":"&#107;&#114;","geoplugin_currencySymbol_UTF8":"kr","geoplugin_currencyConverter":"8.6571"},"5.63.72.228":{"geoplugin_request":"5.63.72.228","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Almaty","geoplugin_region":"Almaty","geoplugin_regionCode":"ALA","geoplugin_regionName":"Almaty","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"KZ","geoplugin_countryName":"Kazakhstan","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"43.2638","geoplugin_longitude":"76.9293","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"Asia\/Almaty","geoplugin_currencyCode":"KZT","geoplugin_currencySymbol":"&#1083;&#1074;","geoplugin_currencySymbol_UTF8":"\u043b\u0432","geoplugin_currencyConverter":"426.3186"},"103.238.107.123":{"geoplugin_request":"103.238.107.123","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Ahmedabad","geoplugin_region":"Gujarat","geoplugin_regionCode":"GJ","geoplugin_regionName":"Gujarat","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"IN","geoplugin_countryName":"India","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"23.0276","geoplugin_longitude":"72.5871","geoplugin_locationAccuracyRadius":"20","geoplugin_timezone":"Asia\/Kolkata","geoplugin_currencyCode":"INR","geoplugin_currencySymbol":"&#8377;","geoplugin_currencySymbol_UTF8":"\u20b9","geoplugin_currencyConverter":"74.2105"},"190.193.56.249":{"geoplugin_request":"190.193.56.249","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Buenos Aires","geoplugin_region":"Buenos Aires F.D.","geoplugin_regionCode":"C","geoplugin_regionName":"Buenos Aires F.D.","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"AR","geoplugin_countryName":"Argentina","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"SA","geoplugin_continentName":"South America","geoplugin_latitude":"-34.6033","geoplugin_longitude":"-58.3816","geoplugin_locationAccuracyRadius":"5","geoplugin_timezone":"America\/Argentina\/Buenos_Aires","geoplugin_currencyCode":"ARS","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"97.1463"},"197.49.180.132":{"geoplugin_request":"197.49.180.132","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Assiut","geoplugin_region":"Asyut","geoplugin_regionCode":"AST","geoplugin_regionName":"Asyut","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"EG","geoplugin_countryName":"Egypt","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AF","geoplugin_continentName":"Africa","geoplugin_latitude":"27.181","geoplugin_longitude":"31.1837","geoplugin_locationAccuracyRadius":"200","geoplugin_timezone":"Africa\/Cairo","geoplugin_currencyCode":"EGP","geoplugin_currencySymbol":"&#163;","geoplugin_currencySymbol_UTF8":"\u00a3","geoplugin_currencyConverter":"15.7003"},"20.191.122.35":{"geoplugin_request":"20.191.122.35","geoplugin_status":206,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"Washington","geoplugin_regionCode":"WA","geoplugin_regionName":"Washington","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"US","geoplugin_countryName":"United States","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"NA","geoplugin_continentName":"North America","geoplugin_latitude":"47.6032","geoplugin_longitude":"-122.3412","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"America\/Los_Angeles","geoplugin_currencyCode":"USD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1"},"14.102.118.158":{"geoplugin_request":"14.102.118.158","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Bhuntar","geoplugin_region":"Himachal Pradesh","geoplugin_regionCode":"HP","geoplugin_regionName":"Himachal Pradesh","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"IN","geoplugin_countryName":"India","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"31.8634","geoplugin_longitude":"77.144","geoplugin_locationAccuracyRadius":"100","geoplugin_timezone":"Asia\/Kolkata","geoplugin_currencyCode":"INR","geoplugin_currencySymbol":"&#8377;","geoplugin_currencySymbol_UTF8":"\u20b9","geoplugin_currencyConverter":"74.2421"},"46.0.20.203":{"geoplugin_request":"46.0.20.203","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Samara","geoplugin_region":"Samara Oblast","geoplugin_regionCode":"SAM","geoplugin_regionName":"Samara Oblast","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"RU","geoplugin_countryName":"Russia","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"53.1835","geoplugin_longitude":"50.1182","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"Europe\/Samara","geoplugin_currencyCode":"RUB","geoplugin_currencySymbol":"&#1088;&#1091;&#1073;","geoplugin_currencySymbol_UTF8":"\u0440\u0443\u0431","geoplugin_currencyConverter":"73.0649"},"103.217.240.205":{"geoplugin_request":"103.217.240.205","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Kolkata","geoplugin_region":"West Bengal","geoplugin_regionCode":"WB","geoplugin_regionName":"West Bengal","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"IN","geoplugin_countryName":"India","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"22.5626","geoplugin_longitude":"88.363","geoplugin_locationAccuracyRadius":"50","geoplugin_timezone":"Asia\/Kolkata","geoplugin_currencyCode":"INR","geoplugin_currencySymbol":"&#8377;","geoplugin_currencySymbol_UTF8":"\u20b9","geoplugin_currencyConverter":"74.2105"},"139.64.55.217":{"geoplugin_request":"139.64.55.217","geoplugin_status":206,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"SA","geoplugin_countryName":"Saudi Arabia","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"25","geoplugin_longitude":"45","geoplugin_locationAccuracyRadius":"500","geoplugin_timezone":"Asia\/Riyadh","geoplugin_currencyCode":"SAR","geoplugin_currencySymbol":"&#65020;","geoplugin_currencySymbol_UTF8":"\ufdfc","geoplugin_currencyConverter":"3.75"},"14.226.216.152":{"geoplugin_request":"14.226.216.152","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Ho Chi Minh City","geoplugin_region":"Ho Chi Minh","geoplugin_regionCode":"SG","geoplugin_regionName":"Ho Chi Minh","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"10.8142","geoplugin_longitude":"106.6438","geoplugin_locationAccuracyRadius":"500","geoplugin_timezone":"Asia\/Ho_Chi_Minh","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.38"},"94.60.29.90":{"geoplugin_request":"94.60.29.90","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Vila Nova de Gaia","geoplugin_region":"Porto","geoplugin_regionCode":"13","geoplugin_regionName":"Porto","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"PT","geoplugin_countryName":"Portugal","geoplugin_inEU":1,"geoplugin_euVATrate":23,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"41.1336","geoplugin_longitude":"-8.6174","geoplugin_locationAccuracyRadius":"10","geoplugin_timezone":"Europe\/Lisbon","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8501"},"202.133.72.86":{"geoplugin_request":"202.133.72.86","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Faridabad","geoplugin_region":"Haryana","geoplugin_regionCode":"HR","geoplugin_regionName":"Haryana","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"IN","geoplugin_countryName":"India","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"28.4112","geoplugin_longitude":"77.3132","geoplugin_locationAccuracyRadius":"500","geoplugin_timezone":"Asia\/Kolkata","geoplugin_currencyCode":"INR","geoplugin_currencySymbol":"&#8377;","geoplugin_currencySymbol_UTF8":"\u20b9","geoplugin_currencyConverter":"74.2105"},"36.82.97.48":{"geoplugin_request":"36.82.97.48","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Surabaya","geoplugin_region":"East Java","geoplugin_regionCode":"JI","geoplugin_regionName":"East Java","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"ID","geoplugin_countryName":"Indonesia","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"-7.2484","geoplugin_longitude":"112.7419","geoplugin_locationAccuracyRadius":"100","geoplugin_timezone":"Asia\/Jakarta","geoplugin_currencyCode":"IDR","geoplugin_currencySymbol":"&#82;&#112;","geoplugin_currencySymbol_UTF8":"Rp","geoplugin_currencyConverter":"14444.5"},"113.161.131.191":{"geoplugin_request":"113.161.131.191","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Bien Hoa","geoplugin_region":"Tinh GJong Nai","geoplugin_regionCode":"39","geoplugin_regionName":"Tinh GJong Nai","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"10.9479","geoplugin_longitude":"106.8154","geoplugin_locationAccuracyRadius":"500","geoplugin_timezone":"Asia\/Ho_Chi_Minh","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"23012.378"},"27.72.29.213":{"geoplugin_request":"27.72.29.213","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Hanoi","geoplugin_region":"Hanoi","geoplugin_regionCode":"HN","geoplugin_regionName":"Hanoi","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"VN","geoplugin_countryName":"Vietnam","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"21.0313","geoplugin_longitude":"105.8516","geoplugin_locationAccuracyRadius":"10","geoplugin_timezone":"Asia\/Bangkok","geoplugin_currencyCode":"VND","geoplugin_currencySymbol":"&#8363;","geoplugin_currencySymbol_UTF8":"\u20ab","geoplugin_currencyConverter":"22931"},"103.125.43.13":{"geoplugin_request":"103.125.43.13","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Jakarta","geoplugin_region":"Jakarta","geoplugin_regionCode":"JK","geoplugin_regionName":"Jakarta","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"ID","geoplugin_countryName":"Indonesia","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"-6.1741","geoplugin_longitude":"106.8296","geoplugin_locationAccuracyRadius":"20","geoplugin_timezone":"Asia\/Jakarta","geoplugin_currencyCode":"IDR","geoplugin_currencySymbol":"&#82;&#112;","geoplugin_currencySymbol_UTF8":"Rp","geoplugin_currencyConverter":"14444.5"},"186.96.210.107":{"geoplugin_request":"186.96.210.107","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Port of Spain","geoplugin_region":"Port of Spain","geoplugin_regionCode":"POS","geoplugin_regionName":"Port of Spain","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"TT","geoplugin_countryName":"Trinidad and Tobago","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"NA","geoplugin_continentName":"North America","geoplugin_latitude":"10.65","geoplugin_longitude":"-61.5167","geoplugin_locationAccuracyRadius":"20","geoplugin_timezone":"America\/Port_of_Spain","geoplugin_currencyCode":"TTD","geoplugin_currencySymbol":"&#84;&#84;&#36;","geoplugin_currencySymbol_UTF8":"TT$","geoplugin_currencyConverter":"6.7816"},"170.51.100.38":{"geoplugin_request":"170.51.100.38","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Salta","geoplugin_region":"Salta","geoplugin_regionCode":"A","geoplugin_regionName":"Salta","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"AR","geoplugin_countryName":"Argentina","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"SA","geoplugin_continentName":"South America","geoplugin_latitude":"-24.7833","geoplugin_longitude":"-65.4167","geoplugin_locationAccuracyRadius":"50","geoplugin_timezone":"America\/Argentina\/Salta","geoplugin_currencyCode":"ARS","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"97.1463"},"66.230.230.230":{"geoplugin_request":"66.230.230.230","geoplugin_status":206,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"US","geoplugin_countryName":"United States","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"NA","geoplugin_continentName":"North America","geoplugin_latitude":"37.751","geoplugin_longitude":"-97.822","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"America\/Chicago","geoplugin_currencyCode":"USD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1"},"52.247.233.95":{"geoplugin_request":"52.247.233.95","geoplugin_status":206,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"Washington","geoplugin_regionCode":"WA","geoplugin_regionName":"Washington","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"US","geoplugin_countryName":"United States","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"NA","geoplugin_continentName":"North America","geoplugin_latitude":"47.6032","geoplugin_longitude":"-122.3412","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"America\/Los_Angeles","geoplugin_currencyCode":"USD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1"},"204.93.154.196":{"geoplugin_request":"204.93.154.196","geoplugin_status":206,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"","geoplugin_region":"","geoplugin_regionCode":"","geoplugin_regionName":"","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"US","geoplugin_countryName":"United States","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"NA","geoplugin_continentName":"North America","geoplugin_latitude":"37.751","geoplugin_longitude":"-97.822","geoplugin_locationAccuracyRadius":"1000","geoplugin_timezone":"America\/Chicago","geoplugin_currencyCode":"USD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1"},"177.128.5.165":{"geoplugin_request":"177.128.5.165","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Chapec\u00f3","geoplugin_region":"Santa Catarina","geoplugin_regionCode":"SC","geoplugin_regionName":"Santa Catarina","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"BR","geoplugin_countryName":"Brazil","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"SA","geoplugin_continentName":"South America","geoplugin_latitude":"-27.1192","geoplugin_longitude":"-52.6615","geoplugin_locationAccuracyRadius":"50","geoplugin_timezone":"America\/Sao_Paulo","geoplugin_currencyCode":"BRL","geoplugin_currencySymbol":"&#82;&#36;","geoplugin_currencySymbol_UTF8":"R$","geoplugin_currencyConverter":"5.2335"},"175.158.40.21":{"geoplugin_request":"175.158.40.21","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Jakarta","geoplugin_region":"Jakarta","geoplugin_regionCode":"JK","geoplugin_regionName":"Jakarta","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"ID","geoplugin_countryName":"Indonesia","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"AS","geoplugin_continentName":"Asia","geoplugin_latitude":"-6.1741","geoplugin_longitude":"106.8296","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"Asia\/Jakarta","geoplugin_currencyCode":"IDR","geoplugin_currencySymbol":"&#82;&#112;","geoplugin_currencySymbol_UTF8":"Rp","geoplugin_currencyConverter":"14444.5"},"90.63.9.62":{"geoplugin_request":"90.63.9.62","geoplugin_status":200,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Orl\u00e9ans","geoplugin_region":"Centre-Val de Loire","geoplugin_regionCode":"45","geoplugin_regionName":"Loiret","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"FR","geoplugin_countryName":"France","geoplugin_inEU":1,"geoplugin_euVATrate":20,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"47.9047","geoplugin_longitude":"1.9076","geoplugin_locationAccuracyRadius":"5","geoplugin_timezone":"Europe\/Paris","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8477"},"192.168.1.21":{"geoplugin_request":"192.168.1.21","geoplugin_status":404,"geoplugin_delay":"1ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":null,"geoplugin_region":null,"geoplugin_regionCode":null,"geoplugin_regionName":null,"geoplugin_areaCode":null,"geoplugin_dmaCode":null,"geoplugin_countryCode":null,"geoplugin_countryName":null,"geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":null,"geoplugin_continentName":null,"geoplugin_latitude":null,"geoplugin_longitude":null,"geoplugin_locationAccuracyRadius":null,"geoplugin_timezone":null,"geoplugin_currencyCode":null,"geoplugin_currencySymbol":null,"geoplugin_currencySymbol_UTF8":"","geoplugin_currencyConverter":"0"},"176.187.190.116":{"geoplugin_request":"176.187.190.116","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Tours","geoplugin_region":"Centre-Val de Loire","geoplugin_regionCode":"37","geoplugin_regionName":"Indre-et-Loire","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"FR","geoplugin_countryName":"France","geoplugin_inEU":1,"geoplugin_euVATrate":20,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"47.3983","geoplugin_longitude":"0.7037","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"Europe\/Paris","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8477"},"96.28.252.144":{"geoplugin_request":"96.28.252.144","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Barberton","geoplugin_region":"Ohio","geoplugin_regionCode":"OH","geoplugin_regionName":"Ohio","geoplugin_areaCode":"","geoplugin_dmaCode":"510","geoplugin_countryCode":"US","geoplugin_countryName":"United States","geoplugin_inEU":0,"geoplugin_euVATrate":false,"geoplugin_continentCode":"NA","geoplugin_continentName":"North America","geoplugin_latitude":"41.0188","geoplugin_longitude":"-81.6174","geoplugin_locationAccuracyRadius":"100","geoplugin_timezone":"America\/New_York","geoplugin_currencyCode":"USD","geoplugin_currencySymbol":"&#36;","geoplugin_currencySymbol_UTF8":"$","geoplugin_currencyConverter":"1"},"93.28.199.46":{"geoplugin_request":"93.28.199.46","geoplugin_status":200,"geoplugin_delay":"2ms","geoplugin_credit":"Some of the returned data includes GeoLite data created by MaxMind, available from <a href=\\'http:\/\/www.maxmind.com\\'>http:\/\/www.maxmind.com<\/a>.","geoplugin_city":"Tours","geoplugin_region":"Centre-Val de Loire","geoplugin_regionCode":"37","geoplugin_regionName":"Indre-et-Loire","geoplugin_areaCode":"","geoplugin_dmaCode":"","geoplugin_countryCode":"FR","geoplugin_countryName":"France","geoplugin_inEU":1,"geoplugin_euVATrate":20,"geoplugin_continentCode":"EU","geoplugin_continentName":"Europe","geoplugin_latitude":"47.3983","geoplugin_longitude":"0.7037","geoplugin_locationAccuracyRadius":"1","geoplugin_timezone":"Europe\/Paris","geoplugin_currencyCode":"EUR","geoplugin_currencySymbol":"&#8364;","geoplugin_currencySymbol_UTF8":"\u20ac","geoplugin_currencyConverter":"0.8533"}} \ No newline at end of file
diff --git a/admin/private/permissions.json b/admin/private/permissions.json
deleted file mode 100644
index 719c2fc..0000000
--- a/admin/private/permissions.json
+++ /dev/null
@@ -1,28 +0,0 @@
-{
- "51daefd0-656d-4cf7-8ac1-ea94d8b17780": [
- "login",
- "home",
- "serverTemp",
- "index",
- "audit",
- "getIpLocation",
- "uptime",
- "serverTime",
- "serverLogSummary",
- "version",
- "getUbuntuUpgrades",
- "getUpdates",
- "refreshUpdates",
- "unchained",
- "telemetry",
- "quotas",
- "getQuota",
- "neutroning"
- ],
- "74bca7d2-4694-477c-8bc1-9003315abbee": [
- "*",
- "addresses",
- "neutron",
- "login"
- ]
-}
diff --git a/admin/private/permissions.php b/admin/private/permissions.php
deleted file mode 100644
index 8e6f456..0000000
--- a/admin/private/permissions.php
+++ /dev/null
@@ -1,37 +0,0 @@
-<?php
-
-$perms = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/admin/private/permissions.json"), true);
-
-if (isset($_OVERRIDEPERMISSION)) {
- $requested = $_OVERRIDEPERMISSION;
-} else {
- $requested = substr(explode("/", $_SERVER["PHP_SELF"])[count(explode("/", $_SERVER["PHP_SELF"])) - 1], 0, -4);
-}
-
-$permsOkay = false;
-foreach ($perms as $user => $uperms) {
- if ($user === $_DATA['id']) {
- if (in_array($requested, $uperms) || in_array("*", $uperms)) {
- $permsOkay = true;
- }
- }
-}
-
-if (!$permsOkay && $requested !== "denied") {
- if (isset($_PERMSFORAPI) && $_PERMSFORAPI) {
- $_GET['_'] = "api." . $requested;
- ob_end_clean();
- require_once $_SERVER['DOCUMENT_ROOT'] . "/admin/panes/denied.php";
- die();
- } else if (isset($_PERMSFORSSO) && $_PERMSFORSSO) {
- $_GET['_'] = "sso." . $requested;
- ob_end_clean();
- require_once $_SERVER['DOCUMENT_ROOT'] . "/admin/panes/denied.php";
- die();
- } else {
- $_GET['_'] = "dom." . $requested;
- ob_end_clean();
- require_once $_SERVER['DOCUMENT_ROOT'] . "/admin/panes/denied.php";
- die();
- }
-} \ No newline at end of file