aboutsummaryrefslogtreecommitdiff
path: root/admin
diff options
context:
space:
mode:
Diffstat (limited to 'admin')
-rw-r--r--admin/.htpasswd1
-rw-r--r--admin/NeutronManage/index.php24
-rw-r--r--admin/api/_demo.php5
-rw-r--r--admin/api/autosave.php31
-rw-r--r--admin/api/createURL.php20
-rw-r--r--admin/api/deleteURL.php23
-rw-r--r--admin/api/draftvslive.php41
-rw-r--r--admin/api/getIpLocation.php38
-rw-r--r--admin/api/getQuota.php54
-rw-r--r--admin/api/getUbuntuUpgrades.php10
-rw-r--r--admin/api/getUpdates.php26
-rw-r--r--admin/api/ipTest.php4
-rw-r--r--admin/api/refreshUpdates.php4
-rw-r--r--admin/api/serverLogSummary.php8
-rw-r--r--admin/api/serverTemp.php20
-rw-r--r--admin/api/serverTime.php12
-rw-r--r--admin/api/setlive.php33
-rw-r--r--admin/api/terminateAllSessions.php34
-rw-r--r--admin/api/terminateGameSessions.php23
-rw-r--r--admin/api/terminateWebSessions.php23
-rw-r--r--admin/callback/index.php55
-rw-r--r--admin/index.php274
-rw-r--r--admin/panes/audit.php252
-rw-r--r--admin/panes/code.php43
-rw-r--r--admin/panes/deneid.php81
-rw-r--r--admin/panes/denied.php62
-rw-r--r--admin/panes/disk.php81
-rw-r--r--admin/panes/editor.php591
-rw-r--r--admin/panes/files.php4
-rw-r--r--admin/panes/hardware.lshw.php4
-rw-r--r--admin/panes/hardware.php76
-rw-r--r--admin/panes/home.php116
-rw-r--r--admin/panes/kartik.php111
-rw-r--r--admin/panes/neutroning.php65
-rw-r--r--admin/panes/quotas.php56
-rw-r--r--admin/panes/shortens.php93
-rw-r--r--admin/panes/telemetry.php946
-rw-r--r--admin/panes/unchained.php81
-rw-r--r--admin/panes/uptime.php76
-rw-r--r--admin/panes/version.php140
-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
-rw-r--r--admin/session/index.php6
48 files changed, 0 insertions, 3814 deletions
diff --git a/admin/.htpasswd b/admin/.htpasswd
deleted file mode 100644
index b678dd2..0000000
--- a/admin/.htpasswd
+++ /dev/null
@@ -1 +0,0 @@
-test:$apr1$aD1qs9Kn$f1A2MaHyqhBNODYMQC7l91
diff --git a/admin/NeutronManage/index.php b/admin/NeutronManage/index.php
deleted file mode 100644
index 0b10034..0000000
--- a/admin/NeutronManage/index.php
+++ /dev/null
@@ -1,24 +0,0 @@
-<?php
-
-$_OVERRIDEPERMISSION = "neutron";
-require_once $_SERVER['DOCUMENT_ROOT'] . "/admin/private/header.sso.php";
-
-if (isset($_GET['_']) && strpos($_GET['_'], "/") === false) {
- $arg = $_GET['_'];
-} else {
- die();
-}
-
-$webs = scandir("/mnt/minteckrolt-cloud");
-
-if (in_array($arg, $webs)) {
- $token = "madm-" . bin2hex(random_bytes(24));
-
- file_put_contents("/mnt/minteckrolt-cloud/" . $arg . "/data/tokens/" . $token, "");
- setcookie("_NEUTRON_ADMIN_TOKEN", $token, 0, "/", ".minteck.ro.lt", true, true);
-
- header("Location: https://cloud.minteck.ro.lt/" . $arg . "/cms-special/admin/#/home");
- die();
-}
-
-die("Unable to calculate data usage"); \ No newline at end of file
diff --git a/admin/api/_demo.php b/admin/api/_demo.php
deleted file mode 100644
index 68b5ad6..0000000
--- a/admin/api/_demo.php
+++ /dev/null
@@ -1,5 +0,0 @@
-<?php
-
-require_once $_SERVER['DOCUMENT_ROOT'] . "/admin/private/header.api.php";
-
-// Do your API stuff here! \ No newline at end of file
diff --git a/admin/api/autosave.php b/admin/api/autosave.php
deleted file mode 100644
index 67943cb..0000000
--- a/admin/api/autosave.php
+++ /dev/null
@@ -1,31 +0,0 @@
-<?php
-
-require_once $_SERVER['DOCUMENT_ROOT'] . "/admin/private/header.api.php";
-
-if (isset($_POST['document']) && strpos($_POST['document'], "/") === false) {
- $doc = $_POST['document'];
-} else {
- echo("E_ABORT: document");
- die();
-}
-
-if (isset($_POST['article']) && strpos($_POST['article'], "/") === false) {
- $blog = $_POST['article'];
-}
-
-if (isset($_POST['content'])) {
- $data = $_POST['content'];
-} else {
- echo("E_ABORT: content");
- die();
-}
-
-echo("STEP");
-if ($_POST["document"] === "blog.en") {
- file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/drafts/blog-" . $blog . ".json.html", $data);
-} else if ($_POST["document"] === "blog.fr") {
- file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/drafts/blog-" . $blog . ".json.fr.html", $data);
-} else {
- file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/drafts/" . $doc . ".html", $data);
-}
-echo("SUCCESS"); \ No newline at end of file
diff --git a/admin/api/createURL.php b/admin/api/createURL.php
deleted file mode 100644
index dc8a569..0000000
--- a/admin/api/createURL.php
+++ /dev/null
@@ -1,20 +0,0 @@
-<?php
-
-require_once $_SERVER['DOCUMENT_ROOT'] . "/admin/private/header.api.php";
-
-if (isset($_GET['shortenedName']) && strpos($_GET['shortenedName'], "/") === false && strpos($_GET['shortenedName'], " ") === false) {
- $name = $_GET['shortenedName'];
-} else {
- die();
-}
-
-if (isset($_GET['redirectsTo']) && strpos($_GET['shortenedName'], " ") === false) {
- $output = $_GET['redirectsTo'];
-} else {
- die();
-}
-
-file_put_contents("/mnt/minteckrolt-urls/links.txt", file_get_contents("/mnt/minteckrolt-urls/links.txt") . "\n" . $name . " " . $output);
-
-header("Location: /admin/panes/shortens.php");
-die(); \ No newline at end of file
diff --git a/admin/api/deleteURL.php b/admin/api/deleteURL.php
deleted file mode 100644
index 895751e..0000000
--- a/admin/api/deleteURL.php
+++ /dev/null
@@ -1,23 +0,0 @@
-<?php
-
-require_once $_SERVER['DOCUMENT_ROOT'] . "/admin/private/header.api.php";
-
-if (isset($_GET['_']) && strpos($_GET['_'], "/") === false) {
- $arg = $_GET['_'];
-} else {
- die();
-}
-
-$urls = explode("\n", file_get_contents("/mnt/minteckrolt-urls/links.txt"));
-$newUrlsArr = [];
-
-foreach ($urls as $url) {
- if (explode(" ", $url)[0] !== $arg) {
- $newUrlsArr[] = $url;
- }
-}
-
-file_put_contents("/mnt/minteckrolt-urls/links.txt", implode("\n", $newUrlsArr));
-
-header("Location: /admin/panes/shortens.php");
-die(); \ No newline at end of file
diff --git a/admin/api/draftvslive.php b/admin/api/draftvslive.php
deleted file mode 100644
index cc5e325..0000000
--- a/admin/api/draftvslive.php
+++ /dev/null
@@ -1,41 +0,0 @@
-<?php
-
-require_once $_SERVER['DOCUMENT_ROOT'] . "/admin/private/header.api.php";
-
-if (isset($_POST['document']) && strpos($_POST['document'], "/") === false) {
- $doc = $_POST['document'];
-} else {
- die();
-}
-
-if ($doc === "conduct.fr") {
- if (file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/drafts/" . $doc . ".html") === file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/code/fr.html")) {
- die("true");
- } else {
- die("false");
- }
-}
-
-if ($doc === "conduct.en") {
- if (file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/drafts/" . $doc . ".html") === file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/code/en.html")) {
- die("true");
- } else {
- die("false");
- }
-}
-
-if ($doc === "blog.en") {
- if (file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/drafts/blog-{$_POST['article']}.json.html") === file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/blog/data/{$_POST['article']}.json.html")) {
- die("true");
- } else {
- die("false");
- }
-}
-
-if ($doc === "blog.fr") {
- if (file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/drafts/blog-{$_POST['article']}.json.fr.html") === file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/blog/data/{$_POST['article']}.json.fr.html")) {
- die("true");
- } else {
- die("false");
- }
-} \ No newline at end of file
diff --git a/admin/api/getIpLocation.php b/admin/api/getIpLocation.php
deleted file mode 100644
index c40d96e..0000000
--- a/admin/api/getIpLocation.php
+++ /dev/null
@@ -1,38 +0,0 @@
-<?php
-
-require_once $_SERVER['DOCUMENT_ROOT'] . "/admin/private/header.api.php";
-
-if (isset($_GET['_']) && strpos($_GET['_'], "/") === false) {
- $arg = $_GET['_'];
-} else {
- die();
-}
-
-if (!file_exists($_SERVER['DOCUMENT_ROOT'] . "/admin/private/ipcache.json")) {
- file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/admin/private/ipcache.json", "[]");
-}
-
-$ipCache = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/admin/private/ipcache.json"), true);
-
-$data = null;
-foreach ($ipCache as $ip => $item) {
- if ($ip === $_GET['_']) {
- $data = $item;
- }
-}
-
-if ($data === null) {
- $data = unserialize(file_get_contents('http://www.geoplugin.net/php.gp?ip=' . $arg));
- $ipCache[$_GET['_']] = $data;
- file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/admin/private/ipcache.json", json_encode($ipCache));
-}
-
-if ($data["geoplugin_status"] === 404) {
- die("<span class='text-muted'>" . l("Local IP address", "Adresse IP locale") . "</span>");
-} else {
- if ($data["geoplugin_inEU"]) {
- die($data["geoplugin_countryName"] . " <span class='badge text-light border-light' style='border:1px solid;vertical-align: middle;'>" . l("EU", "UE") . "</span>");
- } else {
- die($data["geoplugin_countryName"]);
- }
-} \ No newline at end of file
diff --git a/admin/api/getQuota.php b/admin/api/getQuota.php
deleted file mode 100644
index 1d64737..0000000
--- a/admin/api/getQuota.php
+++ /dev/null
@@ -1,54 +0,0 @@
-<?php
-
-require_once $_SERVER['DOCUMENT_ROOT'] . "/admin/private/header.api.php";
-
-if (isset($_GET['_']) && strpos($_GET['_'], "/") === false) {
- $arg = $_GET['_'];
-} else {
- die();
-}
-
-$webs = scandir("/mnt/minteckrolt-cloud");
-
-if (in_array($arg, $webs)) {
- $tier = trim(file_get_contents("/mnt/minteckrolt-cloud/" . $arg . "/Tier"));
-
- exec("du -hs /mnt/minteckrolt-cloud/" . $arg, $ret);
- $parts = explode(" ", $ret[0]);
-
- exec("du -s /mnt/minteckrolt-cloud/" . $arg, $ret2);
- $parts2 = explode(" ", $ret2[0]);
-
- if ($tier === "3") {
- $perc = ($parts2[0] / 100000) * 100;
- if ($perc > 75) {
- die("<span class='text-danger'>" . l("Using", "Utilise") . " " . $parts[0] . "/100M (" . round($perc, 2) . "%)</span>");
- } else if ($perc > 50) {
- die("<span class='text-warning'>" . l("Using", "Utilise") . " " . $parts[0] . "/100M (" . round($perc, 2) . "%)</span>");
- } else {
- die("<span class='text-success'>" . l("Using", "Utilise") . " " . $parts[0] . "/100M (" . round($perc, 2) . "%)</span>");
- }
- } else if ($tier === "5") {
- $perc = ($parts2[0] / 250000) * 100;
- if ($perc > 75) {
- die("<span class='text-danger'>" . l("Using", "Utilise") . " " . $parts[0] . "/250M (" . round($perc, 2) . "%)</span>");
- } else if ($perc > 50) {
- die("<span class='text-warning'>" . l("Using", "Utilise") . " " . $parts[0] . "/250M (" . round($perc, 2) . "%)</span>");
- } else {
- die("<span class='text-success'>" . l("Using", "Utilise") . " " . $parts[0] . "/250M (" . round($perc, 2) . "%)</span>");
- }
- } else if ($tier === "7") {
- $perc = ($parts2[0] / 500000) * 100;
- if ($perc > 75) {
- die("<span class='text-danger'>" . l("Using", "Utilise") . " " . $parts[0] . "/500M (" . round($perc, 2) . "%)</span>");
- } else if ($perc > 50) {
- die("<span class='text-warning'>" . l("Using", "Utilise") . " " . $parts[0] . "/500M (" . round($perc, 2) . "%)</span>");
- } else {
- die("<span class='text-success'>" . l("Using", "Utilise") . " " . $parts[0] . "/500M (" . round($perc, 2) . "%)</span>");
- }
- } else {
- die("<span class='text-success'>" . l("Using", "Utilise") . " " . $parts[0] . "</span>");
- }
-}
-
-die("Unable to calculate data usage"); \ No newline at end of file
diff --git a/admin/api/getUbuntuUpgrades.php b/admin/api/getUbuntuUpgrades.php
deleted file mode 100644
index ca49f38..0000000
--- a/admin/api/getUbuntuUpgrades.php
+++ /dev/null
@@ -1,10 +0,0 @@
-<?php
-
-require_once $_SERVER['DOCUMENT_ROOT'] . "/admin/private/header.api.php";
-
-exec("bash -c \"sudo mtsp-do-release-upgrade | grep 'New release'\"", $ret);
-if (count($ret) === 1) {
- echo(l("<b>Ubuntu " . explode("'", $ret[0])[1] . "</b> is available, use <code>do-release-upgrade</code> to upgrade", "<b>Ubuntu " . explode("'", $ret[0])[1] . "</b> est disponible, exécutez la commande <code>do-release-upgrade</code> pour effectuer la mise à niveau"));
-} else {
- echo(l("This server is running the latest version of Ubuntu", "Ce serveur exécute la dernière version d'Ubuntu"));
-} \ No newline at end of file
diff --git a/admin/api/getUpdates.php b/admin/api/getUpdates.php
deleted file mode 100644
index 5d9c373..0000000
--- a/admin/api/getUpdates.php
+++ /dev/null
@@ -1,26 +0,0 @@
-<?php
-
-header("Content-Type: application/json");
-require_once $_SERVER['DOCUMENT_ROOT'] . "/admin/private/header.api.php";
-
-exec("bash -c \"sudo mtsp-apt-get-2| grep ^Inst\"", $ret);
-$data = [];
-$data["count"] = count($ret);
-$data["packages"] = [];
-
-foreach ($ret as $package) {
- $parts = explode(" ", trim($package));
- $pkg = [
- "name" => trim($parts[1]),
- "version" => [
- "local" => trim(explode("]", explode("[", $parts[2])[1])[0]),
- "remote" => trim(explode("(", $parts[3])[1]),
- ],
- "repos" => trim(explode(":", explode("(", explode("[", trim($package))[1])[1])[1]),
- "architecture" => trim(explode("]", explode("[", trim($package))[2])[0])
- ];
-
- $data["packages"][] = $pkg;
-}
-
-echo(json_encode($data, JSON_PRETTY_PRINT)); \ No newline at end of file
diff --git a/admin/api/ipTest.php b/admin/api/ipTest.php
deleted file mode 100644
index 123507e..0000000
--- a/admin/api/ipTest.php
+++ /dev/null
@@ -1,4 +0,0 @@
-<?php
-
-require_once $_SERVER['DOCUMENT_ROOT'] . "/admin/private/header.api.php";
-echo var_export(unserialize(file_get_contents('http://www.geoplugin.net/php.gp?ip=127.0.0.1'))); \ No newline at end of file
diff --git a/admin/api/refreshUpdates.php b/admin/api/refreshUpdates.php
deleted file mode 100644
index ec4c707..0000000
--- a/admin/api/refreshUpdates.php
+++ /dev/null
@@ -1,4 +0,0 @@
-<?php
-
-require_once $_SERVER['DOCUMENT_ROOT'] . "/admin/private/header.api.php";
-exec("bash -c \"sudo mtsp-apt-get-1", $ret); \ No newline at end of file
diff --git a/admin/api/serverLogSummary.php b/admin/api/serverLogSummary.php
deleted file mode 100644
index a4a20a0..0000000
--- a/admin/api/serverLogSummary.php
+++ /dev/null
@@ -1,8 +0,0 @@
-<?php
-
-require_once $_SERVER['DOCUMENT_ROOT'] . "/admin/private/header.api.php";
-
-exec("journalctl -b --quiet", $ret);
-$cnt = count($ret);
-
-echo("<b>" . $cnt . "</b> " . l("system log messages since last system startup", "messages de journalisation du système depuis le dernier démarrage")); \ No newline at end of file
diff --git a/admin/api/serverTemp.php b/admin/api/serverTemp.php
deleted file mode 100644
index 613c411..0000000
--- a/admin/api/serverTemp.php
+++ /dev/null
@@ -1,20 +0,0 @@
-<?php
-
-require_once $_SERVER['DOCUMENT_ROOT'] . "/admin/private/header.api.php";
-
-echo(l("Server running at", "Serveur fonctionnant à") . " <b>");
-exec("sensors -j", $out);
-$outp = implode("\n", $out);
-$outd = json_decode($outp, true);
-
-echo(round($outd["cpu_thermal-virtual-0"]["temp1"]["temp1_input"], 1));
-
-?>°C</b>, <?php
-
-if ($outd["cpu_thermal-virtual-0"]["temp1"]["temp1_input"] > 90) {
- echo(l("completely overheating!", "en pleine surchauffe !"));
-} else if ($outd["cpu_thermal-virtual-0"]["temp1"]["temp1_input"] > 60) {
- echo(l("starting to throttle!", "commence à être bridé !"));
-} else {
- echo(l("under normal temperatures", "températures habituelles"));
-} \ No newline at end of file
diff --git a/admin/api/serverTime.php b/admin/api/serverTime.php
deleted file mode 100644
index a64a39e..0000000
--- a/admin/api/serverTime.php
+++ /dev/null
@@ -1,12 +0,0 @@
-<?php
-
-require_once $_SERVER['DOCUMENT_ROOT'] . "/admin/private/header.api.php";
-
-$str = file_get_contents('/proc/uptime');
-$num = floatval($str);
-$secs = fmod($num, 60); $num = intdiv($num, 60);
-$mins = $num % 60; $num = intdiv($num, 60);
-$hours = $num % 24; $num = intdiv($num, 24);
-$days = $num;
-
-echo(l($days . " day·s, " . $hours . " hour·s, " . $mins . " minute·s, " . ceil($secs) . " second·s", $days . " jour·s, " . $hours . " heure·s, " . $mins . " minute·s, " . ceil($secs) . " seconde·s")); \ No newline at end of file
diff --git a/admin/api/setlive.php b/admin/api/setlive.php
deleted file mode 100644
index 0ef8b94..0000000
--- a/admin/api/setlive.php
+++ /dev/null
@@ -1,33 +0,0 @@
-<?php
-
-require_once $_SERVER['DOCUMENT_ROOT'] . "/admin/private/header.api.php";
-
-if (isset($_POST['document']) && strpos($_POST['document'], "/") === false) {
- $doc = $_POST['document'];
-} else {
- die();
-}
-
-if ($doc === "conduct.fr") {
- file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/code/fr.html", file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/drafts/" . $doc . ".html"));
-}
-
-if ($doc === "conduct.en") {
- file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/code/en.html", file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/drafts/" . $doc . ".html"));
-}
-
-if ($doc === "blog.en") {
- file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/blog/data/{$_POST['article']}.json.html", file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/drafts/blog-{$_POST['article']}.json.html"));
-}
-
-if ($doc === "blog.fr") {
- file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/blog/data/{$_POST['article']}.json.fr.html", file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/drafts/blog-{$_POST['article']}.json.fr.html"));
-}
-
-if ($doc === "blog.en") {
- unlink($_SERVER['DOCUMENT_ROOT'] . "/includes/drafts/blog-{$_POST['article']}.json.html");
-} else if ($doc === "blog.fr") {
- unlink($_SERVER['DOCUMENT_ROOT'] . "/includes/drafts/blog-{$_POST['article']}.json.fr.html");
-} else {
- unlink($_SERVER['DOCUMENT_ROOT'] . "/includes/drafts/" . $doc . ".html");
-} \ No newline at end of file
diff --git a/admin/api/terminateAllSessions.php b/admin/api/terminateAllSessions.php
deleted file mode 100644
index 46c1b33..0000000
--- a/admin/api/terminateAllSessions.php
+++ /dev/null
@@ -1,34 +0,0 @@
-<?php
-
-require_once $_SERVER['DOCUMENT_ROOT'] . "/admin/private/header.api.php";
-
-if (isset($_GET['_']) && strpos($_GET['_'], "/") === false) {
- $arg = $_GET['_'];
-} else {
- die();
-}
-
-$webs = scandir("/mnt/kartik/online/private/tokens");
-
-foreach ($webs as $webt) {
- if (!is_dir("/mnt/kartik/online/private/tokens/" . $webt)) {
- $d = json_decode(file_get_contents("/mnt/kartik/online/private/tokens/" . $webt), true);
- if ($d["id"] === $arg) {
- unlink("/mnt/kartik/online/private/tokens/" . $webt);
- }
- }
-}
-
-$webs = scandir("/mnt/kartik/online/private/gametokens");
-
-foreach ($webs as $webt) {
- if (!is_dir("/mnt/kartik/online/private/gametokens/" . $webt)) {
- $d = json_decode(file_get_contents("/mnt/kartik/online/private/gametokens/" . $webt), true);
- if ($d["id"] === $arg) {
- unlink("/mnt/kartik/online/private/gametokens/" . $webt);
- }
- }
-}
-
-header("Location: /admin/panes/kartik.php");
-die(); \ No newline at end of file
diff --git a/admin/api/terminateGameSessions.php b/admin/api/terminateGameSessions.php
deleted file mode 100644
index 6975e81..0000000
--- a/admin/api/terminateGameSessions.php
+++ /dev/null
@@ -1,23 +0,0 @@
-<?php
-
-require_once $_SERVER['DOCUMENT_ROOT'] . "/admin/private/header.api.php";
-
-if (isset($_GET['_']) && strpos($_GET['_'], "/") === false) {
- $arg = $_GET['_'];
-} else {
- die();
-}
-
-$webs = scandir("/mnt/kartik/online/private/gametokens");
-
-foreach ($webs as $webt) {
- if (!is_dir("/mnt/kartik/online/private/gametokens/" . $webt)) {
- $d = json_decode(file_get_contents("/mnt/kartik/online/private/gametokens/" . $webt), true);
- if ($d["id"] === $arg) {
- unlink("/mnt/kartik/online/private/gametokens/" . $webt);
- }
- }
-}
-
-header("Location: /admin/panes/kartik.php");
-die();
diff --git a/admin/api/terminateWebSessions.php b/admin/api/terminateWebSessions.php
deleted file mode 100644
index 170f4d8..0000000
--- a/admin/api/terminateWebSessions.php
+++ /dev/null
@@ -1,23 +0,0 @@
-<?php
-
-require_once $_SERVER['DOCUMENT_ROOT'] . "/admin/private/header.api.php";
-
-if (isset($_GET['_']) && strpos($_GET['_'], "/") === false) {
- $arg = $_GET['_'];
-} else {
- die();
-}
-
-$webs = scandir("/mnt/kartik/online/private/tokens");
-
-foreach ($webs as $webt) {
- if (!is_dir("/mnt/kartik/online/private/tokens/" . $webt)) {
- $d = json_decode(file_get_contents("/mnt/kartik/online/private/tokens/" . $webt), true);
- if ($d["id"] === $arg) {
- unlink("/mnt/kartik/online/private/tokens/" . $webt);
- }
- }
-}
-
-header("Location: /admin/panes/kartik.php");
-die(); \ No newline at end of file
diff --git a/admin/callback/index.php b/admin/callback/index.php
deleted file mode 100644
index f938621..0000000
--- a/admin/callback/index.php
+++ /dev/null
@@ -1,55 +0,0 @@
-<?php
-
-// TODO: handle errors
-
-if (!isset($_GET['code'])) {
- die();
-}
-
-$appdata = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/admin/private/app.json"), true);
-
-$crl = curl_init('https://account.minteck.org/hub/hub/api/rest/oauth2/token');
-curl_setopt($crl, CURLOPT_RETURNTRANSFER, true);
-curl_setopt($crl, CURLINFO_HEADER_OUT, true);
-curl_setopt($crl, CURLOPT_POST, true);
-curl_setopt($crl, CURLOPT_HTTPHEADER, [
- "Authorization: Basic " . base64_encode($appdata["id"] . ":" . $appdata["secret"]),
- "Content-Type: application/x-www-form-urlencoded",
- "Accept: application/json"
-]);
-curl_setopt($crl, CURLOPT_POSTFIELDS, "grant_type=authorization_code&redirect_uri=" . urlencode("https://minteck.org/admin/callback") . "&code=" . $_GET['code']);
-
-$result = curl_exec($crl);
-$result = json_decode($result, true);
-
-curl_close($crl);
-
-if (isset($result["access_token"])) {
- $crl = curl_init('https://account.minteck.org/hub/hub/api/rest/users/me');
- curl_setopt($crl, CURLOPT_RETURNTRANSFER, true);
- curl_setopt($crl, CURLINFO_HEADER_OUT, true);
- curl_setopt($crl, CURLOPT_HTTPHEADER, [
- "Authorization: Bearer " . $result["access_token"],
- "Accept: application/json"
- ]);
-
- $result = curl_exec($crl);
- $result = json_decode($result, true);
-
- $login = false;
- foreach (json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/admin/private/permissions.json"), true) as $id => $user) {
- if ($result["id"] === $id && in_array("login", $user)) {
- $login = true;
- }
- }
-
- if ($login) {
- $token = bin2hex(random_bytes(32));
- file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/admin/private/tokens/" . $token, json_encode($result));
- setcookie("ADMIN_TOKEN", $token, 0, "/", ".minteck.org", true, true);
-
- header("Location: /admin");
- } else {
- header("Location: /?admin");
- }
-} \ No newline at end of file
diff --git a/admin/index.php b/admin/index.php
deleted file mode 100644
index c05b0be..0000000
--- a/admin/index.php
+++ /dev/null
@@ -1,274 +0,0 @@
-<?php require_once $_SERVER['DOCUMENT_ROOT'] . "/admin/private/header.php"; ?>
-
-<div id="--loader" style="background:rgba(47,49,54,1);position:fixed;inset:0;z-index:999;display:flex;align-items:center;justify-content:center;">
- <img src="/logo-mono.png" width="64px">
-</div>
-
-<script>
- window.addEventListener("load", () => {
- setTimeout(() => {
- $("#--loader").fadeOut(200);
- }, 2000)
- })
-</script>
-
-<!--suppress CssFloatPxLength -->
-<style>
- .section {
- color: gray;
- font-variant: all-petite-caps;
- font-size: 18px;
- margin: 20px 20px 5px;
- padding: 5px 7.5px 0 7.5px;
- border-top: 1px solid rgba(128, 128, 128, 0.25);
- }
-
- .item {
- cursor: pointer;
- margin: 0 20px;
- border-radius: 99px;
- padding: 2.5px 15px;
- color: lightgray;
- margin-right: 0;
- border-top-right-radius: 0;
- border-bottom-right-radius: 0;
- }
-
- .item:hover {
- background: rgba(255, 255, 255, .1);
- color: #c2c2c2;
- }
-
- .item:active, .item:focus, .item.selected {
- color: #e7e7e7 !important;
- background: rgba(255, 255, 255, .2) !important;
- cursor: default;
- }
-
- ::-webkit-scrollbar {
- width: 5px;
- }
-
- ::-webkit-scrollbar-track {
- border-radius: 9999px;
- background: transparent;
- }
-
- ::-webkit-scrollbar-thumb {
- border-radius: 9999px;
- background-color: rgba(136, 136, 136, 0.5);
- transition: background 200ms;
- }
-
- ::-webkit-scrollbar-thumb:hover {
- background-color: rgba(85, 85, 85, 0.75);
- }
-
- ::-webkit-scrollbar-thumb:active {
- background-color: #222;
- }
-
- .credits {
- margin: 15px 20px 0 20px;
- border-radius: 5px;
- padding: 2.5px 7.5px;
- color: lightgray;
- opacity: .25;
- font-size: 12px;
- }
-
- .reloadbtn {
- vertical-align: middle;
- float: right;
- display: none;
- opacity: 0;
- transition: opacity 200ms, transform 500ms;
- transform: rotate(0deg);
- }
-
- .item.selected .reloadbtn {
- display: inline-block;
- opacity: 1;
- }
-
- .item-text {
- vertical-align: middle;
- position: relative;
- top: 2px;
- pointer-events: none;
- }
-
- .item-icon {
- vertical-align: middle;
- width: 24px;
- filter: invert(1);
- pointer-events: none;
- }
-
- @media (max-width: 700px) {
- .admin > div {
- grid-template-columns: 64px 1fr !important;
- }
-
- .item-text, .credits {
- display: none;
- }
-
- .reloadbtn {
- display: none !important;
- opacity: 0 !important;
- pointer-events: none !important;
- }
-
- .item {
- padding: 5px;
- margin-left: 8px;
- margin-right: 8px;
- border-radius: 999px;
- width: 48px;
- height: 48px;
- margin-bottom: 5px;
- }
-
- .item:nth-child(1) {
- margin-top: 10px !important;
- }
-
- .item-icon {
- position: relative;
- top: 1px;
- width: 36px;
- left: 1px;
- }
- }
-</style>
-
-<div style="position: fixed;inset: 0;z-index: 5;backdrop-filter:blur(10px);background:rgba(47,49,54,1);height:100%;display:grid;grid-template-columns: 256px 1fr;">
- <div id="menu" style="height:100%;">
- <div class="item selected" id="activity-home" style="margin-top:15vh;">
- <img src="/static/admin/home.svg" class="item-icon" alt="">
- <span class="item-text"><?= l("Home", "Accueil") ?></span>
- <img alt="" src="/static/reload.png" class="reloadbtn">
- </div>
- <div class="item" id="activity-files">
- <img src="/static/admin/files.svg" class="item-icon" alt="">
- <span class="item-text"><?= l("Files", "Fichiers") ?></span>
- <img alt="" src="/static/reload.png" class="reloadbtn">
- </div>
- <div class="item" id="activity-audit">
- <img src="/static/admin/audit.svg" class="item-icon" alt="">
- <span class="item-text"><?= l("Security Audit", "Audit de sécurité") ?></span>
- <img alt="" src="/static/reload.png" class="reloadbtn">
- </div>
- <div class="item" id="activity-hardware">
- <img src="/static/admin/hardware.svg" class="item-icon" alt="">
- <span class="item-text"><?= l("Hardware", "Matériel") ?></span>
- <img alt="" src="/static/reload.png" class="reloadbtn">
- </div>
- <div class="item" id="activity-disk">
- <img src="/static/admin/disk.svg" class="item-icon" alt="">
- <span class="item-text"><?= l("Disk Space", "Espace disque") ?></span>
- <img alt="" src="/static/reload.png" class="reloadbtn">
- </div>
- <div class="item" id="activity-uptime">
- <img src="/static/admin/uptime.svg" class="item-icon" alt="">
- <span class="item-text"><?= l("Uptime", "Temps système") ?></span>
- <img alt="" src="/static/reload.png" class="reloadbtn">
- </div>
- <div class="item" id="activity-version">
- <img src="/static/admin/version.svg" class="item-icon" alt="">
- <span class="item-text"><?= l("Software Versions", "Versions du logiciel") ?></span>
- <img alt="" src="/static/reload.png" class="reloadbtn">
- </div>
- <div class="item" id="activity-unchained">
- <img src="/static/admin/unchained.svg" class="item-icon" alt="">
- <span class="item-text">UnchainedTech</span>
- <img alt="" src="/static/reload.png" class="reloadbtn">
- </div>
- <div class="item" id="activity-kartik">
- <img src="/static/admin/kartik.svg" class="item-icon" alt="">
- <span class="item-text">Kartik Online</span>
- <img alt="" src="/static/reload.png" class="reloadbtn">
- </div>
- <div class="item" id="activity-telemetry">
- <img src="/static/admin/telemetry.svg" class="item-icon" alt="">
- <span class="item-text"><?= l("Telemetry", "Télémétrie") ?></span>
- <img alt="" src="/static/reload.png" class="reloadbtn">
- </div>
- <div class="item" id="activity-shortens">
- <img src="/static/admin/shortens.svg" class="item-icon" alt="">
- <span class="item-text"><?= l("Shortened URLs", "URL raccourcies") ?></span>
- <img alt="" src="/static/reload.png" class="reloadbtn">
- </div>
- <div class="item" id="activity-code">
- <img src="/static/admin/code.svg" class="item-icon" alt="">
- <span class="item-text"><?= l("Code of Conduct", "Code de Conduite") ?></span>
- <img alt="" src="/static/reload.png" class="reloadbtn">
- </div>
- <div class="item" id="activity-quotas">
- <img src="/static/admin/quotas.svg" class="item-icon" alt="">
- <span class="item-text">Quotas</span>
- <img alt="" src="/static/reload.png" class="reloadbtn">
- </div>
- <div class="item" id="activity-neutroning">
- <img src="/static/admin/neutroning.svg" class="item-icon" alt="">
- <span class="item-text"><?= l("Sites Map", "Plan des sites") ?></span>
- <img alt="" src="/static/reload.png" class="reloadbtn">
- </div>
-
- <div class="credits" style="margin-bottom:15vh;">
- Admin <?= substr(md5_file($_SERVER['DOCUMENT_ROOT'] . "/admin/index.php"), 0, 7); ?><br>
- Release <?= file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/version.txt") ?><br>
- Host <?= PHP_VERSION ?><br>
- <?= php_uname('s') ?> <?= php_uname('r') ?>
- </div>
- </div>
-
- <div id="content" style="background:rgba(54,57,63,1);">
- <iframe id="content-frame" src="/admin/panes/home.php" style="background: transparent;border: none;height: 100%;width: 100%;"></iframe>
- </div>
-
- <script>
-
- function activity(id, url, target) {
- if (target.classList.contains("selected")) return;
- if (target.classList.contains("reloadbtn")) return;
-
- Array.from(document.getElementsByClassName("item")).forEach((item) => {
- item.classList.remove("selected");
- })
-
- document.getElementById(id).classList.add("selected");
- document.getElementById("content-frame").src = url;
- }
-
- document.getElementById("activity-home").addEventListener("click", (event) => { activity(event.target.id, "/admin/panes/home.php", event.target); }, true)
- document.getElementById("activity-files").addEventListener("click", (event) => { activity(event.target.id, "/admin/panes/files.php", event.target); }, true)
- document.getElementById("activity-hardware").addEventListener("click", (event) => { activity(event.target.id, "/admin/panes/hardware.php", event.target); }, true)
- document.getElementById("activity-disk").addEventListener("click", (event) => { activity(event.target.id, "/admin/panes/disk.php", event.target); }, true)
- document.getElementById("activity-uptime").addEventListener("click", (event) => { activity(event.target.id, "/admin/panes/uptime.php", event.target); }, true)
- document.getElementById("activity-audit").addEventListener("click", (event) => { activity(event.target.id, "/admin/panes/audit.php", event.target); }, true)
- document.getElementById("activity-version").addEventListener("click", (event) => { activity(event.target.id, "/admin/panes/version.php", event.target); }, true)
- document.getElementById("activity-shortens").addEventListener("click", (event) => { activity(event.target.id, "/admin/panes/shortens.php", event.target); }, true)
- document.getElementById("activity-kartik").addEventListener("click", (event) => { activity(event.target.id, "/admin/panes/kartik.php", event.target); }, true)
- document.getElementById("activity-code").addEventListener("click", (event) => { activity(event.target.id, "/admin/panes/code.php", event.target); }, true)
- document.getElementById("activity-quotas").addEventListener("click", (event) => { activity(event.target.id, "/admin/panes/quotas.php", event.target); }, true)
- document.getElementById("activity-neutroning").addEventListener("click", (event) => { activity(event.target.id, "/admin/panes/neutroning.php", event.target); }, true)
- document.getElementById("activity-telemetry").addEventListener("click", (event) => { activity(event.target.id, "/admin/panes/telemetry.php", event.target); }, true)
- document.getElementById("activity-unchained").addEventListener("click", (event) => { activity(event.target.id, "/admin/panes/unchained.php", event.target); }, true)
-
- Array.from(document.getElementsByClassName("reloadbtn")).forEach((item) => {
- item.addEventListener("click", (event) => {
- if (event.target.style.transform === "rotate(-360deg)") {
- event.target.style.transform = "rotate(0deg)";
- } else {
- event.target.style.transform = "rotate(-360deg)";
- }
- document.getElementById("content-frame").contentWindow.location.reload(true);
- })
- })
-
- </script>
-</div>
-
-<?php require_once $_SERVER['DOCUMENT_ROOT'] . "/admin/private/footer.php"; ?> \ No newline at end of file
diff --git a/admin/panes/audit.php b/admin/panes/audit.php
deleted file mode 100644
index 3292ec8..0000000
--- a/admin/panes/audit.php
+++ /dev/null
@@ -1,252 +0,0 @@
-<?php require_once $_SERVER['DOCUMENT_ROOT'] . "/admin/private/header.php";/** @var array $_DATA */ ?>
-
-<style>
- ::-webkit-scrollbar {
- width: 5px;
- }
-
- ::-webkit-scrollbar-track {
- border-radius: 9999px;
- background: transparent;
- }
-
- ::-webkit-scrollbar-thumb {
- border-radius: 9999px;
- background-color: rgba(136, 136, 136, 0.5);
- transition: background 200ms;
- }
-
- ::-webkit-scrollbar-thumb:hover {
- background-color: rgba(85, 85, 85, 0.75);
- }
-
- ::-webkit-scrollbar-thumb:active {
- background-color: #222;
- }
-
- .list-group-item {
- background: #34373c;
- }
-
- table, table * {
- color: white !important;
- border-color: #292b2f !important;
- }
-
- th {
- border-top: 0 !important;
- }
-
- table a {
- color: #007bff !important;
- }
-
- td.users {
- width: 20vw;
- }
-
- .addr-location {
- width: 20vw;
- }
-</style>
-
-<div class="container" style="color:white;padding-top:15vh;padding-bottom:15vh;">
- <h2 style="text-align:center;"><?= l("Security Audit", "Audit de sécurité") ?></h2>
- <table class="table table-hover">
- <thead>
- <tr>
- <th><?= l("IP address", "Adresse IP") ?></th>
- <th><?= l("Connections", "Connexions") ?></th>
- <th><?= l("Username(s)", "Nom(s) d'utilisateur") ?></th>
- <th>Actions</th>
- </tr>
- </thead>
- <tbody><?php
-
- $ips = [];
- $data = "";
- $dir = scandir("/var/log");
-
- $dir = array_reverse($dir);
-
- /** @var array $perms */
- $viewFullIps = false;
- foreach ($perms as $user => $uperms) {
- if ($user === $_DATA['id']) {
- if (in_array("addresses", $uperms)) {
- $viewFullIps = true;
- }
- }
- }
-
- foreach ($dir as $file) {
- if ($file !== "." && $file !== "..") {
- if (substr($file, 0, 5) === "auth.") {
- if (substr($file, -3) === ".gz") {
- exec("gzip --decompress /var/log/" . $file);
- $raw = file_get_contents("/var/log/" . substr($file, 0, -3));
- } else {
- $raw = file_get_contents("/var/log/" . $file);
- }
-
- $data .= "\n" . $raw;
- }
- }
- }
-
- $lines = explode("\n", strip_tags($data));
- $lines = array_reverse($lines);
-
- foreach ($lines as $line) {
- if (trim($line) !== "" && strpos($line, "sshd") !== false && strpos($line, "error: kex_exchange_identification: Connection closed by remote host") === false && (strpos($line, "]: Connection closed by invalid user ") !== false || strpos($line, "]: Unable to negotiate with ") !== false || strpos($line, "]: Accepted publickey for ") !== false)) {
- $data = [];
-
- $parts = explode(": ", $line);
-
- $data["date"] = $parts[0];
- array_shift($parts);
- $data["message"] = implode(": ", $parts);
-
-
- if (substr($data["message"], 0, 23) === "Accepted publickey for ") { // Successful connection
- $data["status"] = "ok";
- $data["ip"] = explode(" ", $data["message"])[5];
- $data["user"] = explode(" ", $data["message"])[3];
- }
-
- if (substr($data["message"], 0, 25) === "Unable to negotiate with ") { // Errored connection
- $data["status"] = "error";
- $data["ip"] = explode(" ", $data["message"])[4];
- $data["user"] = null;
- }
-
- if (substr($data["message"], 0, 34) === "Connection closed by invalid user ") { // Invalid connection
- $data["status"] = "invalid";
- $data["ip"] = explode(" ", $data["message"])[count(explode(" ", $data["message"])) - 4];
- $data["user"] = explode(" ", $data["message"])[5];
- }
-
- if (!isset($ips[$data["ip"]])) {
- $ips[$data["ip"]] = [];
- }
- if (!isset($ips[$data["ip"]]["connections"])) {
- $ips[$data["ip"]]["connections"] = [];
- }
- $ips[$data["ip"]]["connections"][] = $data;
- }
- }
-
- $index = 1;
- foreach ($ips as $ip => $info) {
- if ($ip !== "port") {
- $pip = explode(".", $ip);
-
- if ($viewFullIps) {
- $rip = $ip;
- } else {
- if (strlen($pip[3]) === 3) $pip[3] = "xxx";
- if (strlen($pip[3]) === 2) $pip[3] = "xx";
- if (strlen($pip[3]) === 1) $pip[3] = "x";
-
- if (strlen($pip[2]) === 3) $pip[2] = "xxx";
- if (strlen($pip[2]) === 2) $pip[2] = "xx";
- if (strlen($pip[2]) === 1) $pip[2] = "x";
-
- $rip = implode(".", $pip);
- }
-
- echo("<tr>
- <td class='addr-location'><code>" . $rip . "</code><br><span id='iplocation-" . $ip . "'><span class='text-muted'>" . l("Please wait", "Patientez") . "...</span></span>");?>
- <!--suppress JSUnresolvedVariable -->
- <script>
-
- setTimeout(() => {
- document.getElementById("iplocation-<?= $ip ?>").innerHTML = $.ajax({
- type: "GET",
- url: "/admin/api/getIpLocation.php?_=<?= $ip ?>",
- async: false
- }).responseText;
- }, <?= $index ?> * 1000);
-
- </script>
- <?php
- if ($ip === $_SERVER['REMOTE_ADDR']) {
- echo(" <span class='badge text-primary border-primary' style='border:1px solid;vertical-align: middle;'>" . l("You", "Vous") . "</span>");
- }
- echo("</td>
- <td>");
-
- $success = 0;
- $invalid = 0;
- $failed = 0;
-
- foreach ($info["connections"] as $connection) {
- if ($connection["status"] === "invalid") {
- $invalid++;
- }
- if ($connection["status"] === "error") {
- $failed++;
- }
- if ($connection["status"] === "ok") {
- $success++;
- }
- }
- if (count($info["connections"]) === 0) {
- echo("<span class='text-muted'>" . l("Never connected", "Jamais connecté") . "</span>");
- } else {
- echo($success . " " . l("succeeded", "réussi") . ", " . $failed . " " . l("failed", "échoué") . ", " . $invalid . " " . l("invalid", "invalide"));
- }
-
- echo("<br>" . l("Last", "Dernier ") . ": ");
-
- if ($info["connections"][0]["status"] === "ok") {
- echo("<span class='badge text-success border-success' style='border:1px solid;vertical-align: middle;'>" . l("Succeeded", "Réussi") . "</span>");
- }
-
- if ($info["connections"][0]["status"] === "error") {
- echo("<span class='badge text-warning border-warning' style='border:1px solid;vertical-align: middle;'>" . l("Failed", "Échoué") . "</span>");
- }
-
- if ($info["connections"][0]["status"] === "invalid") {
- echo("<span class='badge text-danger border-danger' style='border:1px solid;vertical-align: middle;'>" . l("Invalid", "Invalide") . "</span>");
- }
-
- echo("</td>
- <td class='users'><details><summary>" . l("Show full list", "Afficher la liste") . "</summary><ul class='list-group'>");
-
- $uniqueUsers = [];
- $connectionsWithUsers = 0;
-
- foreach ($info["connections"] as $connection) {
- if (!in_array($connection["user"], $uniqueUsers) && $connection["user"] !== null) {
- if (isset($uniqueUsers[$connection["user"]])) {
- $uniqueUsers[$connection["user"]]++;
- $connectionsWithUsers++;
- } else {
- $uniqueUsers[$connection["user"]] = 1;
- $connectionsWithUsers++;
- }
- }
- }
-
- foreach ($uniqueUsers as $user => $occurrences) {
- echo("<li class='list-group-item'><code>" . $user . "</code> <span style='float:right;'>(" . $occurrences . "×, " . round(($occurrences/$connectionsWithUsers)*100, 2) . "%)</span></li>");
- }
-
- if (count($uniqueUsers) === 0) {
- echo("<li class='list-group-item text-muted'>" . l("Username was never sent to server", "Le nom d'utilisateur n'a jamais été transmis au service") . "</li>");
- }
-
- echo("</ul></details></td></td>
- <td><a href='https://cleantalk.org/blacklists/report-ip' target='_blank'>" . l("Report as fraudulent", "Signaler comme fraude") . "</a></td>
- </tr>");
-
- $index++;
- }
- }
-
- ?></tbody>
- </table>
-</div>
-
-<?php require_once $_SERVER['DOCUMENT_ROOT'] . "/admin/private/footer.php"; ?> \ No newline at end of file
diff --git a/admin/panes/code.php b/admin/panes/code.php
deleted file mode 100644
index 5c716e3..0000000
--- a/admin/panes/code.php
+++ /dev/null
@@ -1,43 +0,0 @@
-<?php require_once $_SERVER['DOCUMENT_ROOT'] . "/admin/private/header.php";/** @var array $_DATA */ ?>
-
-<style>
- ::-webkit-scrollbar {
- width: 5px;
- }
-
- ::-webkit-scrollbar-track {
- border-radius: 9999px;
- background: transparent;
- }
-
- ::-webkit-scrollbar-thumb {
- border-radius: 9999px;
- background-color: rgba(136, 136, 136, 0.5);
- transition: background 200ms;
- }
-
- ::-webkit-scrollbar-thumb:hover {
- background-color: rgba(85, 85, 85, 0.75);
- }
-
- ::-webkit-scrollbar-thumb:active {
- background-color: #222;
- }
-
- .list-group-item {
- background: #34373c;
- }
-</style>
-
-<div class="container" style="color:white;padding-top:15vh;padding-bottom:15vh;">
- <h2 style="text-align:center;">Code of Conduct</h2>
-
- <h4 style="text-align:center;">editor powered by Neutron</h4>
-
- <ul class="list-group" style="margin-top:20px;">
- <li class="list-group-item">English (primary) <span style="float:right;"><a href="/admin/panes/editor.php?file=conduct.en&name=Code%20of%20Conduct%20-%20English&context=code">Edit</a> · <a href="/code-of-conduct/?en" target="_blank">View</a></span></li>
- <li class="list-group-item">French <span style="float:right;"><a href="/admin/panes/editor.php?file=conduct.fr&name=Code%20of%20Conduct%20-%20French&context=code">Edit</a> · <a href="/code-of-conduct/?fr" target="_blank">View</a></span></li>
- </ul>
-</div>
-
-<?php require_once $_SERVER['DOCUMENT_ROOT'] . "/admin/private/footer.php"; ?> \ No newline at end of file
diff --git a/admin/panes/deneid.php b/admin/panes/deneid.php
deleted file mode 100644
index 8f3133f..0000000
--- a/admin/panes/deneid.php
+++ /dev/null
@@ -1,81 +0,0 @@
-<?php require_once $_SERVER['DOCUMENT_ROOT'] . "/admin/private/header.php";/** @var array $_DATA */ ?>
-
-<style>
- ::-webkit-scrollbar {
- width: 5px;
- }
-
- ::-webkit-scrollbar-track {
- border-radius: 9999px;
- background: transparent;
- }
-
- ::-webkit-scrollbar-thumb {
- border-radius: 9999px;
- background-color: rgba(136, 136, 136, 0.5);
- transition: background 200ms;
- }
-
- ::-webkit-scrollbar-thumb:hover {
- background-color: rgba(85, 85, 85, 0.75);
- }
-
- ::-webkit-scrollbar-thumb:active {
- background-color: #222;
- }
-
- .list-group-item {
- background: #34373c;
- }
-</style>
-
-<div class="container" style="color:white;padding-top:15vh;padding-bottom:15vh;display: flex;align-items:center;justify-content: center;height:100%;" id="main">
- <div>
- <p style="text-align: center;">
- <img src="/logo.svg" width="96px"><span class="text-muted"> ⏵⏵⏵ </span><!--suppress CheckImageSize -->
- <img src="/static/apps/unchainedtech.png" width="96px">
- </p>
- <br>
- <h2 style="text-align:center;">You already have access to UnchainedTech Admin</h2>
-
- <h4 style="text-align:center;">We automatically logged you into UnchainedTech Admin when you logged in to Minteck Admin</h4><br>
-
- <div style="text-align: center;width:max-content;margin-left:auto;margin-right:auto;">
- <p class="btn-group">
- <a href="https://unchainedtech.minteck.ro.lt/articles" target="_blank" class="btn btn-outline-light">All Articles</a>
- <a href="https://unchainedtech.minteck.ro.lt/admin" target="_blank" class="btn btn-outline-light">Admin Tasks</a>
- </p>
- </div>
-
- <small><p style="text-align: center;">
- v<?= trim(file_get_contents("/mnt/blogchain/version.txt")) ?> • <a href="#" onclick="document.getElementById('main').style.display='none';document.getElementById('secondary').style.display='';">Manage drafts</a>
- </p></small>
- </div>
-</div>
-
- <div class="container" style="color:white;padding-top:15vh;padding-bottom:15vh;display:none;" id="secondary">
- <div>
- <h2 style="text-align:center;">UnchainedTech</h2>
- <h4 style="text-align:center;">Drafts List</h4>
-
- <small><p style="text-align: center;">
- v<?= trim(file_get_contents("/mnt/blogchain/version.txt")) ?> • <a href="#" onclick="document.getElementById('main').style.display='flex';document.getElementById('secondary').style.display='none';">Hide drafts list</a>
- </p></small>
-
- <ul class="list-group">
- <?php
-
- $drafts = false;
- foreach (scandir("/mnt/blogchain/_posts/_drafts") as $draft) {
- if ($draft !== "." && $draft !== ".." && $draft !== ".gitkeep" && $draft !== "_template.md") {
- $drafts = true;
- echo('<li class="list-group-item">' . substr($draft, 0, -3) . '<span style="float:right;"><a href="https://unchainedtech.minteck.ro.lt/admin/article/' . substr($draft, 0, -3) . '" target="_blank">Preview</a> · <a href="https://github.com/Minteck/UnchainedTech-Content/edit/production/_drafts/' . $draft . '" target="_blank">Edit</a> · <a href="https://github.com/Minteck/UnchainedTech-Content/delete/production/_drafts/' . $draft . '" target="_blank">Delete</a></span></li>');
- }
- }
-
- ?>
- </ul>
- </div>
- </div>
-
-<?php require_once $_SERVER['DOCUMENT_ROOT'] . "/admin/private/footer.php"; ?> \ No newline at end of file
diff --git a/admin/panes/denied.php b/admin/panes/denied.php
deleted file mode 100644
index 9a29fcb..0000000
--- a/admin/panes/denied.php
+++ /dev/null
@@ -1,62 +0,0 @@
-<?php require $_SERVER['DOCUMENT_ROOT'] . "/admin/private/header.php";/** @var array $_DATA */ ?>
-
-<style>
- ::-webkit-scrollbar {
- width: 5px;
- }
-
- ::-webkit-scrollbar-track {
- border-radius: 9999px;
- background: transparent;
- }
-
- ::-webkit-scrollbar-thumb {
- border-radius: 9999px;
- background-color: rgba(136, 136, 136, 0.5);
- transition: background 200ms;
- }
-
- ::-webkit-scrollbar-thumb:hover {
- background-color: rgba(85, 85, 85, 0.75);
- }
-
- ::-webkit-scrollbar-thumb:active {
- background-color: #222;
- }
-
- .list-group-item {
- background: #34373c;
- }
-
- body {
- background: #5f1b1b !important;
- }
-</style>
-
-<div class="container" style="color:white;padding-top:15vh;padding-bottom:15vh;display: flex;align-items:center;justify-content: center;height:100%;">
- <div>
- <p style="text-align: center;">
- <!--suppress CheckImageSize -->
- <img src="/static/admin/locked.svg" style="width:96px;filter:invert(1);">
- </p>
- <br>
- <h2 style="text-align:center;"><?= l("Access is denied", "Accès refusé") ?></h2>
-
- <h4 style="text-align:center;"><?= l("You don't have the", "Vous ne disposez pas de la permission") ?> <code>admin.<?= strip_tags($_GET['_'] ?? "*") ?></code><?= l(" permission, which is required to access this resource", ", qui est nécessaire pour accéder à ce contenu") ?>.</h4><br>
-
- <div id="homebtn" style="text-align: center;width:max-content;margin-left:auto;margin-right:auto;">
- <p class="btn-group">
- <a onclick="window.parent.activity('activity-home', '/admin/panes/home.php', window.parent.document.getElementById('activity-home'));" class="btn btn-outline-light"><?= l("Home", "Accueil") ?></a>
- </p>
- </div>
- <script>
- if (window.parent === window) document.getElementById("homebtn").style.display = "none";
- </script>
-
- <small><p style="text-align: center;">
- <?= l("If you believe this is an error", "Si vous pensez qu'il s'agit d'une erreur") ?>, <a href="/contact" target="_blank"><?= l("contact Minteck", "contactez Minteck") ?></a>
- </p></small>
- </div>
-</div>
-
-<?php require_once $_SERVER['DOCUMENT_ROOT'] . "/admin/private/footer.php"; ?> \ No newline at end of file
diff --git a/admin/panes/disk.php b/admin/panes/disk.php
deleted file mode 100644
index 72d772f..0000000
--- a/admin/panes/disk.php
+++ /dev/null
@@ -1,81 +0,0 @@
-<?php require_once $_SERVER['DOCUMENT_ROOT'] . "/admin/private/header.php";/** @var array $_DATA */ ?>
-
-<style>
- ::-webkit-scrollbar {
- width: 5px;
- }
-
- ::-webkit-scrollbar-track {
- border-radius: 9999px;
- background: transparent;
- }
-
- ::-webkit-scrollbar-thumb {
- border-radius: 9999px;
- background-color: rgba(136, 136, 136, 0.5);
- transition: background 200ms;
- }
-
- ::-webkit-scrollbar-thumb:hover {
- background-color: rgba(85, 85, 85, 0.75);
- }
-
- ::-webkit-scrollbar-thumb:active {
- background-color: #222;
- }
-
- .list-group-item {
- background: #34373c;
- }
-</style>
-
-<div class="container" style="color:white;padding-top:15vh;padding-bottom:15vh;">
- <h2 style="text-align:center;">Disk Space Usage</h2>
- <pre style="background:#111;color:white;border-radius:5px;padding: 10px;"><?php
-
- exec("df -h -x tmpfs -x squashfs -x devtmpfs --total --output=source,fstype,size,used,avail,pcent,ipcent,iused,itotal,target", $disktotal);
- echo(implode("\n", $disktotal));
-
- ?>
- </pre>
- <ul class="list-group">
- <li class="list-group-item">
- <details>
- <summary>Show all filesystems (including RAM disks and pseudo-fs)</summary>
- <pre style="background:#111;color:white;border-radius:5px;padding: 10px;"><?php
-
- exec("df -ha --output=source,fstype,size,used,avail,pcent,ipcent,iused,itotal,target", $disktotal2);
- echo(implode("\n", $disktotal2));
-
- ?>
- </pre>
- </details>
- </li>
- <li class="list-group-item">
- <details>
- <summary>Show filesystems mount options</summary>
- <pre style="background:#111;color:white;border-radius:5px;padding: 10px;"><?php
-
- exec("mount", $disktotal3);
- echo(implode("\n", $disktotal3));
-
- ?>
- </pre>
- </details>
- </li>
- <li class="list-group-item">
- <details>
- <summary>Show block devices tree</summary>
- <pre style="background:#111;color:white;border-radius:5px;padding: 10px;"><?php
-
- exec("lsblk -mp", $disktotal4);
- echo(implode("\n", $disktotal4));
-
- ?>
- </pre>
- </details>
- </li>
- </ul>
-</div>
-
-<?php require_once $_SERVER['DOCUMENT_ROOT'] . "/admin/private/footer.php"; ?> \ No newline at end of file
diff --git a/admin/panes/editor.php b/admin/panes/editor.php
deleted file mode 100644
index b337060..0000000
--- a/admin/panes/editor.php
+++ /dev/null
@@ -1,591 +0,0 @@
-<?php require_once $_SERVER['DOCUMENT_ROOT'] . "/admin/private/header.php";/** @var array $_DATA */
-
-if (isset($_GET['file']) && strpos($_GET['file'], "/") === false) {} else {
- die();
-}
-
-if (isset($_GET['name']) && strpos($_GET['name'], "/") === false) {} else {
- die();
-}
-
-if (isset($_GET['context']) && strpos($_GET['context'], "/") === false) {} else {
- die();
-}
-
-if (isset($_GET['article']) && strpos($_GET['article'], "/") === false) {} else {
- if (isset($_GET['article'])) {
- die();
- }
-}
-
-?>
-
-<style>
- ::-webkit-scrollbar {
- width: 5px;
- }
-
- ::-webkit-scrollbar-track {
- border-radius: 9999px;
- background: transparent;
- }
-
- ::-webkit-scrollbar-thumb {
- border-radius: 9999px;
- background-color: rgba(136, 136, 136, 0.5);
- transition: background 200ms;
- }
-
- ::-webkit-scrollbar-thumb:hover {
- background-color: rgba(85, 85, 85, 0.75);
- }
-
- ::-webkit-scrollbar-thumb:active {
- background-color: #222;
- }
-
- .list-group-item {
- background: #34373c;
- }
-</style>
-
-<div class="container" style="color:white;padding-top:15vh;padding-bottom:15vh;">
- <p style="text-align: center;"><a href="/admin/panes/<?= $_GET['context'] ?>.php">← Go back</a></p>
- <h2 style="text-align:center;"><?= strip_tags($_GET['name']) ?></h2>
-
- <h4 id="autosave-status" style="text-align:center;transition:opacity 200ms;">Saved as draft</h4>
-
- <textarea name="content" id="editor"><?php
-
- if ($_GET['file'] === "conduct.fr") {
- if (file_exists($_SERVER['DOCUMENT_ROOT'] . "/includes/drafts/" . $_GET['file'] . ".html")) {
- echo(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/drafts/" . $_GET['file'] . ".html"));
- } else {
- echo(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/code/fr.html"));
- }
- }
-
- if ($_GET['file'] === "conduct.en") {
- if (file_exists($_SERVER['DOCUMENT_ROOT'] . "/includes/drafts/" . $_GET['file'] . ".html")) {
- echo(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/drafts/" . $_GET['file'] . ".html"));
- } else {
- echo(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/code/en.html"));
- }
- }
-
- if ($_GET['file'] === "blog.en") {
- if (file_exists($_SERVER['DOCUMENT_ROOT'] . "/includes/drafts/blog-{$_GET['article']}.json.html")) {
- echo(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/drafts/blog-{$_GET['article']}.json.html"));
- } else {
- echo(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/blog/data/{$_GET['article']}.json.html"));
- }
- }
-
- if ($_GET['file'] === "blog.fr") {
- if (file_exists($_SERVER['DOCUMENT_ROOT'] . "/includes/drafts/blog-{$_GET['article']}.json.fr.html")) {
- echo(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/drafts/blog-{$_GET['article']}.json.fr.html"));
- } else {
- if (file_exists($_SERVER['DOCUMENT_ROOT'] . "/includes/blog/data/{$_GET['article']}.json.fr.html")) {
- echo(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/blog/data/{$_GET['article']}.json.fr.html"));
- } else {
- echo(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/blog/data/{$_GET['article']}.json.html"));
- }
- }
- }
-
- ?></textarea>
-
- <br>
-
- <script src="/static/js/ckeditor.js"></script>
- <script>
- let colors = [{
- color: 'hsl(0, 0%, 0%)',
- },
- {
- color: 'hsl(0, 0%, 12.5%)',
- },
- {
- color: 'hsl(0, 0%, 25%)',
- },
- {
- color: 'hsl(0, 0%, 37.5%)',
- },
- {
- color: 'hsl(0, 0%, 50%)',
- },
- {
- color: 'hsl(0, 0%, 62.5%)',
- },
- {
- color: 'hsl(0, 0%, 75%)',
- },
- {
- color: 'hsl(0, 0%, 87.5%)',
- },
- {
- color: 'hsl(0, 0%, 100%)',
- hasBorder: true,
- },
- {
- color: 'hsl(0, 100%, 10%)',
- },
- {
- color: 'hsl(0, 100%, 12.5%)',
- },
- {
- color: 'hsl(0, 100%, 25%)',
- },
- {
- color: 'hsl(0, 100%, 37.5%)',
- },
- {
- color: 'hsl(0, 100%, 50%)',
- },
- {
- color: 'hsl(0, 100%, 62.5%)',
- },
- {
- color: 'hsl(0, 100%, 75%)',
- },
- {
- color: 'hsl(0, 100%, 87.5%)',
- },
- {
- color: 'hsl(0, 100%, 90%)',
- hasBorder: true,
- },
- {
- color: 'hsl(30, 100%, 10%)',
- },
- {
- color: 'hsl(30, 100%, 12.5%)',
- },
- {
- color: 'hsl(30, 100%, 25%)',
- },
- {
- color: 'hsl(30, 100%, 37.5%)',
- },
- {
- color: 'hsl(30, 100%, 50%)',
- },
- {
- color: 'hsl(30, 100%, 62.5%)',
- },
- {
- color: 'hsl(30, 100%, 75%)',
- },
- {
- color: 'hsl(30, 100%, 87.5%)',
- },
- {
- color: 'hsl(30, 100%, 90%)',
- hasBorder: true,
- },
- {
- color: 'hsl(60, 100%, 10%)',
- },
- {
- color: 'hsl(60, 100%, 12.5%)',
- },
- {
- color: 'hsl(60, 100%, 25%)',
- },
- {
- color: 'hsl(60, 100%, 37.5%)',
- },
- {
- color: 'hsl(60, 100%, 50%)',
- },
- {
- color: 'hsl(60, 100%, 62.5%)',
- },
- {
- color: 'hsl(60, 100%, 75%)',
- },
- {
- color: 'hsl(60, 100%, 87.5%)',
- },
- {
- color: 'hsl(60, 100%, 90%)',
- hasBorder: true,
- },
- {
- color: 'hsl(90, 100%, 10%)',
- },
- {
- color: 'hsl(90, 100%, 12.5%)',
- },
- {
- color: 'hsl(90, 100%, 25%)',
- },
- {
- color: 'hsl(90, 100%, 37.5%)',
- },
- {
- color: 'hsl(90, 100%, 50%)',
- },
- {
- color: 'hsl(90, 100%, 62.5%)',
- },
- {
- color: 'hsl(90, 100%, 75%)',
- },
- {
- color: 'hsl(90, 100%, 87.5%)',
- },
- {
- color: 'hsl(90, 100%, 90%)',
- hasBorder: true,
- },
- {
- color: 'hsl(120, 100%, 10%)',
- },
- {
- color: 'hsl(120, 100%, 12.5%)',
- },
- {
- color: 'hsl(120, 100%, 25%)',
- },
- {
- color: 'hsl(120, 100%, 37.5%)',
- },
- {
- color: 'hsl(120, 100%, 50%)',
- },
- {
- color: 'hsl(120, 100%, 62.5%)',
- },
- {
- color: 'hsl(120, 100%, 75%)',
- },
- {
- color: 'hsl(120, 100%, 87.5%)',
- },
- {
- color: 'hsl(120, 100%, 90%)',
- hasBorder: true,
- },
- {
- color: 'hsl(150, 100%, 10%)',
- },
- {
- color: 'hsl(150, 100%, 12.5%)',
- },
- {
- color: 'hsl(150, 100%, 25%)',
- },
- {
- color: 'hsl(150, 100%, 37.5%)',
- },
- {
- color: 'hsl(150, 100%, 50%)',
- },
- {
- color: 'hsl(150, 100%, 62.5%)',
- },
- {
- color: 'hsl(150, 100%, 75%)',
- },
- {
- color: 'hsl(150, 100%, 87.5%)',
- },
- {
- color: 'hsl(150, 100%, 90%)',
- hasBorder: true,
- },
- {
- color: 'hsl(180, 100%, 10%)',
- },
- {
- color: 'hsl(180, 100%, 12.5%)',
- },
- {
- color: 'hsl(180, 100%, 25%)',
- },
- {
- color: 'hsl(180, 100%, 37.5%)',
- },
- {
- color: 'hsl(180, 100%, 50%)',
- },
- {
- color: 'hsl(180, 100%, 62.5%)',
- },
- {
- color: 'hsl(180, 100%, 75%)',
- },
- {
- color: 'hsl(180, 100%, 87.5%)',
- },
- {
- color: 'hsl(180, 100%, 90%)',
- hasBorder: true,
- },
- {
- color: 'hsl(210, 100%, 10%)',
- },
- {
- color: 'hsl(210, 100%, 12.5%)',
- },
- {
- color: 'hsl(210, 100%, 25%)',
- },
- {
- color: 'hsl(210, 100%, 37.5%)',
- },
- {
- color: 'hsl(210, 100%, 50%)',
- },
- {
- color: 'hsl(210, 100%, 62.5%)',
- },
- {
- color: 'hsl(210, 100%, 75%)',
- },
- {
- color: 'hsl(210, 100%, 87.5%)',
- },
- {
- color: 'hsl(210, 100%, 90%)',
- hasBorder: true,
- },
- {
- color: 'hsl(240, 100%, 10%)',
- },
- {
- color: 'hsl(240, 100%, 12.5%)',
- },
- {
- color: 'hsl(240, 100%, 25%)',
- },
- {
- color: 'hsl(240, 100%, 37.5%)',
- },
- {
- color: 'hsl(240, 100%, 50%)',
- },
- {
- color: 'hsl(240, 100%, 62.5%)',
- },
- {
- color: 'hsl(240, 100%, 75%)',
- },
- {
- color: 'hsl(240, 100%, 87.5%)',
- },
- {
- color: 'hsl(240, 100%, 90%)',
- hasBorder: true,
- },
- {
- color: 'hsl(270, 100%, 10%)',
- },
- {
- color: 'hsl(270, 100%, 12.5%)',
- },
- {
- color: 'hsl(270, 100%, 25%)',
- },
- {
- color: 'hsl(270, 100%, 37.5%)',
- },
- {
- color: 'hsl(270, 100%, 50%)',
- },
- {
- color: 'hsl(270, 100%, 62.5%)',
- },
- {
- color: 'hsl(270, 100%, 75%)',
- },
- {
- color: 'hsl(270, 100%, 87.5%)',
- },
- {
- color: 'hsl(270, 100%, 90%)',
- hasBorder: true,
- },
- {
- color: 'hsl(300, 100%, 10%)',
- },
- {
- color: 'hsl(300, 100%, 12.5%)',
- },
- {
- color: 'hsl(300, 100%, 25%)',
- },
- {
- color: 'hsl(300, 100%, 37.5%)',
- },
- {
- color: 'hsl(300, 100%, 50%)',
- },
- {
- color: 'hsl(300, 100%, 62.5%)',
- },
- {
- color: 'hsl(300, 100%, 75%)',
- },
- {
- color: 'hsl(300, 100%, 87.5%)',
- },
- {
- color: 'hsl(300, 100%, 90%)',
- hasBorder: true,
- },
- {
- color: 'hsl(330, 100%, 10%)',
- },
- {
- color: 'hsl(330, 100%, 12.5%)',
- },
- {
- color: 'hsl(330, 100%, 25%)',
- },
- {
- color: 'hsl(330, 100%, 37.5%)',
- },
- {
- color: 'hsl(330, 100%, 50%)',
- },
- {
- color: 'hsl(330, 100%, 62.5%)',
- },
- {
- color: 'hsl(330, 100%, 75%)',
- },
- {
- color: 'hsl(330, 100%, 87.5%)',
- },
- {
- color: 'hsl(330, 100%, 90%)',
- hasBorder: true,
- }];
- let editor;
- ClassicEditor
- .create( document.querySelector( '#editor' ), {
- toolbar: [
- 'undo', 'redo', '|', 'removeFormat', '|', 'heading', '|', 'fontSize', 'fontColor', 'fontBackgroundColor', 'alignment', '|', 'bold', 'italic', 'underline', 'strikethrough', '|', 'subscript', 'superscript', '|', 'code', '|', 'outdent', 'indent', '|', 'bulletedList', 'numberedList', '|', 'link', 'imageUpload', 'mediaEmbed', 'blockQuote', 'insertTable', 'codeBlock', '|', 'horizontalLine'
- ],
- fontColor: {
- colors: colors,
- columns: 9
- },
- autosave: {
- save( editor ) {
- return saveData( editor.getData() );
- }
- },
- } )
-
- .then( newEditor => {
- editor = newEditor;
- } )
- .catch( error => {
- console.error( error );
- } );
- </script>
- <!--suppress JSUnresolvedVariable, JSUnresolvedFunction, JSUnfilteredForInLoop -->
- <script>
- function publish() {
- $("html, body").animate({scrollTop: 0}, 100);
- document.getElementById("autosave-status").style.opacity = "0";
- setTimeout(() => {
- document.getElementById("autosave-status").innerText = "Publishing...";
- document.getElementById("autosave-status").style.opacity = "1";
- setTimeout(() => {
- $.ajax("/admin/api/setlive.php", {
- dataType: 'text',
- type: 'post',
- contentType: 'application/x-www-form-urlencoded',
- data: {
- document: "<?= $_GET['file'] ?>",
- <?= isset($_GET['article']) ? "article: \"{$_GET['article']}\"" : "" ?>
- },
- success: (data) => {
- document.getElementById("autosave-status").style.opacity = "0";
- setTimeout(() => {
- document.getElementById("autosave-status").innerText = "Published";
- document.getElementById("autosave-status").style.opacity = "1";
- }, 200)
- document.getElementById("publish-btn").disabled = data.trim() === "false";
- },
- error: (e) => {
- console.error(e);
- document.getElementById("autosave-status").style.opacity = "0";
- setTimeout(() => {
- document.getElementById("autosave-status").innerText = "Unable to publish";
- document.getElementById("autosave-status").style.opacity = "1";
- }, 200)
- alert("An error prevents publishing the document. You may continue editing it but your changes may not be automatically saved on the server");
- }
- });
- }, 200)
- }, 200)
- }
-
- function saveData(data) {
- document.getElementById("autosave-status").style.opacity = "0";
- setTimeout(() => {
- document.getElementById("autosave-status").innerText = "Saving...";
- document.getElementById("autosave-status").style.opacity = "1";
- setTimeout(() => {
- $.ajax("/admin/api/autosave.php", {
- dataType: 'text',
- type: 'post',
- contentType: 'application/x-www-form-urlencoded',
- data: {
- document: "<?= $_GET['file'] ?>",
- <?= isset($_GET['article']) ? "article: \"{$_GET['article']}\"," : "" ?>
- content: data
- },
- success: (data) => {
- $.ajax("/admin/api/draftvslive.php", {
- dataType: 'text',
- type: 'post',
- contentType: 'application/x-www-form-urlencoded',
- data: {
- document: "<?= $_GET['file'] ?>",
- <?= isset($_GET['article']) ? "article: \"{$_GET['article']}\"" : "" ?>
- },
- success: (data) => {
- document.getElementById("autosave-status").style.opacity = "0";
- setTimeout(() => {
- document.getElementById("autosave-status").innerText = "Saved as draft";
- document.getElementById("autosave-status").style.opacity = "1";
- }, 200)
- document.getElementById("publish-btn").disabled = data.trim() === "true";
- },
- error: (e) => {
- console.error(e);
- document.getElementById("autosave-status").style.opacity = "0";
- setTimeout(() => {
- document.getElementById("autosave-status").innerText = "Unable to save";
- document.getElementById("autosave-status").style.opacity = "1";
- }, 200)
- alert("An error prevents saving the document. You may continue editing it but your changes won't be automatically saved on the server");
- }
- });
- },
- error: (e) => {
- console.error(e);
- document.getElementById("autosave-status").style.opacity = "0";
- setTimeout(() => {
- document.getElementById("autosave-status").innerText = "Unable to save";
- document.getElementById("autosave-status").style.opacity = "1";
- }, 200)
- alert("An error prevents saving the document. You may continue editing it but your changes won't be automatically saved on the server");
- }
- });
- }, 200)
- }, 200)
- }
- </script>
-
- <link rel="stylesheet" href="/static/css/editor.css">
- <p style="text-align: center;"><button id="publish-btn" onclick="publish();" class="btn btn-primary">Publish changes</button></p>
-</div>
-
-<?php require_once $_SERVER['DOCUMENT_ROOT'] . "/admin/private/footer.php"; ?> \ No newline at end of file
diff --git a/admin/panes/files.php b/admin/panes/files.php
deleted file mode 100644
index 5f836de..0000000
--- a/admin/panes/files.php
+++ /dev/null
@@ -1,4 +0,0 @@
-<?php
-
-require_once $_SERVER['DOCUMENT_ROOT'] . "/admin/private/header.api.php";
-require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/tinyfilemanager.php"; \ No newline at end of file
diff --git a/admin/panes/hardware.lshw.php b/admin/panes/hardware.lshw.php
deleted file mode 100644
index f50c1ce..0000000
--- a/admin/panes/hardware.lshw.php
+++ /dev/null
@@ -1,4 +0,0 @@
-<?php
-
-exec("sudo lshw -html -quiet", $ret);
-echo(implode("\n", $ret)); \ No newline at end of file
diff --git a/admin/panes/hardware.php b/admin/panes/hardware.php
deleted file mode 100644
index 05c839f..0000000
--- a/admin/panes/hardware.php
+++ /dev/null
@@ -1,76 +0,0 @@
-<?php require_once $_SERVER['DOCUMENT_ROOT'] . "/admin/private/header.php";/** @var array $_DATA */ ?>
-
-<style>
- ::-webkit-scrollbar {
- width: 5px;
- }
-
- ::-webkit-scrollbar-track {
- border-radius: 9999px;
- background: transparent;
- }
-
- ::-webkit-scrollbar-thumb {
- border-radius: 9999px;
- background-color: rgba(136, 136, 136, 0.5);
- transition: background 200ms;
- }
-
- ::-webkit-scrollbar-thumb:hover {
- background-color: rgba(85, 85, 85, 0.75);
- }
-
- ::-webkit-scrollbar-thumb:active {
- background-color: #222;
- }
-
- .list-group-item {
- background: #34373c;
- }
-</style><?php
-
-function command($command) {
- $data = [];
- exec($command, $data);
- return implode("\n", $data);
-}
-
-?>
-
-<div class="container" style="color:white;padding-top:15vh;padding-bottom:15vh;">
- <h2 style="text-align:center;">Hardware Information</h2>
- <ul class="list-group">
- <li class="list-group-item">
- <details>
- <summary>General system information</summary>
- <iframe src="/admin/panes/hardware.lshw.php" style="border:none;width:100%;height:100vh;"></iframe>
- </details>
- </li>
- <li class="list-group-item">
- <details>
- <summary>Attached PCI devices</summary>
- <pre style="background:#111;color:white;border-radius:5px;padding: 10px;"><?= command("lspci") ?></pre>
- </details>
- </li>
- <li class="list-group-item">
- <details>
- <summary>Attached USB devices</summary>
- <pre style="background:#111;color:white;border-radius:5px;padding: 10px;"><?= command("lsusb -t") ?></pre>
- </details>
- </li>
- <li class="list-group-item">
- <details>
- <summary>Attached processors</summary>
- <pre style="background:#111;color:white;border-radius:5px;padding: 10px;"><?= command("lscpu") ?></pre>
- </details>
- </li>
- <li class="list-group-item">
- <details>
- <summary>Loaded kernel modules</summary>
- <pre style="background:#111;color:white;border-radius:5px;padding: 10px;"><?= command("lsmod") ?></pre>
- </details>
- </li>
- </ul>
-</div>
-
-<?php require_once $_SERVER['DOCUMENT_ROOT'] . "/admin/private/footer.php"; ?> \ No newline at end of file
diff --git a/admin/panes/home.php b/admin/panes/home.php
deleted file mode 100644
index f31dc72..0000000
--- a/admin/panes/home.php
+++ /dev/null
@@ -1,116 +0,0 @@
-<?php require_once $_SERVER['DOCUMENT_ROOT'] . "/admin/private/header.php";/** @var array $_DATA */ ?>
-
-<style>
- ::-webkit-scrollbar {
- width: 5px;
- }
-
- ::-webkit-scrollbar-track {
- border-radius: 9999px;
- background: transparent;
- }
-
- ::-webkit-scrollbar-thumb {
- border-radius: 9999px;
- background-color: rgba(136, 136, 136, 0.5);
- transition: background 200ms;
- }
-
- ::-webkit-scrollbar-thumb:hover {
- background-color: rgba(85, 85, 85, 0.75);
- }
-
- ::-webkit-scrollbar-thumb:active {
- background-color: #222;
- }
-
- .list-group-item {
- background: #34373c;
- }
-</style>
-
-<div class="container" style="color:white;padding-top:15vh;padding-bottom:15vh;">
- <h2 style="text-align:center;"><?= l("Welcome back", "Vous revoilà") ?> <?= $_DATA["name"] ?><?= l("", " ") ?>!</h2>
- <ul class="list-group" style="margin-top:30px;">
- <li class="list-group-item">
- <span id="temperature"><?= l("Server running at", "Serveur fonctionnant à") ?> <b>--.-°C</b>, n/a</span> <a href="#" onclick="window.parent.activity('activity-version', '/admin/panes/version.php', window.parent.document.getElementById('activity-version'));" style="float:right;"><?= l("Manage", "Gérer") ?>...</a></li><li class="list-group-item"><b><?php
-
- $uca = scandir("/mnt/blogchain/_posts");
- $uct = [];
-
- foreach ($uca as $art) {
- if (is_file("/mnt/blogchain/_posts/" . $art) && substr($art, 0, 1) !== "." && substr($art, 0, 1) !== "_") {
- $uct[] = $art;
- }
- }
-
- echo(count($uct));
-
- ?></b> <?= l("UnchainedTech article·s", "article·s sur UnchainedTech") ?>, <?php
-
- $uca = scandir("/mnt/blogchain/_posts/_drafts");
- $uct2 = [];
-
- foreach ($uca as $art) {
- if (is_file("/mnt/blogchain/_posts/_drafts/" . $art) && substr($art, 0, 1) !== "." && substr($art, 0, 1) !== "_") {
- $uct2[] = $art;
- }
- }
-
- echo(count($uct2));
-
- ?> <?= l("draft·s", "brouillon·s") ?> <a onclick="window.parent.activity('activity-unchained', '/admin/panes/unchained.php', window.parent.document.getElementById('activity-unchained'));" href="#" style="float:right;"><?= l("Manage", "Gérer") ?>...</a></li>
- <li class="list-group-item"><b><?php
-
- $uca = scandir("/mnt/minteckrolt-cloud");
- $uct3 = [];
-
- foreach ($uca as $art) {
- if (is_dir("/mnt/minteckrolt-cloud/" . $art) && substr($art, 0, 1) === "~") {
- $uct3[] = $art;
- }
- }
-
- echo(count($uct3));
-
- ?></b> <?= l("Neutron Cloud website·s", "site·s Neutron Cloud") ?> <a onclick="window.parent.activity('activity-quotas', '/admin/panes/quotas.php', window.parent.document.getElementById('activity-quotas'));" href="#" style="float:right;"><?= l("Manage", "Gérer") ?>...</a></li>
- <li class="list-group-item"><b><?php
-
- $uca = scandir("/mnt/kartik/online/private/stats");
- $uct4 = [];
-
- foreach ($uca as $art) {
- if (is_file("/mnt/kartik/online/private/stats/" . $art)) {
- $uct4[] = $art;
- }
- }
-
- echo(count($uct4));
-
- ?></b> <?= l("Kartik Online player·s", "joueurs·s Kartik Online") ?> <a onclick="window.parent.activity('activity-kartik', '/admin/panes/kartik.php', window.parent.document.getElementById('activity-kartik'));" href="#" style="float:right;"><?= l("Manage", "Gérer") ?>...</a></li>
- <li class="list-group-item"><?= l("Using", "Utilisation de") ?> <b><?php
-
- exec("df -h -x tmpfs -x squashfs -x devtmpfs --total -P", $outdisk);
- $outn = explode(" ", preg_replace('/\s+/', ' ', $outdisk[count($outdisk) - 1]));
- echo($outn[2] . "/" . $outn[1]);
-
- ?></b> <?= l("on all disks", "sur tous les disques") ?>, <b><?php
-
- echo($outn[3]);
-
- ?></b> <?= l("free", "de libre") ?> <a onclick="window.parent.activity('activity-disk', '/admin/panes/disk.php', window.parent.document.getElementById('activity-disk'));" href="#" style="float:right;"><?= l("Manage", "Gérer") ?>...</a></li>
- </ul>
- <!--suppress JSUnresolvedVariable, JSUnresolvedFunction -->
- <script>
- setInterval(() => {
- $.ajax("/admin/api/serverTemp.php", {
- success: (data) => {
- document.getElementById("temperature").innerHTML = data;
- }
- });
- }, 500)
- </script>
-</div>
-<script src="https://bm.jae.su/web/libs/FtechWebring.client.js" async></script>
-
-<?php require_once $_SERVER['DOCUMENT_ROOT'] . "/admin/private/footer.php"; ?> \ No newline at end of file
diff --git a/admin/panes/kartik.php b/admin/panes/kartik.php
deleted file mode 100644
index 10b47f5..0000000
--- a/admin/panes/kartik.php
+++ /dev/null
@@ -1,111 +0,0 @@
-<?php require_once $_SERVER['DOCUMENT_ROOT'] . "/admin/private/header.php";/** @var array $_DATA */ ?>
-
-<style>
- ::-webkit-scrollbar {
- width: 5px;
- }
-
- ::-webkit-scrollbar-track {
- border-radius: 9999px;
- background: transparent;
- }
-
- ::-webkit-scrollbar-thumb {
- border-radius: 9999px;
- background-color: rgba(136, 136, 136, 0.5);
- transition: background 200ms;
- }
-
- ::-webkit-scrollbar-thumb:hover {
- background-color: rgba(85, 85, 85, 0.75);
- }
-
- ::-webkit-scrollbar-thumb:active {
- background-color: #222;
- }
-
- .list-group-item {
- background: #34373c;
- }
-</style>
-
-<div class="container" style="color:white;padding-top:15vh;padding-bottom:15vh;">
- <div>
- <h2 style="text-align:center;">Kartik Online</h2>
- <h4 style="text-align:center;"><?php
-
- $uca = scandir("/mnt/kartik/online/private/stats");
- $uct4 = [];
-
- foreach ($uca as $art) {
- if (is_file("/mnt/kartik/online/private/stats/" . $art)) {
- $uct4[] = $art;
- }
- }
-
- echo(count($uct4));
-
- ?> player·s</h4>
-
- <ul class="list-group">
- <?php
-
- $uca = scandir("/mnt/kartik/online/private/stats");
- $uct4 = [];
-
- foreach ($uca as $art) {
- if (is_file("/mnt/kartik/online/private/stats/" . $art)): ?>
-
- <li class="list-group-item"><?= $art ?> <?php
-
- $osession = 0;
- $gsession = 0;
- $tsession = 0;
-
- $webs = scandir("/mnt/kartik/online/private/tokens");
- $ings = scandir("/mnt/kartik/online/private/gametokens");
-
- foreach ($webs as $webt) {
- if (!is_dir("/mnt/kartik/online/private/tokens/" . $webt)) {
- $d = json_decode(file_get_contents("/mnt/kartik/online/private/tokens/" . $webt), true);
- if ($d["id"] === $art) {
- $osession++;
- }
- }
- }
-
- foreach ($ings as $webt) {
- if (!is_dir("/mnt/kartik/online/private/gametokens/" . $webt)) {
- $d = json_decode(file_get_contents("/mnt/kartik/online/private/gametokens/" . $webt), true);
- if ($d["id"] === $art) {
- $gsession++;
- }
- }
- }
-
- $tsession = $osession + $gsession;
- if ($tsession > 1) {
- $tsessions = "s";
- } else {
- $tsessions = "";
- }
-
- if ($osession > 0) {
- echo("<span class='badge text-warning border-warning' style='border:1px solid;vertical-align: middle;'>{$tsession} session{$tsessions} ({$gsession}:{$osession})</span>");
- } else if ($gsession > 0) {
- echo("<span class='badge text-success border-success' style='border:1px solid;vertical-align: middle;'>{$tsession} session{$tsessions} ({$gsession}:0)</span>");
- } else {
- echo("<span class='badge text-light border-light' style='border:1px solid;vertical-align: middle;'>Offline (0:0)</span>");
- }
-
- ?> <span style="float:right;"><a href="/admin/api/terminateWebSessions.php?_=<?= $art ?>">Terminate Web</a> · <a href="/admin/api/terminateGameSessions.php?_=<?= $art ?>">Terminate Game</a> · <a href="/admin/api/terminateAllSessions.php?_=<?= $art ?>">Terminate All</a></span></li>
-
- <?php endif;
- }
-
- ?>
- </ul>
- </div>
-</div>
-
-<?php require_once $_SERVER['DOCUMENT_ROOT'] . "/admin/private/footer.php"; ?> \ No newline at end of file
diff --git a/admin/panes/neutroning.php b/admin/panes/neutroning.php
deleted file mode 100644
index 07a64a6..0000000
--- a/admin/panes/neutroning.php
+++ /dev/null
@@ -1,65 +0,0 @@
-<?php require_once $_SERVER['DOCUMENT_ROOT'] . "/admin/private/header.php";/** @var array $_DATA */ ?>
-
-<style>
- ::-webkit-scrollbar {
- width: 5px;
- }
-
- ::-webkit-scrollbar-track {
- border-radius: 9999px;
- background: transparent;
- }
-
- ::-webkit-scrollbar-thumb {
- border-radius: 9999px;
- background-color: rgba(136, 136, 136, 0.5);
- transition: background 200ms;
- }
-
- ::-webkit-scrollbar-thumb:hover {
- background-color: rgba(85, 85, 85, 0.75);
- }
-
- ::-webkit-scrollbar-thumb:active {
- background-color: #222;
- }
-
- .list-group-item {
- background: #34373c;
- }
-</style>
-
-<div class="container" style="color:white;padding-top:15vh;padding-bottom:15vh;">
- <h2 style="text-align:center;"><?= l("Neutron Cloud Map", "Plan de Neutron Cloud") ?></h2>
-
- <h4 style="text-align:center;"><?= l("Full map of all the websites that exists in Neutron Cloud", "Plan complet de tous les sites Web qui existent dans Neutron Cloud") ?></h4>
-
- <details open>
- <summary>cloud.minteck.ro.lt</summary>
- <?php $index=1;foreach (scandir("/mnt/minteckrolt-cloud") as $site): if (substr($site, 0, 1) === "~"): ?>
- <details open style="margin-left:23px;">
- <summary><a target="_blank" href="https://cloud.minteck.ro.lt/<?= $site ?>/?source=minteck-admin"><?= $site ?></a></summary>
- <details open style="margin-left:23px;">
- <summary>cms-special</summary>
- <ul style="margin:0;">
- <li><a target="_blank" href="https://cloud.minteck.ro.lt/<?= $site ?>/cms-special/admin">admin</a></li>
- <li><a target="_blank" href="https://cloud.minteck.ro.lt/<?= $site ?>/cms-special/calendar">calendar</a></li>
- <li><a target="_blank" href="https://cloud.minteck.ro.lt/<?= $site ?>/cms-special/gallery">gallery</a></li>
- <li><a target="_blank" href="https://cloud.minteck.ro.lt/<?= $site ?>/cms-special/version">version</a></li>
- </ul>
- </details>
- <ul style="margin:0;">
- <?php foreach (scandir("/mnt/minteckrolt-cloud/" . $site . "/data/webcontent/pages") as $page): if (trim($page) !== "." && trim($page) !== ".."): ?>
- <?php if ($page === "index"): ?>
- <li><a target="_blank" href="https://cloud.minteck.ro.lt/<?= $site ?>"><?= $page ?>.php</a></li>
- <?php else: ?>
- <li><a target="_blank" href="https://cloud.minteck.ro.lt/<?= $site ?>/<?= $page ?>"><?= $page ?></a></li>
- <?php endif; ?>
- <?php endif;endforeach; ?>
- </ul>
- </details>
- <?php $index++;endif;endforeach; ?>
- </details>
-</div>
-
-<?php require_once $_SERVER['DOCUMENT_ROOT'] . "/admin/private/footer.php"; ?> \ No newline at end of file
diff --git a/admin/panes/quotas.php b/admin/panes/quotas.php
deleted file mode 100644
index 8102a0d..0000000
--- a/admin/panes/quotas.php
+++ /dev/null
@@ -1,56 +0,0 @@
-<?php require_once $_SERVER['DOCUMENT_ROOT'] . "/admin/private/header.php";/** @var array $_DATA */ ?>
-
-<style>
- ::-webkit-scrollbar {
- width: 5px;
- }
-
- ::-webkit-scrollbar-track {
- border-radius: 9999px;
- background: transparent;
- }
-
- ::-webkit-scrollbar-thumb {
- border-radius: 9999px;
- background-color: rgba(136, 136, 136, 0.5);
- transition: background 200ms;
- }
-
- ::-webkit-scrollbar-thumb:hover {
- background-color: rgba(85, 85, 85, 0.75);
- }
-
- ::-webkit-scrollbar-thumb:active {
- background-color: #222;
- }
-
- .list-group-item {
- background: #34373c;
- }
-</style>
-
-<div class="container" style="color:white;padding-top:15vh;padding-bottom:15vh;">
- <h2 style="text-align:center;"><?= l("Neutron Cloud Quotas", "Quotas de Neutron Cloud") ?></h2>
-
- <h4 style="text-align:center;"><?= l("Websites that reached their limit can be locked down", "Les sites Web qui ont atteint leur limite peuvent être bloqués") ?></h4>
-
- <ul class="list-group" style="margin-top:20px;">
- <?php $index=1;foreach (scandir("/mnt/minteckrolt-cloud") as $site): if (substr($site, 0, 1) === "~"): ?>
- <li class="list-group-item"><i><?= strip_tags(file_get_contents("/mnt/minteckrolt-cloud/" . $site . "/data/webcontent/sitename")) ?></i> (<a href="https://cloud.minteck.ro.lt/<?= $site ?>" target="_blank"><code><?= $site ?></code></a>, <?= l("X", "Tier X") ?><?= trim(file_get_contents("/mnt/minteckrolt-cloud/" . $site . "/Tier")) ?><?= l(" Tier", "") ?>)<br><span class="text-muted" id="quota-<?= $index ?>"><?= l("Calculating", "Calcul") ?>...</span><span style="float:right;"><a href="/admin/NeutronManage/?_=<?= $site ?>" target="_blank"><?= l("Admin Panel", "Espace d'administration") ?></a></span><!--suppress JSUnresolvedVariable, JSUnresolvedFunction, JSUnfilteredForInLoop -->
- <script>
- setTimeout(() => {
- $.ajax("/admin/api/getQuota.php?_=<?= $site ?>", {
- async: false,
- success: (data) => {
- document.getElementById("quota-<?= $index ?>").innerHTML = data;
- },
- error: () => {
- document.getElementById("quota-<?= $index ?>").innerText = "<?= l("An error occurred while loading this content, perhaps you don't have permission to access it", "Une erreur s'est produite lors du chargement de ce contenu, peut-être que vous n'avez pas la permission d'y accéder") ?>";
- }
- });
- }, 1000 * <?= $index ?>)
- </script></li>
- <?php $index++;endif;endforeach; ?>
-</div>
-
-<?php require_once $_SERVER['DOCUMENT_ROOT'] . "/admin/private/footer.php"; ?> \ No newline at end of file
diff --git a/admin/panes/shortens.php b/admin/panes/shortens.php
deleted file mode 100644
index 165c198..0000000
--- a/admin/panes/shortens.php
+++ /dev/null
@@ -1,93 +0,0 @@
-<?php require_once $_SERVER['DOCUMENT_ROOT'] . "/admin/private/header.php";/** @var array $_DATA */ ?>
-
-<style>
- ::-webkit-scrollbar {
- width: 5px;
- }
-
- ::-webkit-scrollbar-track {
- border-radius: 9999px;
- background: transparent;
- }
-
- ::-webkit-scrollbar-thumb {
- border-radius: 9999px;
- background-color: rgba(136, 136, 136, 0.5);
- transition: background 200ms;
- }
-
- ::-webkit-scrollbar-thumb:hover {
- background-color: rgba(85, 85, 85, 0.75);
- }
-
- ::-webkit-scrollbar-thumb:active {
- background-color: #222;
- }
-
- .list-group-item {
- background: #34373c;
- }
-</style>
-
-<div class="container" style="color:white;padding-top:15vh;padding-bottom:15vh;">
- <h2 style="text-align:center;">Shortened URLs</h2>
-
- <ul class="list-group" style="margin-top:20px;">
- <?php
-
- $links = explode("\n", file_get_contents("/mnt/minteckrolt-urls/links.txt"));
-
- foreach ($links as $link) {
- if (trim($link) !== "") {
- $url = explode(" ", $link)[0];
- $redirect = explode(" ", $link)[1];
-
- echo('<li class="list-group-item"><code>https://mt.ro.lt/<a href="https://mt.ro.lt/' . $url . '" target="_blank">' . $url . '</a></code> <span style="float:right;"><a href="#" onclick="deleteURL(\'' . $url . '\')">Delete</a></span></li>');
- }
- }
-
- ?><li class="list-group-item">
- <form id="creator" action="/admin/api/createURL.php">
- <code>https://mt.ro.lt/<input type="text" name="shortenedName" placeholder="superurl"></code> → <input type="text" name="redirectsTo" placeholder="https://kde.org"> <span style="float:right;"><a href="#" onclick="document.getElementById('creator').submit();">Create</a></span>
- </form>
- </li>
- </ul>
-</div>
-
-<script>
- let currurl;
-
- function deleteURL(url) {
- currurl = url;
-
- $("#myModal").modal()
- }
-
- function confirmDelete(url) {
- location.href = "/admin/api/deleteURL.php?_=" + url;
- }
-</script>
-
- <div class="modal" id="myModal">
- <div class="modal-dialog">
- <div class="modal-content">
-
- <div class="modal-header">
- <h4 class="modal-title">Delete this shortened URL?</h4>
- <button type="button" class="close" data-dismiss="modal">&times;</button>
- </div>
-
- <div class="modal-body">
- This cannot be undone and may have unwanted side effects. After this URL is deleted, it will redirect to Minteck's Space's homepage.
- </div>
-
- <div class="modal-footer">
- <button type="button" class="btn btn-success" onclick="confirmDelete(currurl);">Confirm</button>
- <button type="button" class="btn btn-danger" data-dismiss="modal">Cancel</button>
- </div>
-
- </div>
- </div>
- </div>
-
-<?php require_once $_SERVER['DOCUMENT_ROOT'] . "/admin/private/footer.php"; ?> \ No newline at end of file
diff --git a/admin/panes/telemetry.php b/admin/panes/telemetry.php
deleted file mode 100644
index 74064c9..0000000
--- a/admin/panes/telemetry.php
+++ /dev/null
@@ -1,946 +0,0 @@
-<?php require_once $_SERVER['DOCUMENT_ROOT'] . "/admin/private/header.php";/** @var array $_DATA */
-
-function urlize($scheme) {
- $p = explode(":", $scheme);
-
- if ($p[0] === "space") {
- return "https://minteck.ro.lt" . $p[1];
- }
-
- if ($p[0] === "unchained") {
- return "https://unchainedtech.minteck.ro.lt" . $p[1];
- }
-
- if ($p[0] === "kartik") {
- return "https://kartik.hopto.org" . $p[1];
- }
-
- return "about:blank";
-}
-
-?>
-
-<style>
- ::-webkit-scrollbar {
- width: 5px;
- }
-
- ::-webkit-scrollbar-track {
- border-radius: 9999px;
- background: transparent;
- }
-
- ::-webkit-scrollbar-thumb {
- border-radius: 9999px;
- background-color: rgba(136, 136, 136, 0.5);
- transition: background 200ms;
- }
-
- ::-webkit-scrollbar-thumb:hover {
- background-color: rgba(85, 85, 85, 0.75);
- }
-
- ::-webkit-scrollbar-thumb:active {
- background-color: #222;
- }
-
- .list-group-item {
- background: #34373c;
- }
-</style>
-
-<div class="container" style="color:white;padding-top:15vh;padding-bottom:15vh;">
- <h2 style="text-align:center;"><?= l("Telemetry Information", "Informations de télémétrie") ?></h2>
-
- <?php $db = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/telemetry.json")); ?>
-
- <ul class="list-group" style="margin-top:20px;">
- <li class="list-group-item"><?= l("Lifetime Visitors", "Visiteurs depuis toujours") ?> <span style="float:right;"><?php
-
- $uniques = [];
-
- foreach ($db as $months) {
- foreach ($months as $days) {
- foreach ($days as $pages) {
- foreach ($pages as $page => $visitors) {
- foreach ($visitors as $visitor) {
- if (!in_array($visitor, $uniques)) {
- array_push($uniques, $visitor);
- }
- }
- }
- }
- }
- }
-
- echo (count($uniques));
-
- ?></span></li>
- <li class="list-group-item"><?= l("Most Viewed Page", "Page la plus vue") ?> <span style="float:right;"><?php
-
- $record = 0;
- $recname = "-";
-
- foreach ($db as $months) {
- foreach ($months as $days) {
- foreach ($days as $pages) {
- foreach ($pages as $page => $visitors) {
- $thispage = 0;
-
- foreach ($visitors as $visitor) {
- $thispage++;
- }
-
- if ($thispage > $record) {
- $recname = "<a href='" . urlize($page) . "' target='_blank'><code>" . $page . "</code></a>";
- $record = $thispage;
- }
- }
- }
- }
- }
-
- echo ($recname);
-
- ?></span></li>
- <li class="list-group-item"><?= l("Least Viewed Page", "Page la moins vue") ?> <span style="float:right;"><?php
-
- $record = 2;
- $recname = "-";
-
- foreach ($db as $months) {
- foreach ($months as $days) {
- foreach ($days as $pages) {
- foreach ($pages as $page => $visitors) {
- $thispage = 0;
-
- foreach ($visitors as $visitor) {
- $thispage++;
- }
-
- if ($thispage < $record) {
- $recname = "<a href='" . urlize($page) . "' target='_blank'><code>" . $page . "</code></a>";
- $record = $thispage;
- }
- }
- }
- }
- }
-
- echo ($recname);
-
- ?></span></li>
- </ul>
-
- <ul class="list-group" style="margin-top:20px;">
- <li class="list-group-item text-muted"><?= l("Tomorrow", "Demain") ?> <span style="float:right;"><?php
-
- $uniques = [];
- $totalDays = 0;
-
- foreach ($db as $months) {
- foreach ($months as $days) {
- foreach ($days as $pages) {
- $totalDays++;
- $dayUniques = [];
-
- foreach ($pages as $page => $visitors) {
- foreach ($visitors as $visitor) {
- if (!in_array($visitor, $dayUniques)) {
- array_push($dayUniques, $visitor);
- }
- }
- }
-
- $uniques = array_merge($uniques, $dayUniques);
- }
- }
- }
-
- $expect = round(count($uniques) / $totalDays);
- echo ($expect);
-
- $uniques = [];
-
- foreach ($db as $year => $months) {
- if ($year === date('y')) {
- foreach ($months as $month => $days) {
- if ($month === date('m')) {
- foreach ($days as $day => $pages) {
- if ($day === date('d')) {
- foreach ($pages as $page => $visitors) {
- foreach ($visitors as $visitor) {
- if (!in_array($visitor, $uniques)) {
- array_push($uniques, $visitor);
- }
- }
- }
- }
- }
- }
- }
- }
- }
-
- if (substr((string)($expect - count($uniques)), 0, 1) !== "-") {
- if ((int)($expect - count($uniques)) === 0) {
- echo("<span style='color:orange;opacity:.5;'> (±" . ($expect - count($uniques)) . ")</span>");
- } else {
- echo("<span style='color:limegreen;opacity:.5;'> (+" . ($expect - count($uniques)) . ")</span>");
- }
- } else {
- echo("<span style='color:red;opacity:.5;'> (" . ($expect - count($uniques)) . ")</span>");
- }
-
- ?></span></li>
- <li class="list-group-item"><?= l("Today", "Aujourd'hui") ?> <span style="float:right;"><?php
-
- $uniques = [];
-
- foreach ($db as $year => $months) {
- if ($year === date('y')) {
- foreach ($months as $month => $days) {
- if ($month === date('m')) {
- foreach ($days as $day => $pages) {
- if ($day === date('d')) {
- foreach ($pages as $page => $visitors) {
- foreach ($visitors as $visitor) {
- if (!in_array($visitor, $uniques)) {
- array_push($uniques, $visitor);
- }
- }
- }
- }
- }
- }
- }
- }
- }
-
- $today = count($uniques);
- echo ($today);
-
- $uniques = [];
-
- foreach ($db as $year => $months) {
- if ($year === date('y')) {
- foreach ($months as $month => $days) {
- if ($month === date('m')) {
- foreach ($days as $day => $pages) {
- if ($day === date('d', strtotime("-1 day"))) {
- foreach ($pages as $page => $visitors) {
- foreach ($visitors as $visitor) {
- if (!in_array($visitor, $uniques)) {
- array_push($uniques, $visitor);
- }
- }
- }
- }
- }
- }
- }
- }
- }
-
- if (substr((string)($today - count($uniques)), 0, 1) !== "-") {
- if ((int)($today - count($uniques)) === 0) {
- echo("<span style='color:orange;'> (±" . ($today - count($uniques)) . ")</span>");
- } else {
- echo("<span style='color:limegreen;'> (+" . ($today - count($uniques)) . ")</span>");
- }
- } else {
- echo("<span style='color:red;'> (" . ($today - count($uniques)) . ")</span>");
- }
-
- ?></span></li>
- <li class="list-group-item"><?= l("Yesterday", "Hier") ?> <span style="float:right;"><?php
-
- $uniques = [];
-
- foreach ($db as $year => $months) {
- if ($year === date('y')) {
- foreach ($months as $month => $days) {
- if ($month === date('m')) {
- foreach ($days as $day => $pages) {
- if ($day === date('d', strtotime("-1 day"))) {
- foreach ($pages as $page => $visitors) {
- foreach ($visitors as $visitor) {
- if (!in_array($visitor, $uniques)) {
- array_push($uniques, $visitor);
- }
- }
- }
- }
- }
- }
- }
- }
- }
-
- $yesterday = count($uniques);
- echo ($yesterday);
-
- $uniques = [];
-
- foreach ($db as $year => $months) {
- if ($year === date('y')) {
- foreach ($months as $month => $days) {
- if ($month === date('m')) {
- foreach ($days as $day => $pages) {
- if ($day === date('d', strtotime("-2 day"))) {
- foreach ($pages as $page => $visitors) {
- foreach ($visitors as $visitor) {
- if (!in_array($visitor, $uniques)) {
- array_push($uniques, $visitor);
- }
- }
- }
- }
- }
- }
- }
- }
- }
-
- if (substr((string)($yesterday - count($uniques)), 0, 1) !== "-") {
- if ((int)($yesterday - count($uniques)) === 0) {
- echo("<span style='color:orange;'> (±" . ($yesterday - count($uniques)) . ")</span>");
- } else {
- echo("<span style='color:limegreen;'> (+" . ($yesterday - count($uniques)) . ")</span>");
- }
- } else {
- echo("<span style='color:red;'> (" . ($yesterday - count($uniques)) . ")</span>");
- }
-
- ?></span></li>
- </ul>
-
- <ul class="list-group" style="margin-top:20px;">
- <li class="list-group-item text-muted"><?= date("F Y", strtotime("+1 month")) ?> <span style="float:right;"><?php
-
- $uniques = [];
- $totalDays = 0;
-
- foreach ($db as $months) {
- foreach ($months as $days) {
- $totalDays++;
- $dayUniques = [];
-
- foreach ($days as $pages) {
- foreach ($pages as $page => $visitors) {
- foreach ($visitors as $visitor) {
- if (!in_array($visitor, $dayUniques)) {
- array_push($dayUniques, $visitor);
- }
- }
- }
- }
-
- $uniques = array_merge($uniques, $dayUniques);
- }
- }
-
- $expect = round(count($uniques) / $totalDays);
- echo ($expect);
-
- $uniques = [];
-
- foreach ($db as $year => $months) {
- if ($year === date('y')) {
- foreach ($months as $month => $days) {
- if ($month === date('m')) {
- foreach ($days as $day => $pages) {
- foreach ($pages as $page => $visitors) {
- foreach ($visitors as $visitor) {
- if (!in_array($visitor, $uniques)) {
- array_push($uniques, $visitor);
- }
- }
- }
- }
- }
- }
- }
- }
-
- if (substr((string)($expect - count($uniques)), 0, 1) !== "-") {
- if ((int)($expect - count($uniques)) === 0) {
- echo("<span style='color:orange;opacity:.5;'> (±" . ($expect - count($uniques)) . ")</span>");
- } else {
- echo("<span style='color:limegreen;opacity:.5;'> (+" . ($expect - count($uniques)) . ")</span>");
- }
- } else {
- echo("<span style='color:red;opacity:.5;'> (" . ($expect - count($uniques)) . ")</span>");
- }
-
- ?></span></li>
- <li class="list-group-item"><?= date("F Y") ?> <span style="float:right;"><?php
-
- $uniques = [];
-
- foreach ($db as $year => $months) {
- if ($year === date('y')) {
- foreach ($months as $month => $days) {
- if ($month === date('m')) {
- foreach ($days as $day => $pages) {
- foreach ($pages as $page => $visitors) {
- foreach ($visitors as $visitor) {
- if (!in_array($visitor, $uniques)) {
- array_push($uniques, $visitor);
- }
- }
- }
- }
- }
- }
- }
- }
-
- $today = count($uniques);
- echo ($today);
-
- $uniques = [];
-
- foreach ($db as $year => $months) {
- if ($year === date('y')) {
- foreach ($months as $month => $days) {
- if ($month === date('m', strtotime("-1 month"))) {
- foreach ($days as $day => $pages) {
- foreach ($pages as $page => $visitors) {
- foreach ($visitors as $visitor) {
- if (!in_array($visitor, $uniques)) {
- array_push($uniques, $visitor);
- }
- }
- }
- }
- }
- }
- }
- }
-
- if (substr((string)($today - count($uniques)), 0, 1) !== "-") {
- if ((int)($today - count($uniques)) === 0) {
- echo("<span style='color:orange;'> (±" . ($today - count($uniques)) . ")</span>");
- } else {
- echo("<span style='color:limegreen;'> (+" . ($today - count($uniques)) . ")</span>");
- }
- } else {
- echo("<span style='color:red;'> (" . ($today - count($uniques)) . ")</span>");
- }
-
- ?></span></li>
- <li class="list-group-item"><?= date("F Y", strtotime("-1 month")) ?> <span style="float:right;"><?php
-
- $uniques = [];
-
- foreach ($db as $year => $months) {
- if ($year === date('y')) {
- foreach ($months as $month => $days) {
- if ($month === date('m', strtotime("-1 month"))) {
- foreach ($days as $day => $pages) {
- foreach ($pages as $page => $visitors) {
- foreach ($visitors as $visitor) {
- if (!in_array($visitor, $uniques)) {
- array_push($uniques, $visitor);
- }
- }
- }
- }
- }
- }
- }
- }
-
- $today = count($uniques);
- echo ($today);
-
- $uniques = [];
-
- foreach ($db as $year => $months) {
- if ($year === date('y')) {
- foreach ($months as $month => $days) {
- if ($month === date('m', strtotime("-2 month"))) {
- foreach ($days as $day => $pages) {
- foreach ($pages as $page => $visitors) {
- foreach ($visitors as $visitor) {
- if (!in_array($visitor, $uniques)) {
- array_push($uniques, $visitor);
- }
- }
- }
- }
- }
- }
- }
- }
-
- if (substr((string)($today - count($uniques)), 0, 1) !== "-") {
- if ((int)($today - count($uniques)) === 0) {
- echo("<span style='color:orange;'> (±" . ($today - count($uniques)) . ")</span>");
- } else {
- echo("<span style='color:limegreen;'> (+" . ($today - count($uniques)) . ")</span>");
- }
- } else {
- echo("<span style='color:red;'> (" . ($today - count($uniques)) . ")</span>");
- }
-
- ?></span></li>
- <li class="list-group-item"><?= date("F Y", strtotime("-2 month")) ?> <span style="float:right;"><?php
-
- $uniques = [];
-
- foreach ($db as $year => $months) {
- if ($year === date('y')) {
- foreach ($months as $month => $days) {
- if ($month === date('m', strtotime("-2 month"))) {
- foreach ($days as $day => $pages) {
- foreach ($pages as $page => $visitors) {
- foreach ($visitors as $visitor) {
- if (!in_array($visitor, $uniques)) {
- array_push($uniques, $visitor);
- }
- }
- }
- }
- }
- }
- }
- }
-
- $today = count($uniques);
- echo ($today);
-
- $uniques = [];
-
- foreach ($db as $year => $months) {
- if ($year === date('y')) {
- foreach ($months as $month => $days) {
- if ($month === date('m', strtotime("-3 month"))) {
- foreach ($days as $day => $pages) {
- foreach ($pages as $page => $visitors) {
- foreach ($visitors as $visitor) {
- if (!in_array($visitor, $uniques)) {
- array_push($uniques, $visitor);
- }
- }
- }
- }
- }
- }
- }
- }
-
- if (substr((string)($today - count($uniques)), 0, 1) !== "-") {
- if ((int)($today - count($uniques)) === 0) {
- echo("<span style='color:orange;'> (±" . ($today - count($uniques)) . ")</span>");
- } else {
- echo("<span style='color:limegreen;'> (+" . ($today - count($uniques)) . ")</span>");
- }
- } else {
- echo("<span style='color:red;'> (" . ($today - count($uniques)) . ")</span>");
- }
-
- ?></span></li><li class="list-group-item"><?= date("F Y", strtotime("-3 month")) ?> <span style="float:right;"><?php
-
- $uniques = [];
-
- foreach ($db as $year => $months) {
- if ($year === date('y')) {
- foreach ($months as $month => $days) {
- if ($month === date('m', strtotime("-3 month"))) {
- foreach ($days as $day => $pages) {
- foreach ($pages as $page => $visitors) {
- foreach ($visitors as $visitor) {
- if (!in_array($visitor, $uniques)) {
- array_push($uniques, $visitor);
- }
- }
- }
- }
- }
- }
- }
- }
-
- $today = count($uniques);
- echo ($today);
-
- $uniques = [];
-
- foreach ($db as $year => $months) {
- if ($year === date('y')) {
- foreach ($months as $month => $days) {
- if ($month === date('m', strtotime("-4 month"))) {
- foreach ($days as $day => $pages) {
- foreach ($pages as $page => $visitors) {
- foreach ($visitors as $visitor) {
- if (!in_array($visitor, $uniques)) {
- array_push($uniques, $visitor);
- }
- }
- }
- }
- }
- }
- }
- }
-
- if (substr((string)($today - count($uniques)), 0, 1) !== "-") {
- if ((int)($today - count($uniques)) === 0) {
- echo("<span style='color:orange;'> (±" . ($today - count($uniques)) . ")</span>");
- } else {
- echo("<span style='color:limegreen;'> (+" . ($today - count($uniques)) . ")</span>");
- }
- } else {
- echo("<span style='color:red;'> (" . ($today - count($uniques)) . ")</span>");
- }
-
- ?></span></li><li class="list-group-item"><?= date("F Y", strtotime("-4 month")) ?> <span style="float:right;"><?php
-
- $uniques = [];
-
- foreach ($db as $year => $months) {
- if ($year === date('y')) {
- foreach ($months as $month => $days) {
- if ($month === date('m', strtotime("-4 month"))) {
- foreach ($days as $day => $pages) {
- foreach ($pages as $page => $visitors) {
- foreach ($visitors as $visitor) {
- if (!in_array($visitor, $uniques)) {
- array_push($uniques, $visitor);
- }
- }
- }
- }
- }
- }
- }
- }
-
- $today = count($uniques);
- echo ($today);
-
- $uniques = [];
-
- foreach ($db as $year => $months) {
- if ($year === date('y')) {
- foreach ($months as $month => $days) {
- if ($month === date('m', strtotime("-5 month"))) {
- foreach ($days as $day => $pages) {
- foreach ($pages as $page => $visitors) {
- foreach ($visitors as $visitor) {
- if (!in_array($visitor, $uniques)) {
- array_push($uniques, $visitor);
- }
- }
- }
- }
- }
- }
- }
- }
-
- if (substr((string)($today - count($uniques)), 0, 1) !== "-") {
- if ((int)($today - count($uniques)) === 0) {
- echo("<span style='color:orange;'> (±" . ($today - count($uniques)) . ")</span>");
- } else {
- echo("<span style='color:limegreen;'> (+" . ($today - count($uniques)) . ")</span>");
- }
- } else {
- echo("<span style='color:red;'> (" . ($today - count($uniques)) . ")</span>");
- }
-
- ?></span></li><li class="list-group-item"><?= date("F Y", strtotime("-5 month")) ?> <span style="float:right;"><?php
-
- $uniques = [];
-
- foreach ($db as $year => $months) {
- if ($year === date('y')) {
- foreach ($months as $month => $days) {
- if ($month === date('m', strtotime("-5 month"))) {
- foreach ($days as $day => $pages) {
- foreach ($pages as $page => $visitors) {
- foreach ($visitors as $visitor) {
- if (!in_array($visitor, $uniques)) {
- array_push($uniques, $visitor);
- }
- }
- }
- }
- }
- }
- }
- }
-
- $today = count($uniques);
- echo ($today);
-
- $uniques = [];
-
- foreach ($db as $year => $months) {
- if ($year === date('y')) {
- foreach ($months as $month => $days) {
- if ($month === date('m', strtotime("-6 month"))) {
- foreach ($days as $day => $pages) {
- foreach ($pages as $page => $visitors) {
- foreach ($visitors as $visitor) {
- if (!in_array($visitor, $uniques)) {
- array_push($uniques, $visitor);
- }
- }
- }
- }
- }
- }
- }
- }
-
- if (substr((string)($today - count($uniques)), 0, 1) !== "-") {
- if ((int)($today - count($uniques)) === 0) {
- echo("<span style='color:orange;'> (±" . ($today - count($uniques)) . ")</span>");
- } else {
- echo("<span style='color:limegreen;'> (+" . ($today - count($uniques)) . ")</span>");
- }
- } else {
- echo("<span style='color:red;'> (" . ($today - count($uniques)) . ")</span>");
- }
-
- ?></span></li>
- </ul>
-
- <ul class="list-group" style="margin-top:20px;">
- <li class="list-group-item"><?= date("Y") ?> <span style="float:right;"><?php
-
- $uniques = [];
-
- foreach ($db as $year => $months) {
- if ($year === date('y')) {
- foreach ($months as $month => $days) {
- foreach ($days as $day => $pages) {
- foreach ($pages as $page => $visitors) {
- foreach ($visitors as $visitor) {
- if (!in_array($visitor, $uniques)) {
- array_push($uniques, $visitor);
- }
- }
- }
- }
- }
- }
- }
-
- $today = count($uniques);
- echo ($today);
-
- $uniques = [];
-
- foreach ($db as $year => $months) {
- if ($year === date('y', strtotime("-1 year"))) {
- foreach ($months as $month => $days) {
- foreach ($days as $day => $pages) {
- foreach ($pages as $page => $visitors) {
- foreach ($visitors as $visitor) {
- if (!in_array($visitor, $uniques)) {
- array_push($uniques, $visitor);
- }
- }
- }
- }
- }
- }
- }
-
- if (substr((string)($today - count($uniques)), 0, 1) !== "-") {
- if ((int)($today - count($uniques)) === 0) {
- echo("<span style='color:orange;'> (±" . ($today - count($uniques)) . ")</span>");
- } else {
- echo("<span style='color:limegreen;'> (+" . ($today - count($uniques)) . ")</span>");
- }
- } else {
- echo("<span style='color:red;'> (" . ($today - count($uniques)) . ")</span>");
- }
-
- ?></span></li>
- <li class="list-group-item"><?= date("Y", strtotime("-1 year")) ?> <span style="float:right;"><?php
-
- $uniques = [];
-
- foreach ($db as $year => $months) {
- if ($year === date('y', strtotime("-1 year"))) {
- foreach ($months as $month => $days) {
- foreach ($days as $day => $pages) {
- foreach ($pages as $page => $visitors) {
- foreach ($visitors as $visitor) {
- if (!in_array($visitor, $uniques)) {
- array_push($uniques, $visitor);
- }
- }
- }
- }
- }
- }
- }
-
- $today = count($uniques);
- echo ($today);
-
- $uniques = [];
-
- foreach ($db as $year => $months) {
- if ($year === date('y', strtotime("-2 year"))) {
- foreach ($months as $month => $days) {
- foreach ($days as $day => $pages) {
- foreach ($pages as $page => $visitors) {
- foreach ($visitors as $visitor) {
- if (!in_array($visitor, $uniques)) {
- array_push($uniques, $visitor);
- }
- }
- }
- }
- }
- }
- }
-
- if (substr((string)($today - count($uniques)), 0, 1) !== "-") {
- if ((int)($today - count($uniques)) === 0) {
- echo("<span style='color:orange;'> (±" . ($today - count($uniques)) . ")</span>");
- } else {
- echo("<span style='color:limegreen;'> (+" . ($today - count($uniques)) . ")</span>");
- }
- } else {
- echo("<span style='color:red;'> (" . ($today - count($uniques)) . ")</span>");
- }
-
- ?></span></li>
- <li class="list-group-item"><?= date("Y", strtotime("-2 year")) ?> <span style="float:right;"><?php
-
- $uniques = [];
-
- foreach ($db as $year => $months) {
- if ($year === date('y', strtotime("-2 year"))) {
- foreach ($months as $month => $days) {
- foreach ($days as $day => $pages) {
- foreach ($pages as $page => $visitors) {
- foreach ($visitors as $visitor) {
- if (!in_array($visitor, $uniques)) {
- array_push($uniques, $visitor);
- }
- }
- }
- }
- }
- }
- }
-
- $today = count($uniques);
- echo ($today);
-
- $uniques = [];
-
- foreach ($db as $year => $months) {
- if ($year === date('y', strtotime("-3 year"))) {
- foreach ($months as $month => $days) {
- foreach ($days as $day => $pages) {
- foreach ($pages as $page => $visitors) {
- foreach ($visitors as $visitor) {
- if (!in_array($visitor, $uniques)) {
- array_push($uniques, $visitor);
- }
- }
- }
- }
- }
- }
- }
-
- if (substr((string)($today - count($uniques)), 0, 1) !== "-") {
- if ((int)($today - count($uniques)) === 0) {
- echo("<span style='color:orange;'> (±" . ($today - count($uniques)) . ")</span>");
- } else {
- echo("<span style='color:limegreen;'> (+" . ($today - count($uniques)) . ")</span>");
- }
- } else {
- echo("<span style='color:red;'> (" . ($today - count($uniques)) . ")</span>");
- }
-
- ?></span></li>
- </ul>
-
- <br>
-
- <ul class="list-group">
- <li class="list-group-item">
- <details>
- <summary><?= l("Kartik downloads", "Téléchargements de Kartik") ?></summary>
- <ul class="list-group">
- <li class="list-group-item"><b><?= l("All update channels", "Tous les canaux de mise à jour") ?> <span style="float:right;"><?= (int)trim(file_get_contents("/mnt/kartik-cdn/stats/stable")) + (int)trim(file_get_contents("/mnt/kartik-cdn/stats/eap")) + (int)trim(file_get_contents("/mnt/kartik-cdn/stats/beta")) + (int)trim(file_get_contents("/mnt/kartik-cdn/stats/nightly")) ?> downloads</span></b></li>
- <li class="list-group-item"><img alt="" src="https://github.com/Minteck-Projects/Kartik-Core/raw/testing/logo/logo.png" width="24px"> Kartik Stable <span style="float:right;"><?= trim(file_get_contents("/mnt/kartik-cdn/stats/stable")) ?> downloads</span></li>
- <li class="list-group-item"><img alt="" src="https://github.com/Minteck-Projects/Kartik-Core/raw/testing/logo/logo-eap.png" width="24px"> Kartik EAP <span style="float:right;"><?= trim(file_get_contents("/mnt/kartik-cdn/stats/eap")) ?> <?= l("downloads", "téléchargements") ?></span></li>
- <li class="list-group-item"><img alt="" src="https://github.com/Minteck-Projects/Kartik-Core/raw/testing/logo/logo-beta.png" width="24px"> Kartik Beta <span style="float:right;"><?= trim(file_get_contents("/mnt/kartik-cdn/stats/beta")) ?> <?= l("downloads", "téléchargements") ?></span></li>
- <li class="list-group-item"><img alt="" src="https://github.com/Minteck-Projects/Kartik-Core/raw/testing/logo/logo-nightly.png" width="24px"> Kartik Nightly <span style="float:right;"><?= trim(file_get_contents("/mnt/kartik-cdn/stats/nightly")) ?> <?= l("downloads", "téléchargements") ?></span></li>
- </ul>
- </details>
- </li>
- <li class="list-group-item">
- <details>
- <summary><?= l("Page-specific statistics", "Statistiques par page") ?></summary>
- <p>
- <?php
-
- $assocs = [];
- $spages = [];
-
- foreach ($db as $year => $months) {
- foreach ($months as $month => $days) {
- foreach ($days as $day => $pages) {
- foreach ($pages as $page => $visitors) {
- if (substr($page, 0, 7) !== "/admin/") {
- if (!isset($spages[$page])) {
- $spages[$page] = 0;
- }
- foreach ($visitors as $visitor) {
- if (!in_array($page . "|" . $visitor, $assocs)) {
- $spages[$page]++;
- array_push($assocs, $page . "|" . $visitor);
- }
- }
- }
- }
- }
- }
- }
-
- $max = 0;
- foreach ($spages as $visitors) {
- if ($visitors > $max) {
- $max = $visitors;
- }
- }
-
- arsort($spages);
-
- foreach ($spages as $page => $visitors): ?>
- <div class="progress" style="height:25px;background:#222;margin-bottom:2px;">
- <div class="progress-bar" style="background:#444;width:<?= ($visitors/$max)*100 ?>%;"></div>
- <span class="progress-bar-text"><a class="text-white" href="<?= urlize($page) ?>" target="_blank"><?= $page ?></a> <span class="text-muted">(<?= $visitors ?>)</span></span>
- </div>
- <?php endforeach; ?>
- </p>
-
- <style>
- .progress-bar-text {
- position: absolute;
- padding-top: 14px;
- font-size: 14px;
- text-align:left;
- padding-left:10px;
- }
- </style>
- </details>
- </li>
- </ul>
-</div>
-
-<?php require_once $_SERVER['DOCUMENT_ROOT'] . "/admin/private/footer.php"; ?> \ No newline at end of file
diff --git a/admin/panes/unchained.php b/admin/panes/unchained.php
deleted file mode 100644
index 5f29406..0000000
--- a/admin/panes/unchained.php
+++ /dev/null
@@ -1,81 +0,0 @@
-<?php require_once $_SERVER['DOCUMENT_ROOT'] . "/admin/private/header.php";/** @var array $_DATA */ ?>
-
-<style>
- ::-webkit-scrollbar {
- width: 5px;
- }
-
- ::-webkit-scrollbar-track {
- border-radius: 9999px;
- background: transparent;
- }
-
- ::-webkit-scrollbar-thumb {
- border-radius: 9999px;
- background-color: rgba(136, 136, 136, 0.5);
- transition: background 200ms;
- }
-
- ::-webkit-scrollbar-thumb:hover {
- background-color: rgba(85, 85, 85, 0.75);
- }
-
- ::-webkit-scrollbar-thumb:active {
- background-color: #222;
- }
-
- .list-group-item {
- background: #34373c;
- }
-</style>
-
-<div class="container" style="color:white;padding-top:15vh;padding-bottom:15vh;display: flex;align-items:center;justify-content: center;height:100%;" id="main">
- <div>
- <p style="text-align: center;">
- <img src="/logo.svg" width="96px"><span class="text-muted"> ⏵⏵⏵ </span><!--suppress CheckImageSize -->
- <img src="/static/apps/unchainedtech.png" width="96px">
- </p>
- <br>
- <h2 style="text-align:center;"><?= l("You already have access to UnchainedTech Admin", "Vous avez déjà accès à l'administration de UnchainedTech") ?></h2>
-
- <h4 style="text-align:center;"><?= l("We automatically logged you into UnchainedTech Admin when you logged in to Minteck Cloud Admin Console", "Nous vous avons automatiquement connecté à l'administration d'UnchainedTech lorsque vous vous êtes connecté à Minteck Cloud Admin Console") ?></h4><br>
-
- <div style="text-align: center;width:max-content;margin-left:auto;margin-right:auto;">
- <p class="btn-group">
- <a href="https://unchainedtech.minteck.ro.lt/articles" target="_blank" class="btn btn-outline-light"><?= l("All Articles", "Tous les articles") ?></a>
- <a href="https://unchainedtech.minteck.ro.lt/admin" target="_blank" class="btn btn-outline-light"><?= l("Admin Tasks", "Tâches d'administration") ?></a>
- </p>
- </div>
-
- <small><p style="text-align: center;">
- v<?= trim(file_get_contents("/mnt/blogchain/version.txt")) ?> • <a href="#" onclick="document.getElementById('main').style.display='none';document.getElementById('secondary').style.display='';"><?= l("Manage drafts", "Gérer les brouillons") ?></a>
- </p></small>
- </div>
-</div>
-
- <div class="container" style="color:white;padding-top:15vh;padding-bottom:15vh;display:none;" id="secondary">
- <div>
- <h2 style="text-align:center;">UnchainedTech</h2>
- <h4 style="text-align:center;"><?= l("Drafts List", "Liste des brouillons") ?></h4>
-
- <small><p style="text-align: center;">
- v<?= trim(file_get_contents("/mnt/blogchain/version.txt")) ?> • <a href="#" onclick="document.getElementById('main').style.display='flex';document.getElementById('secondary').style.display='none';"><?= l("Hide drafts list", "Masquer la liste des brouillons") ?></a>
- </p></small>
-
- <ul class="list-group">
- <?php
-
- $drafts = false;
- foreach (scandir("/mnt/blogchain/_posts/_drafts") as $draft) {
- if ($draft !== "." && $draft !== ".." && $draft !== ".gitkeep" && $draft !== "_template.md") {
- $drafts = true;
- echo('<li class="list-group-item">' . substr($draft, 0, -3) . '<span style="float:right;"><a href="https://unchainedtech.minteck.ro.lt/admin/article/' . substr($draft, 0, -3) . '" target="_blank">' . l("Preview", "Prévisualiser") . '</a> · <a href="https://github.com/Minteck/UnchainedTech-Content/edit/production/_drafts/' . $draft . '" target="_blank">' . l("Edit", "Modifier") . '</a> · <a href="https://github.com/Minteck/UnchainedTech-Content/delete/production/_drafts/' . $draft . '" target="_blank">' . l("Delete", "Supprimer") . '</a></span></li>');
- }
- }
-
- ?>
- </ul>
- </div>
- </div>
-
-<?php require_once $_SERVER['DOCUMENT_ROOT'] . "/admin/private/footer.php"; ?> \ No newline at end of file
diff --git a/admin/panes/uptime.php b/admin/panes/uptime.php
deleted file mode 100644
index 199df52..0000000
--- a/admin/panes/uptime.php
+++ /dev/null
@@ -1,76 +0,0 @@
-<?php require_once $_SERVER['DOCUMENT_ROOT'] . "/admin/private/header.php";/** @var array $_DATA */ ?>
-
-<style>
- ::-webkit-scrollbar {
- width: 5px;
- }
-
- ::-webkit-scrollbar-track {
- border-radius: 9999px;
- background: transparent;
- }
-
- ::-webkit-scrollbar-thumb {
- border-radius: 9999px;
- background-color: rgba(136, 136, 136, 0.5);
- transition: background 200ms;
- }
-
- ::-webkit-scrollbar-thumb:hover {
- background-color: rgba(85, 85, 85, 0.75);
- }
-
- ::-webkit-scrollbar-thumb:active {
- background-color: #222;
- }
-
- .list-group-item {
- background: #34373c;
- }
-</style>
-
-<div class="container" style="color:white;padding-top:15vh;padding-bottom:15vh;">
- <h2 style="text-align:center;"><?= l("The server has been running for", "Le serveur est en fonctionnement depuis") ?></h2>
-
- <h4 style="text-align:center;" id="uptime">---</h4>
- <!--suppress JSUnresolvedVariable, JSUnresolvedFunction -->
- <script>
- setInterval(() => {
- $.ajax("/admin/api/serverTime.php", {
- success: (data) => {
- document.getElementById("uptime").innerText = data;
- }
- });
- }, 500)
- </script>
-
- <ul class="list-group" style="margin-top:20px;">
- <li class="list-group-item">
- <b><?php
-
- exec("journalctl --disk-usage", $ret);
- $data = trim(implode("\n", $ret));
-
- $val = explode(" ", $data)[6];
- echo($val);
-
- ?></b> <?= l("of data has been collected to ensure easy system maintenance and audit", "de données ont été recueillies pour faciliter la maintenance du système et les audits de sécurité") ?>
- </li>
- <li class="list-group-item" id="logsummary">
- <?= l("Calculating...", "Calcul en cours...") ?>
- </li>
- <!--suppress JSUnresolvedVariable, JSUnresolvedFunction -->
- <script>
- $.ajax("/admin/api/serverLogSummary.php", {
- success: (data) => {
- document.getElementById("logsummary").innerHTML = data;
- },
- error: () => {
- document.getElementById("logsummary").innerText = "<?= l("An error occurred while loading this content, perhaps you don't have permission to access it", "Une erreur s'est produite lors du chargement de ce contenu, peut-être que vous n'avez pas la permission d'y accéder") ?>";
- }
- });
- </script>
- </ul>
-</div>
-
-<?php require_once $_SERVER['DOCUMENT_ROOT'] . "/admin/private/footer.php"; ?> \ No newline at end of file
diff --git a/admin/panes/version.php b/admin/panes/version.php
deleted file mode 100644
index 8642178..0000000
--- a/admin/panes/version.php
+++ /dev/null
@@ -1,140 +0,0 @@
-<?php require_once $_SERVER['DOCUMENT_ROOT'] . "/admin/private/header.php";/** @var array $_DATA */ ?>
-
-<style>
- ::-webkit-scrollbar {
- width: 5px;
- }
-
- ::-webkit-scrollbar-track {
- border-radius: 9999px;
- background: transparent;
- }
-
- ::-webkit-scrollbar-thumb {
- border-radius: 9999px;
- background-color: rgba(136, 136, 136, 0.5);
- transition: background 200ms;
- }
-
- ::-webkit-scrollbar-thumb:hover {
- background-color: rgba(85, 85, 85, 0.75);
- }
-
- ::-webkit-scrollbar-thumb:active {
- background-color: #222;
- }
-
- .list-group-item {
- background: #34373c;
- }
-</style>
-
-<div class="container" style="color:white;padding-top:15vh;padding-bottom:15vh;">
- <h2 style="text-align:center;"><?= l("This server is running", "Ce serveur exécute") ?> <?= php_uname('s') ?> version</h2>
-
- <h4 style="text-align:center;"><?= php_uname('r') . " " . php_uname('v') ?></h4>
-
- <ul class="list-group" style="margin-top:20px;">
- <li class="list-group-item">PHP <?= PHP_VERSION ?></li>
- <li class="list-group-item">Minteck's Space <?= trim(file_get_contents($_SERVER["DOCUMENT_ROOT"] . "/version.txt")) ?></li>
- <li class="list-group-item">UnchainedTech <?= trim(file_get_contents("/mnt/blogchain/version.txt")) ?></li>
- <li class="list-group-item">Neutron Cloud <?= trim(file_get_contents("/mnt/minteckrolt-cloud/@BASE/source/api/version")) ?> (<?= trim(file_get_contents("/mnt/minteckrolt-cloud/@BASE/source/api/codename")) ?>)</li>
- <li class="list-group-item">Neutron Copper <?= trim(file_get_contents("/mnt/minteckrolt-cloud/@BASE/source/api/cyclic_version")) ?></li>
- <li class="list-group-item">Neutron Titanium <?= trim(file_get_contents("/mnt/minteckrolt-cloud/@BASE/source/api/jaw_version")) ?></li>
- <li class="list-group-item">
- <?php
-
- $osr = [];
- $lines = explode("\n", file_get_contents("/etc/os-release"));
-
- foreach ($lines as $line) {
- if (trim($line) !== "") {
- $parts = explode("=", $line);
- $osr[$parts[0]] = str_replace("\"", "", $parts[1]);
- }
- }
-
- echo($osr["NAME"] . " " . $osr["VERSION"]);
-
- ?>
- </li>
- <li class="list-group-item">Git <?php exec("git --version", $res);$p = explode(" ", $res[0]);array_shift($p);array_shift($p);echo(implode(" ", $p)) ?></li>
- <li class="list-group-item"><?php
-
- $soft = $_SERVER['SERVER_SOFTWARE'];
-
- if (strpos(strtolower($soft), "apache") !== false) {
- echo(l("Apache HTTP Server", "Serveur HTTP Apache"));
- } else {
- echo("nginx");
- }
-
- ?> <?php
-
- $soft = $_SERVER['SERVER_SOFTWARE'];
-
- if (strpos(strtolower($soft), "apache") !== false) {
- exec("apache2 -v", $res2);$p = explode(" ", $res2[0]);array_shift($p);array_shift($p);$p2 = explode("/", implode(" ", $p));array_shift($p2);echo(implode(" ", $p2));
- } else {
- exec("nginx -v", $res2);$p = explode(" ", $res2[0]);array_shift($p);array_shift($p);$p2 = explode("/", implode(" ", $p));array_shift($p2);echo(implode(" ", $p2));
- }
-
- ?></li>
- </ul>
-
- <ul class="list-group" style="margin-top:20px;">
- <li id="checking" class="list-group-item"><?= l("Checking for updates", "Recherche de mises à jour") ?>...</li>
- <li id="checking2" class="list-group-item" style="display:none;"></li>
- <li id="found" class="list-group-item" style="display:none;">
- <b id="updates-count">0</b> <?= l("package·s have updates available", "paquet·s peuvent être mis à jour") ?>
-
- <details>
- <summary><?= l("View details", "Voir les détails") ?></summary>
- <ul class="list-group" id="updates-list"></ul>
- </details>
- </li>
- </ul>
- <!--suppress JSUnresolvedVariable, JSUnresolvedFunction, JSUnfilteredForInLoop -->
- <script>
- $.ajax("/admin/api/refreshUpdates.php", {
- success: (data) => {
- document.getElementById("checking").innerText = "<?= l("Checking for Ubuntu upgrades", "Recherche de mises à niveau d'Ubuntu") ?>...";
- $.ajax("/admin/api/getUbuntuUpgrades.php", {
- success: (data) => {
- document.getElementById("checking").innerHTML = data;
- document.getElementById("checking2").style.display = "";
- document.getElementById("checking2").innerText = "<?= l("Reading package lists", "Lecture des listes de paquets") ?>...";
- $.ajax("/admin/api/getUpdates.php", {
- success: (data) => {
- document.getElementById("checking2").innerText = "<?= l("Please wait", "Patientez") ?>...";
- document.getElementById("updates-count").innerText = data.count;
-
- dom = "";
- for (let index in data.packages) {
- item = data.packages[index];
- dom += `<li class="list-group-item"><b>${item.name}</b> (<span style="color: orange;">${item.version.local}</span> → <span style="color: green;">${item.version.remote}</span>)<br><?= l("Provided by", "Fourni par ") ?>: <code>${item.repos}</code>, <?= l("target architecture", "architecture cible ") ?>: <code>${item.architecture}</code></li>`
- }
-
- document.getElementById("updates-list").innerHTML = dom;
-
- document.getElementById("checking2").outerHTML = "";
- document.getElementById("found").style.display = "";
- },
- error: () => {
- document.getElementById("checking2").innerText = "<?= l("An error occurred while loading this content, perhaps you don't have permission to access it", "Une erreur s'est produite lors du chargement de ce contenu, peut-être que vous n'avez pas la permission d'y accéder") ?>";
- }
- });
- },
- error: () => {
- document.getElementById("checking").innerText = "<?= l("An error occurred while loading this content, perhaps you don't have permission to access it", "Une erreur s'est produite lors du chargement de ce contenu, peut-être que vous n'avez pas la permission d'y accéder") ?>";
- }
- });
- },
- error: () => {
- document.getElementById("checking").innerText = "<?= l("An error occurred while loading this content, perhaps you don't have permission to access it", "Une erreur s'est produite lors du chargement de ce contenu, peut-être que vous n'avez pas la permission d'y accéder") ?>";
- }
- });
- </script>
-</div>
-
-<?php require_once $_SERVER['DOCUMENT_ROOT'] . "/admin/private/footer.php"; ?> \ No newline at end of file
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
diff --git a/admin/session/index.php b/admin/session/index.php
deleted file mode 100644
index 0f4ae89..0000000
--- a/admin/session/index.php
+++ /dev/null
@@ -1,6 +0,0 @@
-<?php
-
-var_dump($_GET);
-var_dump($_POST);
-var_dump($_SERVER);
-die(); \ No newline at end of file