Full Code of MaxSmile/EasyVPN-Free for AI

master 967fab50c2ed cached
198 files
136.0 MB
291.6k tokens
764 symbols
1 requests
Download .txt
Showing preview only (1,056K chars total). Download the full file or copy to clipboard to get everything.
Repository: MaxSmile/EasyVPN-Free
Branch: master
Commit: 967fab50c2ed
Files: 198
Total size: 136.0 MB

Directory structure:
gitextract_fzgf4p_h/

├── .gitignore
├── Android-code/
│   ├── .gitignore
│   ├── app/
│   │   ├── .gitignore
│   │   ├── build.gradle
│   │   ├── fabric.properties
│   │   ├── google-services.json
│   │   ├── proguard-rules.pro
│   │   └── src/
│   │       ├── main/
│   │       │   ├── AndroidManifest.xml
│   │       │   ├── aidl/
│   │       │   │   └── com/
│   │       │   │       └── android/
│   │       │   │           └── vending/
│   │       │   │               └── billing/
│   │       │   │                   └── IInAppBillingService.aidl
│   │       │   ├── assets/
│   │       │   │   ├── countries.json
│   │       │   │   ├── full_licenses.html
│   │       │   │   ├── nopie_openvpn.arm64-v8a
│   │       │   │   ├── nopie_openvpn.armeabi
│   │       │   │   ├── nopie_openvpn.armeabi-v7a
│   │       │   │   ├── nopie_openvpn.mips
│   │       │   │   ├── nopie_openvpn.x86
│   │       │   │   ├── nopie_openvpn.x86_64
│   │       │   │   ├── pie_openvpn.arm64-v8a
│   │       │   │   ├── pie_openvpn.armeabi
│   │       │   │   ├── pie_openvpn.armeabi-v7a
│   │       │   │   ├── pie_openvpn.mips
│   │       │   │   ├── pie_openvpn.x86
│   │       │   │   ├── pie_openvpn.x86_64
│   │       │   │   └── world_map.geo.json
│   │       │   ├── java/
│   │       │   │   ├── com/
│   │       │   │   │   └── vasilkoff/
│   │       │   │   │       └── easyvpnfree/
│   │       │   │   │           ├── App.java
│   │       │   │   │           ├── activity/
│   │       │   │   │           │   ├── AboutActivity.java
│   │       │   │   │           │   ├── BaseActivity.java
│   │       │   │   │           │   ├── BookmarkServerListActivity.java
│   │       │   │   │           │   ├── HomeActivity.java
│   │       │   │   │           │   ├── LauncherActivity.java
│   │       │   │   │           │   ├── LoaderActivity.java
│   │       │   │   │           │   ├── MyPreferencesActivity.java
│   │       │   │   │           │   ├── ServerActivity.java
│   │       │   │   │           │   ├── ServersInfo.java
│   │       │   │   │           │   └── ServersListActivity.java
│   │       │   │   │           ├── adapter/
│   │       │   │   │           │   ├── BookmarkServerListAdapter.java
│   │       │   │   │           │   └── ServerListAdapter.java
│   │       │   │   │           ├── database/
│   │       │   │   │           │   └── DBHelper.java
│   │       │   │   │           ├── model/
│   │       │   │   │           │   ├── Country.java
│   │       │   │   │           │   └── Server.java
│   │       │   │   │           └── util/
│   │       │   │   │               ├── BitmapGenerator.java
│   │       │   │   │               ├── ConnectionQuality.java
│   │       │   │   │               ├── CountriesNames.java
│   │       │   │   │               ├── LoadData.java
│   │       │   │   │               ├── NetworkState.java
│   │       │   │   │               ├── NumberPickerPreference.java
│   │       │   │   │               ├── PropertiesService.java
│   │       │   │   │               ├── Stopwatch.java
│   │       │   │   │               ├── TotalTraffic.java
│   │       │   │   │               ├── iap/
│   │       │   │   │               │   ├── Base64.java
│   │       │   │   │               │   ├── Base64DecoderException.java
│   │       │   │   │               │   ├── IabException.java
│   │       │   │   │               │   ├── IabHelper.java
│   │       │   │   │               │   ├── IabResult.java
│   │       │   │   │               │   ├── Inventory.java
│   │       │   │   │               │   ├── Purchase.java
│   │       │   │   │               │   ├── Security.java
│   │       │   │   │               │   └── SkuDetails.java
│   │       │   │   │               └── map/
│   │       │   │   │                   ├── MapCreator.java
│   │       │   │   │                   └── MyMarker.java
│   │       │   │   ├── de/
│   │       │   │   │   └── blinkt/
│   │       │   │   │       └── openvpn/
│   │       │   │   │           ├── VpnProfile.java
│   │       │   │   │           └── core/
│   │       │   │   │               ├── CIDRIP.java
│   │       │   │   │               ├── ConfigParser.java
│   │       │   │   │               ├── Connection.java
│   │       │   │   │               ├── DeviceStateReceiver.java
│   │       │   │   │               ├── ICSOpenVPNApplication.java
│   │       │   │   │               ├── LogFileHandler.java
│   │       │   │   │               ├── LogItem.java
│   │       │   │   │               ├── LollipopDeviceStateListener.java
│   │       │   │   │               ├── NativeUtils.java
│   │       │   │   │               ├── NetworkSpace.java
│   │       │   │   │               ├── OpenVPNManagement.java
│   │       │   │   │               ├── OpenVPNService.java
│   │       │   │   │               ├── OpenVPNThread.java
│   │       │   │   │               ├── OpenVpnManagementThread.java
│   │       │   │   │               ├── PRNGFixes.java
│   │       │   │   │               ├── ProfileManager.java
│   │       │   │   │               ├── ProxyDetection.java
│   │       │   │   │               ├── VPNLaunchHelper.java
│   │       │   │   │               ├── VpnStatus.java
│   │       │   │   │               └── X509Utils.java
│   │       │   │   └── org/
│   │       │   │       └── spongycastle/
│   │       │   │           └── util/
│   │       │   │               ├── encoders/
│   │       │   │               │   ├── Base64.java
│   │       │   │               │   ├── Base64Encoder.java
│   │       │   │               │   └── Encoder.java
│   │       │   │               └── io/
│   │       │   │                   └── pem/
│   │       │   │                       ├── PemGenerationException.java
│   │       │   │                       ├── PemHeader.java
│   │       │   │                       ├── PemObject.java
│   │       │   │                       ├── PemObjectGenerator.java
│   │       │   │                       ├── PemReader.java
│   │       │   │                       └── PemWriter.java
│   │       │   └── res/
│   │       │       ├── anim/
│   │       │       │   └── scale.xml
│   │       │       ├── drawable/
│   │       │       │   ├── button_bg.xml
│   │       │       │   ├── connected_bg.xml
│   │       │       │   ├── info_servers_bg.xml
│   │       │       │   ├── server_info_bg.xml
│   │       │       │   └── side_nav_bar.xml
│   │       │       ├── layout/
│   │       │       │   ├── activity_about.xml
│   │       │       │   ├── activity_base.xml
│   │       │       │   ├── activity_bookmark_server_list.xml
│   │       │       │   ├── activity_home.xml
│   │       │       │   ├── activity_loader.xml
│   │       │       │   ├── activity_preference.xml
│   │       │       │   ├── activity_server.xml
│   │       │       │   ├── activity_servers_info.xml
│   │       │       │   ├── activity_servers_list.xml
│   │       │       │   ├── bookmark_server_row.xml
│   │       │       │   ├── layout_server_record_row.xml
│   │       │       │   ├── pop_up_choose_country.xml
│   │       │       │   ├── pop_up_note.xml
│   │       │       │   ├── pop_up_rating.xml
│   │       │       │   └── pop_up_success_conected.xml
│   │       │       ├── menu/
│   │       │       │   └── menu_main.xml
│   │       │       ├── values/
│   │       │       │   ├── about.xml
│   │       │       │   ├── colors.xml
│   │       │       │   ├── dimens.xml
│   │       │       │   ├── props.xml
│   │       │       │   ├── reference.xml
│   │       │       │   ├── strings.xml
│   │       │       │   ├── styles.xml
│   │       │       │   ├── untranslatable.xml
│   │       │       │   └── vpn_strings.xml
│   │       │       ├── values-ar/
│   │       │       │   └── strings.xml
│   │       │       ├── values-be/
│   │       │       │   └── strings.xml
│   │       │       ├── values-cs/
│   │       │       │   └── strings.xml
│   │       │       ├── values-de/
│   │       │       │   └── strings.xml
│   │       │       ├── values-el/
│   │       │       │   └── strings.xml
│   │       │       ├── values-es/
│   │       │       │   └── strings.xml
│   │       │       ├── values-fa/
│   │       │       │   └── strings.xml
│   │       │       ├── values-fr/
│   │       │       │   └── strings.xml
│   │       │       ├── values-hu/
│   │       │       │   └── strings.xml
│   │       │       ├── values-id/
│   │       │       │   └── strings.xml
│   │       │       ├── values-it/
│   │       │       │   └── strings.xml
│   │       │       ├── values-iw/
│   │       │       │   └── strings.xml
│   │       │       ├── values-ja/
│   │       │       │   └── strings.xml
│   │       │       ├── values-ka/
│   │       │       │   └── strings.xml
│   │       │       ├── values-ko/
│   │       │       │   └── strings.xml
│   │       │       ├── values-lt/
│   │       │       │   └── strings.xml
│   │       │       ├── values-lv/
│   │       │       │   └── strings.xml
│   │       │       ├── values-ro/
│   │       │       │   └── strings.xml
│   │       │       ├── values-ru/
│   │       │       │   └── strings.xml
│   │       │       ├── values-sk/
│   │       │       │   └── strings.xml
│   │       │       ├── values-sl/
│   │       │       │   └── strings.xml
│   │       │       ├── values-sr/
│   │       │       │   └── strings.xml
│   │       │       ├── values-sv/
│   │       │       │   └── strings.xml
│   │       │       ├── values-th/
│   │       │       │   └── strings.xml
│   │       │       ├── values-tr/
│   │       │       │   └── strings.xml
│   │       │       ├── values-uk/
│   │       │       │   └── strings.xml
│   │       │       ├── values-v21/
│   │       │       │   ├── reference.xml
│   │       │       │   └── styles.xml
│   │       │       ├── values-vi/
│   │       │       │   └── strings.xml
│   │       │       ├── values-w820dp/
│   │       │       │   └── dimens.xml
│   │       │       ├── values-zh/
│   │       │       │   └── strings.xml
│   │       │       └── xml/
│   │       │           └── preferences.xml
│   │       └── pro/
│   │           └── google-services.json
│   ├── build.gradle
│   ├── gradle/
│   │   └── wrapper/
│   │       ├── gradle-wrapper.jar
│   │       └── gradle-wrapper.properties
│   ├── gradle.properties
│   ├── gradlew
│   ├── gradlew.bat
│   └── settings.gradle
├── Binary/
│   └── easyvpnfree-1.5-49-free-release.apk
├── LICENSE
├── README.md
└── binary/
    ├── app-release-1.0-5.apk
    ├── easyvpnfree-1.0-6-release.apk
    ├── easyvpnfree-1.0-7-release.apk
    ├── easyvpnfree-1.1-9-release.apk
    ├── easyvpnfree-1.2-11-release.apk
    ├── easyvpnfree-1.2-12-release.apk
    ├── easyvpnfree-1.2-13-release.apk
    ├── easyvpnfree-1.3-15-release.apk
    ├── easyvpnfree-1.3-16-release.apk
    ├── easyvpnfree-1.3-18-release.apk
    ├── easyvpnfree-1.3-19-release.apk
    ├── easyvpnfree-1.3-21-release.apk
    ├── easyvpnfree-1.3-22-release.apk
    ├── easyvpnfree-1.3-23-release.apk
    ├── easyvpnfree-1.3-25-release.apk
    ├── easyvpnfree-1.4-26-release.apk
    ├── easyvpnfree-1.4-27-release.apk
    ├── easyvpnfree-1.4-29-release.apk
    ├── easyvpnfree-1.4-30-release.apk
    ├── easyvpnfree-1.4-31-release.apk
    ├── easyvpnfree-1.4-33-release.apk
    ├── easyvpnfree-1.4-34-release.apk
    ├── easyvpnfree-1.4-36-release.apk
    ├── easyvpnfree-1.4-37-release.apk
    ├── easyvpnfree-1.4-38-release.apk
    ├── easyvpnfree-1.4-39-release.apk
    ├── easyvpnfree-1.4-40-free-release.apk
    ├── easyvpnfree-1.4-41-free-release.apk
    ├── easyvpnfree-1.5-42-free-release.apk
    ├── easyvpnfree-1.5-43-free-release.apk
    ├── easyvpnfree-1.5-44-free-release.apk
    ├── easyvpnfree-1.5-45-free-release.apk
    ├── easyvpnfree-1.5-50-free-release.apk
    └── easyvpnfree-1.6-50-free-release.apk

================================================
FILE CONTENTS
================================================

================================================
FILE: .gitignore
================================================
*.ap_

# Files for the ART/Dalvik VM
*.dex

# Java class files
*.class

# Generated files
bin/
gen/
out/

# Gradle files
.gradle/
build/

# Local configuration file (sdk path, etc)
local.properties

# Proguard folder generated by Eclipse
proguard/

# Log Files
*.log

# Android Studio Navigation editor temp files
.navigation/

# Android Studio captures folder
captures/

# Intellij
*.iml
.idea/workspace.xml

# Keystore files
*.jks


================================================
FILE: Android-code/.gitignore
================================================
*.iml
.gradle
.idea
/local.properties
/.idea/workspace.xml
/.idea/libraries
.DS_Store
/build
/captures
/app/src/test
/app/src/androidTest
/app/src/debug/
/app/src/release/
/app/build

================================================
FILE: Android-code/app/.gitignore
================================================
/build


================================================
FILE: Android-code/app/build.gradle
================================================
buildscript {
    repositories {
        maven { url 'https://maven.fabric.io/public' }
    }

    dependencies {
        classpath 'io.fabric.tools:gradle:1.+'
    }
}
apply plugin: 'com.android.application'
apply plugin: 'io.fabric'

repositories {
    maven { url 'https://maven.fabric.io/public' }
}


android {
    compileSdkVersion 24
    buildToolsVersion "24.0.2"

    defaultConfig {
        applicationId "com.vasilkoff.easyvpnfree"
        minSdkVersion 17
        targetSdkVersion 24
        versionCode 50
        versionName "1.6"
        setProperty("archivesBaseName", "easyvpnfree-$versionName-$versionCode")
    }

    lintOptions {
        disable 'MissingTranslation'
    }

    productFlavors {
        free {
            applicationId "com.vasilkoff.easyvpnfree"
            resValue "string", "app_name", "Easy VPN Free"
            resValue "string", "notification_title", "Easy VPN Free - %s"
        }

        pro {
            applicationId "com.vasilkoff.easyvpn"
            resValue "string", "app_name", "Easy VPN"
            resValue "string", "notification_title", "Easy VPN - %s"
        }

        underground {
            applicationId "com.vasilkoff.easyvpnunderground"
            resValue "string", "app_name", "Easy VPN"
            resValue "string", "notification_title", "Easy VPN - %s"
        }
    }

    buildTypes {
        release {
            minifyEnabled false
            shrinkResources false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
//            ndk {
//              //abiFilters "armeabi" "x86"
//                abiFilters "armeabi-v7a", "armeabi", "arm64-v8a" // includes ARM SO files only, so no x86 SO file
//            }
        }
    }
}



dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:24.2.1'
    compile 'com.android.support:support-v4:24.2.1'
    compile 'com.android.support:design:24.2.1'
    compile 'com.android.support:recyclerview-v7:24.2.1'
    compile 'com.android.support:cardview-v7:24.2.1'

    compile 'com.daimajia.numberprogressbar:library:1.2@aar'
    compile 'com.amitshekhar.android:android-networking:0.2.0'
    compile 'com.google.code.gson:gson:2.7'
    compile 'org.mapsforge:mapsforge-map-android:0.6.1'
    compile 'com.caverock:androidsvg:1.2.2-beta-1'
    testCompile 'junit:junit:4.12'
    compile('com.crashlytics.sdk.android:crashlytics:2.6.5@aar') {
        transitive = true
    }
    compile 'com.google.android.gms:play-services-analytics:10.0.1'
}

================================================
FILE: Android-code/app/fabric.properties
================================================
#Contains API Secret used to validate your application. Commit to internal source control; avoid making secret public.
#Wed Dec 14 11:21:31 EET 2016
apiSecret=27f37b51b9f4db8a01ed83314a725d24366fde53dbe7c0ea1df76514132181ff


================================================
FILE: Android-code/app/google-services.json
================================================
{
  "project_info": {
    "project_number": "1067063466316",
    "project_id": "easy-vpn-free"
  },
  "client": [
    {
      "client_info": {
        "mobilesdk_app_id": "1:1067063466316:android:4ff3282175fe4450",
        "android_client_info": {
          "package_name": "com.vasilkoff.easyvpnfree"
        }
      },
      "oauth_client": [],
      "api_key": [
        {
          "current_key": "AIzaSyDIDrdo6WD-2RE5dNYGV2XIFcc7qhN9A80"
        }
      ],
      "services": {
        "analytics_service": {
          "status": 2,
          "analytics_property": {
            "tracking_id": "UA-89622148-1"
          }
        },
        "appinvite_service": {
          "status": 1,
          "other_platform_oauth_client": []
        },
        "ads_service": {
          "status": 1
        }
      }
    }
  ],
  "configuration_version": "1"
}

================================================
FILE: Android-code/app/proguard-rules.pro
================================================
# Add project specific ProGuard rules here.
# By default, the flags in this file are appended to flags specified
# in /Users/Vasilkoff/Library/Android/sdk/tools/proguard/proguard-android.txt
# You can edit the include path and order by changing the proguardFiles
# directive in build.gradle.
#
# For more details, see
#   http://developer.android.com/guide/developing/tools/proguard.html

# Add any project specific keep options here:

# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
#   public *;
#}


================================================
FILE: Android-code/app/src/main/AndroidManifest.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.vasilkoff.easyvpnfree">

    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses-permission android:name="com.android.vending.BILLING" />
    <uses-permission android:name="android.permission.WAKE_LOCK" />

    <application
        android:name=".App"
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name=".activity.LauncherActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name=".activity.LoaderActivity"
            android:noHistory="true" />
        <activity android:name=".activity.HomeActivity">

        </activity>
        <activity android:name=".activity.ServersListActivity" />
        <activity
            android:name=".activity.ServerActivity"
            android:launchMode="singleTop" />
        <activity android:name=".activity.AboutActivity" />
        <activity
            android:name=".activity.ServersInfo"
            android:theme="@style/AppTheme.PopUp" />
        <activity
            android:name=".activity.MyPreferencesActivity"
            android:label="@string/action_settings"
            android:noHistory="true" />

        <service
            android:name="de.blinkt.openvpn.core.OpenVPNService"
            android:permission="android.permission.BIND_VPN_SERVICE">
            <intent-filter>
                <action android:name="android.net.VpnService" />
            </intent-filter>
        </service>

        <meta-data
            android:name="io.fabric.ApiKey"
            android:value="f3381de560e52052038ffb42a852d4b4df492896" />

        <!--
      Optionally, register AnalyticsReceiver and AnalyticsService to support background
      dispatching on non-Google Play devices
        -->
        <receiver
            android:name="com.google.android.gms.analytics.AnalyticsReceiver"
            android:enabled="true">
            <intent-filter>
                <action android:name="com.google.android.gms.analytics.ANALYTICS_DISPATCH" />
            </intent-filter>
        </receiver>

        <service
            android:name="com.google.android.gms.analytics.AnalyticsService"
            android:enabled="true"
            android:exported="false" />

        <!--
             Optionally, register CampaignTrackingReceiver and CampaignTrackingService to enable
             installation campaign reporting
        -->
        <receiver
            android:name="com.google.android.gms.analytics.CampaignTrackingReceiver"
            android:exported="true">
            <intent-filter>
                <action android:name="com.android.vending.INSTALL_REFERRER" />
            </intent-filter>
        </receiver>

        <service android:name="com.google.android.gms.analytics.CampaignTrackingService" />

        <activity android:name=".activity.BookmarkServerListActivity"></activity>
    </application>

</manifest>

================================================
FILE: Android-code/app/src/main/aidl/com/android/vending/billing/IInAppBillingService.aidl
================================================
/*
 * Copyright (C) 2012 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.android.vending.billing;

import android.os.Bundle;

/**
 * InAppBillingService is the service that provides in-app billing version 3 and beyond.
 * This service provides the following features:
 * 1. Provides a new API to get details of in-app items published for the app including
 *    price, type, title and description.
 * 2. The purchase flow is synchronous and purchase information is available immediately
 *    after it completes.
 * 3. Purchase information of in-app purchases is maintained within the Google Play system
 *    till the purchase is consumed.
 * 4. An API to consume a purchase of an inapp item. All purchases of one-time
 *    in-app items are consumable and thereafter can be purchased again.
 * 5. An API to get current purchases of the user immediately. This will not contain any
 *    consumed purchases.
 *
 * All calls will give a response code with the following possible values
 * RESULT_OK = 0 - success
 * RESULT_USER_CANCELED = 1 - user pressed back or canceled a dialog
 * RESULT_BILLING_UNAVAILABLE = 3 - this billing API version is not supported for the type requested
 * RESULT_ITEM_UNAVAILABLE = 4 - requested SKU is not available for purchase
 * RESULT_DEVELOPER_ERROR = 5 - invalid arguments provided to the API
 * RESULT_ERROR = 6 - Fatal error during the API action
 * RESULT_ITEM_ALREADY_OWNED = 7 - Failure to purchase since item is already owned
 * RESULT_ITEM_NOT_OWNED = 8 - Failure to consume since item is not owned
 */
interface IInAppBillingService {
    /**
     * Checks support for the requested billing API version, package and in-app type.
     * Minimum API version supported by this interface is 3.
     * @param apiVersion the billing version which the app is using
     * @param packageName the package name of the calling app
     * @param type type of the in-app item being purchased "inapp" for one-time purchases
     *        and "subs" for subscription.
     * @return RESULT_OK(0) on success, corresponding result code on failures
     */
    int isBillingSupported(int apiVersion, String packageName, String type);

    /**
     * Provides details of a list of SKUs
     * Given a list of SKUs of a valid type in the skusBundle, this returns a bundle
     * with a list JSON strings containing the productId, price, title and description.
     * This API can be called with a maximum of 20 SKUs.
     * @param apiVersion billing API version that the Third-party is using
     * @param packageName the package name of the calling app
     * @param skusBundle bundle containing a StringArrayList of SKUs with key "ITEM_ID_LIST"
     * @return Bundle containing the following key-value pairs
     *         "RESPONSE_CODE" with int value, RESULT_OK(0) if success, other response codes on
     *              failure as listed above.
     *         "DETAILS_LIST" with a StringArrayList containing purchase information
     *              in JSON format similar to:
     *              '{ "productId" : "exampleSku", "type" : "inapp", "price" : "$5.00",
     *                 "title : "Example Title", "description" : "This is an example description" }'
     */
    Bundle getSkuDetails(int apiVersion, String packageName, String type, in Bundle skusBundle);

    /**
     * Returns a pending intent to launch the purchase flow for an in-app item by providing a SKU,
     * the type, a unique purchase token and an optional developer payload.
     * @param apiVersion billing API version that the app is using
     * @param packageName package name of the calling app
     * @param sku the SKU of the in-app item as published in the developer console
     * @param type the type of the in-app item ("inapp" for one-time purchases
     *        and "subs" for subscription).
     * @param developerPayload optional argument to be sent back with the purchase information
     * @return Bundle containing the following key-value pairs
     *         "RESPONSE_CODE" with int value, RESULT_OK(0) if success, other response codes on
     *              failure as listed above.
     *         "BUY_INTENT" - PendingIntent to start the purchase flow
     *
     * The Pending intent should be launched with startIntentSenderForResult. When purchase flow
     * has completed, the onActivityResult() will give a resultCode of OK or CANCELED.
     * If the purchase is successful, the result data will contain the following key-value pairs
     *         "RESPONSE_CODE" with int value, RESULT_OK(0) if success, other response codes on
     *              failure as listed above.
     *         "INAPP_PURCHASE_DATA" - String in JSON format similar to
     *              '{"orderId":"12999763169054705758.1371079406387615",
     *                "packageName":"com.example.app",
     *                "productId":"exampleSku",
     *                "purchaseTime":1345678900000,
     *                "purchaseToken" : "122333444455555",
     *                "developerPayload":"example developer payload" }'
     *         "INAPP_DATA_SIGNATURE" - String containing the signature of the purchase data that
     *                                  was signed with the private key of the developer
     *                                  TODO: change this to app-specific keys.
     */
    Bundle getBuyIntent(int apiVersion, String packageName, String sku, String type,
        String developerPayload);

    /**
     * Returns the current SKUs owned by the user of the type and package name specified along with
     * purchase information and a signature of the data to be validated.
     * This will return all SKUs that have been purchased in V3 and managed items purchased using
     * V1 and V2 that have not been consumed.
     * @param apiVersion billing API version that the app is using
     * @param packageName package name of the calling app
     * @param type the type of the in-app items being requested
     *        ("inapp" for one-time purchases and "subs" for subscription).
     * @param continuationToken to be set as null for the first call, if the number of owned
     *        skus are too many, a continuationToken is returned in the response bundle.
     *        This method can be called again with the continuation token to get the next set of
     *        owned skus.
     * @return Bundle containing the following key-value pairs
     *         "RESPONSE_CODE" with int value, RESULT_OK(0) if success, other response codes on
     *              failure as listed above.
     *         "INAPP_PURCHASE_ITEM_LIST" - StringArrayList containing the list of SKUs
     *         "INAPP_PURCHASE_DATA_LIST" - StringArrayList containing the purchase information
     *         "INAPP_DATA_SIGNATURE_LIST"- StringArrayList containing the signatures
     *                                      of the purchase information
     *         "INAPP_CONTINUATION_TOKEN" - String containing a continuation token for the
     *                                      next set of in-app purchases. Only set if the
     *                                      user has more owned skus than the current list.
     */
    Bundle getPurchases(int apiVersion, String packageName, String type, String continuationToken);

    /**
     * Consume the last purchase of the given SKU. This will result in this item being removed
     * from all subsequent responses to getPurchases() and allow re-purchase of this item.
     * @param apiVersion billing API version that the app is using
     * @param packageName package name of the calling app
     * @param purchaseToken token in the purchase information JSON that identifies the purchase
     *        to be consumed
     * @return 0 if consumption succeeded. Appropriate error values for failures.
     */
    int consumePurchase(int apiVersion, String packageName, String purchaseToken);
}


================================================
FILE: Android-code/app/src/main/assets/countries.json
================================================
[{"CountryName":"Somaliland","CapitalName":"Hargeisa","CapitalLatitude":"9.55","CapitalLongitude":"44.050000","CountryCode":"NULL","ContinentName":"Africa"},{"CountryName":"South Georgia and South Sandwich Islands","CapitalName":"King Edward Point","CapitalLatitude":"-54.283333","CapitalLongitude":"-36.500000","CountryCode":"GS","ContinentName":"Antarctica"},{"CountryName":"French Southern and Antarctic Lands","CapitalName":"Port-aux-Français","CapitalLatitude":"-49.35","CapitalLongitude":"70.216667","CountryCode":"TF","ContinentName":"Antarctica"},{"CountryName":"Palestine","CapitalName":"Jerusalem","CapitalLatitude":"31.7731264","CapitalLongitude":"35.36258698","CountryCode":"PS","ContinentName":"Asia"},{"CountryName":"Aland Islands","CapitalName":"Mariehamn","CapitalLatitude":"60.116667","CapitalLongitude":"19.900000","CountryCode":"AX","ContinentName":"Europe"},{"CountryName":"Nauru","CapitalName":"Yaren","CapitalLatitude":"-0.5477","CapitalLongitude":"166.920867","CountryCode":"NR","ContinentName":"Australia"},{"CountryName":"Saint Martin","CapitalName":"Marigot","CapitalLatitude":"18.0731","CapitalLongitude":"-63.082200","CountryCode":"MF","ContinentName":"North America"},{"CountryName":"Tokelau","CapitalName":"Atafu","CapitalLatitude":"-9.166667","CapitalLongitude":"-171.833333","CountryCode":"TK","ContinentName":"Australia"},{"CountryName":"Western Sahara","CapitalName":"El-Aaiún","CapitalLatitude":"27.153611","CapitalLongitude":"-13.203333","CountryCode":"EH","ContinentName":"Africa"},{"CountryName":"Afghanistan","CapitalName":"Kabul","CapitalLatitude":"34.516666666666666","CapitalLongitude":"69.183333","CountryCode":"AF","ContinentName":"Asia"},{"CountryName":"Albania","CapitalName":"Tirana","CapitalLatitude":"41.31666666666667","CapitalLongitude":"19.816667","CountryCode":"AL","ContinentName":"Europe"},{"CountryName":"Algeria","CapitalName":"Algiers","CapitalLatitude":"36.75","CapitalLongitude":"3.050000","CountryCode":"DZ","ContinentName":"Africa"},{"CountryName":"American Samoa","CapitalName":"Pago Pago","CapitalLatitude":"-14.266666666666667","CapitalLongitude":"-170.700000","CountryCode":"AS","ContinentName":"Australia"},{"CountryName":"Andorra","CapitalName":"Andorra la Vella","CapitalLatitude":"42.5","CapitalLongitude":"1.516667","CountryCode":"AD","ContinentName":"Europe"},{"CountryName":"Angola","CapitalName":"Luanda","CapitalLatitude":"-8.833333333333334","CapitalLongitude":"13.216667","CountryCode":"AO","ContinentName":"Africa"},{"CountryName":"Anguilla","CapitalName":"The Valley","CapitalLatitude":"18.216666666666665","CapitalLongitude":"-63.050000","CountryCode":"AI","ContinentName":"North America"},{"CountryName":"Antigua and Barbuda","CapitalName":"Saint John's","CapitalLatitude":"17.116666666666667","CapitalLongitude":"-61.850000","CountryCode":"AG","ContinentName":"North America"},{"CountryName":"Argentina","CapitalName":"Buenos Aires","CapitalLatitude":"-34.583333333333336","CapitalLongitude":"-58.666667","CountryCode":"AR","ContinentName":"South America"},{"CountryName":"Armenia","CapitalName":"Yerevan","CapitalLatitude":"40.166666666666664","CapitalLongitude":"44.500000","CountryCode":"AM","ContinentName":"Europe"},{"CountryName":"Aruba","CapitalName":"Oranjestad","CapitalLatitude":"12.516666666666667","CapitalLongitude":"-70.033333","CountryCode":"AW","ContinentName":"North America"},{"CountryName":"Australia","CapitalName":"Canberra","CapitalLatitude":"-35.266666666666666","CapitalLongitude":"149.133333","CountryCode":"AU","ContinentName":"Australia"},{"CountryName":"Austria","CapitalName":"Vienna","CapitalLatitude":"48.2","CapitalLongitude":"16.366667","CountryCode":"AT","ContinentName":"Europe"},{"CountryName":"Azerbaijan","CapitalName":"Baku","CapitalLatitude":"40.38333333333333","CapitalLongitude":"49.866667","CountryCode":"AZ","ContinentName":"Europe"},{"CountryName":"Bahamas","CapitalName":"Nassau","CapitalLatitude":"25.083333333333332","CapitalLongitude":"-77.350000","CountryCode":"BS","ContinentName":"North America"},{"CountryName":"Bahrain","CapitalName":"Manama","CapitalLatitude":"26.233333333333334","CapitalLongitude":"50.566667","CountryCode":"BH","ContinentName":"Asia"},{"CountryName":"Bangladesh","CapitalName":"Dhaka","CapitalLatitude":"23.716666666666665","CapitalLongitude":"90.400000","CountryCode":"BD","ContinentName":"Asia"},{"CountryName":"Barbados","CapitalName":"Bridgetown","CapitalLatitude":"13.1","CapitalLongitude":"-59.616667","CountryCode":"BB","ContinentName":"North America"},{"CountryName":"Belarus","CapitalName":"Minsk","CapitalLatitude":"53.9","CapitalLongitude":"27.566667","CountryCode":"BY","ContinentName":"Europe"},{"CountryName":"Belgium","CapitalName":"Brussels","CapitalLatitude":"50.833333333333336","CapitalLongitude":"4.333333","CountryCode":"BE","ContinentName":"Europe"},{"CountryName":"Belize","CapitalName":"Belmopan","CapitalLatitude":"17.25","CapitalLongitude":"-88.766667","CountryCode":"BZ","ContinentName":"Central America"},{"CountryName":"Benin","CapitalName":"Porto-Novo","CapitalLatitude":"6.483333333333333","CapitalLongitude":"2.616667","CountryCode":"BJ","ContinentName":"Africa"},{"CountryName":"Bermuda","CapitalName":"Hamilton","CapitalLatitude":"32.28333333333333","CapitalLongitude":"-64.783333","CountryCode":"BM","ContinentName":"North America"},{"CountryName":"Bhutan","CapitalName":"Thimphu","CapitalLatitude":"27.466666666666665","CapitalLongitude":"89.633333","CountryCode":"BT","ContinentName":"Asia"},{"CountryName":"Bolivia","CapitalName":"La Paz","CapitalLatitude":"-16.5","CapitalLongitude":"-68.150000","CountryCode":"BO","ContinentName":"South America"},{"CountryName":"Bosnia and Herzegovina","CapitalName":"Sarajevo","CapitalLatitude":"43.86666666666667","CapitalLongitude":"18.416667","CountryCode":"BA","ContinentName":"Europe"},{"CountryName":"Botswana","CapitalName":"Gaborone","CapitalLatitude":"-24.633333333333333","CapitalLongitude":"25.900000","CountryCode":"BW","ContinentName":"Africa"},{"CountryName":"Brazil","CapitalName":"Brasilia","CapitalLatitude":"-15.783333333333333","CapitalLongitude":"-47.916667","CountryCode":"BR","ContinentName":"South America"},{"CountryName":"British Virgin Islands","CapitalName":"Road Town","CapitalLatitude":"18.416666666666668","CapitalLongitude":"-64.616667","CountryCode":"VG","ContinentName":"North America"},{"CountryName":"Brunei Darussalam","CapitalName":"Bandar Seri Begawan","CapitalLatitude":"4.883333333333333","CapitalLongitude":"114.933333","CountryCode":"BN","ContinentName":"Asia"},{"CountryName":"Bulgaria","CapitalName":"Sofia","CapitalLatitude":"42.68333333333333","CapitalLongitude":"23.316667","CountryCode":"BG","ContinentName":"Europe"},{"CountryName":"Burkina Faso","CapitalName":"Ouagadougou","CapitalLatitude":"12.366666666666667","CapitalLongitude":"-1.516667","CountryCode":"BF","ContinentName":"Africa"},{"CountryName":"Myanmar","CapitalName":"Rangoon","CapitalLatitude":"16.8","CapitalLongitude":"96.150000","CountryCode":"MM","ContinentName":"Asia"},{"CountryName":"Burundi","CapitalName":"Bujumbura","CapitalLatitude":"-3.3666666666666667","CapitalLongitude":"29.350000","CountryCode":"BI","ContinentName":"Africa"},{"CountryName":"Cambodia","CapitalName":"Phnom Penh","CapitalLatitude":"11.55","CapitalLongitude":"104.916667","CountryCode":"KH","ContinentName":"Asia"},{"CountryName":"Cameroon","CapitalName":"Yaounde","CapitalLatitude":"3.8666666666666667","CapitalLongitude":"11.516667","CountryCode":"CM","ContinentName":"Africa"},{"CountryName":"Canada","CapitalName":"Ottawa","CapitalLatitude":"45.416666666666664","CapitalLongitude":"-75.700000","CountryCode":"CA","ContinentName":"Central America"},{"CountryName":"Cape Verde","CapitalName":"Praia","CapitalLatitude":"14.916666666666666","CapitalLongitude":"-23.516667","CountryCode":"CV","ContinentName":"Africa"},{"CountryName":"Cayman Islands","CapitalName":"George Town","CapitalLatitude":"19.3","CapitalLongitude":"-81.383333","CountryCode":"KY","ContinentName":"North America"},{"CountryName":"Central African Republic","CapitalName":"Bangui","CapitalLatitude":"4.366666666666666","CapitalLongitude":"18.583333","CountryCode":"CF","ContinentName":"Africa"},{"CountryName":"Chad","CapitalName":"N'Djamena","CapitalLatitude":"12.1","CapitalLongitude":"15.033333","CountryCode":"TD","ContinentName":"Africa"},{"CountryName":"Chile","CapitalName":"Santiago","CapitalLatitude":"-33.45","CapitalLongitude":"-70.666667","CountryCode":"CL","ContinentName":"South America"},{"CountryName":"China","CapitalName":"Beijing","CapitalLatitude":"39.916666666666664","CapitalLongitude":"116.383333","CountryCode":"CN","ContinentName":"Asia"},{"CountryName":"Christmas Island","CapitalName":"The Settlement","CapitalLatitude":"-10.416666666666666","CapitalLongitude":"105.716667","CountryCode":"CX","ContinentName":"Australia"},{"CountryName":"Cocos Islands","CapitalName":"West Island","CapitalLatitude":"-12.166666666666666","CapitalLongitude":"96.833333","CountryCode":"CC","ContinentName":"Australia"},{"CountryName":"Colombia","CapitalName":"Bogota","CapitalLatitude":"4.6","CapitalLongitude":"-74.083333","CountryCode":"CO","ContinentName":"South America"},{"CountryName":"Comoros","CapitalName":"Moroni","CapitalLatitude":"-11.7","CapitalLongitude":"43.233333","CountryCode":"KM","ContinentName":"Africa"},{"CountryName":"Democratic Republic of the Congo","CapitalName":"Kinshasa","CapitalLatitude":"-4.316666666666666","CapitalLongitude":"15.300000","CountryCode":"CD","ContinentName":"Africa"},{"CountryName":"Republic of Congo","CapitalName":"Brazzaville","CapitalLatitude":"-4.25","CapitalLongitude":"15.283333","CountryCode":"CG","ContinentName":"Africa"},{"CountryName":"Cook Islands","CapitalName":"Avarua","CapitalLatitude":"-21.2","CapitalLongitude":"-159.766667","CountryCode":"CK","ContinentName":"Australia"},{"CountryName":"Costa Rica","CapitalName":"San Jose","CapitalLatitude":"9.933333333333334","CapitalLongitude":"-84.083333","CountryCode":"CR","ContinentName":"Central America"},{"CountryName":"Cote d'Ivoire","CapitalName":"Yamoussoukro","CapitalLatitude":"6.816666666666666","CapitalLongitude":"-5.266667","CountryCode":"CI","ContinentName":"Africa"},{"CountryName":"Croatia","CapitalName":"Zagreb","CapitalLatitude":"45.8","CapitalLongitude":"16.000000","CountryCode":"HR","ContinentName":"Europe"},{"CountryName":"Cuba","CapitalName":"Havana","CapitalLatitude":"23.116666666666667","CapitalLongitude":"-82.350000","CountryCode":"CU","ContinentName":"North America"},{"CountryName":"Curaçao","CapitalName":"Willemstad","CapitalLatitude":"12.1","CapitalLongitude":"-68.916667","CountryCode":"CW","ContinentName":"North America"},{"CountryName":"Cyprus","CapitalName":"Nicosia","CapitalLatitude":"35.166666666666664","CapitalLongitude":"33.366667","CountryCode":"CY","ContinentName":"Europe"},{"CountryName":"Czech Republic","CapitalName":"Prague","CapitalLatitude":"50.083333333333336","CapitalLongitude":"14.466667","CountryCode":"CZ","ContinentName":"Europe"},{"CountryName":"Denmark","CapitalName":"Copenhagen","CapitalLatitude":"55.666666666666664","CapitalLongitude":"12.583333","CountryCode":"DK","ContinentName":"Europe"},{"CountryName":"Djibouti","CapitalName":"Djibouti","CapitalLatitude":"11.583333333333334","CapitalLongitude":"43.150000","CountryCode":"DJ","ContinentName":"Africa"},{"CountryName":"Dominica","CapitalName":"Roseau","CapitalLatitude":"15.3","CapitalLongitude":"-61.400000","CountryCode":"DM","ContinentName":"North America"},{"CountryName":"Dominican Republic","CapitalName":"Santo Domingo","CapitalLatitude":"18.466666666666665","CapitalLongitude":"-69.900000","CountryCode":"DO","ContinentName":"North America"},{"CountryName":"Ecuador","CapitalName":"Quito","CapitalLatitude":"-0.21666666666666667","CapitalLongitude":"-78.500000","CountryCode":"EC","ContinentName":"South America"},{"CountryName":"Egypt","CapitalName":"Cairo","CapitalLatitude":"30.05","CapitalLongitude":"31.250000","CountryCode":"EG","ContinentName":"Africa"},{"CountryName":"El Salvador","CapitalName":"San Salvador","CapitalLatitude":"13.7","CapitalLongitude":"-89.200000","CountryCode":"SV","ContinentName":"Central America"},{"CountryName":"Equatorial Guinea","CapitalName":"Malabo","CapitalLatitude":"3.75","CapitalLongitude":"8.783333","CountryCode":"GQ","ContinentName":"Africa"},{"CountryName":"Eritrea","CapitalName":"Asmara","CapitalLatitude":"15.333333333333334","CapitalLongitude":"38.933333","CountryCode":"ER","ContinentName":"Africa"},{"CountryName":"Estonia","CapitalName":"Tallinn","CapitalLatitude":"59.43333333333333","CapitalLongitude":"24.716667","CountryCode":"EE","ContinentName":"Europe"},{"CountryName":"Ethiopia","CapitalName":"Addis Ababa","CapitalLatitude":"9.033333333333333","CapitalLongitude":"38.700000","CountryCode":"ET","ContinentName":"Africa"},{"CountryName":"Falkland Islands","CapitalName":"Stanley","CapitalLatitude":"-51.7","CapitalLongitude":"-57.850000","CountryCode":"FK","ContinentName":"South America"},{"CountryName":"Faroe Islands","CapitalName":"Torshavn","CapitalLatitude":"62","CapitalLongitude":"-6.766667","CountryCode":"FO","ContinentName":"Europe"},{"CountryName":"Fiji","CapitalName":"Suva","CapitalLatitude":"-18.133333333333333","CapitalLongitude":"178.416667","CountryCode":"FJ","ContinentName":"Australia"},{"CountryName":"Finland","CapitalName":"Helsinki","CapitalLatitude":"60.166666666666664","CapitalLongitude":"24.933333","CountryCode":"FI","ContinentName":"Europe"},{"CountryName":"France","CapitalName":"Paris","CapitalLatitude":"48.86666666666667","CapitalLongitude":"2.333333","CountryCode":"FR","ContinentName":"Europe"},{"CountryName":"French Polynesia","CapitalName":"Papeete","CapitalLatitude":"-17.533333333333335","CapitalLongitude":"-149.566667","CountryCode":"PF","ContinentName":"Australia"},{"CountryName":"Gabon","CapitalName":"Libreville","CapitalLatitude":"0.38333333333333336","CapitalLongitude":"9.450000","CountryCode":"GA","ContinentName":"Africa"},{"CountryName":"The Gambia","CapitalName":"Banjul","CapitalLatitude":"13.45","CapitalLongitude":"-16.566667","CountryCode":"GM","ContinentName":"Africa"},{"CountryName":"Georgia","CapitalName":"Tbilisi","CapitalLatitude":"41.68333333333333","CapitalLongitude":"44.833333","CountryCode":"GE","ContinentName":"Europe"},{"CountryName":"Germany","CapitalName":"Berlin","CapitalLatitude":"52.516666666666666","CapitalLongitude":"13.400000","CountryCode":"DE","ContinentName":"Europe"},{"CountryName":"Ghana","CapitalName":"Accra","CapitalLatitude":"5.55","CapitalLongitude":"-0.216667","CountryCode":"GH","ContinentName":"Africa"},{"CountryName":"Gibraltar","CapitalName":"Gibraltar","CapitalLatitude":"36.13333333333333","CapitalLongitude":"-5.350000","CountryCode":"GI","ContinentName":"Europe"},{"CountryName":"Greece","CapitalName":"Athens","CapitalLatitude":"37.983333333333334","CapitalLongitude":"23.733333","CountryCode":"GR","ContinentName":"Europe"},{"CountryName":"Greenland","CapitalName":"Nuuk","CapitalLatitude":"64.18333333333334","CapitalLongitude":"-51.750000","CountryCode":"GL","ContinentName":"Central America"},{"CountryName":"Grenada","CapitalName":"Saint George's","CapitalLatitude":"12.05","CapitalLongitude":"-61.750000","CountryCode":"GD","ContinentName":"North America"},{"CountryName":"Guam","CapitalName":"Hagatna","CapitalLatitude":"13.466666666666667","CapitalLongitude":"144.733333","CountryCode":"GU","ContinentName":"Australia"},{"CountryName":"Guatemala","CapitalName":"Guatemala City","CapitalLatitude":"14.616666666666667","CapitalLongitude":"-90.516667","CountryCode":"GT","ContinentName":"Central America"},{"CountryName":"Guernsey","CapitalName":"Saint Peter Port","CapitalLatitude":"49.45","CapitalLongitude":"-2.533333","CountryCode":"GG","ContinentName":"Europe"},{"CountryName":"Guinea","CapitalName":"Conakry","CapitalLatitude":"9.5","CapitalLongitude":"-13.700000","CountryCode":"GN","ContinentName":"Africa"},{"CountryName":"Guinea-Bissau","CapitalName":"Bissau","CapitalLatitude":"11.85","CapitalLongitude":"-15.583333","CountryCode":"GW","ContinentName":"Africa"},{"CountryName":"Guyana","CapitalName":"Georgetown","CapitalLatitude":"6.8","CapitalLongitude":"-58.150000","CountryCode":"GY","ContinentName":"South America"},{"CountryName":"Haiti","CapitalName":"Port-au-Prince","CapitalLatitude":"18.533333333333335","CapitalLongitude":"-72.333333","CountryCode":"HT","ContinentName":"North America"},{"CountryName":"Vatican City","CapitalName":"Vatican City","CapitalLatitude":"41.9","CapitalLongitude":"12.450000","CountryCode":"VA","ContinentName":"Europe"},{"CountryName":"Honduras","CapitalName":"Tegucigalpa","CapitalLatitude":"14.1","CapitalLongitude":"-87.216667","CountryCode":"HN","ContinentName":"Central America"},{"CountryName":"Hungary","CapitalName":"Budapest","CapitalLatitude":"47.5","CapitalLongitude":"19.083333","CountryCode":"HU","ContinentName":"Europe"},{"CountryName":"Iceland","CapitalName":"Reykjavik","CapitalLatitude":"64.15","CapitalLongitude":"-21.950000","CountryCode":"IS","ContinentName":"Europe"},{"CountryName":"India","CapitalName":"New Delhi","CapitalLatitude":"28.6","CapitalLongitude":"77.200000","CountryCode":"IN","ContinentName":"Asia"},{"CountryName":"Indonesia","CapitalName":"Jakarta","CapitalLatitude":"-6.166666666666667","CapitalLongitude":"106.816667","CountryCode":"ID","ContinentName":"Asia"},{"CountryName":"Iran","CapitalName":"Tehran","CapitalLatitude":"35.7","CapitalLongitude":"51.416667","CountryCode":"IR","ContinentName":"Asia"},{"CountryName":"Iraq","CapitalName":"Baghdad","CapitalLatitude":"33.333333333333336","CapitalLongitude":"44.400000","CountryCode":"IQ","ContinentName":"Asia"},{"CountryName":"Ireland","CapitalName":"Dublin","CapitalLatitude":"53.31666666666667","CapitalLongitude":"-6.233333","CountryCode":"IE","ContinentName":"Europe"},{"CountryName":"Isle of Man","CapitalName":"Douglas","CapitalLatitude":"54.15","CapitalLongitude":"-4.483333","CountryCode":"IM","ContinentName":"Europe"},{"CountryName":"Israel","CapitalName":"Jerusalem","CapitalLatitude":"31.76787255","CapitalLongitude":"35.0220108","CountryCode":"IL","ContinentName":"Asia"},{"CountryName":"Italy","CapitalName":"Rome","CapitalLatitude":"41.9","CapitalLongitude":"12.483333","CountryCode":"IT","ContinentName":"Europe"},{"CountryName":"Jamaica","CapitalName":"Kingston","CapitalLatitude":"18","CapitalLongitude":"-76.800000","CountryCode":"JM","ContinentName":"North America"},{"CountryName":"Japan","CapitalName":"Tokyo","CapitalLatitude":"35.68333333333333","CapitalLongitude":"139.750000","CountryCode":"JP","ContinentName":"Asia"},{"CountryName":"Jersey","CapitalName":"Saint Helier","CapitalLatitude":"49.18333333333333","CapitalLongitude":"-2.100000","CountryCode":"JE","ContinentName":"Europe"},{"CountryName":"Jordan","CapitalName":"Amman","CapitalLatitude":"31.95","CapitalLongitude":"35.933333","CountryCode":"JO","ContinentName":"Asia"},{"CountryName":"Kazakhstan","CapitalName":"Astana","CapitalLatitude":"51.166666666666664","CapitalLongitude":"71.416667","CountryCode":"KZ","ContinentName":"Asia"},{"CountryName":"Kenya","CapitalName":"Nairobi","CapitalLatitude":"-1.2833333333333332","CapitalLongitude":"36.816667","CountryCode":"KE","ContinentName":"Africa"},{"CountryName":"Kiribati","CapitalName":"Tarawa","CapitalLatitude":"-0.8833333333333333","CapitalLongitude":"169.533333","CountryCode":"KI","ContinentName":"Australia"},{"CountryName":"North Korea","CapitalName":"Pyongyang","CapitalLatitude":"39.016666666666666","CapitalLongitude":"125.750000","CountryCode":"KP","ContinentName":"Asia"},{"CountryName":"South Korea","CapitalName":"Seoul","CapitalLatitude":"37.55","CapitalLongitude":"126.983333","CountryCode":"KR","ContinentName":"Asia"},{"CountryName":"Kosovo","CapitalName":"Pristina","CapitalLatitude":"42.666666666666664","CapitalLongitude":"21.166667","CountryCode":"KO","ContinentName":"Europe"},{"CountryName":"Kuwait","CapitalName":"Kuwait City","CapitalLatitude":"29.366666666666667","CapitalLongitude":"47.966667","CountryCode":"KW","ContinentName":"Asia"},{"CountryName":"Kyrgyzstan","CapitalName":"Bishkek","CapitalLatitude":"42.86666666666667","CapitalLongitude":"74.600000","CountryCode":"KG","ContinentName":"Asia"},{"CountryName":"Laos","CapitalName":"Vientiane","CapitalLatitude":"17.966666666666665","CapitalLongitude":"102.600000","CountryCode":"LA","ContinentName":"Asia"},{"CountryName":"Latvia","CapitalName":"Riga","CapitalLatitude":"56.95","CapitalLongitude":"24.100000","CountryCode":"LV","ContinentName":"Europe"},{"CountryName":"Lebanon","CapitalName":"Beirut","CapitalLatitude":"33.86666666666667","CapitalLongitude":"35.500000","CountryCode":"LB","ContinentName":"Asia"},{"CountryName":"Lesotho","CapitalName":"Maseru","CapitalLatitude":"-29.316666666666666","CapitalLongitude":"27.483333","CountryCode":"LS","ContinentName":"Africa"},{"CountryName":"Liberia","CapitalName":"Monrovia","CapitalLatitude":"6.3","CapitalLongitude":"-10.800000","CountryCode":"LR","ContinentName":"Africa"},{"CountryName":"Libya","CapitalName":"Tripoli","CapitalLatitude":"32.88333333333333","CapitalLongitude":"13.166667","CountryCode":"LY","ContinentName":"Africa"},{"CountryName":"Liechtenstein","CapitalName":"Vaduz","CapitalLatitude":"47.13333333333333","CapitalLongitude":"9.516667","CountryCode":"LI","ContinentName":"Europe"},{"CountryName":"Lithuania","CapitalName":"Vilnius","CapitalLatitude":"54.68333333333333","CapitalLongitude":"25.316667","CountryCode":"LT","ContinentName":"Europe"},{"CountryName":"Luxembourg","CapitalName":"Luxembourg","CapitalLatitude":"49.6","CapitalLongitude":"6.116667","CountryCode":"LU","ContinentName":"Europe"},{"CountryName":"Macedonia","CapitalName":"Skopje","CapitalLatitude":"42","CapitalLongitude":"21.433333","CountryCode":"MK","ContinentName":"Europe"},{"CountryName":"Madagascar","CapitalName":"Antananarivo","CapitalLatitude":"-18.916666666666668","CapitalLongitude":"47.516667","CountryCode":"MG","ContinentName":"Africa"},{"CountryName":"Malawi","CapitalName":"Lilongwe","CapitalLatitude":"-13.966666666666667","CapitalLongitude":"33.783333","CountryCode":"MW","ContinentName":"Africa"},{"CountryName":"Malaysia","CapitalName":"Kuala Lumpur","CapitalLatitude":"3.1666666666666665","CapitalLongitude":"101.700000","CountryCode":"MY","ContinentName":"Asia"},{"CountryName":"Maldives","CapitalName":"Male","CapitalLatitude":"4.166666666666667","CapitalLongitude":"73.500000","CountryCode":"MV","ContinentName":"Asia"},{"CountryName":"Mali","CapitalName":"Bamako","CapitalLatitude":"12.65","CapitalLongitude":"-8.000000","CountryCode":"ML","ContinentName":"Africa"},{"CountryName":"Malta","CapitalName":"Valletta","CapitalLatitude":"35.88333333333333","CapitalLongitude":"14.500000","CountryCode":"MT","ContinentName":"Europe"},{"CountryName":"Marshall Islands","CapitalName":"Majuro","CapitalLatitude":"7.1","CapitalLongitude":"171.383333","CountryCode":"MH","ContinentName":"Australia"},{"CountryName":"Mauritania","CapitalName":"Nouakchott","CapitalLatitude":"18.066666666666666","CapitalLongitude":"-15.966667","CountryCode":"MR","ContinentName":"Africa"},{"CountryName":"Mauritius","CapitalName":"Port Louis","CapitalLatitude":"-20.15","CapitalLongitude":"57.483333","CountryCode":"MU","ContinentName":"Africa"},{"CountryName":"Mexico","CapitalName":"Mexico City","CapitalLatitude":"19.433333333333334","CapitalLongitude":"-99.133333","CountryCode":"MX","ContinentName":"Central America"},{"CountryName":"Federated States of Micronesia","CapitalName":"Palikir","CapitalLatitude":"6.916666666666667","CapitalLongitude":"158.150000","CountryCode":"FM","ContinentName":"Australia"},{"CountryName":"Moldova","CapitalName":"Chisinau","CapitalLatitude":"47","CapitalLongitude":"28.850000","CountryCode":"MD","ContinentName":"Europe"},{"CountryName":"Monaco","CapitalName":"Monaco","CapitalLatitude":"43.733333333333334","CapitalLongitude":"7.416667","CountryCode":"MC","ContinentName":"Europe"},{"CountryName":"Mongolia","CapitalName":"Ulaanbaatar","CapitalLatitude":"47.916666666666664","CapitalLongitude":"106.916667","CountryCode":"MN","ContinentName":"Asia"},{"CountryName":"Montenegro","CapitalName":"Podgorica","CapitalLatitude":"42.43333333333333","CapitalLongitude":"19.266667","CountryCode":"ME","ContinentName":"Europe"},{"CountryName":"Montserrat","CapitalName":"Plymouth","CapitalLatitude":"16.7","CapitalLongitude":"-62.216667","CountryCode":"MS","ContinentName":"North America"},{"CountryName":"Morocco","CapitalName":"Rabat","CapitalLatitude":"34.016666666666666","CapitalLongitude":"-6.816667","CountryCode":"MA","ContinentName":"Africa"},{"CountryName":"Mozambique","CapitalName":"Maputo","CapitalLatitude":"-25.95","CapitalLongitude":"32.583333","CountryCode":"MZ","ContinentName":"Africa"},{"CountryName":"Namibia","CapitalName":"Windhoek","CapitalLatitude":"-22.566666666666666","CapitalLongitude":"17.083333","CountryCode":"NA","ContinentName":"Africa"},{"CountryName":"Nepal","CapitalName":"Kathmandu","CapitalLatitude":"27.716666666666665","CapitalLongitude":"85.316667","CountryCode":"NP","ContinentName":"Asia"},{"CountryName":"Netherlands","CapitalName":"Amsterdam","CapitalLatitude":"52.35","CapitalLongitude":"4.916667","CountryCode":"NL","ContinentName":"Europe"},{"CountryName":"New Caledonia","CapitalName":"Noumea","CapitalLatitude":"-22.266666666666666","CapitalLongitude":"166.450000","CountryCode":"NC","ContinentName":"Australia"},{"CountryName":"New Zealand","CapitalName":"Wellington","CapitalLatitude":"-41.3","CapitalLongitude":"174.783333","CountryCode":"NZ","ContinentName":"Australia"},{"CountryName":"Nicaragua","CapitalName":"Managua","CapitalLatitude":"12.133333333333333","CapitalLongitude":"-86.250000","CountryCode":"NI","ContinentName":"Central America"},{"CountryName":"Niger","CapitalName":"Niamey","CapitalLatitude":"13.516666666666667","CapitalLongitude":"2.116667","CountryCode":"NE","ContinentName":"Africa"},{"CountryName":"Nigeria","CapitalName":"Abuja","CapitalLatitude":"9.083333333333334","CapitalLongitude":"7.533333","CountryCode":"NG","ContinentName":"Africa"},{"CountryName":"Niue","CapitalName":"Alofi","CapitalLatitude":"-19.016666666666666","CapitalLongitude":"-169.916667","CountryCode":"NU","ContinentName":"Australia"},{"CountryName":"Norfolk Island","CapitalName":"Kingston","CapitalLatitude":"-29.05","CapitalLongitude":"167.966667","CountryCode":"NF","ContinentName":"Australia"},{"CountryName":"Northern Mariana Islands","CapitalName":"Saipan","CapitalLatitude":"15.2","CapitalLongitude":"145.750000","CountryCode":"MP","ContinentName":"Australia"},{"CountryName":"Norway","CapitalName":"Oslo","CapitalLatitude":"59.916666666666664","CapitalLongitude":"10.750000","CountryCode":"NO","ContinentName":"Europe"},{"CountryName":"Oman","CapitalName":"Muscat","CapitalLatitude":"23.616666666666667","CapitalLongitude":"58.583333","CountryCode":"OM","ContinentName":"Asia"},{"CountryName":"Pakistan","CapitalName":"Islamabad","CapitalLatitude":"33.68333333333333","CapitalLongitude":"73.050000","CountryCode":"PK","ContinentName":"Asia"},{"CountryName":"Palau","CapitalName":"Melekeok","CapitalLatitude":"7.483333333333333","CapitalLongitude":"134.633333","CountryCode":"PW","ContinentName":"Australia"},{"CountryName":"Panama","CapitalName":"Panama City","CapitalLatitude":"8.966666666666667","CapitalLongitude":"-79.533333","CountryCode":"PA","ContinentName":"Central America"},{"CountryName":"Papua New Guinea","CapitalName":"Port Moresby","CapitalLatitude":"-9.45","CapitalLongitude":"147.183333","CountryCode":"PG","ContinentName":"Australia"},{"CountryName":"Paraguay","CapitalName":"Asuncion","CapitalLatitude":"-25.266666666666666","CapitalLongitude":"-57.666667","CountryCode":"PY","ContinentName":"South America"},{"CountryName":"Peru","CapitalName":"Lima","CapitalLatitude":"-12.05","CapitalLongitude":"-77.050000","CountryCode":"PE","ContinentName":"South America"},{"CountryName":"Philippines","CapitalName":"Manila","CapitalLatitude":"14.6","CapitalLongitude":"120.966667","CountryCode":"PH","ContinentName":"Asia"},{"CountryName":"Pitcairn Islands","CapitalName":"Adamstown","CapitalLatitude":"-25.066666666666666","CapitalLongitude":"-130.083333","CountryCode":"PN","ContinentName":"Australia"},{"CountryName":"Poland","CapitalName":"Warsaw","CapitalLatitude":"52.25","CapitalLongitude":"21.000000","CountryCode":"PL","ContinentName":"Europe"},{"CountryName":"Portugal","CapitalName":"Lisbon","CapitalLatitude":"38.71666666666667","CapitalLongitude":"-9.133333","CountryCode":"PT","ContinentName":"Europe"},{"CountryName":"Puerto Rico","CapitalName":"San Juan","CapitalLatitude":"18.466666666666665","CapitalLongitude":"-66.116667","CountryCode":"PR","ContinentName":"North America"},{"CountryName":"Qatar","CapitalName":"Doha","CapitalLatitude":"25.283333333333335","CapitalLongitude":"51.533333","CountryCode":"QA","ContinentName":"Asia"},{"CountryName":"Romania","CapitalName":"Bucharest","CapitalLatitude":"44.43333333333333","CapitalLongitude":"26.100000","CountryCode":"RO","ContinentName":"Europe"},{"CountryName":"Russia","CapitalName":"Moscow","CapitalLatitude":"55.75","CapitalLongitude":"37.600000","CountryCode":"RU","ContinentName":"Europe"},{"CountryName":"Rwanda","CapitalName":"Kigali","CapitalLatitude":"-1.95","CapitalLongitude":"30.050000","CountryCode":"RW","ContinentName":"Africa"},{"CountryName":"Saint Barthelemy","CapitalName":"Gustavia","CapitalLatitude":"17.883333333333333","CapitalLongitude":"-62.850000","CountryCode":"BL","ContinentName":"North America"},{"CountryName":"Saint Helena","CapitalName":"Jamestown","CapitalLatitude":"-15.933333333333334","CapitalLongitude":"-5.716667","CountryCode":"SH","ContinentName":"Africa"},{"CountryName":"Saint Kitts and Nevis","CapitalName":"Basseterre","CapitalLatitude":"17.3","CapitalLongitude":"-62.716667","CountryCode":"KN","ContinentName":"North America"},{"CountryName":"Saint Lucia","CapitalName":"Castries","CapitalLatitude":"14","CapitalLongitude":"-61.000000","CountryCode":"LC","ContinentName":"North America"},{"CountryName":"Saint Pierre and Miquelon","CapitalName":"Saint-Pierre","CapitalLatitude":"46.766666666666666","CapitalLongitude":"-56.183333","CountryCode":"PM","ContinentName":"Central America"},{"CountryName":"Saint Vincent and the Grenadines","CapitalName":"Kingstown","CapitalLatitude":"13.133333333333333","CapitalLongitude":"-61.216667","CountryCode":"VC","ContinentName":"Central America"},{"CountryName":"Samoa","CapitalName":"Apia","CapitalLatitude":"-13.816666666666666","CapitalLongitude":"-171.766667","CountryCode":"WS","ContinentName":"Australia"},{"CountryName":"San Marino","CapitalName":"San Marino","CapitalLatitude":"43.93333333333333","CapitalLongitude":"12.416667","CountryCode":"SM","ContinentName":"Europe"},{"CountryName":"Sao Tome and Principe","CapitalName":"Sao Tome","CapitalLatitude":"0.3333333333333333","CapitalLongitude":"6.733333","CountryCode":"ST","ContinentName":"Africa"},{"CountryName":"Saudi Arabia","CapitalName":"Riyadh","CapitalLatitude":"24.65","CapitalLongitude":"46.700000","CountryCode":"SA","ContinentName":"Asia"},{"CountryName":"Senegal","CapitalName":"Dakar","CapitalLatitude":"14.733333333333333","CapitalLongitude":"-17.633333","CountryCode":"SN","ContinentName":"Africa"},{"CountryName":"Serbia","CapitalName":"Belgrade","CapitalLatitude":"44.833333333333336","CapitalLongitude":"20.500000","CountryCode":"RS","ContinentName":"Europe"},{"CountryName":"Seychelles","CapitalName":"Victoria","CapitalLatitude":"-4.616666666666667","CapitalLongitude":"55.450000","CountryCode":"SC","ContinentName":"Africa"},{"CountryName":"Sierra Leone","CapitalName":"Freetown","CapitalLatitude":"8.483333333333333","CapitalLongitude":"-13.233333","CountryCode":"SL","ContinentName":"Africa"},{"CountryName":"Singapore","CapitalName":"Singapore","CapitalLatitude":"1.2833333333333332","CapitalLongitude":"103.850000","CountryCode":"SG","ContinentName":"Asia"},{"CountryName":"Sint Maarten","CapitalName":"Philipsburg","CapitalLatitude":"18.016666666666666","CapitalLongitude":"-63.033333","CountryCode":"SX","ContinentName":"North America"},{"CountryName":"Slovakia","CapitalName":"Bratislava","CapitalLatitude":"48.15","CapitalLongitude":"17.116667","CountryCode":"SK","ContinentName":"Europe"},{"CountryName":"Slovenia","CapitalName":"Ljubljana","CapitalLatitude":"46.05","CapitalLongitude":"14.516667","CountryCode":"SI","ContinentName":"Europe"},{"CountryName":"Solomon Islands","CapitalName":"Honiara","CapitalLatitude":"-9.433333333333334","CapitalLongitude":"159.950000","CountryCode":"SB","ContinentName":"Australia"},{"CountryName":"Somalia","CapitalName":"Mogadishu","CapitalLatitude":"2.066666666666667","CapitalLongitude":"45.333333","CountryCode":"SO","ContinentName":"Africa"},{"CountryName":"South Africa","CapitalName":"Pretoria","CapitalLatitude":"-25.7","CapitalLongitude":"28.216667","CountryCode":"ZA","ContinentName":"Africa"},{"CountryName":"South Sudan","CapitalName":"Juba","CapitalLatitude":"4.85","CapitalLongitude":"31.616667","CountryCode":"SS","ContinentName":"Africa"},{"CountryName":"Spain","CapitalName":"Madrid","CapitalLatitude":"40.4","CapitalLongitude":"-3.683333","CountryCode":"ES","ContinentName":"Europe"},{"CountryName":"Sri Lanka","CapitalName":"Colombo","CapitalLatitude":"6.916666666666667","CapitalLongitude":"79.833333","CountryCode":"LK","ContinentName":"Asia"},{"CountryName":"Sudan","CapitalName":"Khartoum","CapitalLatitude":"15.6","CapitalLongitude":"32.533333","CountryCode":"SD","ContinentName":"Africa"},{"CountryName":"Suriname","CapitalName":"Paramaribo","CapitalLatitude":"5.833333333333333","CapitalLongitude":"-55.166667","CountryCode":"SR","ContinentName":"South America"},{"CountryName":"Svalbard","CapitalName":"Longyearbyen","CapitalLatitude":"78.21666666666667","CapitalLongitude":"15.633333","CountryCode":"SJ","ContinentName":"Europe"},{"CountryName":"Swaziland","CapitalName":"Mbabane","CapitalLatitude":"-26.316666666666666","CapitalLongitude":"31.133333","CountryCode":"SZ","ContinentName":"Africa"},{"CountryName":"Sweden","CapitalName":"Stockholm","CapitalLatitude":"59.333333333333336","CapitalLongitude":"18.050000","CountryCode":"SE","ContinentName":"Europe"},{"CountryName":"Switzerland","CapitalName":"Bern","CapitalLatitude":"46.916666666666664","CapitalLongitude":"7.466667","CountryCode":"CH","ContinentName":"Europe"},{"CountryName":"Syria","CapitalName":"Damascus","CapitalLatitude":"33.5","CapitalLongitude":"36.300000","CountryCode":"SY","ContinentName":"Asia"},{"CountryName":"Taiwan","CapitalName":"Taipei","CapitalLatitude":"25.033333333333335","CapitalLongitude":"121.516667","CountryCode":"TW","ContinentName":"Asia"},{"CountryName":"Tajikistan","CapitalName":"Dushanbe","CapitalLatitude":"38.55","CapitalLongitude":"68.766667","CountryCode":"TJ","ContinentName":"Asia"},{"CountryName":"Tanzania","CapitalName":"Dar es Salaam","CapitalLatitude":"-6.8","CapitalLongitude":"39.283333","CountryCode":"TZ","ContinentName":"Africa"},{"CountryName":"Thailand","CapitalName":"Bangkok","CapitalLatitude":"13.75","CapitalLongitude":"100.516667","CountryCode":"TH","ContinentName":"Asia"},{"CountryName":"Timor-Leste","CapitalName":"Dili","CapitalLatitude":"-8.583333333333334","CapitalLongitude":"125.600000","CountryCode":"TL","ContinentName":"Asia"},{"CountryName":"Togo","CapitalName":"Lome","CapitalLatitude":"6.116666666666666","CapitalLongitude":"1.216667","CountryCode":"TG","ContinentName":"Africa"},{"CountryName":"Tonga","CapitalName":"Nuku'alofa","CapitalLatitude":"-21.133333333333333","CapitalLongitude":"-175.200000","CountryCode":"TO","ContinentName":"Australia"},{"CountryName":"Trinidad and Tobago","CapitalName":"Port of Spain","CapitalLatitude":"10.65","CapitalLongitude":"-61.516667","CountryCode":"TT","ContinentName":"North America"},{"CountryName":"Tunisia","CapitalName":"Tunis","CapitalLatitude":"36.8","CapitalLongitude":"10.183333","CountryCode":"TN","ContinentName":"Africa"},{"CountryName":"Turkey","CapitalName":"Ankara","CapitalLatitude":"39.93333333333333","CapitalLongitude":"32.866667","CountryCode":"TR","ContinentName":"Europe"},{"CountryName":"Turkmenistan","CapitalName":"Ashgabat","CapitalLatitude":"37.95","CapitalLongitude":"58.383333","CountryCode":"TM","ContinentName":"Asia"},{"CountryName":"Turks and Caicos Islands","CapitalName":"Grand Turk","CapitalLatitude":"21.466666666666665","CapitalLongitude":"-71.133333","CountryCode":"TC","ContinentName":"North America"},{"CountryName":"Tuvalu","CapitalName":"Funafuti","CapitalLatitude":"-8.516666666666667","CapitalLongitude":"179.216667","CountryCode":"TV","ContinentName":"Australia"},{"CountryName":"Uganda","CapitalName":"Kampala","CapitalLatitude":"0.31666666666666665","CapitalLongitude":"32.550000","CountryCode":"UG","ContinentName":"Africa"},{"CountryName":"Ukraine","CapitalName":"Kyiv","CapitalLatitude":"50.43333333333333","CapitalLongitude":"30.516667","CountryCode":"UA","ContinentName":"Europe"},{"CountryName":"United Arab Emirates","CapitalName":"Abu Dhabi","CapitalLatitude":"24.466666666666665","CapitalLongitude":"54.366667","CountryCode":"AE","ContinentName":"Asia"},{"CountryName":"United Kingdom","CapitalName":"London","CapitalLatitude":"51.5","CapitalLongitude":"-0.083333","CountryCode":"GB","ContinentName":"Europe"},{"CountryName":"United States","CapitalName":"Washington","CapitalLatitude":"38.883333","CapitalLongitude":"-77.009003","CountryCode":"US","ContinentName":"US"},{"CountryName":"Uruguay","CapitalName":"Montevideo","CapitalLatitude":"-34.85","CapitalLongitude":"-56.166667","CountryCode":"UY","ContinentName":"South America"},{"CountryName":"Uzbekistan","CapitalName":"Tashkent","CapitalLatitude":"41.31666666666667","CapitalLongitude":"69.250000","CountryCode":"UZ","ContinentName":"Asia"},{"CountryName":"Vanuatu","CapitalName":"Port-Vila","CapitalLatitude":"-17.733333333333334","CapitalLongitude":"168.316667","CountryCode":"VU","ContinentName":"Australia"},{"CountryName":"Venezuela","CapitalName":"Caracas","CapitalLatitude":"10.483333333333333","CapitalLongitude":"-66.866667","CountryCode":"VE","ContinentName":"South America"},{"CountryName":"Viet Nam","CapitalName":"Hanoi","CapitalLatitude":"21.033333333333335","CapitalLongitude":"105.850000","CountryCode":"VN","ContinentName":"Asia"},{"CountryName":"US Virgin Islands","CapitalName":"Charlotte Amalie","CapitalLatitude":"18.35","CapitalLongitude":"-64.933333","CountryCode":"VI","ContinentName":"North America"},{"CountryName":"Wallis and Futuna","CapitalName":"Mata-Utu","CapitalLatitude":"-13.95","CapitalLongitude":"-171.933333","CountryCode":"WF","ContinentName":"Australia"},{"CountryName":"Yemen","CapitalName":"Sanaa","CapitalLatitude":"15.35","CapitalLongitude":"44.200000","CountryCode":"YE","ContinentName":"Asia"},{"CountryName":"Zambia","CapitalName":"Lusaka","CapitalLatitude":"-15.416666666666666","CapitalLongitude":"28.283333","CountryCode":"ZM","ContinentName":"Africa"},{"CountryName":"Zimbabwe","CapitalName":"Harare","CapitalLatitude":"-17.816666666666666","CapitalLongitude":"31.033333","CountryCode":"ZW","ContinentName":"Africa"},{"CountryName":"US Minor Outlying Islands","CapitalName":"Washington","CapitalLatitude":"-77.009003","CapitalLongitude":"38.883333","CountryCode":"-77.000000","ContinentName":"UM"},{"CountryName":"Antarctica","CapitalName":"N/A","CapitalLatitude":"0","CapitalLongitude":"0.000000","CountryCode":"AQ","ContinentName":"Antarctica"},{"CountryName":"Northern Cyprus","CapitalName":"North Nicosia","CapitalLatitude":"35.183333","CapitalLongitude":"33.366667","CountryCode":"NULL","ContinentName":"Europe"},{"CountryName":"Hong Kong","CapitalName":"N/A","CapitalLatitude":"22.396428","CapitalLongitude":"114.109497","CountryCode":"HK","ContinentName":"Asia"},{"CountryName":"Heard Island and McDonald Islands","CapitalName":"N/A","CapitalLatitude":"0","CapitalLongitude":"0.000000","CountryCode":"HM","ContinentName":"Antarctica"},{"CountryName":"British Indian Ocean Territory","CapitalName":"Diego Garcia","CapitalLatitude":"-7.3","CapitalLongitude":"72.400000","CountryCode":"IO","ContinentName":"Africa"},{"CountryName":"Macau","CapitalName":"N/A","CapitalLatitude":"0","CapitalLongitude":"0.000000","CountryCode":"MO","ContinentName":"Asia"}]

================================================
FILE: Android-code/app/src/main/assets/full_licenses.html
================================================
<!--
  ~ Copyright (c) 2012-2016 Arne Schwabe
  ~ Distributed under the GNU GPL v2 with additional terms. For full terms see the file doc/LICENSE.txt
  -->

<h2 id="ics-openvpn">OpenVPN for Android</h2>
<p>
The name ics-openvpn and OpenVPN for Android refer to the same program.
OpenVPN for Android is distributed under the GPL license version 2 (see Below)
with the following clarification/additional terms of what constitues "deriviate work": </p>

<p>Using/including any part of ics-openvpn, especially using/including any part of the
de.blinkt.openvpn class hierarchy, creates derivative work of ics-openvpn.
Aadditionally, the normal definitions of derivative work apply.</p>

<p>  Special exception for linking ics-openvpn with OpenSSL:</p>

<p>  In addition, as a special exception, Arne Schwabe gives
  permission to link the code of this program with the OpenSSL
  library (or with modified versions of OpenSSL that use the same
  license as OpenSSL), and distribute linked combinations including
  the two.  You must obey the GNU General Public License in all
  respects for all of the code used other than OpenSSL.  If you modify
  this file, you may extend this exception to your version of the
  file, but you are not obligated to do so.  If you do not wish to
  do so, delete this exception statement from your version.</p>

<h2 id="lzo">LZO license</h2>
<p>  LZO is Copyright (C) Markus F.X.J. Oberhumer,
  and is licensed under the GPL.</p>

<p>  Special exception for linking OpenVPN with both OpenSSL and LZO:</p>

<p>  Hereby I grant a special exception to the OpenVPN project 
  (http://openvpn.net/) to link the LZO library with 
  the OpenSSL library (http://www.openssl.org).
 
  Markus F.X.J. Oberhumer
</p>
<h2> Google Breakpad</h2>
 <p>Copyright (c) 2006, Google Inc.<br />
     All rights reserved.</p>

    <p>Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:</p>

    <p>1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.</p>
    <p>2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.</p>
    <p>3. Neither the name of the &lt;ORGANIZATION&gt; nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.</p>

    <p>THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</p>

<h2>Bouncy Castle</h2>
<p>
Copyright (c) 2000-2013 The Legion Of The Bouncy Castle (http://www.bouncycastle.org)
<p>
Permission is hereby granted, free of charge, to any person obtaining a copy of this software 
and associated documentation files (the "Software"), to deal in the Software without restriction, 
including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, 
and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
<p>
The above copyright notice and this permission notice shall be included in all copies or substantial
portions of the Software.
<p>
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.


    <h2 id="GPL2">GPL Version 2, June 1991</h2>

    <p>Copyright (C) 1989, 1991 Free Software Foundation, Inc.<br />
     59 Temple Place, Suite 330, Boston, MA 02111-1307 USA</p>

    <p>Everyone is permitted to copy and distribute verbatim copies<br />
     of this license document, but changing it is not allowed.</p>

    <p><strong>Preamble</strong></p>

    <p>The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Library General Public License instead.) You can apply it to your programs, too.</p>

    <p>When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things.</p>

    <p>To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it.</p>

    <p>For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights.</p>

    <p>We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software.</p>

    <p>Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations.</p>

    <p>Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all.</p>

    <p>The precise terms and conditions for copying, distribution and modification follow.</p>

    <p><strong>TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION</strong></p>

    <p><strong>0</strong>. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you".</p>

    <p>Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does.</p>

    <p><strong>1</strong>. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program.</p>

    <p>You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee.</p>

    <p><strong>2</strong>. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions:</p>

    <blockquote>
      <p>a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change.</p>

      <p>b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License.</p>

      <p>c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.)</p>
    </blockquote>

    <p>These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it.</p>

    <p>Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program.</p>

    <p>In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License.</p>

    <p><strong>3</strong>. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following:</p>

    <blockquote>
      <p>a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or,</p>

      <p>b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or,</p>

      <p>c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.)</p>
    </blockquote>

    <p>The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable.</p>

    <p>If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code.</p>

    <p><strong>4</strong>. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance.</p>

    <p><strong>5</strong>. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it.</p>

    <p><strong>6</strong>. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License.</p>

    <p><strong>7</strong>. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program.</p>

    <p>If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances.</p>

    <p>It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice.</p>

    <p>This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License.</p>

    <p><strong>8</strong>. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License.</p>

    <p><strong>9</strong>. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.</p>

    <p>Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation.</p>

    <p><strong>10</strong>. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally.</p>

    <p><strong>NO WARRANTY</strong></p>

    <p><strong>11</strong>. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.</p>

    <p><strong>12</strong>. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.</p>

<p>END OF TERMS AND CONDITIONS</p>

<h2 id="#openssl">OpenSSL</h2>
<p>  The OpenSSL toolkit stays under a dual license, i.e. both the conditions of
  the OpenSSL License and the original SSLeay license apply to the toolkit.
  See below for the actual license texts. Actually both licenses are BSD-style
  Open Source licenses. In case of any license issues related to OpenSSL
  please contact openssl-core@openssl.org.</p>
<pre>
/* ====================================================================
 * Copyright (c) 1998-2003 The OpenSSL Project.  All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer. 
 *
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in
 *    the documentation and/or other materials provided with the
 *    distribution.
 *
 * 3. All advertising materials mentioning features or use of this
 *    software must display the following acknowledgment:
 *    "This product includes software developed by the OpenSSL Project
 *    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
 *
 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
 *    endorse or promote products derived from this software without
 *    prior written permission. For written permission, please contact
 *    openssl-core@openssl.org.
 *
 * 5. Products derived from this software may not be called "OpenSSL"
 *    nor may "OpenSSL" appear in their names without prior written
 *    permission of the OpenSSL Project.
 *
 * 6. Redistributions of any form whatsoever must retain the following
 *    acknowledgment:
 *    "This product includes software developed by the OpenSSL Project
 *    for use in the OpenSSL Toolkit (http://www.openssl.org/)"
 *
 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
 * OF THE POSSIBILITY OF SUCH DAMAGE.
 * ====================================================================
 *
 * This product includes cryptographic software written by Eric Young
 * (eay@cryptsoft.com).  This product includes software written by Tim
 * Hudson (tjh@cryptsoft.com).
 *
 */
</pre>

<h3> Original SSLeay License</h3>
<pre>
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
 * All rights reserved.
 *
 * This package is an SSL implementation written
 * by Eric Young (eay@cryptsoft.com).
 * The implementation was written so as to conform with Netscapes SSL.
 * 
 * This library is free for commercial and non-commercial use as long as
 * the following conditions are aheared to.  The following conditions
 * apply to all code found in this distribution, be it the RC4, RSA,
 * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
 * included with this distribution is covered by the same copyright terms
 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
 * 
 * Copyright remains Eric Young's, and as such any Copyright notices in
 * the code are not to be removed.
 * If this package is used in a product, Eric Young should be given attribution
 * as the author of the parts of the library used.
 * This can be in the form of a textual message at program startup or
 * in documentation (online or textual) provided with the package.
 * 
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 * 3. All advertising materials mentioning features or use of this software
 *    must display the following acknowledgement:
 *    "This product includes cryptographic software written by
 *     Eric Young (eay@cryptsoft.com)"
 *    The word 'cryptographic' can be left out if the rouines from the library
 *    being used are not cryptographic related :-).
 * 4. If you include any Windows specific code (or a derivative thereof) from 
 *    the apps directory (application code) you must include an acknowledgement:
 *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
 * 
 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 * SUCH DAMAGE.
 * 
 * The licence and distribution terms for any publically available version or
 * derivative of this code cannot be changed.  i.e. this code cannot simply be
 * copied and put under another distribution licence
 * [including the GNU Public Licence.]
 */
</pre>


================================================
FILE: Android-code/app/src/main/assets/world_map.geo.json
================================================
{"type":"FeatureCollection","features":[
{"type":"Feature","id":"AFG","properties":{"name":"Afghanistan"},"geometry":{"type":"Polygon","coordinates":[[[61.210817,35.650072],[62.230651,35.270664],[62.984662,35.404041],[63.193538,35.857166],[63.982896,36.007957],[64.546479,36.312073],[64.746105,37.111818],[65.588948,37.305217],[65.745631,37.661164],[66.217385,37.39379],[66.518607,37.362784],[67.075782,37.356144],[67.83,37.144994],[68.135562,37.023115],[68.859446,37.344336],[69.196273,37.151144],[69.518785,37.608997],[70.116578,37.588223],[70.270574,37.735165],[70.376304,38.138396],[70.806821,38.486282],[71.348131,38.258905],[71.239404,37.953265],[71.541918,37.905774],[71.448693,37.065645],[71.844638,36.738171],[72.193041,36.948288],[72.63689,37.047558],[73.260056,37.495257],[73.948696,37.421566],[74.980002,37.41999],[75.158028,37.133031],[74.575893,37.020841],[74.067552,36.836176],[72.920025,36.720007],[71.846292,36.509942],[71.262348,36.074388],[71.498768,35.650563],[71.613076,35.153203],[71.115019,34.733126],[71.156773,34.348911],[70.881803,33.988856],[69.930543,34.02012],[70.323594,33.358533],[69.687147,33.105499],[69.262522,32.501944],[69.317764,31.901412],[68.926677,31.620189],[68.556932,31.71331],[67.792689,31.58293],[67.683394,31.303154],[66.938891,31.304911],[66.381458,30.738899],[66.346473,29.887943],[65.046862,29.472181],[64.350419,29.560031],[64.148002,29.340819],[63.550261,29.468331],[62.549857,29.318572],[60.874248,29.829239],[61.781222,30.73585],[61.699314,31.379506],[60.941945,31.548075],[60.863655,32.18292],[60.536078,32.981269],[60.9637,33.528832],[60.52843,33.676446],[60.803193,34.404102],[61.210817,35.650072]]]}},
{"type":"Feature","id":"AGO","properties":{"name":"Angola"},"geometry":{"type":"MultiPolygon","coordinates":[[[[16.326528,-5.87747],[16.57318,-6.622645],[16.860191,-7.222298],[17.089996,-7.545689],[17.47297,-8.068551],[18.134222,-7.987678],[18.464176,-7.847014],[19.016752,-7.988246],[19.166613,-7.738184],[19.417502,-7.155429],[20.037723,-7.116361],[20.091622,-6.94309],[20.601823,-6.939318],[20.514748,-7.299606],[21.728111,-7.290872],[21.746456,-7.920085],[21.949131,-8.305901],[21.801801,-8.908707],[21.875182,-9.523708],[22.208753,-9.894796],[22.155268,-11.084801],[22.402798,-10.993075],[22.837345,-11.017622],[23.456791,-10.867863],[23.912215,-10.926826],[24.017894,-11.237298],[23.904154,-11.722282],[24.079905,-12.191297],[23.930922,-12.565848],[24.016137,-12.911046],[21.933886,-12.898437],[21.887843,-16.08031],[22.562478,-16.898451],[23.215048,-17.523116],[21.377176,-17.930636],[18.956187,-17.789095],[18.263309,-17.309951],[14.209707,-17.353101],[14.058501,-17.423381],[13.462362,-16.971212],[12.814081,-16.941343],[12.215461,-17.111668],[11.734199,-17.301889],[11.640096,-16.673142],[11.778537,-15.793816],[12.123581,-14.878316],[12.175619,-14.449144],[12.500095,-13.5477],[12.738479,-13.137906],[13.312914,-12.48363],[13.633721,-12.038645],[13.738728,-11.297863],[13.686379,-10.731076],[13.387328,-10.373578],[13.120988,-9.766897],[12.87537,-9.166934],[12.929061,-8.959091],[13.236433,-8.562629],[12.93304,-7.596539],[12.728298,-6.927122],[12.227347,-6.294448],[12.322432,-6.100092],[12.735171,-5.965682],[13.024869,-5.984389],[13.375597,-5.864241],[16.326528,-5.87747]]],[[[12.436688,-5.684304],[12.182337,-5.789931],[11.914963,-5.037987],[12.318608,-4.60623],[12.62076,-4.438023],[12.995517,-4.781103],[12.631612,-4.991271],[12.468004,-5.248362],[12.436688,-5.684304]]]]}},
{"type":"Feature","id":"ALB","properties":{"name":"Albania"},"geometry":{"type":"Polygon","coordinates":[[[20.590247,41.855404],[20.463175,41.515089],[20.605182,41.086226],[21.02004,40.842727],[20.99999,40.580004],[20.674997,40.435],[20.615,40.110007],[20.150016,39.624998],[19.98,39.694993],[19.960002,39.915006],[19.406082,40.250773],[19.319059,40.72723],[19.40355,41.409566],[19.540027,41.719986],[19.371769,41.877548],[19.304486,42.195745],[19.738051,42.688247],[19.801613,42.500093],[20.0707,42.58863],[20.283755,42.32026],[20.52295,42.21787],[20.590247,41.855404]]]}},
{"type":"Feature","id":"ARE","properties":{"name":"United Arab Emirates"},"geometry":{"type":"Polygon","coordinates":[[[51.579519,24.245497],[51.757441,24.294073],[51.794389,24.019826],[52.577081,24.177439],[53.404007,24.151317],[54.008001,24.121758],[54.693024,24.797892],[55.439025,25.439145],[56.070821,26.055464],[56.261042,25.714606],[56.396847,24.924732],[55.886233,24.920831],[55.804119,24.269604],[55.981214,24.130543],[55.528632,23.933604],[55.525841,23.524869],[55.234489,23.110993],[55.208341,22.70833],[55.006803,22.496948],[52.000733,23.001154],[51.617708,24.014219],[51.579519,24.245497]]]}},
{"type":"Feature","id":"ARG","properties":{"name":"Argentina"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-65.5,-55.2],[-66.45,-55.25],[-66.95992,-54.89681],[-67.56244,-54.87001],[-68.63335,-54.8695],[-68.63401,-52.63637],[-68.25,-53.1],[-67.75,-53.85],[-66.45,-54.45],[-65.05,-54.7],[-65.5,-55.2]]],[[[-64.964892,-22.075862],[-64.377021,-22.798091],[-63.986838,-21.993644],[-62.846468,-22.034985],[-62.685057,-22.249029],[-60.846565,-23.880713],[-60.028966,-24.032796],[-58.807128,-24.771459],[-57.777217,-25.16234],[-57.63366,-25.603657],[-58.618174,-27.123719],[-57.60976,-27.395899],[-56.486702,-27.548499],[-55.695846,-27.387837],[-54.788795,-26.621786],[-54.625291,-25.739255],[-54.13005,-25.547639],[-53.628349,-26.124865],[-53.648735,-26.923473],[-54.490725,-27.474757],[-55.162286,-27.881915],[-56.2909,-28.852761],[-57.625133,-30.216295],[-57.874937,-31.016556],[-58.14244,-32.044504],[-58.132648,-33.040567],[-58.349611,-33.263189],[-58.427074,-33.909454],[-58.495442,-34.43149],[-57.22583,-35.288027],[-57.362359,-35.97739],[-56.737487,-36.413126],[-56.788285,-36.901572],[-57.749157,-38.183871],[-59.231857,-38.72022],[-61.237445,-38.928425],[-62.335957,-38.827707],[-62.125763,-39.424105],[-62.330531,-40.172586],[-62.145994,-40.676897],[-62.745803,-41.028761],[-63.770495,-41.166789],[-64.73209,-40.802677],[-65.118035,-41.064315],[-64.978561,-42.058001],[-64.303408,-42.359016],[-63.755948,-42.043687],[-63.458059,-42.563138],[-64.378804,-42.873558],[-65.181804,-43.495381],[-65.328823,-44.501366],[-65.565269,-45.036786],[-66.509966,-45.039628],[-67.293794,-45.551896],[-67.580546,-46.301773],[-66.597066,-47.033925],[-65.641027,-47.236135],[-65.985088,-48.133289],[-67.166179,-48.697337],[-67.816088,-49.869669],[-68.728745,-50.264218],[-69.138539,-50.73251],[-68.815561,-51.771104],[-68.149995,-52.349983],[-68.571545,-52.299444],[-69.498362,-52.142761],[-71.914804,-52.009022],[-72.329404,-51.425956],[-72.309974,-50.67701],[-72.975747,-50.74145],[-73.328051,-50.378785],[-73.415436,-49.318436],[-72.648247,-48.878618],[-72.331161,-48.244238],[-72.447355,-47.738533],[-71.917258,-46.884838],[-71.552009,-45.560733],[-71.659316,-44.973689],[-71.222779,-44.784243],[-71.329801,-44.407522],[-71.793623,-44.207172],[-71.464056,-43.787611],[-71.915424,-43.408565],[-72.148898,-42.254888],[-71.746804,-42.051386],[-71.915734,-40.832339],[-71.680761,-39.808164],[-71.413517,-38.916022],[-70.814664,-38.552995],[-71.118625,-37.576827],[-71.121881,-36.658124],[-70.364769,-36.005089],[-70.388049,-35.169688],[-69.817309,-34.193571],[-69.814777,-33.273886],[-70.074399,-33.09121],[-70.535069,-31.36501],[-69.919008,-30.336339],[-70.01355,-29.367923],[-69.65613,-28.459141],[-69.001235,-27.521214],[-68.295542,-26.89934],[-68.5948,-26.506909],[-68.386001,-26.185016],[-68.417653,-24.518555],[-67.328443,-24.025303],[-66.985234,-22.986349],[-67.106674,-22.735925],[-66.273339,-21.83231],[-64.964892,-22.075862]]]]}},
{"type":"Feature","id":"ARM","properties":{"name":"Armenia"},"geometry":{"type":"Polygon","coordinates":[[[43.582746,41.092143],[44.97248,41.248129],[45.179496,40.985354],[45.560351,40.81229],[45.359175,40.561504],[45.891907,40.218476],[45.610012,39.899994],[46.034534,39.628021],[46.483499,39.464155],[46.50572,38.770605],[46.143623,38.741201],[45.735379,39.319719],[45.739978,39.473999],[45.298145,39.471751],[45.001987,39.740004],[44.79399,39.713003],[44.400009,40.005],[43.656436,40.253564],[43.752658,40.740201],[43.582746,41.092143]]]}},
{"type":"Feature","id":"ATA","properties":{"name":"Antarctica"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-59.572095,-80.040179],[-59.865849,-80.549657],[-60.159656,-81.000327],[-62.255393,-80.863178],[-64.488125,-80.921934],[-65.741666,-80.588827],[-65.741666,-80.549657],[-66.290031,-80.255773],[-64.037688,-80.294944],[-61.883246,-80.39287],[-61.138976,-79.981371],[-60.610119,-79.628679],[-59.572095,-80.040179]]],[[[-159.208184,-79.497059],[-161.127601,-79.634209],[-162.439847,-79.281465],[-163.027408,-78.928774],[-163.066604,-78.869966],[-163.712896,-78.595667],[-163.105801,-78.223338],[-161.245113,-78.380176],[-160.246208,-78.693645],[-159.482405,-79.046338],[-159.208184,-79.497059]]],[[[-45.154758,-78.04707],[-43.920828,-78.478103],[-43.48995,-79.08556],[-43.372438,-79.516645],[-43.333267,-80.026123],[-44.880537,-80.339644],[-46.506174,-80.594357],[-48.386421,-80.829485],[-50.482107,-81.025442],[-52.851988,-80.966685],[-54.164259,-80.633528],[-53.987991,-80.222028],[-51.853134,-79.94773],[-50.991326,-79.614623],[-50.364595,-79.183487],[-49.914131,-78.811209],[-49.306959,-78.458569],[-48.660616,-78.047018],[-48.660616,-78.047019],[-48.151396,-78.04707],[-46.662857,-77.831476],[-45.154758,-78.04707]]],[[[-121.211511,-73.50099],[-119.918851,-73.657725],[-118.724143,-73.481353],[-119.292119,-73.834097],[-120.232217,-74.08881],[-121.62283,-74.010468],[-122.621735,-73.657778],[-122.621735,-73.657777],[-122.406245,-73.324619],[-121.211511,-73.50099]]],[[[-125.559566,-73.481353],[-124.031882,-73.873268],[-124.619469,-73.834097],[-125.912181,-73.736118],[-127.28313,-73.461769],[-127.28313,-73.461768],[-126.558472,-73.246226],[-125.559566,-73.481353]]],[[[-98.98155,-71.933334],[-97.884743,-72.070535],[-96.787937,-71.952971],[-96.20035,-72.521205],[-96.983765,-72.442864],[-98.198083,-72.482035],[-99.432013,-72.442864],[-100.783455,-72.50162],[-101.801868,-72.305663],[-102.330725,-71.894164],[-101.703967,-71.717792],[-100.430919,-71.854993],[-98.98155,-71.933334]]],[[[-68.451346,-70.955823],[-68.333834,-71.406493],[-68.510128,-71.798407],[-68.784297,-72.170736],[-69.959471,-72.307885],[-71.075889,-72.503842],[-72.388134,-72.484257],[-71.8985,-72.092343],[-73.073622,-72.229492],[-74.19004,-72.366693],[-74.953895,-72.072757],[-75.012625,-71.661258],[-73.915819,-71.269345],[-73.915819,-71.269344],[-73.230331,-71.15178],[-72.074717,-71.190951],[-71.780962,-70.681473],[-71.72218,-70.309196],[-71.741791,-69.505782],[-71.173815,-69.035475],[-70.253252,-68.87874],[-69.724447,-69.251017],[-69.489422,-69.623346],[-69.058518,-70.074016],[-68.725541,-70.505153],[-68.451346,-70.955823]]],[[[-58.614143,-64.152467],[-59.045073,-64.36801],[-59.789342,-64.211223],[-60.611928,-64.309202],[-61.297416,-64.54433],[-62.0221,-64.799094],[-62.51176,-65.09303],[-62.648858,-65.484942],[-62.590128,-65.857219],[-62.120079,-66.190326],[-62.805567,-66.425505],[-63.74569,-66.503847],[-64.294106,-66.837004],[-64.881693,-67.150474],[-65.508425,-67.58161],[-65.665082,-67.953887],[-65.312545,-68.365335],[-64.783715,-68.678908],[-63.961103,-68.913984],[-63.1973,-69.227556],[-62.785955,-69.619419],[-62.570516,-69.991747],[-62.276736,-70.383661],[-61.806661,-70.716768],[-61.512906,-71.089045],[-61.375809,-72.010074],[-61.081977,-72.382351],[-61.003661,-72.774265],[-60.690269,-73.166179],[-60.827367,-73.695242],[-61.375809,-74.106742],[-61.96337,-74.439848],[-63.295201,-74.576997],[-63.74569,-74.92974],[-64.352836,-75.262847],[-65.860987,-75.635124],[-67.192818,-75.79191],[-68.446282,-76.007452],[-69.797724,-76.222995],[-70.600724,-76.634494],[-72.206776,-76.673665],[-73.969536,-76.634494],[-75.555977,-76.712887],[-77.24037,-76.712887],[-76.926979,-77.104802],[-75.399294,-77.28107],[-74.282876,-77.55542],[-73.656119,-77.908112],[-74.772536,-78.221633],[-76.4961,-78.123654],[-77.925858,-78.378419],[-77.984666,-78.789918],[-78.023785,-79.181833],[-76.848637,-79.514939],[-76.633224,-79.887216],[-75.360097,-80.259545],[-73.244852,-80.416331],[-71.442946,-80.69063],[-70.013163,-81.004151],[-68.191646,-81.317672],[-65.704279,-81.474458],[-63.25603,-81.748757],[-61.552026,-82.042692],[-59.691416,-82.37585],[-58.712121,-82.846106],[-58.222487,-83.218434],[-57.008117,-82.865691],[-55.362894,-82.571755],[-53.619771,-82.258235],[-51.543644,-82.003521],[-49.76135,-81.729171],[-47.273931,-81.709586],[-44.825708,-81.846735],[-42.808363,-82.081915],[-42.16202,-81.65083],[-40.771433,-81.356894],[-38.244818,-81.337309],[-36.26667,-81.121715],[-34.386397,-80.906172],[-32.310296,-80.769023],[-30.097098,-80.592651],[-28.549802,-80.337938],[-29.254901,-79.985195],[-29.685805,-79.632503],[-29.685805,-79.260226],[-31.624808,-79.299397],[-33.681324,-79.456132],[-35.639912,-79.456132],[-35.914107,-79.083855],[-35.77701,-78.339248],[-35.326546,-78.123654],[-33.896763,-77.888526],[-32.212369,-77.65345],[-30.998051,-77.359515],[-29.783732,-77.065579],[-28.882779,-76.673665],[-27.511752,-76.497345],[-26.160336,-76.360144],[-25.474822,-76.281803],[-23.927552,-76.24258],[-22.458598,-76.105431],[-21.224694,-75.909474],[-20.010375,-75.674346],[-18.913543,-75.439218],[-17.522982,-75.125698],[-16.641589,-74.79254],[-15.701491,-74.498604],[-15.40771,-74.106742],[-16.46532,-73.871614],[-16.112784,-73.460114],[-15.446855,-73.146542],[-14.408805,-72.950585],[-13.311973,-72.715457],[-12.293508,-72.401936],[-11.510067,-72.010074],[-11.020433,-71.539767],[-10.295774,-71.265416],[-9.101015,-71.324224],[-8.611381,-71.65733],[-7.416622,-71.696501],[-7.377451,-71.324224],[-6.868232,-70.93231],[-5.790985,-71.030289],[-5.536375,-71.402617],[-4.341667,-71.461373],[-3.048981,-71.285053],[-1.795492,-71.167438],[-0.659489,-71.226246],[-0.228637,-71.637745],[0.868195,-71.304639],[1.886686,-71.128267],[3.022638,-70.991118],[4.139055,-70.853917],[5.157546,-70.618789],[6.273912,-70.462055],[7.13572,-70.246512],[7.742866,-69.893769],[8.48711,-70.148534],[9.525135,-70.011333],[10.249845,-70.48164],[10.817821,-70.834332],[11.953824,-70.638375],[12.404287,-70.246512],[13.422778,-69.972162],[14.734998,-70.030918],[15.126757,-70.403247],[15.949342,-70.030918],[17.026589,-69.913354],[18.201711,-69.874183],[19.259373,-69.893769],[20.375739,-70.011333],[21.452985,-70.07014],[21.923034,-70.403247],[22.569403,-70.697182],[23.666184,-70.520811],[24.841357,-70.48164],[25.977309,-70.48164],[27.093726,-70.462055],[28.09258,-70.324854],[29.150242,-70.20729],[30.031583,-69.93294],[30.971733,-69.75662],[31.990172,-69.658641],[32.754053,-69.384291],[33.302443,-68.835642],[33.870419,-68.502588],[34.908495,-68.659271],[35.300202,-69.012014],[36.16201,-69.247142],[37.200035,-69.168748],[37.905108,-69.52144],[38.649404,-69.776205],[39.667894,-69.541077],[40.020431,-69.109941],[40.921358,-68.933621],[41.959434,-68.600514],[42.938702,-68.463313],[44.113876,-68.267408],[44.897291,-68.051866],[45.719928,-67.816738],[46.503343,-67.601196],[47.44344,-67.718759],[48.344419,-67.366068],[48.990736,-67.091718],[49.930885,-67.111303],[50.753471,-66.876175],[50.949325,-66.523484],[51.791547,-66.249133],[52.614133,-66.053176],[53.613038,-65.89639],[54.53355,-65.818049],[55.414943,-65.876805],[56.355041,-65.974783],[57.158093,-66.249133],[57.255968,-66.680218],[58.137361,-67.013324],[58.744508,-67.287675],[59.939318,-67.405239],[60.605221,-67.679589],[61.427806,-67.953887],[62.387489,-68.012695],[63.19049,-67.816738],[64.052349,-67.405239],[64.992447,-67.620729],[65.971715,-67.738345],[66.911864,-67.855909],[67.891133,-67.934302],[68.890038,-67.934302],[69.712624,-68.972791],[69.673453,-69.227556],[69.555941,-69.678226],[68.596258,-69.93294],[67.81274,-70.305268],[67.949889,-70.697182],[69.066307,-70.677545],[68.929157,-71.069459],[68.419989,-71.441788],[67.949889,-71.853287],[68.71377,-72.166808],[69.869307,-72.264787],[71.024895,-72.088415],[71.573285,-71.696501],[71.906288,-71.324224],[72.454627,-71.010703],[73.08141,-70.716768],[73.33602,-70.364024],[73.864877,-69.874183],[74.491557,-69.776205],[75.62756,-69.737034],[76.626465,-69.619419],[77.644904,-69.462684],[78.134539,-69.07077],[78.428371,-68.698441],[79.113859,-68.326216],[80.093127,-68.071503],[80.93535,-67.875546],[81.483792,-67.542388],[82.051767,-67.366068],[82.776426,-67.209282],[83.775331,-67.30726],[84.676206,-67.209282],[85.655527,-67.091718],[86.752359,-67.150474],[87.477017,-66.876175],[87.986289,-66.209911],[88.358411,-66.484261],[88.828408,-66.954568],[89.67063,-67.150474],[90.630365,-67.228867],[91.5901,-67.111303],[92.608539,-67.189696],[93.548637,-67.209282],[94.17542,-67.111303],[95.017591,-67.170111],[95.781472,-67.385653],[96.682399,-67.248504],[97.759646,-67.248504],[98.68021,-67.111303],[99.718182,-67.248504],[100.384188,-66.915346],[100.893356,-66.58224],[101.578896,-66.30789],[102.832411,-65.563284],[103.478676,-65.700485],[104.242557,-65.974783],[104.90846,-66.327527],[106.181561,-66.934931],[107.160881,-66.954568],[108.081393,-66.954568],[109.15864,-66.837004],[110.235835,-66.699804],[111.058472,-66.425505],[111.74396,-66.13157],[112.860378,-66.092347],[113.604673,-65.876805],[114.388088,-66.072762],[114.897308,-66.386283],[115.602381,-66.699804],[116.699161,-66.660633],[117.384701,-66.915346],[118.57946,-67.170111],[119.832924,-67.268089],[120.871,-67.189696],[121.654415,-66.876175],[122.320369,-66.562654],[123.221296,-66.484261],[124.122274,-66.621462],[125.160247,-66.719389],[126.100396,-66.562654],[127.001427,-66.562654],[127.882768,-66.660633],[128.80328,-66.758611],[129.704259,-66.58224],[130.781454,-66.425505],[131.799945,-66.386283],[132.935896,-66.386283],[133.85646,-66.288304],[134.757387,-66.209963],[135.031582,-65.72007],[135.070753,-65.308571],[135.697485,-65.582869],[135.873805,-66.033591],[136.206705,-66.44509],[136.618049,-66.778197],[137.460271,-66.954568],[138.596223,-66.895761],[139.908442,-66.876175],[140.809421,-66.817367],[142.121692,-66.817367],[143.061842,-66.797782],[144.374061,-66.837004],[145.490427,-66.915346],[146.195552,-67.228867],[145.999699,-67.601196],[146.646067,-67.895131],[147.723263,-68.130259],[148.839629,-68.385024],[150.132314,-68.561292],[151.483705,-68.71813],[152.502247,-68.874813],[153.638199,-68.894502],[154.284567,-68.561292],[155.165857,-68.835642],[155.92979,-69.149215],[156.811132,-69.384291],[158.025528,-69.482269],[159.181013,-69.599833],[159.670699,-69.991747],[160.80665,-70.226875],[161.570479,-70.579618],[162.686897,-70.736353],[163.842434,-70.716768],[164.919681,-70.775524],[166.11444,-70.755938],[167.309095,-70.834332],[168.425616,-70.971481],[169.463589,-71.20666],[170.501665,-71.402617],[171.20679,-71.696501],[171.089227,-72.088415],[170.560422,-72.441159],[170.109958,-72.891829],[169.75737,-73.24452],[169.287321,-73.65602],[167.975101,-73.812806],[167.387489,-74.165498],[166.094803,-74.38104],[165.644391,-74.772954],[164.958851,-75.145283],[164.234193,-75.458804],[163.822797,-75.870303],[163.568239,-76.24258],[163.47026,-76.693302],[163.489897,-77.065579],[164.057873,-77.457442],[164.273363,-77.82977],[164.743464,-78.182514],[166.604126,-78.319611],[166.995781,-78.750748],[165.193876,-78.907483],[163.666217,-79.123025],[161.766385,-79.162248],[160.924162,-79.730482],[160.747894,-80.200737],[160.316964,-80.573066],[159.788211,-80.945395],[161.120016,-81.278501],[161.629287,-81.690001],[162.490992,-82.062278],[163.705336,-82.395435],[165.095949,-82.708956],[166.604126,-83.022477],[168.895665,-83.335998],[169.404782,-83.825891],[172.283934,-84.041433],[172.477049,-84.117914],[173.224083,-84.41371],[175.985672,-84.158997],[178.277212,-84.472518],[180,-84.71338],[-179.942499,-84.721443],[-179.058677,-84.139412],[-177.256772,-84.452933],[-177.140807,-84.417941],[-176.084673,-84.099259],[-175.947235,-84.110449],[-175.829882,-84.117914],[-174.382503,-84.534323],[-173.116559,-84.117914],[-172.889106,-84.061019],[-169.951223,-83.884647],[-168.999989,-84.117914],[-168.530199,-84.23739],[-167.022099,-84.570497],[-164.182144,-84.82521],[-161.929775,-85.138731],[-158.07138,-85.37391],[-155.192253,-85.09956],[-150.942099,-85.295517],[-148.533073,-85.609038],[-145.888918,-85.315102],[-143.107718,-85.040752],[-142.892279,-84.570497],[-146.829068,-84.531274],[-150.060732,-84.296146],[-150.902928,-83.904232],[-153.586201,-83.68869],[-153.409907,-83.23802],[-153.037759,-82.82652],[-152.665637,-82.454192],[-152.861517,-82.042692],[-154.526299,-81.768394],[-155.29018,-81.41565],[-156.83745,-81.102129],[-154.408787,-81.160937],[-152.097662,-81.004151],[-150.648293,-81.337309],[-148.865998,-81.043373],[-147.22075,-80.671045],[-146.417749,-80.337938],[-146.770286,-79.926439],[-148.062947,-79.652089],[-149.531901,-79.358205],[-151.588416,-79.299397],[-153.390322,-79.162248],[-155.329376,-79.064269],[-155.975668,-78.69194],[-157.268302,-78.378419],[-158.051768,-78.025676],[-158.365134,-76.889207],[-157.875474,-76.987238],[-156.974573,-77.300759],[-155.329376,-77.202728],[-153.742832,-77.065579],[-152.920247,-77.496664],[-151.33378,-77.398737],[-150.00195,-77.183143],[-148.748486,-76.908845],[-147.612483,-76.575738],[-146.104409,-76.47776],[-146.143528,-76.105431],[-146.496091,-75.733154],[-146.20231,-75.380411],[-144.909624,-75.204039],[-144.322037,-75.537197],[-142.794353,-75.34124],[-141.638764,-75.086475],[-140.209007,-75.06689],[-138.85759,-74.968911],[-137.5062,-74.733783],[-136.428901,-74.518241],[-135.214583,-74.302699],[-134.431194,-74.361455],[-133.745654,-74.439848],[-132.257168,-74.302699],[-130.925311,-74.479019],[-129.554284,-74.459433],[-128.242038,-74.322284],[-126.890622,-74.420263],[-125.402082,-74.518241],[-124.011496,-74.479019],[-122.562152,-74.498604],[-121.073613,-74.518241],[-119.70256,-74.479019],[-118.684145,-74.185083],[-117.469801,-74.028348],[-116.216312,-74.243891],[-115.021552,-74.067519],[-113.944331,-73.714828],[-113.297988,-74.028348],[-112.945452,-74.38104],[-112.299083,-74.714198],[-111.261059,-74.420263],[-110.066325,-74.79254],[-108.714909,-74.910103],[-107.559346,-75.184454],[-106.149148,-75.125698],[-104.876074,-74.949326],[-103.367949,-74.988497],[-102.016507,-75.125698],[-100.645531,-75.302018],[-100.1167,-74.870933],[-100.763043,-74.537826],[-101.252703,-74.185083],[-102.545337,-74.106742],[-103.113313,-73.734413],[-103.328752,-73.362084],[-103.681289,-72.61753],[-102.917485,-72.754679],[-101.60524,-72.813436],[-100.312528,-72.754679],[-99.13738,-72.911414],[-98.118889,-73.20535],[-97.688037,-73.558041],[-96.336595,-73.616849],[-95.043961,-73.4797],[-93.672907,-73.283743],[-92.439003,-73.166179],[-91.420564,-73.401307],[-90.088733,-73.322914],[-89.226951,-72.558722],[-88.423951,-73.009393],[-87.268337,-73.185764],[-86.014822,-73.087786],[-85.192236,-73.4797],[-83.879991,-73.518871],[-82.665646,-73.636434],[-81.470913,-73.851977],[-80.687447,-73.4797],[-80.295791,-73.126956],[-79.296886,-73.518871],[-77.925858,-73.420892],[-76.907367,-73.636434],[-76.221879,-73.969541],[-74.890049,-73.871614],[-73.852024,-73.65602],[-72.833533,-73.401307],[-71.619215,-73.264157],[-70.209042,-73.146542],[-68.935916,-73.009393],[-67.956622,-72.79385],[-67.369061,-72.480329],[-67.134036,-72.049244],[-67.251548,-71.637745],[-67.56494,-71.245831],[-67.917477,-70.853917],[-68.230843,-70.462055],[-68.485452,-70.109311],[-68.544209,-69.717397],[-68.446282,-69.325535],[-67.976233,-68.953206],[-67.5845,-68.541707],[-67.427843,-68.149844],[-67.62367,-67.718759],[-67.741183,-67.326845],[-67.251548,-66.876175],[-66.703184,-66.58224],[-66.056815,-66.209963],[-65.371327,-65.89639],[-64.568276,-65.602506],[-64.176542,-65.171423],[-63.628152,-64.897073],[-63.001394,-64.642308],[-62.041686,-64.583552],[-61.414928,-64.270031],[-60.709855,-64.074074],[-59.887269,-63.95651],[-59.162585,-63.701745],[-58.594557,-63.388224],[-57.811143,-63.27066],[-57.223582,-63.525425],[-57.59573,-63.858532],[-58.614143,-64.152467]]]]}},
{"type":"Feature","id":"ATF","properties":{"name":"French Southern and Antarctic Lands"},"geometry":{"type":"Polygon","coordinates":[[[68.935,-48.625],[69.58,-48.94],[70.525,-49.065],[70.56,-49.255],[70.28,-49.71],[68.745,-49.775],[68.72,-49.2425],[68.8675,-48.83],[68.935,-48.625]]]}},
{"type":"Feature","id":"AUS","properties":{"name":"Australia"},"geometry":{"type":"MultiPolygon","coordinates":[[[[145.397978,-40.792549],[146.364121,-41.137695],[146.908584,-41.000546],[147.689259,-40.808258],[148.289068,-40.875438],[148.359865,-42.062445],[148.017301,-42.407024],[147.914052,-43.211522],[147.564564,-42.937689],[146.870343,-43.634597],[146.663327,-43.580854],[146.048378,-43.549745],[145.43193,-42.693776],[145.29509,-42.03361],[144.718071,-41.162552],[144.743755,-40.703975],[145.397978,-40.792549]]],[[[143.561811,-13.763656],[143.922099,-14.548311],[144.563714,-14.171176],[144.894908,-14.594458],[145.374724,-14.984976],[145.271991,-15.428205],[145.48526,-16.285672],[145.637033,-16.784918],[145.888904,-16.906926],[146.160309,-17.761655],[146.063674,-18.280073],[146.387478,-18.958274],[147.471082,-19.480723],[148.177602,-19.955939],[148.848414,-20.39121],[148.717465,-20.633469],[149.28942,-21.260511],[149.678337,-22.342512],[150.077382,-22.122784],[150.482939,-22.556142],[150.727265,-22.402405],[150.899554,-23.462237],[151.609175,-24.076256],[152.07354,-24.457887],[152.855197,-25.267501],[153.136162,-26.071173],[153.161949,-26.641319],[153.092909,-27.2603],[153.569469,-28.110067],[153.512108,-28.995077],[153.339095,-29.458202],[153.069241,-30.35024],[153.089602,-30.923642],[152.891578,-31.640446],[152.450002,-32.550003],[151.709117,-33.041342],[151.343972,-33.816023],[151.010555,-34.31036],[150.714139,-35.17346],[150.32822,-35.671879],[150.075212,-36.420206],[149.946124,-37.109052],[149.997284,-37.425261],[149.423882,-37.772681],[148.304622,-37.809061],[147.381733,-38.219217],[146.922123,-38.606532],[146.317922,-39.035757],[145.489652,-38.593768],[144.876976,-38.417448],[145.032212,-37.896188],[144.485682,-38.085324],[143.609974,-38.809465],[142.745427,-38.538268],[142.17833,-38.380034],[141.606582,-38.308514],[140.638579,-38.019333],[139.992158,-37.402936],[139.806588,-36.643603],[139.574148,-36.138362],[139.082808,-35.732754],[138.120748,-35.612296],[138.449462,-35.127261],[138.207564,-34.384723],[137.71917,-35.076825],[136.829406,-35.260535],[137.352371,-34.707339],[137.503886,-34.130268],[137.890116,-33.640479],[137.810328,-32.900007],[136.996837,-33.752771],[136.372069,-34.094766],[135.989043,-34.890118],[135.208213,-34.47867],[135.239218,-33.947953],[134.613417,-33.222778],[134.085904,-32.848072],[134.273903,-32.617234],[132.990777,-32.011224],[132.288081,-31.982647],[131.326331,-31.495803],[129.535794,-31.590423],[128.240938,-31.948489],[127.102867,-32.282267],[126.148714,-32.215966],[125.088623,-32.728751],[124.221648,-32.959487],[124.028947,-33.483847],[123.659667,-33.890179],[122.811036,-33.914467],[122.183064,-34.003402],[121.299191,-33.821036],[120.580268,-33.930177],[119.893695,-33.976065],[119.298899,-34.509366],[119.007341,-34.464149],[118.505718,-34.746819],[118.024972,-35.064733],[117.295507,-35.025459],[116.625109,-35.025097],[115.564347,-34.386428],[115.026809,-34.196517],[115.048616,-33.623425],[115.545123,-33.487258],[115.714674,-33.259572],[115.679379,-32.900369],[115.801645,-32.205062],[115.689611,-31.612437],[115.160909,-30.601594],[114.997043,-30.030725],[115.040038,-29.461095],[114.641974,-28.810231],[114.616498,-28.516399],[114.173579,-28.118077],[114.048884,-27.334765],[113.477498,-26.543134],[113.338953,-26.116545],[113.778358,-26.549025],[113.440962,-25.621278],[113.936901,-25.911235],[114.232852,-26.298446],[114.216161,-25.786281],[113.721255,-24.998939],[113.625344,-24.683971],[113.393523,-24.384764],[113.502044,-23.80635],[113.706993,-23.560215],[113.843418,-23.059987],[113.736552,-22.475475],[114.149756,-21.755881],[114.225307,-22.517488],[114.647762,-21.82952],[115.460167,-21.495173],[115.947373,-21.068688],[116.711615,-20.701682],[117.166316,-20.623599],[117.441545,-20.746899],[118.229559,-20.374208],[118.836085,-20.263311],[118.987807,-20.044203],[119.252494,-19.952942],[119.805225,-19.976506],[120.85622,-19.683708],[121.399856,-19.239756],[121.655138,-18.705318],[122.241665,-18.197649],[122.286624,-17.798603],[122.312772,-17.254967],[123.012574,-16.4052],[123.433789,-17.268558],[123.859345,-17.069035],[123.503242,-16.596506],[123.817073,-16.111316],[124.258287,-16.327944],[124.379726,-15.56706],[124.926153,-15.0751],[125.167275,-14.680396],[125.670087,-14.51007],[125.685796,-14.230656],[126.125149,-14.347341],[126.142823,-14.095987],[126.582589,-13.952791],[127.065867,-13.817968],[127.804633,-14.276906],[128.35969,-14.86917],[128.985543,-14.875991],[129.621473,-14.969784],[129.4096,-14.42067],[129.888641,-13.618703],[130.339466,-13.357376],[130.183506,-13.10752],[130.617795,-12.536392],[131.223495,-12.183649],[131.735091,-12.302453],[132.575298,-12.114041],[132.557212,-11.603012],[131.824698,-11.273782],[132.357224,-11.128519],[133.019561,-11.376411],[133.550846,-11.786515],[134.393068,-12.042365],[134.678632,-11.941183],[135.298491,-12.248606],[135.882693,-11.962267],[136.258381,-12.049342],[136.492475,-11.857209],[136.95162,-12.351959],[136.685125,-12.887223],[136.305407,-13.29123],[135.961758,-13.324509],[136.077617,-13.724278],[135.783836,-14.223989],[135.428664,-14.715432],[135.500184,-14.997741],[136.295175,-15.550265],[137.06536,-15.870762],[137.580471,-16.215082],[138.303217,-16.807604],[138.585164,-16.806622],[139.108543,-17.062679],[139.260575,-17.371601],[140.215245,-17.710805],[140.875463,-17.369069],[141.07111,-16.832047],[141.274095,-16.38887],[141.398222,-15.840532],[141.702183,-15.044921],[141.56338,-14.561333],[141.63552,-14.270395],[141.519869,-13.698078],[141.65092,-12.944688],[141.842691,-12.741548],[141.68699,-12.407614],[141.928629,-11.877466],[142.118488,-11.328042],[142.143706,-11.042737],[142.51526,-10.668186],[142.79731,-11.157355],[142.866763,-11.784707],[143.115947,-11.90563],[143.158632,-12.325656],[143.522124,-12.834358],[143.597158,-13.400422],[143.561811,-13.763656]]]]}},
{"type":"Feature","id":"AUT","properties":{"name":"Austria"},"geometry":{"type":"Polygon","coordinates":[[[16.979667,48.123497],[16.903754,47.714866],[16.340584,47.712902],[16.534268,47.496171],[16.202298,46.852386],[16.011664,46.683611],[15.137092,46.658703],[14.632472,46.431817],[13.806475,46.509306],[12.376485,46.767559],[12.153088,47.115393],[11.164828,46.941579],[11.048556,46.751359],[10.442701,46.893546],[9.932448,46.920728],[9.47997,47.10281],[9.632932,47.347601],[9.594226,47.525058],[9.896068,47.580197],[10.402084,47.302488],[10.544504,47.566399],[11.426414,47.523766],[12.141357,47.703083],[12.62076,47.672388],[12.932627,47.467646],[13.025851,47.637584],[12.884103,48.289146],[13.243357,48.416115],[13.595946,48.877172],[14.338898,48.555305],[14.901447,48.964402],[15.253416,49.039074],[16.029647,48.733899],[16.499283,48.785808],[16.960288,48.596982],[16.879983,48.470013],[16.979667,48.123497]]]}},
{"type":"Feature","id":"AZE","properties":{"name":"Azerbaijan"},"geometry":{"type":"MultiPolygon","coordinates":[[[[45.001987,39.740004],[45.298145,39.471751],[45.739978,39.473999],[45.735379,39.319719],[46.143623,38.741201],[45.457722,38.874139],[44.952688,39.335765],[44.79399,39.713003],[45.001987,39.740004]]],[[[47.373315,41.219732],[47.815666,41.151416],[47.987283,41.405819],[48.584353,41.80887],[49.110264,41.282287],[49.618915,40.572924],[50.08483,40.526157],[50.392821,40.256561],[49.569202,40.176101],[49.395259,39.399482],[49.223228,39.049219],[48.856532,38.815486],[48.883249,38.320245],[48.634375,38.270378],[48.010744,38.794015],[48.355529,39.288765],[48.060095,39.582235],[47.685079,39.508364],[46.50572,38.770605],[46.483499,39.464155],[46.034534,39.628021],[45.610012,39.899994],[45.891907,40.218476],[45.359175,40.561504],[45.560351,40.81229],[45.179496,40.985354],[44.97248,41.248129],[45.217426,41.411452],[45.962601,41.123873],[46.501637,41.064445],[46.637908,41.181673],[46.145432,41.722802],[46.404951,41.860675],[46.686071,41.827137],[47.373315,41.219732]]]]}},
{"type":"Feature","id":"BDI","properties":{"name":"Burundi"},"geometry":{"type":"Polygon","coordinates":[[[29.339998,-4.499983],[29.276384,-3.293907],[29.024926,-2.839258],[29.632176,-2.917858],[29.938359,-2.348487],[30.469696,-2.413858],[30.527677,-2.807632],[30.743013,-3.034285],[30.752263,-3.35933],[30.50556,-3.568567],[30.116333,-4.090138],[29.753512,-4.452389],[29.339998,-4.499983]]]}},
{"type":"Feature","id":"BEL","properties":{"name":"Belgium"},"geometry":{"type":"Polygon","coordinates":[[[3.314971,51.345781],[4.047071,51.267259],[4.973991,51.475024],[5.606976,51.037298],[6.156658,50.803721],[6.043073,50.128052],[5.782417,50.090328],[5.674052,49.529484],[4.799222,49.985373],[4.286023,49.907497],[3.588184,50.378992],[3.123252,50.780363],[2.658422,50.796848],[2.513573,51.148506],[3.314971,51.345781]]]}},
{"type":"Feature","id":"BEN","properties":{"name":"Benin"},"geometry":{"type":"Polygon","coordinates":[[[2.691702,6.258817],[1.865241,6.142158],[1.618951,6.832038],[1.664478,9.12859],[1.463043,9.334624],[1.425061,9.825395],[1.077795,10.175607],[0.772336,10.470808],[0.899563,10.997339],[1.24347,11.110511],[1.447178,11.547719],[1.935986,11.64115],[2.154474,11.94015],[2.490164,12.233052],[2.848643,12.235636],[3.61118,11.660167],[3.572216,11.327939],[3.797112,10.734746],[3.60007,10.332186],[3.705438,10.06321],[3.220352,9.444153],[2.912308,9.137608],[2.723793,8.506845],[2.749063,7.870734],[2.691702,6.258817]]]}},
{"type":"Feature","id":"BFA","properties":{"name":"Burkina Faso"},"geometry":{"type":"Polygon","coordinates":[[[-2.827496,9.642461],[-3.511899,9.900326],[-3.980449,9.862344],[-4.330247,9.610835],[-4.779884,9.821985],[-4.954653,10.152714],[-5.404342,10.370737],[-5.470565,10.95127],[-5.197843,11.375146],[-5.220942,11.713859],[-4.427166,12.542646],[-4.280405,13.228444],[-4.006391,13.472485],[-3.522803,13.337662],[-3.103707,13.541267],[-2.967694,13.79815],[-2.191825,14.246418],[-2.001035,14.559008],[-1.066363,14.973815],[-0.515854,15.116158],[-0.266257,14.924309],[0.374892,14.928908],[0.295646,14.444235],[0.429928,13.988733],[0.993046,13.33575],[1.024103,12.851826],[2.177108,12.625018],[2.154474,11.94015],[1.935986,11.64115],[1.447178,11.547719],[1.24347,11.110511],[0.899563,10.997339],[0.023803,11.018682],[-0.438702,11.098341],[-0.761576,10.93693],[-1.203358,11.009819],[-2.940409,10.96269],[-2.963896,10.395335],[-2.827496,9.642461]]]}},
{"type":"Feature","id":"BGD","properties":{"name":"Bangladesh"},"geometry":{"type":"Polygon","coordinates":[[[92.672721,22.041239],[92.652257,21.324048],[92.303234,21.475485],[92.368554,20.670883],[92.082886,21.192195],[92.025215,21.70157],[91.834891,22.182936],[91.417087,22.765019],[90.496006,22.805017],[90.586957,22.392794],[90.272971,21.836368],[89.847467,22.039146],[89.70205,21.857116],[89.418863,21.966179],[89.031961,22.055708],[88.876312,22.879146],[88.52977,23.631142],[88.69994,24.233715],[88.084422,24.501657],[88.306373,24.866079],[88.931554,25.238692],[88.209789,25.768066],[88.563049,26.446526],[89.355094,26.014407],[89.832481,25.965082],[89.920693,25.26975],[90.872211,25.132601],[91.799596,25.147432],[92.376202,24.976693],[91.915093,24.130414],[91.46773,24.072639],[91.158963,23.503527],[91.706475,22.985264],[91.869928,23.624346],[92.146035,23.627499],[92.672721,22.041239]]]}},
{"type":"Feature","id":"BGR","properties":{"name":"Bulgaria"},"geometry":{"type":"Polygon","coordinates":[[[22.65715,44.234923],[22.944832,43.823785],[23.332302,43.897011],[24.100679,43.741051],[25.569272,43.688445],[26.065159,43.943494],[27.2424,44.175986],[27.970107,43.812468],[28.558081,43.707462],[28.039095,43.293172],[27.673898,42.577892],[27.99672,42.007359],[27.135739,42.141485],[26.117042,41.826905],[26.106138,41.328899],[25.197201,41.234486],[24.492645,41.583896],[23.692074,41.309081],[22.952377,41.337994],[22.881374,41.999297],[22.380526,42.32026],[22.545012,42.461362],[22.436595,42.580321],[22.604801,42.898519],[22.986019,43.211161],[22.500157,43.642814],[22.410446,44.008063],[22.65715,44.234923]]]}},
{"type":"Feature","id":"BHS","properties":{"name":"The Bahamas"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-77.53466,23.75975],[-77.78,23.71],[-78.03405,24.28615],[-78.40848,24.57564],[-78.19087,25.2103],[-77.89,25.17],[-77.54,24.34],[-77.53466,23.75975]]],[[[-77.82,26.58],[-78.91,26.42],[-78.98,26.79],[-78.51,26.87],[-77.85,26.84],[-77.82,26.58]]],[[[-77,26.59],[-77.17255,25.87918],[-77.35641,26.00735],[-77.34,26.53],[-77.78802,26.92516],[-77.79,27.04],[-77,26.59]]]]}},
{"type":"Feature","id":"BIH","properties":{"name":"Bosnia and Herzegovina"},"geometry":{"type":"Polygon","coordinates":[[[19.005486,44.860234],[19.36803,44.863],[19.11761,44.42307],[19.59976,44.03847],[19.454,43.5681],[19.21852,43.52384],[19.03165,43.43253],[18.70648,43.20011],[18.56,42.65],[17.674922,43.028563],[17.297373,43.446341],[16.916156,43.667722],[16.456443,44.04124],[16.23966,44.351143],[15.750026,44.818712],[15.959367,45.233777],[16.318157,45.004127],[16.534939,45.211608],[17.002146,45.233777],[17.861783,45.06774],[18.553214,45.08159],[19.005486,44.860234]]]}},
{"type":"Feature","id":"BLR","properties":{"name":"Belarus"},"geometry":{"type":"Polygon","coordinates":[[[23.484128,53.912498],[24.450684,53.905702],[25.536354,54.282423],[25.768433,54.846963],[26.588279,55.167176],[26.494331,55.615107],[27.10246,55.783314],[28.176709,56.16913],[29.229513,55.918344],[29.371572,55.670091],[29.896294,55.789463],[30.873909,55.550976],[30.971836,55.081548],[30.757534,54.811771],[31.384472,54.157056],[31.791424,53.974639],[31.731273,53.794029],[32.405599,53.618045],[32.693643,53.351421],[32.304519,53.132726],[31.497644,53.167427],[31.305201,53.073996],[31.540018,52.742052],[31.785998,52.101678],[30.927549,52.042353],[30.619454,51.822806],[30.555117,51.319503],[30.157364,51.416138],[29.254938,51.368234],[28.992835,51.602044],[28.617613,51.427714],[28.241615,51.572227],[27.454066,51.592303],[26.337959,51.832289],[25.327788,51.910656],[24.553106,51.888461],[24.005078,51.617444],[23.527071,51.578454],[23.508002,52.023647],[23.199494,52.486977],[23.799199,52.691099],[23.804935,53.089731],[23.527536,53.470122],[23.484128,53.912498]]]}},
{"type":"Feature","id":"BLZ","properties":{"name":"Belize"},"geometry":{"type":"Polygon","coordinates":[[[-89.14308,17.808319],[-89.150909,17.955468],[-89.029857,18.001511],[-88.848344,17.883198],[-88.490123,18.486831],[-88.300031,18.499982],[-88.296336,18.353273],[-88.106813,18.348674],[-88.123479,18.076675],[-88.285355,17.644143],[-88.197867,17.489475],[-88.302641,17.131694],[-88.239518,17.036066],[-88.355428,16.530774],[-88.551825,16.265467],[-88.732434,16.233635],[-88.930613,15.887273],[-89.229122,15.886938],[-89.150806,17.015577],[-89.14308,17.808319]]]}},
{"type":"Feature","id":"BMU","properties":{"name":"Bermuda"},"geometry":{"type":"Polygon","coordinates":[[[-64.7799734332998,32.3072000581802],[-64.7873319183061,32.3039237143428],[-64.7946942710173,32.3032682700388],[-64.8094297981283,32.3098175728414],[-64.8167896352437,32.3058845718466],[-64.8101968029642,32.3022833180511],[-64.7962291465484,32.2934409732427],[-64.7815086336978,32.2868973114514],[-64.7997025513437,32.2796896417328],[-64.8066707691087,32.2747767569465],[-64.8225587873683,32.2669111289395],[-64.8287548840306,32.2669075473817],[-64.8306732143498,32.2583944840235],[-64.8399924854972,32.254782282336],[-64.8566090462354,32.2547740387514],[-64.8682296789446,32.2616393614322],[-64.8628241459563,32.2724481933959],[-64.8748651338951,32.2757120264753],[-64.8717752856644,32.2819371582026],[-64.8671422127295,32.2930760547989],[-64.8559068764437,32.2960321186471],[-64.8597429072279,32.3015842021933],[-64.8439233486717,32.3140553852543],[-64.8350242329311,32.3242161760006],[-64.8338690593672,32.3294587561557],[-64.8520298651164,32.3110911879954],[-64.8635922932573,32.3048469433363],[-64.8686668994079,32.30910745083],[-64.8721354593415,32.3041908606301],[-64.8779667328485,32.3038632800462],[-64.8780046844321,32.2907757831692],[-64.8849776658292,32.2819261366004],[-64.8783230004629,32.2613001418681],[-64.863194968877,32.2465799485801],[-64.8519819555722,32.2485519134663],[-64.842311980074,32.2492123317296],[-64.8388242605209,32.2475773472534],[-64.8334002575532,32.2462714714698],[-64.8256389530584,32.2472637398594],[-64.8205697556026,32.2531698880328],[-64.8105087275579,32.2561208974156],[-64.7900177727338,32.2659446936992],[-64.7745415970416,32.2718413023427],[-64.7644742436426,32.2855931353214],[-64.7551803442276,32.2908326702531],[-64.7423982971436,32.2996734994024],[-64.7206991797682,32.3137542201258],[-64.7117851247134,32.3176823360806],[-64.6962778813133,32.3275029115532],[-64.6768921127452,32.3324095397555],[-64.6567136927777,32.3451776458469],[-64.6532168823499,32.3494356627941],[-64.6605720384429,32.3589423487763],[-64.65125819471,32.3615600906466],[-64.6462011670816,32.36975169749],[-64.6613227512832,32.3763135008721],[-64.6690666074397,32.388444543924],[-64.6834270548595,32.3854968316788],[-64.6954617672714,32.3763221285869],[-64.70438689565,32.3704254760469],[-64.7117569982798,32.368132600249],[-64.7061764744404,32.3600110593559],[-64.700531552697,32.3590601356818],[-64.6940348033967,32.3640708659835],[-64.6895164826082,32.3633598579866],[-64.6864150099255,32.3547797587266],[-64.6824635995504,32.3540628176846],[-64.6835876652835,32.3626447677968],[-64.6801998697415,32.3631199096979],[-64.6672170444687,32.3597751617473],[-64.6598811264978,32.3497625771755],[-64.6737331235384,32.3390281851635],[-64.6887090648183,32.3342439408053],[-64.706732854446,32.3429010723036],[-64.7149301576112,32.3552188753513],[-64.7185967666669,32.3552239212394],[-64.7214189847314,32.3518830231342],[-64.7270616067222,32.3466461715475],[-64.734962460882,32.3442819830499],[-64.7383521549094,32.3407216514918],[-64.7411729976333,32.3311790864627],[-64.7423019216485,32.323311561213],[-64.7462482354281,32.318538611581],[-64.7566773739613,32.3130509130175],[-64.768738200563,32.3088369816572],[-64.7799734332998,32.3072000581802]]]}},
{"type":"Feature","id":"BOL","properties":{"name":"Bolivia"},"geometry":{"type":"Polygon","coordinates":[[[-62.846468,-22.034985],[-63.986838,-21.993644],[-64.377021,-22.798091],[-64.964892,-22.075862],[-66.273339,-21.83231],[-67.106674,-22.735925],[-67.82818,-22.872919],[-68.219913,-21.494347],[-68.757167,-20.372658],[-68.442225,-19.405068],[-68.966818,-18.981683],[-69.100247,-18.260125],[-69.590424,-17.580012],[-68.959635,-16.500698],[-69.389764,-15.660129],[-69.160347,-15.323974],[-69.339535,-14.953195],[-68.948887,-14.453639],[-68.929224,-13.602684],[-68.88008,-12.899729],[-68.66508,-12.5613],[-69.529678,-10.951734],[-68.786158,-11.03638],[-68.271254,-11.014521],[-68.048192,-10.712059],[-67.173801,-10.306812],[-66.646908,-9.931331],[-65.338435,-9.761988],[-65.444837,-10.511451],[-65.321899,-10.895872],[-65.402281,-11.56627],[-64.316353,-12.461978],[-63.196499,-12.627033],[-62.80306,-13.000653],[-62.127081,-13.198781],[-61.713204,-13.489202],[-61.084121,-13.479384],[-60.503304,-13.775955],[-60.459198,-14.354007],[-60.264326,-14.645979],[-60.251149,-15.077219],[-60.542966,-15.09391],[-60.15839,-16.258284],[-58.24122,-16.299573],[-58.388058,-16.877109],[-58.280804,-17.27171],[-57.734558,-17.552468],[-57.498371,-18.174188],[-57.676009,-18.96184],[-57.949997,-19.400004],[-57.853802,-19.969995],[-58.166392,-20.176701],[-58.183471,-19.868399],[-59.115042,-19.356906],[-60.043565,-19.342747],[-61.786326,-19.633737],[-62.265961,-20.513735],[-62.291179,-21.051635],[-62.685057,-22.249029],[-62.846468,-22.034985]]]}},
{"type":"Feature","id":"BRA","properties":{"name":"Brazil"},"geometry":{"type":"Polygon","coordinates":[[[-57.625133,-30.216295],[-56.2909,-28.852761],[-55.162286,-27.881915],[-54.490725,-27.474757],[-53.648735,-26.923473],[-53.628349,-26.124865],[-54.13005,-25.547639],[-54.625291,-25.739255],[-54.428946,-25.162185],[-54.293476,-24.5708],[-54.29296,-24.021014],[-54.652834,-23.839578],[-55.027902,-24.001274],[-55.400747,-23.956935],[-55.517639,-23.571998],[-55.610683,-22.655619],[-55.797958,-22.35693],[-56.473317,-22.0863],[-56.88151,-22.282154],[-57.937156,-22.090176],[-57.870674,-20.732688],[-58.166392,-20.176701],[-57.853802,-19.969995],[-57.949997,-19.400004],[-57.676009,-18.96184],[-57.498371,-18.174188],[-57.734558,-17.552468],[-58.280804,-17.27171],[-58.388058,-16.877109],[-58.24122,-16.299573],[-60.15839,-16.258284],[-60.542966,-15.09391],[-60.251149,-15.077219],[-60.264326,-14.645979],[-60.459198,-14.354007],[-60.503304,-13.775955],[-61.084121,-13.479384],[-61.713204,-13.489202],[-62.127081,-13.198781],[-62.80306,-13.000653],[-63.196499,-12.627033],[-64.316353,-12.461978],[-65.402281,-11.56627],[-65.321899,-10.895872],[-65.444837,-10.511451],[-65.338435,-9.761988],[-66.646908,-9.931331],[-67.173801,-10.306812],[-68.048192,-10.712059],[-68.271254,-11.014521],[-68.786158,-11.03638],[-69.529678,-10.951734],[-70.093752,-11.123972],[-70.548686,-11.009147],[-70.481894,-9.490118],[-71.302412,-10.079436],[-72.184891,-10.053598],[-72.563033,-9.520194],[-73.226713,-9.462213],[-73.015383,-9.032833],[-73.571059,-8.424447],[-73.987235,-7.52383],[-73.723401,-7.340999],[-73.724487,-6.918595],[-73.120027,-6.629931],[-73.219711,-6.089189],[-72.964507,-5.741251],[-72.891928,-5.274561],[-71.748406,-4.593983],[-70.928843,-4.401591],[-70.794769,-4.251265],[-69.893635,-4.298187],[-69.444102,-1.556287],[-69.420486,-1.122619],[-69.577065,-0.549992],[-70.020656,-0.185156],[-70.015566,0.541414],[-69.452396,0.706159],[-69.252434,0.602651],[-69.218638,0.985677],[-69.804597,1.089081],[-69.816973,1.714805],[-67.868565,1.692455],[-67.53781,2.037163],[-67.259998,1.719999],[-67.065048,1.130112],[-66.876326,1.253361],[-66.325765,0.724452],[-65.548267,0.789254],[-65.354713,1.095282],[-64.611012,1.328731],[-64.199306,1.492855],[-64.083085,1.916369],[-63.368788,2.2009],[-63.422867,2.411068],[-64.269999,2.497006],[-64.408828,3.126786],[-64.368494,3.79721],[-64.816064,4.056445],[-64.628659,4.148481],[-63.888343,4.02053],[-63.093198,3.770571],[-62.804533,4.006965],[-62.08543,4.162124],[-60.966893,4.536468],[-60.601179,4.918098],[-60.733574,5.200277],[-60.213683,5.244486],[-59.980959,5.014061],[-60.111002,4.574967],[-59.767406,4.423503],[-59.53804,3.958803],[-59.815413,3.606499],[-59.974525,2.755233],[-59.718546,2.24963],[-59.646044,1.786894],[-59.030862,1.317698],[-58.540013,1.268088],[-58.429477,1.463942],[-58.11345,1.507195],[-57.660971,1.682585],[-57.335823,1.948538],[-56.782704,1.863711],[-56.539386,1.899523],[-55.995698,1.817667],[-55.9056,2.021996],[-56.073342,2.220795],[-55.973322,2.510364],[-55.569755,2.421506],[-55.097587,2.523748],[-54.524754,2.311849],[-54.088063,2.105557],[-53.778521,2.376703],[-53.554839,2.334897],[-53.418465,2.053389],[-52.939657,2.124858],[-52.556425,2.504705],[-52.249338,3.241094],[-51.657797,4.156232],[-51.317146,4.203491],[-51.069771,3.650398],[-50.508875,1.901564],[-49.974076,1.736483],[-49.947101,1.04619],[-50.699251,0.222984],[-50.388211,-0.078445],[-48.620567,-0.235489],[-48.584497,-1.237805],[-47.824956,-0.581618],[-46.566584,-0.941028],[-44.905703,-1.55174],[-44.417619,-2.13775],[-44.581589,-2.691308],[-43.418791,-2.38311],[-41.472657,-2.912018],[-39.978665,-2.873054],[-38.500383,-3.700652],[-37.223252,-4.820946],[-36.452937,-5.109404],[-35.597796,-5.149504],[-35.235389,-5.464937],[-34.89603,-6.738193],[-34.729993,-7.343221],[-35.128212,-8.996401],[-35.636967,-9.649282],[-37.046519,-11.040721],[-37.683612,-12.171195],[-38.423877,-13.038119],[-38.673887,-13.057652],[-38.953276,-13.79337],[-38.882298,-15.667054],[-39.161092,-17.208407],[-39.267339,-17.867746],[-39.583521,-18.262296],[-39.760823,-19.599113],[-40.774741,-20.904512],[-40.944756,-21.937317],[-41.754164,-22.370676],[-41.988284,-22.97007],[-43.074704,-22.967693],[-44.647812,-23.351959],[-45.352136,-23.796842],[-46.472093,-24.088969],[-47.648972,-24.885199],[-48.495458,-25.877025],[-48.641005,-26.623698],[-48.474736,-27.175912],[-48.66152,-28.186135],[-48.888457,-28.674115],[-49.587329,-29.224469],[-50.696874,-30.984465],[-51.576226,-31.777698],[-52.256081,-32.24537],[-52.7121,-33.196578],[-53.373662,-33.768378],[-53.650544,-33.202004],[-53.209589,-32.727666],[-53.787952,-32.047243],[-54.572452,-31.494511],[-55.60151,-30.853879],[-55.973245,-30.883076],[-56.976026,-30.109686],[-57.625133,-30.216295]]]}},
{"type":"Feature","id":"BRN","properties":{"name":"Brunei"},"geometry":{"type":"Polygon","coordinates":[[[114.204017,4.525874],[114.599961,4.900011],[115.45071,5.44773],[115.4057,4.955228],[115.347461,4.316636],[114.869557,4.348314],[114.659596,4.007637],[114.204017,4.525874]]]}},
{"type":"Feature","id":"BTN","properties":{"name":"Bhutan"},"geometry":{"type":"Polygon","coordinates":[[[91.696657,27.771742],[92.103712,27.452614],[92.033484,26.83831],[91.217513,26.808648],[90.373275,26.875724],[89.744528,26.719403],[88.835643,27.098966],[88.814248,27.299316],[89.47581,28.042759],[90.015829,28.296439],[90.730514,28.064954],[91.258854,28.040614],[91.696657,27.771742]]]}},
{"type":"Feature","id":"BWA","properties":{"name":"Botswana"},"geometry":{"type":"Polygon","coordinates":[[[25.649163,-18.536026],[25.850391,-18.714413],[26.164791,-19.293086],[27.296505,-20.39152],[27.724747,-20.499059],[27.727228,-20.851802],[28.02137,-21.485975],[28.794656,-21.639454],[29.432188,-22.091313],[28.017236,-22.827754],[27.11941,-23.574323],[26.786407,-24.240691],[26.485753,-24.616327],[25.941652,-24.696373],[25.765849,-25.174845],[25.664666,-25.486816],[25.025171,-25.71967],[24.211267,-25.670216],[23.73357,-25.390129],[23.312097,-25.26869],[22.824271,-25.500459],[22.579532,-25.979448],[22.105969,-26.280256],[21.605896,-26.726534],[20.889609,-26.828543],[20.66647,-26.477453],[20.758609,-25.868136],[20.165726,-24.917962],[19.895768,-24.76779],[19.895458,-21.849157],[20.881134,-21.814327],[20.910641,-18.252219],[21.65504,-18.219146],[23.196858,-17.869038],[23.579006,-18.281261],[24.217365,-17.889347],[24.520705,-17.887125],[25.084443,-17.661816],[25.264226,-17.73654],[25.649163,-18.536026]]]}},
{"type":"Feature","id":"CAF","properties":{"name":"Central African Republic"},"geometry":{"type":"Polygon","coordinates":[[[15.27946,7.421925],[16.106232,7.497088],[16.290562,7.754307],[16.456185,7.734774],[16.705988,7.508328],[17.96493,7.890914],[18.389555,8.281304],[18.911022,8.630895],[18.81201,8.982915],[19.094008,9.074847],[20.059685,9.012706],[21.000868,9.475985],[21.723822,10.567056],[22.231129,10.971889],[22.864165,11.142395],[22.977544,10.714463],[23.554304,10.089255],[23.55725,9.681218],[23.394779,9.265068],[23.459013,8.954286],[23.805813,8.666319],[24.567369,8.229188],[25.114932,7.825104],[25.124131,7.500085],[25.796648,6.979316],[26.213418,6.546603],[26.465909,5.946717],[27.213409,5.550953],[27.374226,5.233944],[27.044065,5.127853],[26.402761,5.150875],[25.650455,5.256088],[25.278798,5.170408],[25.128833,4.927245],[24.805029,4.897247],[24.410531,5.108784],[23.297214,4.609693],[22.84148,4.710126],[22.704124,4.633051],[22.405124,4.02916],[21.659123,4.224342],[20.927591,4.322786],[20.290679,4.691678],[19.467784,5.031528],[18.932312,4.709506],[18.542982,4.201785],[18.453065,3.504386],[17.8099,3.560196],[17.133042,3.728197],[16.537058,3.198255],[16.012852,2.26764],[15.907381,2.557389],[15.862732,3.013537],[15.405396,3.335301],[15.03622,3.851367],[14.950953,4.210389],[14.478372,4.732605],[14.558936,5.030598],[14.459407,5.451761],[14.53656,6.226959],[14.776545,6.408498],[15.27946,7.421925]]]}},
{"type":"Feature","id":"CAN","properties":{"name":"Canada"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-63.6645,46.55001],[-62.9393,46.41587],[-62.01208,46.44314],[-62.50391,46.03339],[-62.87433,45.96818],[-64.1428,46.39265],[-64.39261,46.72747],[-64.01486,47.03601],[-63.6645,46.55001]]],[[[-61.806305,49.10506],[-62.29318,49.08717],[-63.58926,49.40069],[-64.51912,49.87304],[-64.17322,49.95718],[-62.85829,49.70641],[-61.835585,49.28855],[-61.806305,49.10506]]],[[[-123.510002,48.510011],[-124.012891,48.370846],[-125.655013,48.825005],[-125.954994,49.179996],[-126.850004,49.53],[-127.029993,49.814996],[-128.059336,49.994959],[-128.444584,50.539138],[-128.358414,50.770648],[-127.308581,50.552574],[-126.695001,50.400903],[-125.755007,50.295018],[-125.415002,49.950001],[-124.920768,49.475275],[-123.922509,49.062484],[-123.510002,48.510011]]],[[[-56.134036,50.68701],[-56.795882,49.812309],[-56.143105,50.150117],[-55.471492,49.935815],[-55.822401,49.587129],[-54.935143,49.313011],[-54.473775,49.556691],[-53.476549,49.249139],[-53.786014,48.516781],[-53.086134,48.687804],[-52.958648,48.157164],[-52.648099,47.535548],[-53.069158,46.655499],[-53.521456,46.618292],[-54.178936,46.807066],[-53.961869,47.625207],[-54.240482,47.752279],[-55.400773,46.884994],[-55.997481,46.91972],[-55.291219,47.389562],[-56.250799,47.632545],[-57.325229,47.572807],[-59.266015,47.603348],[-59.419494,47.899454],[-58.796586,48.251525],[-59.231625,48.523188],[-58.391805,49.125581],[-57.35869,50.718274],[-56.73865,51.287438],[-55.870977,51.632094],[-55.406974,51.588273],[-55.600218,51.317075],[-56.134036,50.68701]]],[[[-132.710008,54.040009],[-131.74999,54.120004],[-132.04948,52.984621],[-131.179043,52.180433],[-131.57783,52.182371],[-132.180428,52.639707],[-132.549992,53.100015],[-133.054611,53.411469],[-133.239664,53.85108],[-133.180004,54.169975],[-132.710008,54.040009]]],[[[-79.26582,62.158675],[-79.65752,61.63308],[-80.09956,61.7181],[-80.36215,62.01649],[-80.315395,62.085565],[-79.92939,62.3856],[-79.52002,62.36371],[-79.26582,62.158675]]],[[[-81.89825,62.7108],[-83.06857,62.15922],[-83.77462,62.18231],[-83.99367,62.4528],[-83.25048,62.91409],[-81.87699,62.90458],[-81.89825,62.7108]]],[[[-85.161308,65.657285],[-84.975764,65.217518],[-84.464012,65.371772],[-83.882626,65.109618],[-82.787577,64.766693],[-81.642014,64.455136],[-81.55344,63.979609],[-80.817361,64.057486],[-80.103451,63.725981],[-80.99102,63.411246],[-82.547178,63.651722],[-83.108798,64.101876],[-84.100417,63.569712],[-85.523405,63.052379],[-85.866769,63.637253],[-87.221983,63.541238],[-86.35276,64.035833],[-86.224886,64.822917],[-85.883848,65.738778],[-85.161308,65.657285]]],[[[-75.86588,67.14886],[-76.98687,67.09873],[-77.2364,67.58809],[-76.81166,68.14856],[-75.89521,68.28721],[-75.1145,68.01036],[-75.10333,67.58202],[-75.21597,67.44425],[-75.86588,67.14886]]],[[[-95.647681,69.10769],[-96.269521,68.75704],[-97.617401,69.06003],[-98.431801,68.9507],[-99.797401,69.40003],[-98.917401,69.71003],[-98.218261,70.14354],[-97.157401,69.86003],[-96.557401,69.68003],[-96.257401,69.49003],[-95.647681,69.10769]]],[[[-90.5471,69.49766],[-90.55151,68.47499],[-89.21515,69.25873],[-88.01966,68.61508],[-88.31749,67.87338],[-87.35017,67.19872],[-86.30607,67.92146],[-85.57664,68.78456],[-85.52197,69.88211],[-84.10081,69.80539],[-82.62258,69.65826],[-81.28043,69.16202],[-81.2202,68.66567],[-81.96436,68.13253],[-81.25928,67.59716],[-81.38653,67.11078],[-83.34456,66.41154],[-84.73542,66.2573],[-85.76943,66.55833],[-86.0676,66.05625],[-87.03143,65.21297],[-87.32324,64.77563],[-88.48296,64.09897],[-89.91444,64.03273],[-90.70398,63.61017],[-90.77004,62.96021],[-91.93342,62.83508],[-93.15698,62.02469],[-94.24153,60.89865],[-94.62931,60.11021],[-94.6846,58.94882],[-93.21502,58.78212],[-92.76462,57.84571],[-92.29703,57.08709],[-90.89769,57.28468],[-89.03953,56.85172],[-88.03978,56.47162],[-87.32421,55.99914],[-86.07121,55.72383],[-85.01181,55.3026],[-83.36055,55.24489],[-82.27285,55.14832],[-82.4362,54.28227],[-82.12502,53.27703],[-81.40075,52.15788],[-79.91289,51.20842],[-79.14301,51.53393],[-78.60191,52.56208],[-79.12421,54.14145],[-79.82958,54.66772],[-78.22874,55.13645],[-77.0956,55.83741],[-76.54137,56.53423],[-76.62319,57.20263],[-77.30226,58.05209],[-78.51688,58.80458],[-77.33676,59.85261],[-77.77272,60.75788],[-78.10687,62.31964],[-77.41067,62.55053],[-75.69621,62.2784],[-74.6682,62.18111],[-73.83988,62.4438],[-72.90853,62.10507],[-71.67708,61.52535],[-71.37369,61.13717],[-69.59042,61.06141],[-69.62033,60.22125],[-69.2879,58.95736],[-68.37455,58.80106],[-67.64976,58.21206],[-66.20178,58.76731],[-65.24517,59.87071],[-64.58352,60.33558],[-63.80475,59.4426],[-62.50236,58.16708],[-61.39655,56.96745],[-61.79866,56.33945],[-60.46853,55.77548],[-59.56962,55.20407],[-57.97508,54.94549],[-57.3332,54.6265],[-56.93689,53.78032],[-56.15811,53.64749],[-55.75632,53.27036],[-55.68338,52.14664],[-56.40916,51.7707],[-57.12691,51.41972],[-58.77482,51.0643],[-60.03309,50.24277],[-61.72366,50.08046],[-63.86251,50.29099],[-65.36331,50.2982],[-66.39905,50.22897],[-67.23631,49.51156],[-68.51114,49.06836],[-69.95362,47.74488],[-71.10458,46.82171],[-70.25522,46.98606],[-68.65,48.3],[-66.55243,49.1331],[-65.05626,49.23278],[-64.17099,48.74248],[-65.11545,48.07085],[-64.79854,46.99297],[-64.47219,46.23849],[-63.17329,45.73902],[-61.52072,45.88377],[-60.51815,47.00793],[-60.4486,46.28264],[-59.80287,45.9204],[-61.03988,45.26525],[-63.25471,44.67014],[-64.24656,44.26553],[-65.36406,43.54523],[-66.1234,43.61867],[-66.16173,44.46512],[-64.42549,45.29204],[-66.02605,45.25931],[-67.13741,45.13753],[-67.79134,45.70281],[-67.79046,47.06636],[-68.23444,47.35486],[-68.905,47.185],[-69.237216,47.447781],[-69.99997,46.69307],[-70.305,45.915],[-70.66,45.46],[-71.08482,45.30524],[-71.405,45.255],[-71.50506,45.0082],[-73.34783,45.00738],[-74.867,45.00048],[-75.31821,44.81645],[-76.375,44.09631],[-76.5,44.018459],[-76.820034,43.628784],[-77.737885,43.629056],[-78.72028,43.625089],[-79.171674,43.466339],[-79.01,43.27],[-78.92,42.965],[-78.939362,42.863611],[-80.247448,42.3662],[-81.277747,42.209026],[-82.439278,41.675105],[-82.690089,41.675105],[-83.02981,41.832796],[-83.142,41.975681],[-83.12,42.08],[-82.9,42.43],[-82.43,42.98],[-82.137642,43.571088],[-82.337763,44.44],[-82.550925,45.347517],[-83.592851,45.816894],[-83.469551,45.994686],[-83.616131,46.116927],[-83.890765,46.116927],[-84.091851,46.275419],[-84.14212,46.512226],[-84.3367,46.40877],[-84.6049,46.4396],[-84.543749,46.538684],[-84.779238,46.637102],[-84.87608,46.900083],[-85.652363,47.220219],[-86.461991,47.553338],[-87.439793,47.94],[-88.378114,48.302918],[-89.272917,48.019808],[-89.6,48.01],[-90.83,48.27],[-91.64,48.14],[-92.61,48.45],[-93.63087,48.60926],[-94.32914,48.67074],[-94.64,48.84],[-94.81758,49.38905],[-95.15609,49.38425],[-95.15907,49],[-97.22872,49.0007],[-100.65,49],[-104.04826,48.99986],[-107.05,49],[-110.05,49],[-113,49],[-116.04818,49],[-117.03121,49],[-120,49],[-122.84,49],[-122.97421,49.002538],[-124.91024,49.98456],[-125.62461,50.41656],[-127.43561,50.83061],[-127.99276,51.71583],[-127.85032,52.32961],[-129.12979,52.75538],[-129.30523,53.56159],[-130.51497,54.28757],[-130.53611,54.80278],[-129.98,55.285],[-130.00778,55.91583],[-131.70781,56.55212],[-132.73042,57.69289],[-133.35556,58.41028],[-134.27111,58.86111],[-134.945,59.27056],[-135.47583,59.78778],[-136.47972,59.46389],[-137.4525,58.905],[-138.34089,59.56211],[-139.039,60],[-140.013,60.27682],[-140.99778,60.30639],[-140.9925,66.00003],[-140.986,69.712],[-139.12052,69.47102],[-137.54636,68.99002],[-136.50358,68.89804],[-135.62576,69.31512],[-134.41464,69.62743],[-132.92925,69.50534],[-131.43136,69.94451],[-129.79471,70.19369],[-129.10773,69.77927],[-128.36156,70.01286],[-128.13817,70.48384],[-127.44712,70.37721],[-125.75632,69.48058],[-124.42483,70.1584],[-124.28968,69.39969],[-123.06108,69.56372],[-122.6835,69.85553],[-121.47226,69.79778],[-119.94288,69.37786],[-117.60268,69.01128],[-116.22643,68.84151],[-115.2469,68.90591],[-113.89794,68.3989],[-115.30489,67.90261],[-113.49727,67.68815],[-110.798,67.80612],[-109.94619,67.98104],[-108.8802,67.38144],[-107.79239,67.88736],[-108.81299,68.31164],[-108.16721,68.65392],[-106.95,68.7],[-106.15,68.8],[-105.34282,68.56122],[-104.33791,68.018],[-103.22115,68.09775],[-101.45433,67.64689],[-99.90195,67.80566],[-98.4432,67.78165],[-98.5586,68.40394],[-97.66948,68.57864],[-96.11991,68.23939],[-96.12588,67.29338],[-95.48943,68.0907],[-94.685,68.06383],[-94.23282,69.06903],[-95.30408,69.68571],[-96.47131,70.08976],[-96.39115,71.19482],[-95.2088,71.92053],[-93.88997,71.76015],[-92.87818,71.31869],[-91.51964,70.19129],[-92.40692,69.69997],[-90.5471,69.49766]]],[[[-114.16717,73.12145],[-114.66634,72.65277],[-112.44102,72.9554],[-111.05039,72.4504],[-109.92035,72.96113],[-109.00654,72.63335],[-108.18835,71.65089],[-107.68599,72.06548],[-108.39639,73.08953],[-107.51645,73.23598],[-106.52259,73.07601],[-105.40246,72.67259],[-104.77484,71.6984],[-104.46476,70.99297],[-102.78537,70.49776],[-100.98078,70.02432],[-101.08929,69.58447],[-102.73116,69.50402],[-102.09329,69.11962],[-102.43024,68.75282],[-104.24,68.91],[-105.96,69.18],[-107.12254,69.11922],[-109,68.78],[-111.534149,68.630059],[-113.3132,68.53554],[-113.85496,69.00744],[-115.22,69.28],[-116.10794,69.16821],[-117.34,69.96],[-116.67473,70.06655],[-115.13112,70.2373],[-113.72141,70.19237],[-112.4161,70.36638],[-114.35,70.6],[-116.48684,70.52045],[-117.9048,70.54056],[-118.43238,70.9092],[-116.11311,71.30918],[-117.65568,71.2952],[-119.40199,71.55859],[-118.56267,72.30785],[-117.86642,72.70594],[-115.18909,73.31459],[-114.16717,73.12145]]],[[[-104.5,73.42],[-105.38,72.76],[-106.94,73.46],[-106.6,73.6],[-105.26,73.64],[-104.5,73.42]]],[[[-76.34,73.102685],[-76.251404,72.826385],[-77.314438,72.855545],[-78.39167,72.876656],[-79.486252,72.742203],[-79.775833,72.802902],[-80.876099,73.333183],[-80.833885,73.693184],[-80.353058,73.75972],[-78.064438,73.651932],[-76.34,73.102685]]],[[[-86.562179,73.157447],[-85.774371,72.534126],[-84.850112,73.340278],[-82.31559,73.750951],[-80.600088,72.716544],[-80.748942,72.061907],[-78.770639,72.352173],[-77.824624,72.749617],[-75.605845,72.243678],[-74.228616,71.767144],[-74.099141,71.33084],[-72.242226,71.556925],[-71.200015,70.920013],[-68.786054,70.525024],[-67.91497,70.121948],[-66.969033,69.186087],[-68.805123,68.720198],[-66.449866,68.067163],[-64.862314,67.847539],[-63.424934,66.928473],[-61.851981,66.862121],[-62.163177,66.160251],[-63.918444,64.998669],[-65.14886,65.426033],[-66.721219,66.388041],[-68.015016,66.262726],[-68.141287,65.689789],[-67.089646,65.108455],[-65.73208,64.648406],[-65.320168,64.382737],[-64.669406,63.392927],[-65.013804,62.674185],[-66.275045,62.945099],[-68.783186,63.74567],[-67.369681,62.883966],[-66.328297,62.280075],[-66.165568,61.930897],[-68.877367,62.330149],[-71.023437,62.910708],[-72.235379,63.397836],[-71.886278,63.679989],[-73.378306,64.193963],[-74.834419,64.679076],[-74.818503,64.389093],[-77.70998,64.229542],[-78.555949,64.572906],[-77.897281,65.309192],[-76.018274,65.326969],[-73.959795,65.454765],[-74.293883,65.811771],[-73.944912,66.310578],[-72.651167,67.284576],[-72.92606,67.726926],[-73.311618,68.069437],[-74.843307,68.554627],[-76.869101,68.894736],[-76.228649,69.147769],[-77.28737,69.76954],[-78.168634,69.826488],[-78.957242,70.16688],[-79.492455,69.871808],[-81.305471,69.743185],[-84.944706,69.966634],[-87.060003,70.260001],[-88.681713,70.410741],[-89.51342,70.762038],[-88.467721,71.218186],[-89.888151,71.222552],[-90.20516,72.235074],[-89.436577,73.129464],[-88.408242,73.537889],[-85.826151,73.803816],[-86.562179,73.157447]]],[[[-100.35642,73.84389],[-99.16387,73.63339],[-97.38,73.76],[-97.12,73.47],[-98.05359,72.99052],[-96.54,72.56],[-96.72,71.66],[-98.35966,71.27285],[-99.32286,71.35639],[-100.01482,71.73827],[-102.5,72.51],[-102.48,72.83],[-100.43836,72.70588],[-101.54,73.36],[-100.35642,73.84389]]],[[[-93.196296,72.771992],[-94.269047,72.024596],[-95.409856,72.061881],[-96.033745,72.940277],[-96.018268,73.43743],[-95.495793,73.862417],[-94.503658,74.134907],[-92.420012,74.100025],[-90.509793,73.856732],[-92.003965,72.966244],[-93.196296,72.771992]]],[[[-120.46,71.383602],[-123.09219,70.90164],[-123.62,71.34],[-125.928949,71.868688],[-125.5,72.292261],[-124.80729,73.02256],[-123.94,73.68],[-124.91775,74.29275],[-121.53788,74.44893],[-120.10978,74.24135],[-117.55564,74.18577],[-116.58442,73.89607],[-115.51081,73.47519],[-116.76794,73.22292],[-119.22,72.52],[-120.46,71.82],[-120.46,71.383602]]],[[[-93.612756,74.979997],[-94.156909,74.592347],[-95.608681,74.666864],[-96.820932,74.927623],[-96.288587,75.377828],[-94.85082,75.647218],[-93.977747,75.29649],[-93.612756,74.979997]]],[[[-98.5,76.72],[-97.735585,76.25656],[-97.704415,75.74344],[-98.16,75],[-99.80874,74.89744],[-100.88366,75.05736],[-100.86292,75.64075],[-102.50209,75.5638],[-102.56552,76.3366],[-101.48973,76.30537],[-99.98349,76.64634],[-98.57699,76.58859],[-98.5,76.72]]],[[[-108.21141,76.20168],[-107.81943,75.84552],[-106.92893,76.01282],[-105.881,75.9694],[-105.70498,75.47951],[-106.31347,75.00527],[-109.7,74.85],[-112.22307,74.41696],[-113.74381,74.39427],[-113.87135,74.72029],[-111.79421,75.1625],[-116.31221,75.04343],[-117.7104,75.2222],[-116.34602,76.19903],[-115.40487,76.47887],[-112.59056,76.14134],[-110.81422,75.54919],[-109.0671,75.47321],[-110.49726,76.42982],[-109.5811,76.79417],[-108.54859,76.67832],[-108.21141,76.20168]]],[[[-94.684086,77.097878],[-93.573921,76.776296],[-91.605023,76.778518],[-90.741846,76.449597],[-90.969661,76.074013],[-89.822238,75.847774],[-89.187083,75.610166],[-87.838276,75.566189],[-86.379192,75.482421],[-84.789625,75.699204],[-82.753445,75.784315],[-81.128531,75.713983],[-80.057511,75.336849],[-79.833933,74.923127],[-80.457771,74.657304],[-81.948843,74.442459],[-83.228894,74.564028],[-86.097452,74.410032],[-88.15035,74.392307],[-89.764722,74.515555],[-92.422441,74.837758],[-92.768285,75.38682],[-92.889906,75.882655],[-93.893824,76.319244],[-95.962457,76.441381],[-97.121379,76.751078],[-96.745123,77.161389],[-94.684086,77.097878]]],[[[-116.198587,77.645287],[-116.335813,76.876962],[-117.106051,76.530032],[-118.040412,76.481172],[-119.899318,76.053213],[-121.499995,75.900019],[-122.854924,76.116543],[-122.854925,76.116543],[-121.157535,76.864508],[-119.103939,77.51222],[-117.570131,77.498319],[-116.198587,77.645287]]],[[[-93.840003,77.519997],[-94.295608,77.491343],[-96.169654,77.555111],[-96.436304,77.834629],[-94.422577,77.820005],[-93.720656,77.634331],[-93.840003,77.519997]]],[[[-110.186938,77.697015],[-112.051191,77.409229],[-113.534279,77.732207],[-112.724587,78.05105],[-111.264443,78.152956],[-109.854452,77.996325],[-110.186938,77.697015]]],[[[-109.663146,78.601973],[-110.881314,78.40692],[-112.542091,78.407902],[-112.525891,78.550555],[-111.50001,78.849994],[-110.963661,78.804441],[-109.663146,78.601973]]],[[[-95.830295,78.056941],[-97.309843,77.850597],[-98.124289,78.082857],[-98.552868,78.458105],[-98.631984,78.87193],[-97.337231,78.831984],[-96.754399,78.765813],[-95.559278,78.418315],[-95.830295,78.056941]]],[[[-100.060192,78.324754],[-99.670939,77.907545],[-101.30394,78.018985],[-102.949809,78.343229],[-105.176133,78.380332],[-104.210429,78.67742],[-105.41958,78.918336],[-105.492289,79.301594],[-103.529282,79.165349],[-100.825158,78.800462],[-100.060192,78.324754]]],[[[-87.02,79.66],[-85.81435,79.3369],[-87.18756,79.0393],[-89.03535,78.28723],[-90.80436,78.21533],[-92.87669,78.34333],[-93.95116,78.75099],[-93.93574,79.11373],[-93.14524,79.3801],[-94.974,79.37248],[-96.07614,79.70502],[-96.70972,80.15777],[-96.01644,80.60233],[-95.32345,80.90729],[-94.29843,80.97727],[-94.73542,81.20646],[-92.40984,81.25739],[-91.13289,80.72345],[-89.45,80.509322],[-87.81,80.32],[-87.02,79.66]]],[[[-68.5,83.106322],[-65.82735,83.02801],[-63.68,82.9],[-61.85,82.6286],[-61.89388,82.36165],[-64.334,81.92775],[-66.75342,81.72527],[-67.65755,81.50141],[-65.48031,81.50657],[-67.84,80.9],[-69.4697,80.61683],[-71.18,79.8],[-73.2428,79.63415],[-73.88,79.430162],[-76.90773,79.32309],[-75.52924,79.19766],[-76.22046,79.01907],[-75.39345,78.52581],[-76.34354,78.18296],[-77.88851,77.89991],[-78.36269,77.50859],[-79.75951,77.20968],[-79.61965,76.98336],[-77.91089,77.022045],[-77.88911,76.777955],[-80.56125,76.17812],[-83.17439,76.45403],[-86.11184,76.29901],[-87.6,76.42],[-89.49068,76.47239],[-89.6161,76.95213],[-87.76739,77.17833],[-88.26,77.9],[-87.65,77.970222],[-84.97634,77.53873],[-86.34,78.18],[-87.96192,78.37181],[-87.15198,78.75867],[-85.37868,78.9969],[-85.09495,79.34543],[-86.50734,79.73624],[-86.93179,80.25145],[-84.19844,80.20836],[-83.408696,80.1],[-81.84823,80.46442],[-84.1,80.58],[-87.59895,80.51627],[-89.36663,80.85569],[-90.2,81.26],[-91.36786,81.5531],[-91.58702,81.89429],[-90.1,82.085],[-88.93227,82.11751],[-86.97024,82.27961],[-85.5,82.652273],[-84.260005,82.6],[-83.18,82.32],[-82.42,82.86],[-81.1,83.02],[-79.30664,83.13056],[-76.25,83.172059],[-75.71878,83.06404],[-72.83153,83.23324],[-70.665765,83.169781],[-68.5,83.106322]]]]}},
{"type":"Feature","id":"CHE","properties":{"name":"Switzerland"},"geometry":{"type":"Polygon","coordinates":[[[9.594226,47.525058],[9.632932,47.347601],[9.47997,47.10281],[9.932448,46.920728],[10.442701,46.893546],[10.363378,46.483571],[9.922837,46.314899],[9.182882,46.440215],[8.966306,46.036932],[8.489952,46.005151],[8.31663,46.163642],[7.755992,45.82449],[7.273851,45.776948],[6.843593,45.991147],[6.5001,46.429673],[6.022609,46.27299],[6.037389,46.725779],[6.768714,47.287708],[6.736571,47.541801],[7.192202,47.449766],[7.466759,47.620582],[8.317301,47.61358],[8.522612,47.830828],[9.594226,47.525058]]]}},
{"type":"Feature","id":"CHL","properties":{"name":"Chile"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-68.63401,-52.63637],[-68.63335,-54.8695],[-67.56244,-54.87001],[-66.95992,-54.89681],[-67.29103,-55.30124],[-68.14863,-55.61183],[-68.639991,-55.580018],[-69.2321,-55.49906],[-69.95809,-55.19843],[-71.00568,-55.05383],[-72.2639,-54.49514],[-73.2852,-53.95752],[-74.66253,-52.83749],[-73.8381,-53.04743],[-72.43418,-53.7154],[-71.10773,-54.07433],[-70.59178,-53.61583],[-70.26748,-52.93123],[-69.34565,-52.5183],[-68.63401,-52.63637]]],[[[-68.219913,-21.494347],[-67.82818,-22.872919],[-67.106674,-22.735925],[-66.985234,-22.986349],[-67.328443,-24.025303],[-68.417653,-24.518555],[-68.386001,-26.185016],[-68.5948,-26.506909],[-68.295542,-26.89934],[-69.001235,-27.521214],[-69.65613,-28.459141],[-70.01355,-29.367923],[-69.919008,-30.336339],[-70.535069,-31.36501],[-70.074399,-33.09121],[-69.814777,-33.273886],[-69.817309,-34.193571],[-70.388049,-35.169688],[-70.364769,-36.005089],[-71.121881,-36.658124],[-71.118625,-37.576827],[-70.814664,-38.552995],[-71.413517,-38.916022],[-71.680761,-39.808164],[-71.915734,-40.832339],[-71.746804,-42.051386],[-72.148898,-42.254888],[-71.915424,-43.408565],[-71.464056,-43.787611],[-71.793623,-44.207172],[-71.329801,-44.407522],[-71.222779,-44.784243],[-71.659316,-44.973689],[-71.552009,-45.560733],[-71.917258,-46.884838],[-72.447355,-47.738533],[-72.331161,-48.244238],[-72.648247,-48.878618],[-73.415436,-49.318436],[-73.328051,-50.378785],[-72.975747,-50.74145],[-72.309974,-50.67701],[-72.329404,-51.425956],[-71.914804,-52.009022],[-69.498362,-52.142761],[-68.571545,-52.299444],[-69.461284,-52.291951],[-69.94278,-52.537931],[-70.845102,-52.899201],[-71.006332,-53.833252],[-71.429795,-53.856455],[-72.557943,-53.53141],[-73.702757,-52.835069],[-73.702757,-52.83507],[-74.946763,-52.262754],[-75.260026,-51.629355],[-74.976632,-51.043396],[-75.479754,-50.378372],[-75.608015,-48.673773],[-75.18277,-47.711919],[-74.126581,-46.939253],[-75.644395,-46.647643],[-74.692154,-45.763976],[-74.351709,-44.103044],[-73.240356,-44.454961],[-72.717804,-42.383356],[-73.3889,-42.117532],[-73.701336,-43.365776],[-74.331943,-43.224958],[-74.017957,-41.794813],[-73.677099,-39.942213],[-73.217593,-39.258689],[-73.505559,-38.282883],[-73.588061,-37.156285],[-73.166717,-37.12378],[-72.553137,-35.50884],[-71.861732,-33.909093],[-71.43845,-32.418899],[-71.668721,-30.920645],[-71.370083,-30.095682],[-71.489894,-28.861442],[-70.905124,-27.64038],[-70.724954,-25.705924],[-70.403966,-23.628997],[-70.091246,-21.393319],[-70.16442,-19.756468],[-70.372572,-18.347975],[-69.858444,-18.092694],[-69.590424,-17.580012],[-69.100247,-18.260125],[-68.966818,-18.981683],[-68.442225,-19.405068],[-68.757167,-20.372658],[-68.219913,-21.494347]]]]}},
{"type":"Feature","id":"CHN","properties":{"name":"China"},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.339188,18.678395],[109.47521,18.197701],[108.655208,18.507682],[108.626217,19.367888],[109.119056,19.821039],[110.211599,20.101254],[110.786551,20.077534],[111.010051,19.69593],[110.570647,19.255879],[110.339188,18.678395]]],[[[127.657407,49.76027],[129.397818,49.4406],[130.582293,48.729687],[130.987282,47.790132],[132.506672,47.78897],[133.373596,48.183442],[135.026311,48.47823],[134.500814,47.57844],[134.112362,47.212467],[133.769644,46.116927],[133.097127,45.144066],[131.883454,45.321162],[131.025212,44.967953],[131.288555,44.11152],[131.144688,42.92999],[130.633866,42.903015],[130.640016,42.395009],[129.994267,42.985387],[129.596669,42.424982],[128.052215,41.994285],[128.208433,41.466772],[127.343783,41.503152],[126.869083,41.816569],[126.182045,41.107336],[125.079942,40.569824],[124.265625,39.928493],[122.86757,39.637788],[122.131388,39.170452],[121.054554,38.897471],[121.585995,39.360854],[121.376757,39.750261],[122.168595,40.422443],[121.640359,40.94639],[120.768629,40.593388],[119.639602,39.898056],[119.023464,39.252333],[118.042749,39.204274],[117.532702,38.737636],[118.059699,38.061476],[118.87815,37.897325],[118.911636,37.448464],[119.702802,37.156389],[120.823457,37.870428],[121.711259,37.481123],[122.357937,37.454484],[122.519995,36.930614],[121.104164,36.651329],[120.637009,36.11144],[119.664562,35.609791],[119.151208,34.909859],[120.227525,34.360332],[120.620369,33.376723],[121.229014,32.460319],[121.908146,31.692174],[121.891919,30.949352],[121.264257,30.676267],[121.503519,30.142915],[122.092114,29.83252],[121.938428,29.018022],[121.684439,28.225513],[121.125661,28.135673],[120.395473,27.053207],[119.585497,25.740781],[118.656871,24.547391],[117.281606,23.624501],[115.890735,22.782873],[114.763827,22.668074],[114.152547,22.22376],[113.80678,22.54834],[113.241078,22.051367],[111.843592,21.550494],[110.785466,21.397144],[110.444039,20.341033],[109.889861,20.282457],[109.627655,21.008227],[109.864488,21.395051],[108.522813,21.715212],[108.05018,21.55238],[107.04342,21.811899],[106.567273,22.218205],[106.725403,22.794268],[105.811247,22.976892],[105.329209,23.352063],[104.476858,22.81915],[103.504515,22.703757],[102.706992,22.708795],[102.170436,22.464753],[101.652018,22.318199],[101.80312,21.174367],[101.270026,21.201652],[101.180005,21.436573],[101.150033,21.849984],[100.416538,21.558839],[99.983489,21.742937],[99.240899,22.118314],[99.531992,22.949039],[98.898749,23.142722],[98.660262,24.063286],[97.60472,23.897405],[97.724609,25.083637],[98.671838,25.918703],[98.712094,26.743536],[98.68269,27.508812],[98.246231,27.747221],[97.911988,28.335945],[97.327114,28.261583],[96.248833,28.411031],[96.586591,28.83098],[96.117679,29.452802],[95.404802,29.031717],[94.56599,29.277438],[93.413348,28.640629],[92.503119,27.896876],[91.696657,27.771742],[91.258854,28.040614],[90.730514,28.064954],[90.015829,28.296439],[89.47581,28.042759],[88.814248,27.299316],[88.730326,28.086865],[88.120441,27.876542],[86.954517,27.974262],[85.82332,28.203576],[85.011638,28.642774],[84.23458,28.839894],[83.898993,29.320226],[83.337115,29.463732],[82.327513,30.115268],[81.525804,30.422717],[81.111256,30.183481],[79.721367,30.882715],[78.738894,31.515906],[78.458446,32.618164],[79.176129,32.48378],[79.208892,32.994395],[78.811086,33.506198],[78.912269,34.321936],[77.837451,35.49401],[76.192848,35.898403],[75.896897,36.666806],[75.158028,37.133031],[74.980002,37.41999],[74.829986,37.990007],[74.864816,38.378846],[74.257514,38.606507],[73.928852,38.505815],[73.675379,39.431237],[73.960013,39.660008],[73.822244,39.893973],[74.776862,40.366425],[75.467828,40.562072],[76.526368,40.427946],[76.904484,41.066486],[78.187197,41.185316],[78.543661,41.582243],[80.11943,42.123941],[80.25999,42.349999],[80.18015,42.920068],[80.866206,43.180362],[79.966106,44.917517],[81.947071,45.317027],[82.458926,45.53965],[83.180484,47.330031],[85.16429,47.000956],[85.720484,47.452969],[85.768233,48.455751],[86.598776,48.549182],[87.35997,49.214981],[87.751264,49.297198],[88.013832,48.599463],[88.854298,48.069082],[90.280826,47.693549],[90.970809,46.888146],[90.585768,45.719716],[90.94554,45.286073],[92.133891,45.115076],[93.480734,44.975472],[94.688929,44.352332],[95.306875,44.241331],[95.762455,43.319449],[96.349396,42.725635],[97.451757,42.74889],[99.515817,42.524691],[100.845866,42.663804],[101.83304,42.514873],[103.312278,41.907468],[104.522282,41.908347],[104.964994,41.59741],[106.129316,42.134328],[107.744773,42.481516],[109.243596,42.519446],[110.412103,42.871234],[111.129682,43.406834],[111.829588,43.743118],[111.667737,44.073176],[111.348377,44.457442],[111.873306,45.102079],[112.436062,45.011646],[113.463907,44.808893],[114.460332,45.339817],[115.985096,45.727235],[116.717868,46.388202],[117.421701,46.672733],[118.874326,46.805412],[119.66327,46.69268],[119.772824,47.048059],[118.866574,47.74706],[118.064143,48.06673],[117.295507,47.697709],[116.308953,47.85341],[115.742837,47.726545],[115.485282,48.135383],[116.191802,49.134598],[116.678801,49.888531],[117.879244,49.510983],[119.288461,50.142883],[119.279366,50.582908],[120.18205,51.643566],[120.738191,51.964115],[120.725789,52.516226],[120.177089,52.753886],[121.003085,53.251401],[122.245748,53.431726],[123.571507,53.458804],[125.068211,53.161045],[125.946349,52.792799],[126.564399,51.784255],[126.939157,51.353894],[127.287456,50.739797],[127.657407,49.76027]]]]}},
{"type":"Feature","id":"CIV","properties":{"name":"Ivory Coast"},"geometry":{"type":"Polygon","coordinates":[[[-2.856125,4.994476],[-3.311084,4.984296],[-4.00882,5.179813],[-4.649917,5.168264],[-5.834496,4.993701],[-6.528769,4.705088],[-7.518941,4.338288],[-7.712159,4.364566],[-7.635368,5.188159],[-7.539715,5.313345],[-7.570153,5.707352],[-7.993693,6.12619],[-8.311348,6.193033],[-8.60288,6.467564],[-8.385452,6.911801],[-8.485446,7.395208],[-8.439298,7.686043],[-8.280703,7.68718],[-8.221792,8.123329],[-8.299049,8.316444],[-8.203499,8.455453],[-7.8321,8.575704],[-8.079114,9.376224],[-8.309616,9.789532],[-8.229337,10.12902],[-8.029944,10.206535],[-7.89959,10.297382],[-7.622759,10.147236],[-6.850507,10.138994],[-6.666461,10.430811],[-6.493965,10.411303],[-6.205223,10.524061],[-6.050452,10.096361],[-5.816926,10.222555],[-5.404342,10.370737],[-4.954653,10.152714],[-4.779884,9.821985],[-4.330247,9.610835],[-3.980449,9.862344],[-3.511899,9.900326],[-2.827496,9.642461],[-2.56219,8.219628],[-2.983585,7.379705],[-3.24437,6.250472],[-2.810701,5.389051],[-2.856125,4.994476]]]}},
{"type":"Feature","id":"CMR","properties":{"name":"Cameroon"},"geometry":{"type":"Polygon","coordinates":[[[13.075822,2.267097],[12.951334,2.321616],[12.35938,2.192812],[11.751665,2.326758],[11.276449,2.261051],[9.649158,2.283866],[9.795196,3.073404],[9.404367,3.734527],[8.948116,3.904129],[8.744924,4.352215],[8.488816,4.495617],[8.500288,4.771983],[8.757533,5.479666],[9.233163,6.444491],[9.522706,6.453482],[10.118277,7.03877],[10.497375,7.055358],[11.058788,6.644427],[11.745774,6.981383],[11.839309,7.397042],[12.063946,7.799808],[12.218872,8.305824],[12.753672,8.717763],[12.955468,9.417772],[13.1676,9.640626],[13.308676,10.160362],[13.57295,10.798566],[14.415379,11.572369],[14.468192,11.904752],[14.577178,12.085361],[14.181336,12.483657],[14.213531,12.802035],[14.495787,12.859396],[14.893386,12.219048],[14.960152,11.555574],[14.923565,10.891325],[15.467873,9.982337],[14.909354,9.992129],[14.627201,9.920919],[14.171466,10.021378],[13.954218,9.549495],[14.544467,8.965861],[14.979996,8.796104],[15.120866,8.38215],[15.436092,7.692812],[15.27946,7.421925],[14.776545,6.408498],[14.53656,6.226959],[14.459407,5.451761],[14.558936,5.030598],[14.478372,4.732605],[14.950953,4.210389],[15.03622,3.851367],[15.405396,3.335301],[15.862732,3.013537],[15.907381,2.557389],[16.012852,2.26764],[15.940919,1.727673],[15.146342,1.964015],[14.337813,2.227875],[13.075822,2.267097]]]}},
{"type":"Feature","id":"COD","properties":{"name":"Democratic Republic of the Congo"},"geometry":{"type":"Polygon","coordinates":[[[30.83386,3.509166],[30.773347,2.339883],[31.174149,2.204465],[30.85267,1.849396],[30.468508,1.583805],[30.086154,1.062313],[29.875779,0.59738],[29.819503,-0.20531],[29.587838,-0.587406],[29.579466,-1.341313],[29.291887,-1.620056],[29.254835,-2.21511],[29.117479,-2.292211],[29.024926,-2.839258],[29.276384,-3.293907],[29.339998,-4.499983],[29.519987,-5.419979],[29.419993,-5.939999],[29.620032,-6.520015],[30.199997,-7.079981],[30.740015,-8.340007],[30.346086,-8.238257],[29.002912,-8.407032],[28.734867,-8.526559],[28.449871,-9.164918],[28.673682,-9.605925],[28.49607,-10.789884],[28.372253,-11.793647],[28.642417,-11.971569],[29.341548,-12.360744],[29.616001,-12.178895],[29.699614,-13.257227],[28.934286,-13.248958],[28.523562,-12.698604],[28.155109,-12.272481],[27.388799,-12.132747],[27.16442,-11.608748],[26.553088,-11.92444],[25.75231,-11.784965],[25.418118,-11.330936],[24.78317,-11.238694],[24.314516,-11.262826],[24.257155,-10.951993],[23.912215,-10.926826],[23.456791,-10.867863],[22.837345,-11.017622],[22.402798,-10.993075],[22.155268,-11.084801],[22.208753,-9.894796],[21.875182,-9.523708],[21.801801,-8.908707],[21.949131,-8.305901],[21.746456,-7.920085],[21.728111,-7.290872],[20.514748,-7.299606],[20.601823,-6.939318],[20.091622,-6.94309],[20.037723,-7.116361],[19.417502,-7.155429],[19.166613,-7.738184],[19.016752,-7.988246],[18.464176,-7.847014],[18.134222,-7.987678],[17.47297,-8.068551],[17.089996,-7.545689],[16.860191,-7.222298],[16.57318,-6.622645],[16.326528,-5.87747],[13.375597,-5.864241],[13.024869,-5.984389],[12.735171,-5.965682],[12.322432,-6.100092],[12.182337,-5.789931],[12.436688,-5.684304],[12.468004,-5.248362],[12.631612,-4.991271],[12.995517,-4.781103],[13.25824,-4.882957],[13.600235,-4.500138],[14.144956,-4.510009],[14.209035,-4.793092],[14.582604,-4.970239],[15.170992,-4.343507],[15.75354,-3.855165],[16.00629,-3.535133],[15.972803,-2.712392],[16.407092,-1.740927],[16.865307,-1.225816],[17.523716,-0.74383],[17.638645,-0.424832],[17.663553,-0.058084],[17.82654,0.288923],[17.774192,0.855659],[17.898835,1.741832],[18.094276,2.365722],[18.393792,2.900443],[18.453065,3.504386],[18.542982,4.201785],[18.932312,4.709506],[19.467784,5.031528],[20.290679,4.691678],[20.927591,4.322786],[21.659123,4.224342],[22.405124,4.02916],[22.704124,4.633051],[22.84148,4.710126],[23.297214,4.609693],[24.410531,5.108784],[24.805029,4.897247],[25.128833,4.927245],[25.278798,5.170408],[25.650455,5.256088],[26.402761,5.150875],[27.044065,5.127853],[27.374226,5.233944],[27.979977,4.408413],[28.428994,4.287155],[28.696678,4.455077],[29.159078,4.389267],[29.715995,4.600805],[29.9535,4.173699],[30.83386,3.509166]]]}},
{"type":"Feature","id":"COG","properties":{"name":"Republic of the Congo"},"geometry":{"type":"Polygon","coordinates":[[[12.995517,-4.781103],[12.62076,-4.438023],[12.318608,-4.60623],[11.914963,-5.037987],[11.093773,-3.978827],[11.855122,-3.426871],[11.478039,-2.765619],[11.820964,-2.514161],[12.495703,-2.391688],[12.575284,-1.948511],[13.109619,-2.42874],[13.992407,-2.470805],[14.29921,-1.998276],[14.425456,-1.333407],[14.316418,-0.552627],[13.843321,0.038758],[14.276266,1.19693],[14.026669,1.395677],[13.282631,1.314184],[13.003114,1.830896],[13.075822,2.267097],[14.337813,2.227875],[15.146342,1.964015],[15.940919,1.727673],[16.012852,2.26764],[16.537058,3.198255],[17.133042,3.728197],[17.8099,3.560196],[18.453065,3.504386],[18.393792,2.900443],[18.094276,2.365722],[17.898835,1.741832],[17.774192,0.855659],[17.82654,0.288923],[17.663553,-0.058084],[17.638645,-0.424832],[17.523716,-0.74383],[16.865307,-1.225816],[16.407092,-1.740927],[15.972803,-2.712392],[16.00629,-3.535133],[15.75354,-3.855165],[15.170992,-4.343507],[14.582604,-4.970239],[14.209035,-4.793092],[14.144956,-4.510009],[13.600235,-4.500138],[13.25824,-4.882957],[12.995517,-4.781103]]]}},
{"type":"Feature","id":"COL","properties":{"name":"Colombia"},"geometry":{"type":"Polygon","coordinates":[[[-75.373223,-0.152032],[-75.801466,0.084801],[-76.292314,0.416047],[-76.57638,0.256936],[-77.424984,0.395687],[-77.668613,0.825893],[-77.855061,0.809925],[-78.855259,1.380924],[-78.990935,1.69137],[-78.617831,1.766404],[-78.662118,2.267355],[-78.42761,2.629556],[-77.931543,2.696606],[-77.510431,3.325017],[-77.12769,3.849636],[-77.496272,4.087606],[-77.307601,4.667984],[-77.533221,5.582812],[-77.318815,5.845354],[-77.476661,6.691116],[-77.881571,7.223771],[-77.753414,7.70984],[-77.431108,7.638061],[-77.242566,7.935278],[-77.474723,8.524286],[-77.353361,8.670505],[-76.836674,8.638749],[-76.086384,9.336821],[-75.6746,9.443248],[-75.664704,9.774003],[-75.480426,10.61899],[-74.906895,11.083045],[-74.276753,11.102036],[-74.197223,11.310473],[-73.414764,11.227015],[-72.627835,11.731972],[-72.238195,11.95555],[-71.75409,12.437303],[-71.399822,12.376041],[-71.137461,12.112982],[-71.331584,11.776284],[-71.973922,11.608672],[-72.227575,11.108702],[-72.614658,10.821975],[-72.905286,10.450344],[-73.027604,9.73677],[-73.304952,9.152],[-72.78873,9.085027],[-72.660495,8.625288],[-72.439862,8.405275],[-72.360901,8.002638],[-72.479679,7.632506],[-72.444487,7.423785],[-72.198352,7.340431],[-71.960176,6.991615],[-70.674234,7.087785],[-70.093313,6.960376],[-69.38948,6.099861],[-68.985319,6.206805],[-68.265052,6.153268],[-67.695087,6.267318],[-67.34144,6.095468],[-67.521532,5.55687],[-67.744697,5.221129],[-67.823012,4.503937],[-67.621836,3.839482],[-67.337564,3.542342],[-67.303173,3.318454],[-67.809938,2.820655],[-67.447092,2.600281],[-67.181294,2.250638],[-66.876326,1.253361],[-67.065048,1.130112],[-67.259998,1.719999],[-67.53781,2.037163],[-67.868565,1.692455],[-69.816973,1.714805],[-69.804597,1.089081],[-69.218638,0.985677],[-69.252434,0.602651],[-69.452396,0.706159],[-70.015566,0.541414],[-70.020656,-0.185156],[-69.577065,-0.549992],[-69.420486,-1.122619],[-69.444102,-1.556287],[-69.893635,-4.298187],[-70.394044,-3.766591],[-70.692682,-3.742872],[-70.047709,-2.725156],[-70.813476,-2.256865],[-71.413646,-2.342802],[-71.774761,-2.16979],[-72.325787,-2.434218],[-73.070392,-2.308954],[-73.659504,-1.260491],[-74.122395,-1.002833],[-74.441601,-0.53082],[-75.106625,-0.057205],[-75.373223,-0.152032]]]}},
{"type":"Feature","id":"CRI","properties":{"name":"Costa Rica"},"geometry":{"type":"Polygon","coordinates":[[[-82.965783,8.225028],[-83.508437,8.446927],[-83.711474,8.656836],[-83.596313,8.830443],[-83.632642,9.051386],[-83.909886,9.290803],[-84.303402,9.487354],[-84.647644,9.615537],[-84.713351,9.908052],[-84.97566,10.086723],[-84.911375,9.795992],[-85.110923,9.55704],[-85.339488,9.834542],[-85.660787,9.933347],[-85.797445,10.134886],[-85.791709,10.439337],[-85.659314,10.754331],[-85.941725,10.895278],[-85.71254,11.088445],[-85.561852,11.217119],[-84.903003,10.952303],[-84.673069,11.082657],[-84.355931,10.999226],[-84.190179,10.79345],[-83.895054,10.726839],[-83.655612,10.938764],[-83.40232,10.395438],[-83.015677,9.992982],[-82.546196,9.566135],[-82.932891,9.476812],[-82.927155,9.07433],[-82.719183,8.925709],[-82.868657,8.807266],[-82.829771,8.626295],[-82.913176,8.423517],[-82.965783,8.225028]]]}},
{"type":"Feature","id":"CUB","properties":{"name":"Cuba"},"geometry":{"type":"Polygon","coordinates":[[[-82.268151,23.188611],[-81.404457,23.117271],[-80.618769,23.10598],[-79.679524,22.765303],[-79.281486,22.399202],[-78.347434,22.512166],[-77.993296,22.277194],[-77.146422,21.657851],[-76.523825,21.20682],[-76.19462,21.220565],[-75.598222,21.016624],[-75.67106,20.735091],[-74.933896,20.693905],[-74.178025,20.284628],[-74.296648,20.050379],[-74.961595,19.923435],[-75.63468,19.873774],[-76.323656,19.952891],[-77.755481,19.855481],[-77.085108,20.413354],[-77.492655,20.673105],[-78.137292,20.739949],[-78.482827,21.028613],[-78.719867,21.598114],[-79.285,21.559175],[-80.217475,21.827324],[-80.517535,22.037079],[-81.820943,22.192057],[-82.169992,22.387109],[-81.795002,22.636965],[-82.775898,22.68815],[-83.494459,22.168518],[-83.9088,22.154565],[-84.052151,21.910575],[-84.54703,21.801228],[-84.974911,21.896028],[-84.447062,22.20495],[-84.230357,22.565755],[-83.77824,22.788118],[-83.267548,22.983042],[-82.510436,23.078747],[-82.268151,23.188611]]]}},
{"type":"Feature","id":"-99","properties":{"name":"Northern Cyprus"},"geometry":{"type":"Polygon","coordinates":[[[32.73178,35.140026],[32.802474,35.145504],[32.946961,35.386703],[33.667227,35.373216],[34.576474,35.671596],[33.900804,35.245756],[33.973617,35.058506],[33.86644,35.093595],[33.675392,35.017863],[33.525685,35.038688],[33.475817,35.000345],[33.455922,35.101424],[33.383833,35.162712],[33.190977,35.173125],[32.919572,35.087833],[32.73178,35.140026]]]}},
{"type":"Feature","id":"CYP","properties":{"name":"Cyprus"},"geometry":{"type":"Polygon","coordinates":[[[33.973617,35.058506],[34.004881,34.978098],[32.979827,34.571869],[32.490296,34.701655],[32.256667,35.103232],[32.73178,35.140026],[32.919572,35.087833],[33.190977,35.173125],[33.383833,35.162712],[33.455922,35.101424],[33.475817,35.000345],[33.525685,35.038688],[33.675392,35.017863],[33.86644,35.093595],[33.973617,35.058506]]]}},
{"type":"Feature","id":"CZE","properties":{"name":"Czech Republic"},"geometry":{"type":"Polygon","coordinates":[[[16.960288,48.596982],[16.499283,48.785808],[16.029647,48.733899],[15.253416,49.039074],[14.901447,48.964402],[14.338898,48.555305],[13.595946,48.877172],[13.031329,49.307068],[12.521024,49.547415],[12.415191,49.969121],[12.240111,50.266338],[12.966837,50.484076],[13.338132,50.733234],[14.056228,50.926918],[14.307013,51.117268],[14.570718,51.002339],[15.016996,51.106674],[15.490972,50.78473],[16.238627,50.697733],[16.176253,50.422607],[16.719476,50.215747],[16.868769,50.473974],[17.554567,50.362146],[17.649445,50.049038],[18.392914,49.988629],[18.853144,49.49623],[18.554971,49.495015],[18.399994,49.315001],[18.170498,49.271515],[18.104973,49.043983],[17.913512,48.996493],[17.886485,48.903475],[17.545007,48.800019],[17.101985,48.816969],[16.960288,48.596982]]]}},
{"type":"Feature","id":"DEU","properties":{"name":"Germany"},"geometry":{"type":"Polygon","coordinates":[[[9.921906,54.983104],[9.93958,54.596642],[10.950112,54.363607],[10.939467,54.008693],[11.956252,54.196486],[12.51844,54.470371],[13.647467,54.075511],[14.119686,53.757029],[14.353315,53.248171],[14.074521,52.981263],[14.4376,52.62485],[14.685026,52.089947],[14.607098,51.745188],[15.016996,51.106674],[14.570718,51.002339],[14.307013,51.117268],[14.056228,50.926918],[13.338132,50.733234],[12.966837,50.484076],[12.240111,50.266338],[12.415191,49.969121],[12.521024,49.547415],[13.031329,49.307068],[13.595946,48.877172],[13.243357,48.416115],[12.884103,48.289146],[13.025851,47.637584],[12.932627,47.467646],[12.62076,47.672388],[12.141357,47.703083],[11.426414,47.523766],[10.544504,47.566399],[10.402084,47.302488],[9.896068,47.580197],[9.594226,47.525058],[8.522612,47.830828],[8.317301,47.61358],[7.466759,47.620582],[7.593676,48.333019],[8.099279,49.017784],[6.65823,49.201958],[6.18632,49.463803],[6.242751,49.902226],[6.043073,50.128052],[6.156658,50.803721],[5.988658,51.851616],[6.589397,51.852029],[6.84287,52.22844],[7.092053,53.144043],[6.90514,53.482162],[7.100425,53.693932],[7.936239,53.748296],[8.121706,53.527792],[8.800734,54.020786],[8.572118,54.395646],[8.526229,54.962744],[9.282049,54.830865],[9.921906,54.983104]]]}},
{"type":"Feature","id":"DJI","properties":{"name":"Djibouti"},"geometry":{"type":"Polygon","coordinates":[[[43.081226,12.699639],[43.317852,12.390148],[43.286381,11.974928],[42.715874,11.735641],[43.145305,11.46204],[42.776852,10.926879],[42.55493,11.10511],[42.31414,11.0342],[41.75557,11.05091],[41.73959,11.35511],[41.66176,11.6312],[42,12.1],[42.35156,12.54223],[42.779642,12.455416],[43.081226,12.699639]]]}},
{"type":"Feature","id":"DNK","properties":{"name":"Denmark"},"geometry":{"type":"MultiPolygon","coordinates":[[[[12.690006,55.609991],[12.089991,54.800015],[11.043543,55.364864],[10.903914,55.779955],[12.370904,56.111407],[12.690006,55.609991]]],[[[10.912182,56.458621],[10.667804,56.081383],[10.369993,56.190007],[9.649985,55.469999],[9.921906,54.983104],[9.282049,54.830865],[8.526229,54.962744],[8.120311,55.517723],[8.089977,56.540012],[8.256582,56.809969],[8.543438,57.110003],[9.424469,57.172066],[9.775559,57.447941],[10.580006,57.730017],[10.546106,57.215733],[10.25,56.890016],[10.369993,56.609982],[10.912182,56.458621]]]]}},
{"type":"Feature","id":"DOM","properties":{"name":"Dominican Republic"},"geometry":{"type":"Polygon","coordinates":[[[-71.712361,19.714456],[-71.587304,19.884911],[-70.806706,19.880286],[-70.214365,19.622885],[-69.950815,19.648],[-69.76925,19.293267],[-69.222126,19.313214],[-69.254346,19.015196],[-68.809412,18.979074],[-68.317943,18.612198],[-68.689316,18.205142],[-69.164946,18.422648],[-69.623988,18.380713],[-69.952934,18.428307],[-70.133233,18.245915],[-70.517137,18.184291],[-70.669298,18.426886],[-70.99995,18.283329],[-71.40021,17.598564],[-71.657662,17.757573],[-71.708305,18.044997],[-71.687738,18.31666],[-71.945112,18.6169],[-71.701303,18.785417],[-71.624873,19.169838],[-71.712361,19.714456]]]}},
{"type":"Feature","id":"DZA","properties":{"name":"Algeria"},"geometry":{"type":"Polygon","coordinates":[[[11.999506,23.471668],[8.572893,21.565661],[5.677566,19.601207],[4.267419,19.155265],[3.158133,19.057364],[3.146661,19.693579],[2.683588,19.85623],[2.060991,20.142233],[1.823228,20.610809],[-1.550055,22.792666],[-4.923337,24.974574],[-8.6844,27.395744],[-8.665124,27.589479],[-8.66559,27.656426],[-8.674116,28.841289],[-7.059228,29.579228],[-6.060632,29.7317],[-5.242129,30.000443],[-4.859646,30.501188],[-3.690441,30.896952],[-3.647498,31.637294],[-3.06898,31.724498],[-2.616605,32.094346],[-1.307899,32.262889],[-1.124551,32.651522],[-1.388049,32.864015],[-1.733455,33.919713],[-1.792986,34.527919],[-2.169914,35.168396],[-1.208603,35.714849],[-0.127454,35.888662],[0.503877,36.301273],[1.466919,36.605647],[3.161699,36.783905],[4.815758,36.865037],[5.32012,36.716519],[6.26182,37.110655],[7.330385,37.118381],[7.737078,36.885708],[8.420964,36.946427],[8.217824,36.433177],[8.376368,35.479876],[8.140981,34.655146],[7.524482,34.097376],[7.612642,33.344115],[8.430473,32.748337],[8.439103,32.506285],[9.055603,32.102692],[9.48214,30.307556],[9.805634,29.424638],[9.859998,28.95999],[9.683885,28.144174],[9.756128,27.688259],[9.629056,27.140953],[9.716286,26.512206],[9.319411,26.094325],[9.910693,25.365455],[9.948261,24.936954],[10.303847,24.379313],[10.771364,24.562532],[11.560669,24.097909],[11.999506,23.471668]]]}},
{"type":"Feature","id":"ECU","properties":{"name":"Ecuador"},"geometry":{"type":"Polygon","coordinates":[[[-80.302561,-3.404856],[-79.770293,-2.657512],[-79.986559,-2.220794],[-80.368784,-2.685159],[-80.967765,-2.246943],[-80.764806,-1.965048],[-80.933659,-1.057455],[-80.58337,-0.906663],[-80.399325,-0.283703],[-80.020898,0.36034],[-80.09061,0.768429],[-79.542762,0.982938],[-78.855259,1.380924],[-77.855061,0.809925],[-77.668613,0.825893],[-77.424984,0.395687],[-76.57638,0.256936],[-76.292314,0.416047],[-75.801466,0.084801],[-75.373223,-0.152032],[-75.233723,-0.911417],[-75.544996,-1.56161],[-76.635394,-2.608678],[-77.837905,-3.003021],[-78.450684,-3.873097],[-78.639897,-4.547784],[-79.205289,-4.959129],[-79.624979,-4.454198],[-80.028908,-4.346091],[-80.442242,-4.425724],[-80.469295,-4.059287],[-80.184015,-3.821162],[-80.302561,-3.404856]]]}},
{"type":"Feature","id":"EGY","properties":{"name":"Egypt"},"geometry":{"type":"Polygon","coordinates":[[[34.9226,29.50133],[34.64174,29.09942],[34.42655,28.34399],[34.15451,27.8233],[33.92136,27.6487],[33.58811,27.97136],[33.13676,28.41765],[32.42323,29.85108],[32.32046,29.76043],[32.73482,28.70523],[33.34876,27.69989],[34.10455,26.14227],[34.47387,25.59856],[34.79507,25.03375],[35.69241,23.92671],[35.49372,23.75237],[35.52598,23.10244],[36.69069,22.20485],[36.86623,22],[32.9,22],[29.02,22],[25,22],[25,25.6825],[25,29.238655],[24.70007,30.04419],[24.95762,30.6616],[24.80287,31.08929],[25.16482,31.56915],[26.49533,31.58568],[27.45762,31.32126],[28.45048,31.02577],[28.91353,30.87005],[29.68342,31.18686],[30.09503,31.4734],[30.97693,31.55586],[31.68796,31.4296],[31.96041,30.9336],[32.19247,31.26034],[32.99392,31.02407],[33.7734,30.96746],[34.26544,31.21936],[34.9226,29.50133]]]}},
{"type":"Feature","id":"ERI","properties":{"name":"Eritrea"},"geometry":{"type":"Polygon","coordinates":[[[42.35156,12.54223],[42.00975,12.86582],[41.59856,13.45209],[41.155194,13.77332],[40.8966,14.11864],[40.026219,14.519579],[39.34061,14.53155],[39.0994,14.74064],[38.51295,14.50547],[37.90607,14.95943],[37.59377,14.2131],[36.42951,14.42211],[36.323189,14.822481],[36.75386,16.291874],[36.85253,16.95655],[37.16747,17.26314],[37.904,17.42754],[38.41009,17.998307],[38.990623,16.840626],[39.26611,15.922723],[39.814294,15.435647],[41.179275,14.49108],[41.734952,13.921037],[42.276831,13.343992],[42.589576,13.000421],[43.081226,12.699639],[42.779642,12.455416],[42.35156,12.54223]]]}},
{"type":"Feature","id":"ESP","properties":{"name":"Spain"},"geometry":{"type":"Polygon","coordinates":[[[-9.034818,41.880571],[-8.984433,42.592775],[-9.392884,43.026625],[-7.97819,43.748338],[-6.754492,43.567909],[-5.411886,43.57424],[-4.347843,43.403449],[-3.517532,43.455901],[-1.901351,43.422802],[-1.502771,43.034014],[0.338047,42.579546],[0.701591,42.795734],[1.826793,42.343385],[2.985999,42.473015],[3.039484,41.89212],[2.091842,41.226089],[0.810525,41.014732],[0.721331,40.678318],[0.106692,40.123934],[-0.278711,39.309978],[0.111291,38.738514],[-0.467124,38.292366],[-0.683389,37.642354],[-1.438382,37.443064],[-2.146453,36.674144],[-3.415781,36.6589],[-4.368901,36.677839],[-4.995219,36.324708],[-5.37716,35.94685],[-5.866432,36.029817],[-6.236694,36.367677],[-6.520191,36.942913],[-7.453726,37.097788],[-7.537105,37.428904],[-7.166508,37.803894],[-7.029281,38.075764],[-7.374092,38.373059],[-7.098037,39.030073],[-7.498632,39.629571],[-7.066592,39.711892],[-7.026413,40.184524],[-6.86402,40.330872],[-6.851127,41.111083],[-6.389088,41.381815],[-6.668606,41.883387],[-7.251309,41.918346],[-7.422513,41.792075],[-8.013175,41.790886],[-8.263857,42.280469],[-8.671946,42.134689],[-9.034818,41.880571]]]}},
{"type":"Feature","id":"EST","properties":{"name":"Estonia"},"geometry":{"type":"Polygon","coordinates":[[[24.312863,57.793424],[24.428928,58.383413],[24.061198,58.257375],[23.42656,58.612753],[23.339795,59.18724],[24.604214,59.465854],[25.864189,59.61109],[26.949136,59.445803],[27.981114,59.475388],[28.131699,59.300825],[27.420166,58.724581],[27.716686,57.791899],[27.288185,57.474528],[26.463532,57.476389],[25.60281,57.847529],[25.164594,57.970157],[24.312863,57.793424]]]}},
{"type":"Feature","id":"ETH","properties":{"name":"Ethiopia"},"geometry":{"type":"Polygon","coordinates":[[[37.90607,14.95943],[38.51295,14.50547],[39.0994,14.74064],[39.34061,14.53155],[40.02625,14.51959],[40.8966,14.11864],[41.1552,13.77333],[41.59856,13.45209],[42.00975,12.86582],[42.35156,12.54223],[42,12.1],[41.66176,11.6312],[41.73959,11.35511],[41.75557,11.05091],[42.31414,11.0342],[42.55493,11.10511],[42.776852,10.926879],[42.55876,10.57258],[42.92812,10.02194],[43.29699,9.54048],[43.67875,9.18358],[46.94834,7.99688],[47.78942,8.003],[44.9636,5.00162],[43.66087,4.95755],[42.76967,4.25259],[42.12861,4.23413],[41.855083,3.918912],[41.1718,3.91909],[40.76848,4.25702],[39.85494,3.83879],[39.559384,3.42206],[38.89251,3.50074],[38.67114,3.61607],[38.43697,3.58851],[38.120915,3.598605],[36.855093,4.447864],[36.159079,4.447864],[35.817448,4.776966],[35.817448,5.338232],[35.298007,5.506],[34.70702,6.59422],[34.25032,6.82607],[34.0751,7.22595],[33.56829,7.71334],[32.95418,7.78497],[33.2948,8.35458],[33.8255,8.37916],[33.97498,8.68456],[33.96162,9.58358],[34.25745,10.63009],[34.73115,10.91017],[34.83163,11.31896],[35.26049,12.08286],[35.86363,12.57828],[36.27022,13.56333],[36.42951,14.42211],[37.59377,14.2131],[37.90607,14.95943]]]}},
{"type":"Feature","id":"FIN","properties":{"name":"Finland"},"geometry":{"type":"Polygon","coordinates":[[[28.59193,69.064777],[28.445944,68.364613],[29.977426,67.698297],[29.054589,66.944286],[30.21765,65.80598],[29.54443,64.948672],[30.444685,64.204453],[30.035872,63.552814],[31.516092,62.867687],[31.139991,62.357693],[30.211107,61.780028],[28.069998,60.503517],[26.255173,60.423961],[24.496624,60.057316],[22.869695,59.846373],[22.290764,60.391921],[21.322244,60.72017],[21.544866,61.705329],[21.059211,62.607393],[21.536029,63.189735],[22.442744,63.81781],[24.730512,64.902344],[25.398068,65.111427],[25.294043,65.534346],[23.903379,66.006927],[23.56588,66.396051],[23.539473,67.936009],[21.978535,68.616846],[20.645593,69.106247],[21.244936,69.370443],[22.356238,68.841741],[23.66205,68.891247],[24.735679,68.649557],[25.689213,69.092114],[26.179622,69.825299],[27.732292,70.164193],[29.015573,69.766491],[28.59193,69.064777]]]}},
{"type":"Feature","id":"FJI","properties":{"name":"Fiji"},"geometry":{"type":"MultiPolygon","coordinates":[[[[178.3736,-17.33992],[178.71806,-17.62846],[178.55271,-18.15059],[177.93266,-18.28799],[177.38146,-18.16432],[177.28504,-17.72465],[177.67087,-17.38114],[178.12557,-17.50481],[178.3736,-17.33992]]],[[[179.364143,-16.801354],[178.725059,-17.012042],[178.596839,-16.63915],[179.096609,-16.433984],[179.413509,-16.379054],[180,-16.067133],[180,-16.555217],[179.364143,-16.801354]]],[[[-179.917369,-16.501783],[-180,-16.555217],[-180,-16.067133],[-179.79332,-16.020882],[-179.917369,-16.501783]]]]}},
{"type":"Feature","id":"FLK","properties":{"name":"Falkland Islands"},"geometry":{"type":"Polygon","coordinates":[[[-61.2,-51.85],[-60,-51.25],[-59.15,-51.5],[-58.55,-51.1],[-57.75,-51.55],[-58.05,-51.9],[-59.4,-52.2],[-59.85,-51.85],[-60.7,-52.3],[-61.2,-51.85]]]}},
{"type":"Feature","id":"FRA","properties":{"name":"France"},"geometry":{"type":"MultiPolygon","coordinates":[[[[9.560016,42.152492],[9.229752,41.380007],[8.775723,41.583612],[8.544213,42.256517],[8.746009,42.628122],[9.390001,43.009985],[9.560016,42.152492]]],[[[3.588184,50.378992],[4.286023,49.907497],[4.799222,49.985373],[5.674052,49.529484],[5.897759,49.442667],[6.18632,49.463803],[6.65823,49.201958],[8.099279,49.017784],[7.593676,48.333019],[7.466759,47.620582],[7.192202,47.449766],[6.736571,47.541801],[6.768714,47.287708],[6.037389,46.725779],[6.022609,46.27299],[6.5001,46.429673],[6.843593,45.991147],[6.802355,45.70858],[7.096652,45.333099],[6.749955,45.028518],[7.007562,44.254767],[7.549596,44.127901],[7.435185,43.693845],[6.529245,43.128892],[4.556963,43.399651],[3.100411,43.075201],[2.985999,42.473015],[1.826793,42.343385],[0.701591,42.795734],[0.338047,42.579546],[-1.502771,43.034014],[-1.901351,43.422802],[-1.384225,44.02261],[-1.193798,46.014918],[-2.225724,47.064363],[-2.963276,47.570327],[-4.491555,47.954954],[-4.59235,48.68416],[-3.295814,48.901692],[-1.616511,48.644421],[-1.933494,49.776342],[-0.989469,49.347376],[1.338761,50.127173],[1.639001,50.946606],[2.513573,51.148506],[2.658422,50.796848],[3.123252,50.780363],[3.588184,50.378992]]]]}},
{"type":"Feature","id":"GAB","properties":{"name":"Gabon"},"geometry":{"type":"Polygon","coordinates":[[[11.093773,-3.978827],[10.066135,-2.969483],[9.405245,-2.144313],[8.797996,-1.111301],[8.830087,-0.779074],[9.04842,-0.459351],[9.291351,0.268666],[9.492889,1.01012],[9.830284,1.067894],[11.285079,1.057662],[11.276449,2.261051],[11.751665,2.326758],[12.35938,2.192812],[12.951334,2.321616],[13.075822,2.267097],[13.003114,1.830896],[13.282631,1.314184],[14.026669,1.395677],[14.276266,1.19693],[13.843321,0.038758],[14.316418,-0.552627],[14.425456,-1.333407],[14.29921,-1.998276],[13.992407,-2.470805],[13.109619,-2.42874],[12.575284,-1.948511],[12.495703,-2.391688],[11.820964,-2.514161],[11.478039,-2.765619],[11.855122,-3.426871],[11.093773,-3.978827]]]}},
{"type":"Feature","id":"GBR","properties":{"name":"United Kingdom"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-5.661949,54.554603],[-6.197885,53.867565],[-6.95373,54.073702],[-7.572168,54.059956],[-7.366031,54.595841],[-7.572168,55.131622],[-6.733847,55.17286],[-5.661949,54.554603]]],[[[-3.005005,58.635],[-4.073828,57.553025],[-3.055002,57.690019],[-1.959281,57.6848],[-2.219988,56.870017],[-3.119003,55.973793],[-2.085009,55.909998],[-2.005676,55.804903],[-1.114991,54.624986],[-0.430485,54.464376],[0.184981,53.325014],[0.469977,52.929999],[1.681531,52.73952],[1.559988,52.099998],[1.050562,51.806761],[1.449865,51.289428],[0.550334,50.765739],[-0.787517,50.774989],[-2.489998,50.500019],[-2.956274,50.69688],[-3.617448,50.228356],[-4.542508,50.341837],[-5.245023,49.96],[-5.776567,50.159678],[-4.30999,51.210001],[-3.414851,51.426009],[-3.422719,51.426848],[-4.984367,51.593466],[-5.267296,51.9914],[-4.222347,52.301356],[-4.770013,52.840005],[-4.579999,53.495004],[-3.093831,53.404547],[-3.09208,53.404441],[-2.945009,53.985],[-3.614701,54.600937],[-3.630005,54.615013],[-4.844169,54.790971],[-5.082527,55.061601],[-4.719112,55.508473],[-5.047981,55.783986],[-5.586398,55.311146],[-5.644999,56.275015],[-6.149981,56.78501],[-5.786825,57.818848],[-5.009999,58.630013],[-4.211495,58.550845],[-3.005005,58.635]]]]}},
{"type":"Feature","id":"GEO","properties":{"name":"Georgia"},"geometry":{"type":"Polygon","coordinates":[[[41.554084,41.535656],[41.703171,41.962943],[41.45347,42.645123],[40.875469,43.013628],[40.321394,43.128634],[39.955009,43.434998],[40.076965,43.553104],[40.922185,43.382159],[42.394395,43.220308],[43.756017,42.740828],[43.9312,42.554974],[44.537623,42.711993],[45.470279,42.502781],[45.77641,42.092444],[46.404951,41.860675],[46.145432,41.722802],[46.637908,41.181673],[46.501637,41.064445],[45.962601,41.123873],[45.217426,41.411452],[44.97248,41.248129],[43.582746,41.092143],[42.619549,41.583173],[41.554084,41.535656]]]}},
{"type":"Feature","id":"GHA","properties":{"name":"Ghana"},"geometry":{"type":"Polygon","coordinates":[[[1.060122,5.928837],[-0.507638,5.343473],[-1.063625,5.000548],[-1.964707,4.710462],[-2.856125,4.994476],[-2.810701,5.389051],[-3.24437,6.250472],[-2.983585,7.379705],[-2.56219,8.219628],[-2.827496,9.642461],[-2.963896,10.395335],[-2.940409,10.96269],[-1.203358,11.009819],[-0.761576,10.93693],[-0.438702,11.098341],[0.023803,11.018682],[-0.049785,10.706918],[0.36758,10.191213],[0.365901,9.465004],[0.461192,8.677223],[0.712029,8.312465],[0.490957,7.411744],[0.570384,6.914359],[0.836931,6.279979],[1.060122,5.928837]]]}},
{"type":"Feature","id":"GIN","properties":{"name":"Guinea"},"geometry":{"type":"Polygon","coordinates":[[[-8.439298,7.686043],[-8.722124,7.711674],[-8.926065,7.309037],[-9.208786,7.313921],[-9.403348,7.526905],[-9.33728,7.928534],[-9.755342,8.541055],[-10.016567,8.428504],[-10.230094,8.406206],[-10.505477,8.348896],[-10.494315,8.715541],[-10.65477,8.977178],[-10.622395,9.26791],[-10.839152,9.688246],[-11.117481,10.045873],[-11.917277,10.046984],[-12.150338,9.858572],[-12.425929,9.835834],[-12.596719,9.620188],[-12.711958,9.342712],[-13.24655,8.903049],[-13.685154,9.494744],[-14.074045,9.886167],[-14.330076,10.01572],[-14.579699,10.214467],[-14.693232,10.656301],[-14.839554,10.876572],[-15.130311,11.040412],[-14.685687,11.527824],[-14.382192,11.509272],[-14.121406,11.677117],[-13.9008,11.678719],[-13.743161,11.811269],[-13.828272,12.142644],[-13.718744,12.247186],[-13.700476,12.586183],[-13.217818,12.575874],[-12.499051,12.33209],[-12.278599,12.35444],[-12.203565,12.465648],[-11.658301,12.386583],[-11.513943,12.442988],[-11.456169,12.076834],[-11.297574,12.077971],[-11.036556,12.211245],[-10.87083,12.177887],[-10.593224,11.923975],[-10.165214,11.844084],[-9.890993,12.060479],[-9.567912,12.194243],[-9.327616,12.334286],[-9.127474,12.30806],[-8.905265,12.088358],[-8.786099,11.812561],[-8.376305,11.393646],[-8.581305,11.136246],[-8.620321,10.810891],[-8.407311,10.909257],[-8.282357,10.792597],[-8.335377,10.494812],[-8.029944,10.206535],[-8.229337,10.12902],[-8.309616,9.789532],[-8.079114,9.376224],[-7.8321,8.575704],[-8.203499,8.455453],[-8.299049,8.316444],[-8.221792,8.123329],[-8.280703,7.68718],[-8.439298,7.686043]]]}},
{"type":"Feature","id":"GMB","properties":{"name":"Gambia"},"geometry":{"type":"Polygon","coordinates":[[[-16.841525,13.151394],[-16.713729,13.594959],[-15.624596,13.623587],[-15.39877,13.860369],[-15.081735,13.876492],[-14.687031,13.630357],[-14.376714,13.62568],[-14.046992,13.794068],[-13.844963,13.505042],[-14.277702,13.280585],[-14.712197,13.298207],[-15.141163,13.509512],[-15.511813,13.27857],[-15.691001,13.270353],[-15.931296,13.130284],[-16.841525,13.151394]]]}},
{"type":"Feature","id":"GNB","properties":{"name":"Guinea Bissau"},"geometry":{"type":"Polygon","coordinates":[[[-15.130311,11.040412],[-15.66418,11.458474],[-16.085214,11.524594],[-16.314787,11.806515],[-16.308947,11.958702],[-16.613838,12.170911],[-16.677452,12.384852],[-16.147717,12.547762],[-15.816574,12.515567],[-15.548477,12.62817],[-13.700476,12.586183],[-13.718744,12.247186],[-13.828272,12.142644],[-13.743161,11.811269],[-13.9008,11.678719],[-14.121406,11.677117],[-14.382192,11.509272],[-14.685687,11.527824],[-15.130311,11.040412]]]}},
{"type":"Feature","id":"GNQ","properties":{"name":"Equatorial Guinea"},"geometry":{"type":"Polygon","coordinates":[[[9.492889,1.01012],[9.305613,1.160911],[9.649158,2.283866],[11.276449,2.261051],[11.285079,1.057662],[9.830284,1.067894],[9.492889,1.01012]]]}},
{"type":"Feature","id":"GRC","properties":{"name":"Greece"},"geometry":{"type":"MultiPolygon","coordinates":[[[[23.69998,35.705004],[24.246665,35.368022],[25.025015,35.424996],[25.769208,35.354018],[25.745023,35.179998],[26.290003,35.29999],[26.164998,35.004995],[24.724982,34.919988],[24.735007,35.084991],[23.514978,35.279992],[23.69998,35.705004]]],[[[26.604196,41.562115],[26.294602,40.936261],[26.056942,40.824123],[25.447677,40.852545],[24.925848,40.947062],[23.714811,40.687129],[24.407999,40.124993],[23.899968,39.962006],[23.342999,39.960998],[22.813988,40.476005],[22.626299,40.256561],[22.849748,39.659311],[23.350027,39.190011],[22.973099,38.970903],[23.530016,38.510001],[24.025025,38.219993],[24.040011,37.655015],[23.115003,37.920011],[23.409972,37.409991],[22.774972,37.30501],[23.154225,36.422506],[22.490028,36.41],[21.670026,36.844986],[21.295011,37.644989],[21.120034,38.310323],[20.730032,38.769985],[20.217712,39.340235],[20.150016,39.624998],[20.615,40.110007],[20.674997,40.435],[20.99999,40.580004],[21.02004,40.842727],[21.674161,40.931275],[22.055378,41.149866],[22.597308,41.130487],[22.76177,41.3048],[22.952377,41.337994],[23.692074,41.309081],[24.492645,41.583896],[25.197201,41.234486],[26.106138,41.328899],[26.117042,41.826905],[26.604196,41.562115]]]]}},
{"type":"Feature","id":"GRL","properties":{"name":"Greenland"},"geometry":{"type":"Polygon","coordinates":[[[-46.76379,82.62796],[-43.40644,83.22516],[-39.89753,83.18018],[-38.62214,83.54905],[-35.08787,83.64513],[-27.10046,83.51966],[-20.84539,82.72669],[-22.69182,82.34165],[-26.51753,82.29765],[-31.9,82.2],[-31.39646,82.02154],[-27.85666,82.13178],[-24.84448,81.78697],[-22.90328,82.09317],[-22.07175,81.73449],[-23.16961,81.15271],[-20.62363,81.52462],[-15.76818,81.91245],[-12.77018,81.71885],[-12.20855,81.29154],[-16.28533,80.58004],[-16.85,80.35],[-20.04624,80.17708],[-17.73035,80.12912],[-18.9,79.4],[-19.70499,78.75128],[-19.67353,77.63859],[-18.47285,76.98565],[-20.03503,76.94434],[-21.67944,76.62795],[-19.83407,76.09808],[-19.59896,75.24838],[-20.66818,75.15585],[-19.37281,74.29561],[-21.59422,74.22382],[-20.43454,73.81713],[-20.76234,73.46436],[-22.17221,73.30955],[-23.56593,73.30663],[-22.31311,72.62928],[-22.29954,72.18409],[-24.27834,72.59788],[-24.79296,72.3302],[-23.44296,72.08016],[-22.13281,71.46898],[-21.75356,70.66369],[-23.53603,70.471],[-24.30702,70.85649],[-25.54341,71.43094],[-25.20135,70.75226],[-26.36276,70.22646],[-23.72742,70.18401],[-22.34902,70.12946],[-25.02927,69.2588],[-27.74737,68.47046],[-30.67371,68.12503],[-31.77665,68.12078],[-32.81105,67.73547],[-34.20196,66.67974],[-36.35284,65.9789],[-37.04378,65.93768],[-38.37505,65.69213],[-39.81222,65.45848],[-40.66899,64.83997],[-40.68281,64.13902],[-41.1887,63.48246],[-42.81938,62.68233],[-42.41666,61.90093],[-42.86619,61.07404],[-43.3784,60.09772],[-44.7875,60.03676],[-46.26364,60.85328],[-48.26294,60.85843],[-49.23308,61.40681],[-49.90039,62.38336],[-51.63325,63.62691],[-52.14014,64.27842],[-52.27659,65.1767],[-53.66166,66.09957],[-53.30161,66.8365],[-53.96911,67.18899],[-52.9804,68.35759],[-51.47536,68.72958],[-51.08041,69.14781],[-50.87122,69.9291],[-52.013585,69.574925],[-52.55792,69.42616],[-53.45629,69.283625],[-54.68336,69.61003],[-54.75001,70.28932],[-54.35884,70.821315],[-53.431315,70.835755],[-51.39014,70.56978],[-53.10937,71.20485],[-54.00422,71.54719],[-55,71.406537],[-55.83468,71.65444],[-54.71819,72.58625],[-55.32634,72.95861],[-56.12003,73.64977],[-57.32363,74.71026],[-58.59679,75.09861],[-58.58516,75.51727],[-61.26861,76.10238],[-63.39165,76.1752],[-66.06427,76.13486],[-68.50438,76.06141],[-69.66485,76.37975],[-71.40257,77.00857],[-68.77671,77.32312],[-66.76397,77.37595],[-71.04293,77.63595],[-73.297,78.04419],[-73.15938,78.43271],[-69.37345,78.91388],[-65.7107,79.39436],[-65.3239,79.75814],[-68.02298,80.11721],[-67.15129,80.51582],[-63.68925,81.21396],[-62.23444,81.3211],[-62.65116,81.77042],[-60.28249,82.03363],[-57.20744,82.19074],[-54.13442,82.19962],[-53.04328,81.88833],[-50.39061,82.43883],[-48.00386,82.06481],[-46.59984,81.985945],[-44.523,81.6607],[-46.9007,82.19979],[-46.76379,82.62796]]]}},
{"type":"Feature","id":"GTM","properties":{"name":"Guatemala"},"geometry":{"type":"Polygon","coordinates":[[[-90.095555,13.735338],[-90.608624,13.909771],[-91.23241,13.927832],[-91.689747,14.126218],[-92.22775,14.538829],[-92.20323,14.830103],[-92.087216,15.064585],[-92.229249,15.251447],[-91.74796,16.066565],[-90.464473,16.069562],[-90.438867,16.41011],[-90.600847,16.470778],[-90.711822,16.687483],[-91.08167,16.918477],[-91.453921,17.252177],[-91.002269,17.254658],[-91.00152,17.817595],[-90.067934,17.819326],[-89.14308,17.808319],[-89.150806,17.015577],[-89.229122,15.886938],[-88.930613,15.887273],[-88.604586,15.70638],[-88.518364,15.855389],[-88.225023,15.727722],[-88.68068,15.346247],[-89.154811,15.066419],[-89.22522,14.874286],[-89.145535,14.678019],[-89.353326,14.424133],[-89.587343,14.362586],[-89.534219,14.244816],[-89.721934,14.134228],[-90.064678,13.88197],[-90.095555,13.735338]]]}},
{"type":"Feature","id":"GUF","properties":{"name":"French Guiana"},"geometry":{"type":"Polygon","coordinates":[[[-52.556425,2.504705],[-52.939657,2.124858],[-53.418465,2.053389],[-53.554839,2.334897],[-53.778521,2.376703],[-54.088063,2.105557],[-54.524754,2.311849],[-54.27123,2.738748],[-54.184284,3.194172],[-54.011504,3.62257],[-54.399542,4.212611],[-54.478633,4.896756],[-53.958045,5.756548],[-53.618453,5.646529],[-52.882141,5.409851],[-51.823343,4.565768],[-51.657797,4.156232],[-52.249338,3.241094],[-52.556425,2.504705]]]}},
{"type":"Feature","id":"GUY","properties":{"name":"Guyana"},"geometry":{"ty
Download .txt
gitextract_fzgf4p_h/

├── .gitignore
├── Android-code/
│   ├── .gitignore
│   ├── app/
│   │   ├── .gitignore
│   │   ├── build.gradle
│   │   ├── fabric.properties
│   │   ├── google-services.json
│   │   ├── proguard-rules.pro
│   │   └── src/
│   │       ├── main/
│   │       │   ├── AndroidManifest.xml
│   │       │   ├── aidl/
│   │       │   │   └── com/
│   │       │   │       └── android/
│   │       │   │           └── vending/
│   │       │   │               └── billing/
│   │       │   │                   └── IInAppBillingService.aidl
│   │       │   ├── assets/
│   │       │   │   ├── countries.json
│   │       │   │   ├── full_licenses.html
│   │       │   │   ├── nopie_openvpn.arm64-v8a
│   │       │   │   ├── nopie_openvpn.armeabi
│   │       │   │   ├── nopie_openvpn.armeabi-v7a
│   │       │   │   ├── nopie_openvpn.mips
│   │       │   │   ├── nopie_openvpn.x86
│   │       │   │   ├── nopie_openvpn.x86_64
│   │       │   │   ├── pie_openvpn.arm64-v8a
│   │       │   │   ├── pie_openvpn.armeabi
│   │       │   │   ├── pie_openvpn.armeabi-v7a
│   │       │   │   ├── pie_openvpn.mips
│   │       │   │   ├── pie_openvpn.x86
│   │       │   │   ├── pie_openvpn.x86_64
│   │       │   │   └── world_map.geo.json
│   │       │   ├── java/
│   │       │   │   ├── com/
│   │       │   │   │   └── vasilkoff/
│   │       │   │   │       └── easyvpnfree/
│   │       │   │   │           ├── App.java
│   │       │   │   │           ├── activity/
│   │       │   │   │           │   ├── AboutActivity.java
│   │       │   │   │           │   ├── BaseActivity.java
│   │       │   │   │           │   ├── BookmarkServerListActivity.java
│   │       │   │   │           │   ├── HomeActivity.java
│   │       │   │   │           │   ├── LauncherActivity.java
│   │       │   │   │           │   ├── LoaderActivity.java
│   │       │   │   │           │   ├── MyPreferencesActivity.java
│   │       │   │   │           │   ├── ServerActivity.java
│   │       │   │   │           │   ├── ServersInfo.java
│   │       │   │   │           │   └── ServersListActivity.java
│   │       │   │   │           ├── adapter/
│   │       │   │   │           │   ├── BookmarkServerListAdapter.java
│   │       │   │   │           │   └── ServerListAdapter.java
│   │       │   │   │           ├── database/
│   │       │   │   │           │   └── DBHelper.java
│   │       │   │   │           ├── model/
│   │       │   │   │           │   ├── Country.java
│   │       │   │   │           │   └── Server.java
│   │       │   │   │           └── util/
│   │       │   │   │               ├── BitmapGenerator.java
│   │       │   │   │               ├── ConnectionQuality.java
│   │       │   │   │               ├── CountriesNames.java
│   │       │   │   │               ├── LoadData.java
│   │       │   │   │               ├── NetworkState.java
│   │       │   │   │               ├── NumberPickerPreference.java
│   │       │   │   │               ├── PropertiesService.java
│   │       │   │   │               ├── Stopwatch.java
│   │       │   │   │               ├── TotalTraffic.java
│   │       │   │   │               ├── iap/
│   │       │   │   │               │   ├── Base64.java
│   │       │   │   │               │   ├── Base64DecoderException.java
│   │       │   │   │               │   ├── IabException.java
│   │       │   │   │               │   ├── IabHelper.java
│   │       │   │   │               │   ├── IabResult.java
│   │       │   │   │               │   ├── Inventory.java
│   │       │   │   │               │   ├── Purchase.java
│   │       │   │   │               │   ├── Security.java
│   │       │   │   │               │   └── SkuDetails.java
│   │       │   │   │               └── map/
│   │       │   │   │                   ├── MapCreator.java
│   │       │   │   │                   └── MyMarker.java
│   │       │   │   ├── de/
│   │       │   │   │   └── blinkt/
│   │       │   │   │       └── openvpn/
│   │       │   │   │           ├── VpnProfile.java
│   │       │   │   │           └── core/
│   │       │   │   │               ├── CIDRIP.java
│   │       │   │   │               ├── ConfigParser.java
│   │       │   │   │               ├── Connection.java
│   │       │   │   │               ├── DeviceStateReceiver.java
│   │       │   │   │               ├── ICSOpenVPNApplication.java
│   │       │   │   │               ├── LogFileHandler.java
│   │       │   │   │               ├── LogItem.java
│   │       │   │   │               ├── LollipopDeviceStateListener.java
│   │       │   │   │               ├── NativeUtils.java
│   │       │   │   │               ├── NetworkSpace.java
│   │       │   │   │               ├── OpenVPNManagement.java
│   │       │   │   │               ├── OpenVPNService.java
│   │       │   │   │               ├── OpenVPNThread.java
│   │       │   │   │               ├── OpenVpnManagementThread.java
│   │       │   │   │               ├── PRNGFixes.java
│   │       │   │   │               ├── ProfileManager.java
│   │       │   │   │               ├── ProxyDetection.java
│   │       │   │   │               ├── VPNLaunchHelper.java
│   │       │   │   │               ├── VpnStatus.java
│   │       │   │   │               └── X509Utils.java
│   │       │   │   └── org/
│   │       │   │       └── spongycastle/
│   │       │   │           └── util/
│   │       │   │               ├── encoders/
│   │       │   │               │   ├── Base64.java
│   │       │   │               │   ├── Base64Encoder.java
│   │       │   │               │   └── Encoder.java
│   │       │   │               └── io/
│   │       │   │                   └── pem/
│   │       │   │                       ├── PemGenerationException.java
│   │       │   │                       ├── PemHeader.java
│   │       │   │                       ├── PemObject.java
│   │       │   │                       ├── PemObjectGenerator.java
│   │       │   │                       ├── PemReader.java
│   │       │   │                       └── PemWriter.java
│   │       │   └── res/
│   │       │       ├── anim/
│   │       │       │   └── scale.xml
│   │       │       ├── drawable/
│   │       │       │   ├── button_bg.xml
│   │       │       │   ├── connected_bg.xml
│   │       │       │   ├── info_servers_bg.xml
│   │       │       │   ├── server_info_bg.xml
│   │       │       │   └── side_nav_bar.xml
│   │       │       ├── layout/
│   │       │       │   ├── activity_about.xml
│   │       │       │   ├── activity_base.xml
│   │       │       │   ├── activity_bookmark_server_list.xml
│   │       │       │   ├── activity_home.xml
│   │       │       │   ├── activity_loader.xml
│   │       │       │   ├── activity_preference.xml
│   │       │       │   ├── activity_server.xml
│   │       │       │   ├── activity_servers_info.xml
│   │       │       │   ├── activity_servers_list.xml
│   │       │       │   ├── bookmark_server_row.xml
│   │       │       │   ├── layout_server_record_row.xml
│   │       │       │   ├── pop_up_choose_country.xml
│   │       │       │   ├── pop_up_note.xml
│   │       │       │   ├── pop_up_rating.xml
│   │       │       │   └── pop_up_success_conected.xml
│   │       │       ├── menu/
│   │       │       │   └── menu_main.xml
│   │       │       ├── values/
│   │       │       │   ├── about.xml
│   │       │       │   ├── colors.xml
│   │       │       │   ├── dimens.xml
│   │       │       │   ├── props.xml
│   │       │       │   ├── reference.xml
│   │       │       │   ├── strings.xml
│   │       │       │   ├── styles.xml
│   │       │       │   ├── untranslatable.xml
│   │       │       │   └── vpn_strings.xml
│   │       │       ├── values-ar/
│   │       │       │   └── strings.xml
│   │       │       ├── values-be/
│   │       │       │   └── strings.xml
│   │       │       ├── values-cs/
│   │       │       │   └── strings.xml
│   │       │       ├── values-de/
│   │       │       │   └── strings.xml
│   │       │       ├── values-el/
│   │       │       │   └── strings.xml
│   │       │       ├── values-es/
│   │       │       │   └── strings.xml
│   │       │       ├── values-fa/
│   │       │       │   └── strings.xml
│   │       │       ├── values-fr/
│   │       │       │   └── strings.xml
│   │       │       ├── values-hu/
│   │       │       │   └── strings.xml
│   │       │       ├── values-id/
│   │       │       │   └── strings.xml
│   │       │       ├── values-it/
│   │       │       │   └── strings.xml
│   │       │       ├── values-iw/
│   │       │       │   └── strings.xml
│   │       │       ├── values-ja/
│   │       │       │   └── strings.xml
│   │       │       ├── values-ka/
│   │       │       │   └── strings.xml
│   │       │       ├── values-ko/
│   │       │       │   └── strings.xml
│   │       │       ├── values-lt/
│   │       │       │   └── strings.xml
│   │       │       ├── values-lv/
│   │       │       │   └── strings.xml
│   │       │       ├── values-ro/
│   │       │       │   └── strings.xml
│   │       │       ├── values-ru/
│   │       │       │   └── strings.xml
│   │       │       ├── values-sk/
│   │       │       │   └── strings.xml
│   │       │       ├── values-sl/
│   │       │       │   └── strings.xml
│   │       │       ├── values-sr/
│   │       │       │   └── strings.xml
│   │       │       ├── values-sv/
│   │       │       │   └── strings.xml
│   │       │       ├── values-th/
│   │       │       │   └── strings.xml
│   │       │       ├── values-tr/
│   │       │       │   └── strings.xml
│   │       │       ├── values-uk/
│   │       │       │   └── strings.xml
│   │       │       ├── values-v21/
│   │       │       │   ├── reference.xml
│   │       │       │   └── styles.xml
│   │       │       ├── values-vi/
│   │       │       │   └── strings.xml
│   │       │       ├── values-w820dp/
│   │       │       │   └── dimens.xml
│   │       │       ├── values-zh/
│   │       │       │   └── strings.xml
│   │       │       └── xml/
│   │       │           └── preferences.xml
│   │       └── pro/
│   │           └── google-services.json
│   ├── build.gradle
│   ├── gradle/
│   │   └── wrapper/
│   │       ├── gradle-wrapper.jar
│   │       └── gradle-wrapper.properties
│   ├── gradle.properties
│   ├── gradlew
│   ├── gradlew.bat
│   └── settings.gradle
├── Binary/
│   └── easyvpnfree-1.5-49-free-release.apk
├── LICENSE
├── README.md
└── binary/
    ├── app-release-1.0-5.apk
    ├── easyvpnfree-1.0-6-release.apk
    ├── easyvpnfree-1.0-7-release.apk
    ├── easyvpnfree-1.1-9-release.apk
    ├── easyvpnfree-1.2-11-release.apk
    ├── easyvpnfree-1.2-12-release.apk
    ├── easyvpnfree-1.2-13-release.apk
    ├── easyvpnfree-1.3-15-release.apk
    ├── easyvpnfree-1.3-16-release.apk
    ├── easyvpnfree-1.3-18-release.apk
    ├── easyvpnfree-1.3-19-release.apk
    ├── easyvpnfree-1.3-21-release.apk
    ├── easyvpnfree-1.3-22-release.apk
    ├── easyvpnfree-1.3-23-release.apk
    ├── easyvpnfree-1.3-25-release.apk
    ├── easyvpnfree-1.4-26-release.apk
    ├── easyvpnfree-1.4-27-release.apk
    ├── easyvpnfree-1.4-29-release.apk
    ├── easyvpnfree-1.4-30-release.apk
    ├── easyvpnfree-1.4-31-release.apk
    ├── easyvpnfree-1.4-33-release.apk
    ├── easyvpnfree-1.4-34-release.apk
    ├── easyvpnfree-1.4-36-release.apk
    ├── easyvpnfree-1.4-37-release.apk
    ├── easyvpnfree-1.4-38-release.apk
    ├── easyvpnfree-1.4-39-release.apk
    ├── easyvpnfree-1.4-40-free-release.apk
    ├── easyvpnfree-1.4-41-free-release.apk
    ├── easyvpnfree-1.5-42-free-release.apk
    ├── easyvpnfree-1.5-43-free-release.apk
    ├── easyvpnfree-1.5-44-free-release.apk
    ├── easyvpnfree-1.5-45-free-release.apk
    ├── easyvpnfree-1.5-50-free-release.apk
    └── easyvpnfree-1.6-50-free-release.apk
Download .txt
SYMBOL INDEX (764 symbols across 66 files)

FILE: Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/App.java
  class App (line 14) | public class App extends Application {
    method onCreate (line 21) | @Override
    method getDefaultTracker (line 30) | synchronized public Tracker getDefaultTracker() {
    method attachBaseContext (line 38) | @Override
    method getResourceString (line 43) | public static String getResourceString(int resId) {
    method getInstance (line 47) | public static App getInstance() {

FILE: Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/activity/AboutActivity.java
  class AboutActivity (line 11) | public class AboutActivity extends BaseActivity {
    method onCreate (line 13) | @Override

FILE: Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/activity/BaseActivity.java
  class BaseActivity (line 54) | public abstract class BaseActivity extends AppCompatActivity {
    method setContentView (line 85) | @Override
    method onPause (line 137) | @Override
    method onDestroy (line 143) | @Override
    method initPurchaseHelper (line 150) | private void initPurchaseHelper() {
    method checkPurchase (line 174) | private void checkPurchase() {
    method launchPurchase (line 181) | void launchPurchase(String sku, int request) {
    method verifyDeveloperPayload (line 198) | boolean verifyDeveloperPayload(Purchase p, String sku) {
    method onQueryInventoryFinished (line 206) | @Override
    method onIabPurchaseFinished (line 222) | @Override
    method useToolbar (line 235) | protected boolean useToolbar()
    method useHomeButton (line 240) | protected boolean useHomeButton()
    method useMenu (line 245) | protected boolean useMenu()
    method onResume (line 250) | @Override
    method onCreateOptionsMenu (line 266) | @Override
    method onOptionsItemSelected (line 285) | @Override
    method onActivityResult (line 330) | @Override
    method getRandomServer (line 351) | public Server getRandomServer() {
    method newConnecting (line 361) | public void newConnecting(Server server, boolean fastConnection, boole...
    method sendTouchButton (line 371) | public static void sendTouchButton(String button) {
    method ipInfoResult (line 382) | protected void ipInfoResult() {}
    method getIpInfo (line 384) | protected void getIpInfo(Server server) {
    method getIpInfo (line 390) | protected void getIpInfo(final List<Server> serverList) {

FILE: Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/activity/BookmarkServerListActivity.java
  class BookmarkServerListActivity (line 13) | public class BookmarkServerListActivity extends BaseActivity {
    method onCreate (line 15) | @Override
    method onResume (line 21) | @Override

FILE: Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/activity/HomeActivity.java
  class HomeActivity (line 64) | public class HomeActivity extends BaseActivity {
    method onCreate (line 80) | @Override
    method onResume (line 99) | @Override
    method onDestroy (line 116) | @Override
    method initMap (line 123) | private void initMap() {
    method useHomeButton (line 148) | @Override
    method homeOnClick (line 153) | public void homeOnClick(View view) {
    method chooseCountry (line 173) | private void chooseCountry() {
    method showNote (line 199) | private void showNote() {
    method initPopUp (line 214) | private View initPopUp(int resourse,
    method onSelectCountry (line 245) | private void onSelectCountry(Server server) {
    method initDetailsServerOnMap (line 251) | private void initDetailsServerOnMap() {
    method initServerOnMap (line 272) | private void initServerOnMap(Layers layers) {

FILE: Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/activity/LauncherActivity.java
  class LauncherActivity (line 12) | public class LauncherActivity extends Activity {
    method onCreate (line 15) | @Override

FILE: Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/activity/LoaderActivity.java
  class LoaderActivity (line 33) | public class LoaderActivity extends BaseActivity {
    method onCreate (line 56) | @Override
    method onResume (line 118) | @Override
    method useHomeButton (line 124) | @Override
    method useMenu (line 129) | @Override
    method downloadCSVFile (line 134) | private void downloadCSVFile(String url, String fileName) {
    method parseCSVFile (line 189) | private void parseCSVFile(String fileName) {

FILE: Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/activity/MyPreferencesActivity.java
  class MyPreferencesActivity (line 30) | public class MyPreferencesActivity extends PreferenceActivity {
    method onCreate (line 34) | @Override
    class MyPreferenceFragment (line 51) | public static class MyPreferenceFragment extends PreferenceFragment
      method onCreate (line 53) | @Override
    method onResume (line 85) | @Override

FILE: Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/activity/ServerActivity.java
  class ServerActivity (line 67) | public class ServerActivity extends BaseActivity {
    method onCreate (line 106) | @Override
    method initView (line 178) | private void initView(Intent intent) {
    method onNewIntent (line 238) | @Override
    method receiveTraffic (line 245) | private void receiveTraffic(Context context, Intent intent) {
    method receiveStatus (line 271) | private void receiveStatus(Context context, Intent intent) {
    method checkAvailableFilter (line 288) | private void checkAvailableFilter() {
    method onBackPressed (line 299) | @Override
    method checkStatus (line 312) | private boolean checkStatus() {
    method changeServerStatus (line 320) | private void changeServerStatus(VpnStatus.ConnectionStatus status) {
    method prepareVpn (line 348) | private void prepareVpn() {
    method serverOnClick (line 361) | public void serverOnClick(View view) {
    method loadVpnProfile (line 392) | private boolean loadVpnProfile() {
    method prepareStopVPN (line 424) | private void prepareStopVPN() {
    method stopVpn (line 449) | private void stopVpn() {
    method startVpn (line 457) | private void startVpn() {
    method ipInfoResult (line 481) | @Override
    method onResume (line 486) | @Override
    method onPause (line 523) | @Override
    method onDestroy (line 534) | @Override
    method onActivityResult (line 544) | @Override
    method chooseAction (line 567) | private void chooseAction() {
    method showRating (line 627) | private void showRating() {
    method onServiceConnected (line 667) | @Override
    method onServiceDisconnected (line 675) | @Override
    class WaitConnectionAsync (line 682) | private class WaitConnectionAsync extends AsyncTask<Void, Void, Void>
      method doInBackground (line 684) | @Override
      method onPostExecute (line 694) | @Override
    method showAlert (line 712) | private void showAlert() {

FILE: Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/activity/ServersInfo.java
  class ServersInfo (line 12) | public class ServersInfo extends AppCompatActivity {
    method onCreate (line 14) | @Override

FILE: Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/activity/ServersListActivity.java
  class ServersListActivity (line 18) | public class ServersListActivity extends BaseActivity {
    method onCreate (line 22) | @Override
    method onResume (line 33) | @Override
    method ipInfoResult (line 42) | @Override
    method buildList (line 47) | private void buildList() {

FILE: Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/adapter/BookmarkServerListAdapter.java
  class BookmarkServerListAdapter (line 28) | public class BookmarkServerListAdapter extends RecyclerView.Adapter<Book...
    method BookmarkServerListAdapter (line 35) | public BookmarkServerListAdapter(List<Server> serverList, Context cont...
    method onCreateViewHolder (line 42) | @Override
    method onBindViewHolder (line 49) | @Override
    method getItemCount (line 84) | @Override
    class BookmarkHolder (line 89) | class BookmarkHolder extends RecyclerView.ViewHolder {
      method BookmarkHolder (line 98) | public BookmarkHolder(View v) {

FILE: Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/adapter/ServerListAdapter.java
  class ServerListAdapter (line 25) | public class ServerListAdapter extends BaseAdapter {
    method ServerListAdapter (line 32) | public ServerListAdapter(Context c, List<Server> serverList) {
    method getCount (line 40) | @Override
    method getItem (line 46) | @Override
    method getItemId (line 52) | @Override
    method getView (line 58) | @Override

FILE: Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/database/DBHelper.java
  class DBHelper (line 27) | public class DBHelper  extends SQLiteOpenHelper {
    method DBHelper (line 59) | public DBHelper(Context context) {
    method onCreate (line 63) | @Override
    method onUpgrade (line 69) | @Override
    method createTable (line 76) | private void createTable(SQLiteDatabase db, String name) {
    method setInactive (line 106) | public void setInactive(String ip) {
    method setIpInfo (line 115) | public boolean setIpInfo(JSONArray response, List<Server> serverList) {
    method clearTable (line 143) | public void clearTable() {
    method setBookmark (line 149) | public void setBookmark(Server server) {
    method delBookmark (line 176) | public void delBookmark(Server server) {
    method getBookmarks (line 182) | public List<Server> getBookmarks() {
    method checkBookmark (line 201) | public boolean checkBookmark(Server server) {
    method putLine (line 224) | public void putLine(String line, int type) {
    method getCount (line 255) | public long getCount() {
    method getCountBasic (line 263) | public long getCountBasic() {
    method getCountAdditional (line 275) | public long getCountAdditional() {
    method getUniqueCountries (line 287) | public List<Server> getUniqueCountries() {
    method getServersWithGPS (line 312) | public List<Server> getServersWithGPS() {
    method getServersByCountryCode (line 335) | public List<Server> getServersByCountryCode(String country) {
    method parseGoodRandomServer (line 362) | private Server parseGoodRandomServer(Cursor cursor, SQLiteDatabase db) {
    method getSimilarServer (line 401) | public Server getSimilarServer(String country, String ip) {
    method getGoodRandomServer (line 417) | public Server getGoodRandomServer(String country) {
    method parseServer (line 439) | private Server parseServer(Cursor cursor) {

FILE: Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/model/Country.java
  class Country (line 7) | public class Country {
    method Country (line 15) | public Country(String countryName, String capitalName, double capitalL...
    method getCountryName (line 23) | public String getCountryName() {
    method getCapitalName (line 27) | public String getCapitalName() {
    method getCapitalLatitude (line 31) | public double getCapitalLatitude() {
    method getCapitalLongitude (line 35) | public double getCapitalLongitude() {
    method getCountryCode (line 39) | public String getCountryCode() {

FILE: Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/model/Server.java
  class Server (line 10) | public class Server implements Parcelable {
    method Server (line 34) | public Server(String hostName, String ip, String score, String ping, S...
    method Server (line 58) | protected Server(Parcel in) {
    method createFromParcel (line 83) | @Override
    method newArray (line 88) | @Override
    method getHostName (line 94) | public String getHostName() {
    method setHostName (line 98) | public void setHostName(String hostName) {
    method getIp (line 102) | public String getIp() {
    method setIp (line 106) | public void setIp(String ip) {
    method getScore (line 110) | public String getScore() {
    method setScore (line 114) | public void setScore(String score) {
    method getPing (line 118) | public String getPing() {
    method setPing (line 122) | public void setPing(String ping) {
    method getSpeed (line 126) | public String getSpeed() {
    method setSpeed (line 130) | public void setSpeed(String speed) {
    method getCountryLong (line 134) | public String getCountryLong() {
    method setCountryLong (line 138) | public void setCountryLong(String countryLong) {
    method getCountryShort (line 142) | public String getCountryShort() {
    method setCountryShort (line 146) | public void setCountryShort(String countryShort) {
    method getNumVpnSessions (line 150) | public String getNumVpnSessions() {
    method setNumVpnSessions (line 154) | public void setNumVpnSessions(String numVpnSessions) {
    method getUptime (line 158) | public String getUptime() {
    method setUptime (line 162) | public void setUptime(String uptime) {
    method getTotalUsers (line 166) | public String getTotalUsers() {
    method setTotalUsers (line 170) | public void setTotalUsers(String totalUsers) {
    method getTotalTraffic (line 174) | public String getTotalTraffic() {
    method setTotalTraffic (line 178) | public void setTotalTraffic(String totalTraffic) {
    method getLogType (line 182) | public String getLogType() {
    method setLogType (line 186) | public void setLogType(String logType) {
    method getOperator (line 190) | public String getOperator() {
    method setOperator (line 194) | public void setOperator(String operator) {
    method getMessage (line 198) | public String getMessage() {
    method setMessage (line 202) | public void setMessage(String message) {
    method getConfigData (line 206) | public String getConfigData() {
    method setConfigData (line 210) | public void setConfigData(String configData) {
    method getQuality (line 214) | public int getQuality() {
    method setQuality (line 218) | public void setQuality(int quality) {
    method getCity (line 222) | public String getCity() {
    method setCity (line 226) | public void setCity(String city) {
    method getType (line 230) | public int getType() {
    method setType (line 234) | public void setType(int type) {
    method getRegionName (line 238) | public String getRegionName() {
    method setRegionName (line 242) | public void setRegionName(String regionName) {
    method getLat (line 246) | public double getLat() {
    method setLat (line 250) | public void setLat(double lat) {
    method getLon (line 254) | public double getLon() {
    method setLon (line 258) | public void setLon(double lon) {
    method describeContents (line 262) | @Override
    method writeToParcel (line 267) | @Override

FILE: Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/util/BitmapGenerator.java
  class BitmapGenerator (line 7) | public class BitmapGenerator {
    method getTextAsBitmap (line 11) | public static Bitmap getTextAsBitmap(String text, float textSize, int ...

FILE: Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/util/ConnectionQuality.java
  class ConnectionQuality (line 7) | public class ConnectionQuality {
    method getConnectIcon (line 24) | public static String getConnectIcon(int quality) {
    method getPointIcon (line 39) | public static String getPointIcon(int quality) {
    method getSimplePointIcon (line 54) | public static String getSimplePointIcon(int quality) {
    method getConnectionQuality (line 69) | public static int getConnectionQuality(String speedStr, String session...

FILE: Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/util/CountriesNames.java
  class CountriesNames (line 11) | public class CountriesNames {
    method getCountries (line 13) | public static Map<String, String> getCountries() {

FILE: Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/util/LoadData.java
  class LoadData (line 8) | public class LoadData {
    method fromFile (line 10) | public static String fromFile(String nameFile, Context context) {

FILE: Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/util/NetworkState.java
  class NetworkState (line 10) | public class NetworkState {
    method isOnline (line 12) | public static boolean isOnline()

FILE: Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/util/NumberPickerPreference.java
  class NumberPickerPreference (line 17) | public class NumberPickerPreference extends DialogPreference {
    method NumberPickerPreference (line 28) | public NumberPickerPreference(Context context, AttributeSet attrs) {
    method NumberPickerPreference (line 32) | public NumberPickerPreference(Context context, AttributeSet attrs, int...
    method onCreateDialogView (line 36) | @Override
    method onBindDialogView (line 51) | @Override
    method onDialogClosed (line 60) | @Override
    method onGetDefaultValue (line 71) | @Override
    method onSetInitialValue (line 76) | @Override
    method setValue (line 81) | public void setValue(int value) {
    method getValue (line 86) | public int getValue() {

FILE: Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/util/PropertiesService.java
  class PropertiesService (line 13) | public class PropertiesService {
    method getPrefs (line 26) | private synchronized static SharedPreferences getPrefs(){
    method getDownloaded (line 33) | public static long getDownloaded(){
    method setDownloaded (line 37) | public static void setDownloaded(long count){
    method getUploaded (line 41) | public static long getUploaded(){
    method setUploaded (line 45) | public static void setUploaded(long count){
    method getConnectOnStart (line 49) | public static boolean getConnectOnStart(){
    method getAutomaticSwitching (line 53) | public static boolean getAutomaticSwitching(){
    method getAutomaticSwitchingSeconds (line 57) | public static int getAutomaticSwitchingSeconds(){
    method getCountryPriority (line 61) | public static boolean getCountryPriority(){
    method getSelectedCountry (line 65) | public static String getSelectedCountry(){
    method getShowRating (line 69) | public static boolean getShowRating(){
    method setShowRating (line 73) | public static void setShowRating(boolean showRating){
    method getShowNote (line 77) | public static boolean getShowNote(){
    method setShowNote (line 81) | public static void setShowNote(boolean showNote){

FILE: Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/util/Stopwatch.java
  class Stopwatch (line 7) | public class Stopwatch {
    method Stopwatch (line 13) | public Stopwatch() {
    method getDiff (line 17) | public long getDiff() {
    method getElapsedTime (line 21) | public String getElapsedTime() {

FILE: Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/util/TotalTraffic.java
  class TotalTraffic (line 15) | public class TotalTraffic {
    method calcTraffic (line 28) | public static void calcTraffic(Context context, long in, long out, lon...
    method getTotalTraffic (line 41) | public static List<String> getTotalTraffic() {
    method getTotalTraffic (line 45) | public static List<String> getTotalTraffic(long in, long out) {
    method saveTotal (line 63) | public static void saveTotal() {

FILE: Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/util/iap/Base64.java
  class Base64 (line 41) | public class Base64 {
    method Base64 (line 169) | private Base64() {
    method encode3to4 (line 196) | private static byte[] encode3to4(byte[] source, int srcOffset,
    method encode (line 246) | public static String encode(byte[] source) {
    method encodeWebSafe (line 257) | public static String encodeWebSafe(byte[] source, boolean doPadding) {
    method encode (line 272) | public static String encode(byte[] source, int off, int len, byte[] al...
    method encode (line 299) | public static byte[] encode(byte[] source, int off, int len, byte[] al...
    method decode4to3 (line 375) | private static int decode4to3(byte[] source, int srcOffset,
    method decode (line 418) | public static byte[] decode(String s) throws Base64DecoderException {
    method decodeWebSafe (line 430) | public static byte[] decodeWebSafe(String s) throws Base64DecoderExcep...
    method decode (line 444) | public static byte[] decode(byte[] source) throws Base64DecoderExcepti...
    method decodeWebSafe (line 456) | public static byte[] decodeWebSafe(byte[] source)
    method decode (line 472) | public static byte[] decode(byte[] source, int off, int len)
    method decodeWebSafe (line 487) | public static byte[] decodeWebSafe(byte[] source, int off, int len)
    method decode (line 502) | public static byte[] decode(byte[] source, int off, int len, byte[] de...

FILE: Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/util/iap/Base64DecoderException.java
  class Base64DecoderException (line 22) | public class Base64DecoderException extends Exception {
    method Base64DecoderException (line 23) | public Base64DecoderException() {
    method Base64DecoderException (line 27) | public Base64DecoderException(String s) {

FILE: Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/util/iap/IabException.java
  class IabException (line 24) | public class IabException extends Exception {
    method IabException (line 27) | public IabException(IabResult r) {
    method IabException (line 30) | public IabException(int response, String message) {
    method IabException (line 33) | public IabException(IabResult r, Exception cause) {
    method IabException (line 37) | public IabException(int response, String message, Exception cause) {
    method getResult (line 42) | public IabResult getResult() { return mResult; }

FILE: Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/util/iap/IabHelper.java
  class IabHelper (line 72) | public class IabHelper {
    method IabHelper (line 163) | public IabHelper(Context ctx, String base64PublicKey) {
    method enableDebugLogging (line 172) | public void enableDebugLogging(boolean enable, String tag) {
    method enableDebugLogging (line 178) | public void enableDebugLogging(boolean enable) {
    type OnIabSetupFinishedListener (line 187) | public interface OnIabSetupFinishedListener {
      method onIabSetupFinished (line 193) | public void onIabSetupFinished(IabResult result);
    method startSetup (line 203) | public void startSetup(final OnIabSetupFinishedListener listener) {
    method dispose (line 297) | public void dispose() {
    method checkNotDisposed (line 311) | private void checkNotDisposed() {
    method subscriptionsSupported (line 316) | public boolean subscriptionsSupported() {
    type OnIabPurchaseFinishedListener (line 325) | public interface OnIabPurchaseFinishedListener {
      method onIabPurchaseFinished (line 335) | public void onIabPurchaseFinished(IabResult result, Purchase info);
    method launchPurchaseFlow (line 342) | public void launchPurchaseFlow(Activity act, String sku, int requestCo...
    method launchPurchaseFlow (line 346) | public void launchPurchaseFlow(Activity act, String sku, int requestCode,
    method launchSubscriptionPurchaseFlow (line 351) | public void launchSubscriptionPurchaseFlow(Activity act, String sku, i...
    method launchSubscriptionPurchaseFlow (line 356) | public void launchSubscriptionPurchaseFlow(Activity act, String sku, i...
    method launchPurchaseFlow (line 379) | public void launchPurchaseFlow(Activity act, String sku, String itemTy...
    method handleActivityResult (line 447) | public boolean handleActivityResult(int requestCode, int resultCode, I...
    method queryInventory (line 531) | public Inventory queryInventory(boolean querySkuDetails, List<String> ...
    method queryInventory (line 548) | public Inventory queryInventory(boolean querySkuDetails, List<String> ...
    type QueryInventoryFinishedListener (line 594) | public interface QueryInventoryFinishedListener {
      method onQueryInventoryFinished (line 601) | public void onQueryInventoryFinished(IabResult result, Inventory inv);
    method queryInventoryAsync (line 615) | public void queryInventoryAsync(final boolean querySkuDetails,
    method queryInventoryAsync (line 648) | public void queryInventoryAsync(QueryInventoryFinishedListener listene...
    method queryInventoryAsync (line 652) | public void queryInventoryAsync(boolean querySkuDetails, QueryInventor...
    method consume (line 666) | void consume(Purchase itemInfo) throws IabException {
    type OnConsumeFinishedListener (line 702) | public interface OnConsumeFinishedListener {
      method onConsumeFinished (line 709) | public void onConsumeFinished(Purchase purchase, IabResult result);
    type OnConsumeMultiFinishedListener (line 715) | public interface OnConsumeMultiFinishedListener {
      method onConsumeMultiFinished (line 723) | public void onConsumeMultiFinished(List<Purchase> purchases, List<Ia...
    method consumeAsync (line 734) | public void consumeAsync(Purchase purchase, OnConsumeFinishedListener ...
    method consumeAsync (line 747) | public void consumeAsync(List<Purchase> purchases, OnConsumeMultiFinis...
    method getResponseDesc (line 760) | public static String getResponseDesc(int code) {
    method checkSetupDone (line 789) | void checkSetupDone(String operation) {
    method getResponseCodeFromBundle (line 797) | int getResponseCodeFromBundle(Bundle b) {
    method getResponseCodeFromIntent (line 813) | int getResponseCodeFromIntent(Intent i) {
    method flagStartAsync (line 828) | void flagStartAsync(String operation) {
    method flagEndAsync (line 836) | public void flagEndAsync() {
    method queryPurchases (line 843) | int queryPurchases(Inventory inv, String itemType) throws JSONExceptio...
    method querySkuDetails (line 912) | int querySkuDetails(String itemType, Inventory inv, List<String> moreS...
    method consumeAsyncInternal (line 959) | void consumeAsyncInternal(final List<Purchase> purchases,
    method logDebug (line 996) | void logDebug(String msg) {
    method logError (line 1000) | void logError(String msg) {
    method logWarn (line 1004) | void logWarn(String msg) {
    method isAsyncInProgress (line 1008) | public boolean isAsyncInProgress(){
    method isSetupDone (line 1011) | public boolean isSetupDone (){
    method isDisposed (line 1014) | public boolean isDisposed (){

FILE: Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/util/iap/IabResult.java
  class IabResult (line 26) | public class IabResult {
    method IabResult (line 30) | public IabResult(int response, String message) {
    method getResponse (line 39) | public int getResponse() { return mResponse; }
    method getMessage (line 40) | public String getMessage() { return mMessage; }
    method isSuccess (line 41) | public boolean isSuccess() { return mResponse == IabHelper.BILLING_RES...
    method isFailure (line 42) | public boolean isFailure() { return !isSuccess(); }
    method toString (line 43) | public String toString() { return "IabResult: " + getMessage(); }

FILE: Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/util/iap/Inventory.java
  class Inventory (line 27) | public class Inventory {
    method Inventory (line 31) | Inventory() { }
    method getSkuDetails (line 34) | public SkuDetails getSkuDetails(String sku) {
    method getPurchase (line 39) | public Purchase getPurchase(String sku) {
    method hasPurchase (line 44) | public boolean hasPurchase(String sku) {
    method hasDetails (line 49) | public boolean hasDetails(String sku) {
    method erasePurchase (line 61) | public void erasePurchase(String sku) {
    method getAllOwnedSkus (line 66) | List<String> getAllOwnedSkus() {
    method getAllOwnedSkus (line 71) | List<String> getAllOwnedSkus(String itemType) {
    method getAllPurchases (line 80) | List<Purchase> getAllPurchases() {
    method addSkuDetails (line 84) | void addSkuDetails(SkuDetails d) {
    method addPurchase (line 88) | void addPurchase(Purchase p) {

FILE: Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/util/iap/Purchase.java
  class Purchase (line 24) | public class Purchase {
    method Purchase (line 36) | public Purchase(String itemType, String jsonPurchaseInfo, String signa...
    method getItemType (line 50) | public String getItemType() { return mItemType; }
    method getOrderId (line 51) | public String getOrderId() { return mOrderId; }
    method getPackageName (line 52) | public String getPackageName() { return mPackageName; }
    method getSku (line 53) | public String getSku() { return mSku; }
    method getPurchaseTime (line 54) | public long getPurchaseTime() { return mPurchaseTime; }
    method getPurchaseState (line 55) | public int getPurchaseState() { return mPurchaseState; }
    method getDeveloperPayload (line 56) | public String getDeveloperPayload() { return mDeveloperPayload; }
    method getToken (line 57) | public String getToken() { return mToken; }
    method getOriginalJson (line 58) | public String getOriginalJson() { return mOriginalJson; }
    method getSignature (line 59) | public String getSignature() { return mSignature; }
    method toString (line 61) | @Override

FILE: Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/util/iap/Security.java
  class Security (line 46) | public class Security {
    method verifyPurchase (line 61) | public static boolean verifyPurchase(String base64PublicKey, String si...
    method generatePublicKey (line 82) | public static PublicKey generatePublicKey(String encodedPublicKey) {
    method verify (line 107) | public static boolean verify(PublicKey publicKey, String signedData, S...

FILE: Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/util/iap/SkuDetails.java
  class SkuDetails (line 24) | public class SkuDetails {
    method SkuDetails (line 33) | public SkuDetails(String jsonSkuDetails) throws JSONException {
    method SkuDetails (line 37) | public SkuDetails(String itemType, String jsonSkuDetails) throws JSONE...
    method getSku (line 48) | public String getSku() { return mSku; }
    method getType (line 49) | public String getType() { return mType; }
    method getPrice (line 50) | public String getPrice() { return mPrice; }
    method getTitle (line 51) | public String getTitle() { return mTitle; }
    method getDescription (line 52) | public String getDescription() { return mDescription; }
    method toString (line 54) | @Override

FILE: Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/util/map/MapCreator.java
  class MapCreator (line 28) | public class MapCreator {
    method MapCreator (line 35) | public MapCreator(Context context, Layers layers) {
    method parseGeoJson (line 49) | public void parseGeoJson(String nameFile) {
    method parseData (line 58) | private void parseData(String jsonString) {
    method createPolygons (line 82) | private void createPolygons(JSONArray coordinates) {

FILE: Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/util/map/MyMarker.java
  class MyMarker (line 11) | public class MyMarker extends Marker {
    method MyMarker (line 20) | public MyMarker(LatLong latLong, Bitmap bitmap, int horizontalOffset, ...
    method getRelationObject (line 25) | public Object getRelationObject() {

FILE: Android-code/app/src/main/java/de/blinkt/openvpn/VpnProfile.java
  class VpnProfile (line 61) | public class VpnProfile implements Serializable, Cloneable {
    method VpnProfile (line 174) | public VpnProfile(String name) {
    method openVpnEscape (line 183) | public static String openVpnEscape(String unescaped) {
    method clearDefaults (line 198) | public void clearDefaults() {
    method getUUID (line 212) | public UUID getUUID() {
    method getName (line 217) | public String getName() {
    method upgradeProfile (line 223) | public void upgradeProfile() {
    method moveOptionsToConnection (line 248) | private void moveOptionsToConnection() {
    method getConfigFile (line 261) | public String getConfigFile(Context context, boolean configForOvpn3) {
    method getVersionEnvString (line 562) | public String getVersionEnvString(Context c) {
    method insertFileData (line 575) | public static String insertFileData(String cfgentry, String filedata) {
    method getCustomRoutes (line 586) | @NonNull
    method getCustomRoutesv6 (line 606) | private Collection<String> getCustomRoutesv6(String routes) {
    method cidrToIPAndNetmask (line 621) | private String cidrToIPAndNetmask(String route) {
    method prepareStartService (line 648) | public Intent prepareStartService(Context context) {
    method writeConfigFile (line 660) | public void writeConfigFile(Context context) throws IOException {
    method getStartServiceIntent (line 668) | public Intent getStartServiceIntent(Context context) {
    method getKeyStoreCertificates (line 677) | public String[] getKeyStoreCertificates(Context context) {
    method getDisplayName (line 681) | public static String getDisplayName(String embeddedFile) {
    method getEmbeddedContent (line 687) | public static String getEmbeddedContent(String data) {
    method isEmbedded (line 695) | public static boolean isEmbedded(String data) {
    method checkForRestart (line 704) | public void checkForRestart(final Context context) {
    method clone (line 719) | @Override
    method copy (line 732) | public VpnProfile copy(String name) {
    class NoCertReturnedException (line 745) | class NoCertReturnedException extends Exception {
      method NoCertReturnedException (line 746) | public NoCertReturnedException(String msg) {
    method getKeyStoreCertificates (line 751) | synchronized String[] getKeyStoreCertificates(Context context, int tri...
    method checkProfile (line 852) | public int checkProfile(Context context) {
    method getPasswordPrivateKey (line 898) | public String getPasswordPrivateKey() {
    method isUserPWAuth (line 920) | public boolean isUserPWAuth() {
    method requireTLSKeyPassword (line 933) | public boolean requireTLSKeyPassword() {
    method needUserPWInput (line 967) | public int needUserPWInput(boolean ignoreTransient) {
    method getPasswordAuth (line 989) | public String getPasswordAuth() {
    method toString (line 1000) | @Override
    method getUUIDString (line 1005) | public String getUUIDString() {
    method getKeystoreKey (line 1009) | public PrivateKey getKeystoreKey() {
    method getSignedData (line 1013) | public String getSignedData(String b64data) {
    method processSignJellyBeans (line 1045) | private String processSignJellyBeans(PrivateKey privkey, byte[] data) {

FILE: Android-code/app/src/main/java/de/blinkt/openvpn/core/CIDRIP.java
  class CIDRIP (line 10) | class CIDRIP {
    method CIDRIP (line 15) | public CIDRIP(String ip, String mask) {
    method CIDRIP (line 37) | public CIDRIP(String address, int prefix_length) {
    method toString (line 42) | @Override
    method normalise (line 47) | public boolean normalise() {
    method getInt (line 60) | static long getInt(String ipaddr) {
    method getInt (line 72) | public long getInt() {

FILE: Android-code/app/src/main/java/de/blinkt/openvpn/core/ConfigParser.java
  class ConfigParser (line 28) | public class ConfigParser {
    method parseConfig (line 36) | public void parseConfig(Reader reader) throws IOException, ConfigParse...
    method parsemeta (line 92) | private Vector<String> parsemeta(String line) {
    method checkinlinefile (line 101) | private void checkinlinefile(Vector<String> args, BufferedReader br) t...
    method getAuthUserPassFile (line 129) | public String getAuthUserPassFile() {
    type linestate (line 133) | enum linestate {
    method space (line 138) | private boolean space(char c) {
    class ConfigParseError (line 145) | public static class ConfigParseError extends Exception {
      method ConfigParseError (line 148) | public ConfigParseError(String msg) {
    method parseline (line 155) | private Vector<String> parseline(String line) throws ConfigParseError {
    method convertProfile (line 332) | @SuppressWarnings("ConstantConditions")
    method parseConnection (line 698) | private Pair<Connection, Connection[]> parseConnection(String connecti...
    method parseConnectionOptions (line 711) | private Pair<Connection, Connection[]> parseConnectionOptions(Connecti...
    method checkRedirectParameters (line 791) | private void checkRedirectParameters(VpnProfile np, Vector<Vector<Stri...
    method isUdpProto (line 801) | private boolean isUdpProto(String proto) throws ConfigParseError {
    method useEmbbedUserAuth (line 815) | static public void useEmbbedUserAuth(VpnProfile np, String inlinedata) {
    method checkIgnoreAndInvalidOptions (line 824) | private void checkIgnoreAndInvalidOptions(VpnProfile np) throws Config...
    method ignoreThisOption (line 849) | boolean ignoreThisOption(Vector<String> option) {
    method getOptionStrings (line 868) | private String getOptionStrings(Vector<Vector<String>> option) {
    method fixup (line 888) | private void fixup(VpnProfile np) {
    method getOption (line 894) | private Vector<String> getOption(String option, int minarg, int maxarg...
    method getAllOption (line 903) | private Vector<Vector<String>> getAllOption(String option, int minarg,...

FILE: Android-code/app/src/main/java/de/blinkt/openvpn/core/Connection.java
  class Connection (line 12) | public class Connection implements Serializable, Cloneable {
    method getConnectionBlock (line 25) | public String getConnectionBlock() {
    method clone (line 49) | @Override
    method isOnlyRemote (line 54) | public boolean isOnlyRemote() {
    method getTimeout (line 58) | public int getTimeout() {

FILE: Android-code/app/src/main/java/de/blinkt/openvpn/core/DeviceStateReceiver.java
  class DeviceStateReceiver (line 28) | public class DeviceStateReceiver extends BroadcastReceiver implements By...
    method run (line 48) | @Override
    method shouldBeRunning (line 64) | @Override
    type connectState (line 69) | enum connectState {
    class Datapoint (line 75) | static class Datapoint {
      method Datapoint (line 76) | private Datapoint(long t, long d) {
    method updateByteCount (line 88) | @Override
    method userPause (line 114) | public void userPause(boolean pause) {
    method DeviceStateReceiver (line 130) | public DeviceStateReceiver(OpenVPNManagement magnagement) {
    method onReceive (line 138) | @Override
    method fillTrafficData (line 175) | private void fillTrafficData() {
    method equalsObj (line 178) | public static boolean equalsObj(Object a, Object b) {
    method networkStateChange (line 184) | public void networkStateChange(Context context) {
    method isUserPaused (line 271) | public boolean isUserPaused() {
    method shouldBeConnected (line 275) | private boolean shouldBeConnected() {
    method getPauseReason (line 280) | private pauseReason getPauseReason() {
    method getCurrentNetworkInfo (line 293) | private NetworkInfo getCurrentNetworkInfo(Context context) {

FILE: Android-code/app/src/main/java/de/blinkt/openvpn/core/ICSOpenVPNApplication.java
  class ICSOpenVPNApplication (line 33) | public class ICSOpenVPNApplication extends Application {
    method onCreate (line 34) | @Override

FILE: Android-code/app/src/main/java/de/blinkt/openvpn/core/LogFileHandler.java
  class LogFileHandler (line 32) | class LogFileHandler extends Handler {
    method LogFileHandler (line 43) | public LogFileHandler(Looper looper) {
    method handleMessage (line 48) | @Override
    method flushToDisk (line 77) | private void flushToDisk() throws IOException {
    method trimLogFile (line 81) | private void trimLogFile() {
    method writeLogItemToDisk (line 90) | private void writeLogItemToDisk(LogItem li) throws IOException {
    method writeEscapedBytes (line 100) | public void writeEscapedBytes(byte[] bytes) throws IOException {
    method openLogFile (line 126) | private void openLogFile(File cacheDir) throws FileNotFoundException {
    method readLogCache (line 131) | private void readLogCache(File cacheDir) {
    method readCacheContents (line 150) | protected void readCacheContents(InputStream in) throws IOException {
    method restoreLogItem (line 216) | protected void restoreLogItem(byte[] buf, int len) throws UnsupportedE...
    method bytesToHex (line 230) | public static String bytesToHex(byte[] bytes, int len) {

FILE: Android-code/app/src/main/java/de/blinkt/openvpn/core/LogItem.java
  class LogItem (line 40) | public class LogItem implements Parcelable {
    method LogItem (line 49) | private LogItem(int ressourceId, Object[] args) {
    method LogItem (line 54) | public LogItem(VpnStatus.LogLevel level, int verblevel, String message) {
    method describeContents (line 60) | @Override
    method writeToParcel (line 66) | @Override
    method equals (line 77) | @Override
    method getMarschaledBytes (line 95) | public byte[] getMarschaledBytes() throws UnsupportedEncodingException...
    method LogItem (line 146) | public LogItem(byte[] in, int length) throws UnsupportedEncodingExcept...
    method marschalString (line 201) | private void marschalString(String str, ByteBuffer bb) throws Unsuppor...
    method unmarschalString (line 207) | private String unmarschalString(ByteBuffer bb) throws UnsupportedEncod...
    method LogItem (line 215) | public LogItem(Parcel in) {
    method createFromParcel (line 226) | public LogItem createFromParcel(Parcel in) {
    method newArray (line 230) | public LogItem[] newArray(int size) {
    method LogItem (line 235) | public LogItem(VpnStatus.LogLevel loglevel, int ressourceId, Object......
    method LogItem (line 242) | public LogItem(VpnStatus.LogLevel loglevel, String msg) {
    method LogItem (line 248) | public LogItem(VpnStatus.LogLevel loglevel, int ressourceId) {
    method getString (line 253) | public String getString(Context c) {
    method join (line 289) | public static String join(CharSequence delimiter, Object[] tokens) {
    method getLogLevel (line 304) | public VpnStatus.LogLevel getLogLevel() {
    method toString (line 309) | @Override
    method getMobileInfoString (line 315) | @SuppressLint("StringFormatMatches")
    method getLogtime (line 357) | public long getLogtime() {
    method getVerbosityLevel (line 362) | public int getVerbosityLevel() {
    method verify (line 371) | public boolean verify() {

FILE: Android-code/app/src/main/java/de/blinkt/openvpn/core/LollipopDeviceStateListener.java
  class LollipopDeviceStateListener (line 18) | @TargetApi(Build.VERSION_CODES.LOLLIPOP)
    method onAvailable (line 25) | @Override
    method onLinkPropertiesChanged (line 35) | @Override
    method onCapabilitiesChanged (line 45) | @Override

FILE: Android-code/app/src/main/java/de/blinkt/openvpn/core/NativeUtils.java
  class NativeUtils (line 12) | public class NativeUtils {
    method rsasign (line 13) | public static native byte[] rsasign(byte[] input, int pkey) throws Inv...
    method getIfconfig (line 15) | public static native String[] getIfconfig() throws IllegalArgumentExce...
    method jniclose (line 17) | static native void jniclose(int fdint);
    method getNativeAPI (line 19) | public static native String getNativeAPI();

FILE: Android-code/app/src/main/java/de/blinkt/openvpn/core/NetworkSpace.java
  class NetworkSpace (line 26) | public class NetworkSpace {
    class ipAddress (line 28) | static class ipAddress implements Comparable<ipAddress> {
      method compareTo (line 42) | @Override
      method equals (line 62) | @Override
      method ipAddress (line 72) | public ipAddress(CIDRIP ip, boolean include) {
      method ipAddress (line 79) | public ipAddress(Inet6Address address, int mask, boolean include) {
      method getLastAddress (line 92) | public BigInteger getLastAddress() {
      method getFirstAddress (line 99) | public BigInteger getFirstAddress() {
      method getMaskedAddress (line 106) | private BigInteger getMaskedAddress(boolean one) {
      method toString (line 126) | @Override
      method ipAddress (line 135) | ipAddress(BigInteger baseAddress, int mask, boolean included, boolea...
      method split (line 143) | public ipAddress[] split() {
      method getIPv4Address (line 151) | String getIPv4Address() {
      method getIPv6Address (line 161) | String getIPv6Address() {
      method containsNet (line 191) | public boolean containsNet(ipAddress network) {
    method getNetworks (line 209) | public Collection<ipAddress> getNetworks(boolean included) {
    method clear (line 218) | public void clear() {
    method addIP (line 223) | void addIP(CIDRIP cidrIp, boolean include) {
    method addIPSplit (line 228) | public void addIPSplit(CIDRIP cidrIp, boolean include) {
    method addIPv6 (line 235) | void addIPv6(Inet6Address address, int mask, boolean included) {
    method generateIPList (line 239) | TreeSet<ipAddress> generateIPList() {
    method getPositiveIPList (line 327) | Collection<ipAddress> getPositiveIPList() {

FILE: Android-code/app/src/main/java/de/blinkt/openvpn/core/OpenVPNManagement.java
  type OpenVPNManagement (line 8) | public interface OpenVPNManagement {
    type PausedStateCallback (line 9) | interface PausedStateCallback {
      method shouldBeRunning (line 10) | boolean shouldBeRunning();
    type pauseReason (line 13) | enum pauseReason {
    method reconnect (line 21) | void reconnect();
    method pause (line 23) | void pause(pauseReason reason);
    method resume (line 25) | void resume();
    method stopVPN (line 31) | boolean stopVPN(boolean replaceConnection);
    method networkChange (line 36) | void networkChange(boolean sameNetwork);
    method setPauseCallback (line 38) | void setPauseCallback(PausedStateCallback callback);

FILE: Android-code/app/src/main/java/de/blinkt/openvpn/core/OpenVPNService.java
  class OpenVPNService (line 64) | public class OpenVPNService extends VpnService implements StateListener,...
    method humanReadableByteCount (line 97) | public static String humanReadableByteCount(long bytes, boolean mbit) {
    method onBind (line 112) | @Override
    method onRevoke (line 121) | @Override
    method processDied (line 129) | public void processDied() {
    method endVpnService (line 133) | private void endVpnService() {
    method showNotification (line 151) | private void showNotification(final String msg, String tickerText, boo...
    method lpNotificationExtras (line 209) | @TargetApi(Build.VERSION_CODES.LOLLIPOP)
    method runningOnAndroidTV (line 216) | private boolean runningOnAndroidTV() {
    method jbNotificationExtras (line 243) | @TargetApi(Build.VERSION_CODES.JELLY_BEAN)
    method getLogPendingIntent (line 288) | PendingIntent getLogPendingIntent() {
    method registerDeviceStateReceiver (line 297) | synchronized void registerDeviceStateReceiver(OpenVPNManagement magnag...
    method unregisterDeviceStateReceiver (line 311) | synchronized void unregisterDeviceStateReceiver() {
    method userPause (line 329) | public void userPause(boolean shouldBePaused) {
    method onStartCommand (line 334) | @Override
    method startOpenVPN (line 414) | private void startOpenVPN() {
    method stopOldOpenVPNProcess (line 501) | private void stopOldOpenVPNProcess() {
    method instantiateOpenVPN3Core (line 527) | private OpenVPNManagement instantiateOpenVPN3Core() {
    method onDestroy (line 538) | @Override
    method getTunConfigString (line 555) | private String getTunConfigString() {
    method openTun (line 574) | public ParcelFileDescriptor openTun() {
    method allowAllAFFamilies (line 731) | @TargetApi(Build.VERSION_CODES.LOLLIPOP)
    method addLocalNetworksToRoutes (line 737) | private void addLocalNetworksToRoutes() {
    method setAllowedVpnPackages (line 769) | @TargetApi(Build.VERSION_CODES.LOLLIPOP)
    method addDNS (line 802) | public void addDNS(String dns) {
    method setDomain (line 806) | public void setDomain(String domain) {
    method addRoute (line 815) | public void addRoute(CIDRIP route) {
    method addRoute (line 819) | public void addRoute(String dest, String mask, String gateway, String ...
    method addRoutev6 (line 848) | public void addRoutev6(String network, String device) {
    method isAndroidTunDevice (line 866) | private boolean isAndroidTunDevice(String device) {
    method setMtu (line 871) | public void setMtu(int mtu) {
    method setLocalIP (line 875) | public void setLocalIP(CIDRIP cdrip) {
    method setLocalIP (line 879) | public void setLocalIP(String local, String netmask, int mtu, String m...
    method setLocalIPv6 (line 925) | public void setLocalIPv6(String ipv6addr) {
    method updateState (line 929) | @Override
    method doSendBroadcast (line 973) | private void doSendBroadcast(String state, ConnectionStatus level) {
    method updateByteCount (line 981) | @Override
    method handleMessage (line 998) | @Override
    method getManagement (line 1009) | public OpenVPNManagement getManagement() {
    method getTunReopenStatus (line 1013) | public String getTunReopenStatus() {
    class LocalBinder (line 1028) | public class LocalBinder extends Binder {
      method getService (line 1029) | public OpenVPNService getService() {

FILE: Android-code/app/src/main/java/de/blinkt/openvpn/core/OpenVPNThread.java
  class OpenVPNThread (line 32) | public class OpenVPNThread implements Runnable {
    method OpenVPNThread (line 50) | public OpenVPNThread(OpenVPNService service, String[] argv, String nat...
    method stopProcess (line 56) | public void stopProcess() {
    method setReplaceConnection (line 60) | void setReplaceConnection()
    method run (line 65) | @Override
    method startOpenVPNThreadArgs (line 125) | private void startOpenVPNThreadArgs(String[] argv) {
    method genLibraryPath (line 196) | private String genLibraryPath(String[] argv, ProcessBuilder pb) {

FILE: Android-code/app/src/main/java/de/blinkt/openvpn/core/OpenVpnManagementThread.java
  class OpenVpnManagementThread (line 39) | public class OpenVpnManagementThread implements Runnable, OpenVPNManagem...
    method OpenVpnManagementThread (line 58) | public OpenVpnManagementThread(VpnProfile profile, OpenVPNService open...
    method run (line 66) | @Override
    method openManagementInterface (line 74) | public boolean openManagementInterface(@NonNull Context c) {
    method managmentCommand (line 110) | public void managmentCommand(String cmd) {
    method run (line 122) | @Override
    method protectFileDescriptor (line 178) | private void protectFileDescriptor(FileDescriptor fd) {
    method processInput (line 202) | private String processInput(String pendingInput) {
    method processCommand (line 218) | private void processCommand(String command) {
    method processLogMessage (line 275) | private void processLogMessage(String argument) {
    method shouldBeRunning (line 319) | boolean shouldBeRunning() {
    method handleHold (line 326) | private void handleHold(String argument) {
    method releaseHoldCmd (line 346) | private void releaseHoldCmd() {
    method releaseHold (line 364) | public void releaseHold() {
    method processProxyCMD (line 369) | private void processProxyCMD(String argument) {
    method processState (line 394) | private void processState(String argument) {
    method processByteCount (line 405) | private void processByteCount(String argument) {
    method processNeedCommand (line 416) | private void processNeedCommand(String argument) {
    method sendTunFD (line 492) | private boolean sendTunFD(String needed, String extra) {
    method processPWCommand (line 534) | private void processPWCommand(String argument) {
    method proccessPWFailed (line 574) | private void proccessPWFailed(String needed, String args) {
    method stopOpenVPN (line 579) | private static boolean stopOpenVPN() {
    method networkChange (line 596) | @Override
    method setPauseCallback (line 606) | @Override
    method signalusr1 (line 611) | public void signalusr1() {
    method reconnect (line 621) | public void reconnect() {
    method processSignCommand (line 626) | private void processSignCommand(String b64data) {
    method pause (line 640) | @Override
    method resume (line 646) | @Override
    method stopVPN (line 653) | @Override

FILE: Android-code/app/src/main/java/de/blinkt/openvpn/core/PRNGFixes.java
  class PRNGFixes (line 42) | public final class PRNGFixes {
    method PRNGFixes (line 50) | private PRNGFixes() {}
    method apply (line 57) | public static void apply() {
    method applyOpenSSLFix (line 68) | private static void applyOpenSSLFix() throws SecurityException {
    method installLinuxPRNGSecureRandom (line 103) | private static void installLinuxPRNGSecureRandom()
    class LinuxPRNGSecureRandomProvider (line 150) | private static class LinuxPRNGSecureRandomProvider extends Provider {
      method LinuxPRNGSecureRandomProvider (line 152) | public LinuxPRNGSecureRandomProvider() {
    class LinuxPRNGSecureRandom (line 170) | public static class LinuxPRNGSecureRandom extends SecureRandomSpi {
      method engineSetSeed (line 211) | @Override
      method engineNextBytes (line 230) | @Override
      method engineGenerateSeed (line 251) | @Override
      method getUrandomInputStream (line 258) | private DataInputStream getUrandomInputStream() {
      method getUrandomOutputStream (line 277) | private OutputStream getUrandomOutputStream() throws IOException {
    method generateSeed (line 291) | private static byte[] generateSeed() {
    method getDeviceSerialNumber (line 313) | private static String getDeviceSerialNumber() {
    method getBuildFingerprintAndDeviceSerial (line 323) | private static byte[] getBuildFingerprintAndDeviceSerial() {

FILE: Android-code/app/src/main/java/de/blinkt/openvpn/core/ProfileManager.java
  class ProfileManager (line 24) | public class ProfileManager {
    method get (line 35) | private static VpnProfile get(String key) {
    method ProfileManager (line 46) | private ProfileManager() {
    method checkInstance (line 49) | private static void checkInstance(Context context) {
    method getInstance (line 56) | synchronized public static ProfileManager getInstance(Context context) {
    method setConntectedVpnProfileDisconnected (line 61) | public static void setConntectedVpnProfileDisconnected(Context c) {
    method setConnectedVpnProfile (line 72) | public static void setConnectedVpnProfile(Context c, VpnProfile connec...
    method getLastConnectedProfile (line 85) | public static VpnProfile getLastConnectedProfile(Context c) {
    method getProfiles (line 96) | public Collection<VpnProfile> getProfiles() {
    method getProfileByName (line 100) | public VpnProfile getProfileByName(String name) {
    method saveProfileList (line 109) | public void saveProfileList(Context context) {
    method addProfile (line 123) | public void addProfile(VpnProfile profile) {
    method setTemporaryProfile (line 128) | public static void setTemporaryProfile(VpnProfile tmp) {
    method isTempProfile (line 132) | public static boolean isTempProfile()
    method saveProfile (line 138) | public void saveProfile(Context context, VpnProfile profile) {
    method loadVPNList (line 153) | private void loadVPNList(Context context) {
    method removeProfile (line 180) | public void removeProfile(Context context, VpnProfile profile) {
    method get (line 190) | public static VpnProfile get(Context context, String profileUUID) {
    method getLastConnectedVpn (line 195) | public static VpnProfile getLastConnectedVpn() {
    method getAlwaysOnVPN (line 199) | public static VpnProfile getAlwaysOnVPN(Context context) {

FILE: Android-code/app/src/main/java/de/blinkt/openvpn/core/ProxyDetection.java
  class ProxyDetection (line 22) | public class ProxyDetection {
    method detectProxy (line 23) | static SocketAddress detectProxy(VpnProfile vp) {
    method getFirstProxy (line 44) | static Proxy getFirstProxy(URL url) throws URISyntaxException {

FILE: Android-code/app/src/main/java/de/blinkt/openvpn/core/VPNLaunchHelper.java
  class VPNLaunchHelper (line 25) | public class VPNLaunchHelper {
    method writeMiniVPN (line 32) | private static String writeMiniVPN(Context context) {
    method getSupportedABIsLollipop (line 57) | @TargetApi(Build.VERSION_CODES.LOLLIPOP)
    method getMiniVPNExecutableName (line 62) | private static String getMiniVPNExecutableName()
    method replacePieWithNoPie (line 71) | public static String[] replacePieWithNoPie(String[] mArgv)
    method buildOpenvpnArgv (line 78) | static String[] buildOpenvpnArgv(Context c) {
    method writeMiniVPNBinary (line 97) | private static boolean writeMiniVPNBinary(Context context, String abi,...
    method startOpenVpn (line 136) | public static void startOpenVpn(VpnProfile startprofile, Context conte...
    method getConfigFilePath (line 143) | public static String getConfigFilePath(Context context) {

FILE: Android-code/app/src/main/java/de/blinkt/openvpn/core/VpnStatus.java
  class VpnStatus (line 24) | public class VpnStatus {
    method logException (line 42) | public static void logException(LogLevel ll, String context, Exception...
    method logException (line 54) | public static void logException(Exception e) {
    method logException (line 58) | public static void logException(String context, Exception e) {
    method isVPNActive (line 64) | public static boolean isVPNActive() {
    method getLastCleanLogMessage (line 68) | public static String getLastCleanLogMessage(Context c) {
    method initLogCache (line 113) | public static void initLogCache(File cacheDir) {
    method flushLog (line 124) | public static void flushLog() {
    type ConnectionStatus (line 129) | public enum ConnectionStatus {
    type LogLevel (line 142) | public enum LogLevel {
      method LogLevel (line 151) | LogLevel(int value) {
      method getInt (line 155) | public int getInt() {
      method getEnumByValue (line 159) | public static LogLevel getEnumByValue(int value) {
    type LogListener (line 198) | public interface LogListener {
      method newLog (line 199) | void newLog(LogItem logItem);
    type StateListener (line 202) | public interface StateListener {
      method updateState (line 203) | void updateState(String state, String logmessage, int localizedResId...
    type ByteCountListener (line 206) | public interface ByteCountListener {
      method updateByteCount (line 207) | void updateByteCount(long in, long out, long diffIn, long diffOut);
    method logMessage (line 210) | public synchronized static void logMessage(LogLevel level, String pref...
    method clearLog (line 215) | public synchronized static void clearLog() {
    method logInformation (line 222) | private static void logInformation() {
    method addLogListener (line 234) | public synchronized static void addLogListener(LogListener ll) {
    method removeLogListener (line 238) | public synchronized static void removeLogListener(LogListener ll) {
    method addByteCountListener (line 242) | public synchronized static void addByteCountListener(ByteCountListener...
    method removeByteCountListener (line 247) | public synchronized static void removeByteCountListener(ByteCountListe...
    method addStateListener (line 252) | public synchronized static void addStateListener(StateListener sl) {
    method getLocalizedState (line 260) | private static int getLocalizedState(String state) {
    method updateStatePause (line 292) | public static void updateStatePause(OpenVPNManagement.pauseReason paus...
    method getLevel (line 307) | private static ConnectionStatus getLevel(String state) {
    method removeStateListener (line 334) | public synchronized static void removeStateListener(StateListener sl) {
    method getlogbuffer (line 339) | synchronized public static LogItem[] getlogbuffer() {
    method updateStateString (line 347) | public static void updateStateString(String state, String msg) {
    method updateStateString (line 353) | public synchronized static void updateStateString(String state, String...
    method logInfo (line 374) | public static void logInfo(String message) {
    method logDebug (line 378) | public static void logDebug(String message) {
    method logInfo (line 382) | public static void logInfo(int resourceId, Object... args) {
    method logDebug (line 386) | public static void logDebug(int resourceId, Object... args) {
    method newLogItem (line 390) | private static void newLogItem(LogItem logItem) {
    method newLogItem (line 395) | synchronized static void newLogItem(LogItem logItem, boolean cachedLin...
    method logError (line 423) | public static void logError(String msg) {
    method logWarning (line 428) | public static void logWarning(int resourceId, Object... args) {
    method logWarning (line 432) | public static void logWarning(String msg) {
    method logError (line 437) | public static void logError(int resourceId) {
    method logError (line 441) | public static void logError(int resourceId, Object... args) {
    method logMessageOpenVPN (line 445) | public static void logMessageOpenVPN(LogLevel level, int ovpnlevel, St...
    method updateByteCount (line 451) | public static synchronized void updateByteCount(long in, long out) {

FILE: Android-code/app/src/main/java/de/blinkt/openvpn/core/X509Utils.java
  class X509Utils (line 35) | public class X509Utils {
    method getCertificatesFromFile (line 36) | public static Certificate[] getCertificatesFromFile(String certfilenam...
    method readPemObjectFromFile (line 61) | public static PemObject readPemObjectFromFile (String keyfilename) thr...
    method getCertificateFriendlyName (line 79) | public static String getCertificateFriendlyName (Context c, String fil...
    method getCertificateValidityString (line 94) | public static String getCertificateValidityString(X509Certificate cert...
    method getMonthsDifference (line 122) | public static int getMonthsDifference(Date date1, Date date2) {
    method getCertificateFriendlyName (line 128) | public static String getCertificateFriendlyName(X509Certificate cert) {
    method isPrintableChar (line 183) | public static boolean isPrintableChar(char c) {
    method ia5decode (line 190) | private static String ia5decode(String ia5string) {

FILE: Android-code/app/src/main/java/org/spongycastle/util/encoders/Base64.java
  class Base64 (line 12) | public class Base64
    method encode (line 21) | public static byte[] encode(
    method encode (line 44) | public static int encode(
    method encode (line 57) | public static int encode(
    method decode (line 72) | public static byte[] decode(
    method decode (line 95) | public static byte[] decode(
    method decode (line 119) | public static int decode(

FILE: Android-code/app/src/main/java/org/spongycastle/util/encoders/Base64Encoder.java
  class Base64Encoder (line 11) | public class Base64Encoder
    method initialiseDecodingTable (line 37) | protected void initialiseDecodingTable()
    method Base64Encoder (line 45) | public Base64Encoder()
    method encode (line 55) | public int encode(
    method ignore (line 116) | private boolean ignore(
    method decode (line 128) | public int decode(
    method nextI (line 185) | private int nextI(byte[] data, int i, int finish)
    method decode (line 200) | public int decode(
    method decodeLastBlock (line 255) | private int decodeLastBlock(OutputStream out, char c1, char c2, char c...
    method nextI (line 295) | private int nextI(String data, int i, int finish)

FILE: Android-code/app/src/main/java/org/spongycastle/util/encoders/Encoder.java
  type Encoder (line 15) | public interface Encoder
    method encode (line 17) | int encode(byte[] data, int off, int length, OutputStream out) throws ...
    method decode (line 19) | int decode(byte[] data, int off, int length, OutputStream out) throws ...
    method decode (line 21) | int decode(String data, OutputStream out) throws IOException;

FILE: Android-code/app/src/main/java/org/spongycastle/util/io/pem/PemGenerationException.java
  class PemGenerationException (line 10) | @SuppressWarnings("serial")
    method PemGenerationException (line 16) | public PemGenerationException(String message, Throwable cause)
    method PemGenerationException (line 22) | public PemGenerationException(String message)
    method getCause (line 27) | public Throwable getCause()

FILE: Android-code/app/src/main/java/org/spongycastle/util/io/pem/PemHeader.java
  class PemHeader (line 8) | public class PemHeader
    method PemHeader (line 13) | public PemHeader(String name, String value)
    method getName (line 19) | public String getName()
    method getValue (line 24) | public String getValue()
    method hashCode (line 29) | public int hashCode()
    method equals (line 34) | public boolean equals(Object o)
    method getHashCode (line 46) | private int getHashCode(String s)
    method isEqual (line 56) | private boolean isEqual(String s1, String s2)

FILE: Android-code/app/src/main/java/org/spongycastle/util/io/pem/PemObject.java
  class PemObject (line 12) | @SuppressWarnings("all")
    method PemObject (line 28) | public PemObject(String type, byte[] content)
    method PemObject (line 40) | public PemObject(String type, List headers, byte[] content)
    method getType (line 47) | public String getType()
    method getHeaders (line 52) | public List getHeaders()
    method getContent (line 57) | public byte[] getContent()
    method generate (line 62) | public PemObject generate()

FILE: Android-code/app/src/main/java/org/spongycastle/util/io/pem/PemObjectGenerator.java
  type PemObjectGenerator (line 8) | public interface PemObjectGenerator
    method generate (line 10) | PemObject generate()

FILE: Android-code/app/src/main/java/org/spongycastle/util/io/pem/PemReader.java
  class PemReader (line 16) | public class PemReader
    method PemReader (line 22) | public PemReader(Reader reader)
    method readPemObject (line 27) | public PemObject readPemObject()
    method loadObject (line 52) | private PemObject loadObject(String type)

FILE: Android-code/app/src/main/java/org/spongycastle/util/io/pem/PemWriter.java
  class PemWriter (line 18) | @SuppressWarnings("all")
    method PemWriter (line 32) | public PemWriter(Writer out)
    method getOutputSize (line 54) | public int getOutputSize(PemObject obj)
    method writeObject (line 79) | public void writeObject(PemObjectGenerator objGen)
    method writeEncoded (line 105) | private void writeEncoded(byte[] bytes)
    method writePreEncapsulationBoundary (line 128) | private void writePreEncapsulationBoundary(
    method writePostEncapsulationBoundary (line 136) | private void writePostEncapsulationBoundary(
Condensed preview — 198 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (1,062K chars).
[
  {
    "path": ".gitignore",
    "chars": 433,
    "preview": "*.ap_\n\n# Files for the ART/Dalvik VM\n*.dex\n\n# Java class files\n*.class\n\n# Generated files\nbin/\ngen/\nout/\n\n# Gradle files"
  },
  {
    "path": "Android-code/.gitignore",
    "chars": 182,
    "preview": "*.iml\n.gradle\n.idea\n/local.properties\n/.idea/workspace.xml\n/.idea/libraries\n.DS_Store\n/build\n/captures\n/app/src/test\n/ap"
  },
  {
    "path": "Android-code/app/.gitignore",
    "chars": 7,
    "preview": "/build\n"
  },
  {
    "path": "Android-code/app/build.gradle",
    "chars": 2576,
    "preview": "buildscript {\n    repositories {\n        maven { url 'https://maven.fabric.io/public' }\n    }\n\n    dependencies {\n      "
  },
  {
    "path": "Android-code/app/fabric.properties",
    "chars": 224,
    "preview": "#Contains API Secret used to validate your application. Commit to internal source control; avoid making secret public.\n#"
  },
  {
    "path": "Android-code/app/google-services.json",
    "chars": 853,
    "preview": "{\n  \"project_info\": {\n    \"project_number\": \"1067063466316\",\n    \"project_id\": \"easy-vpn-free\"\n  },\n  \"client\": [\n    {\n"
  },
  {
    "path": "Android-code/app/proguard-rules.pro",
    "chars": 667,
    "preview": "# Add project specific ProGuard rules here.\n# By default, the flags in this file are appended to flags specified\n# in /U"
  },
  {
    "path": "Android-code/app/src/main/AndroidManifest.xml",
    "chars": 3409,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    package="
  },
  {
    "path": "Android-code/app/src/main/aidl/com/android/vending/billing/IInAppBillingService.aidl",
    "chars": 8443,
    "preview": "/*\n * Copyright (C) 2012 The Android Open Source Project\n *\n * Licensed under the Apache License, Version 2.0 (the \"Lice"
  },
  {
    "path": "Android-code/app/src/main/assets/countries.json",
    "chars": 40242,
    "preview": "[{\"CountryName\":\"Somaliland\",\"CapitalName\":\"Hargeisa\",\"CapitalLatitude\":\"9.55\",\"CapitalLongitude\":\"44.050000\",\"CountryCo"
  },
  {
    "path": "Android-code/app/src/main/assets/full_licenses.html",
    "chars": 26419,
    "preview": "<!--\n  ~ Copyright (c) 2012-2016 Arne Schwabe\n  ~ Distributed under the GNU GPL v2 with additional terms. For full terms"
  },
  {
    "path": "Android-code/app/src/main/assets/world_map.geo.json",
    "chars": 256943,
    "preview": "{\"type\":\"FeatureCollection\",\"features\":[\n{\"type\":\"Feature\",\"id\":\"AFG\",\"properties\":{\"name\":\"Afghanistan\"},\"geometry\":{\"t"
  },
  {
    "path": "Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/App.java",
    "chars": 1397,
    "preview": "package com.vasilkoff.easyvpnfree;\n\nimport android.app.Application;\nimport android.content.Context;\nimport android.conte"
  },
  {
    "path": "Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/activity/AboutActivity.java",
    "chars": 1167,
    "preview": "package com.vasilkoff.easyvpnfree.activity;\n\n\nimport android.content.pm.PackageInfo;\nimport android.content.pm.PackageMa"
  },
  {
    "path": "Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/activity/BaseActivity.java",
    "chars": 14696,
    "preview": "package com.vasilkoff.easyvpnfree.activity;\n\nimport android.content.Intent;\n\nimport android.support.v4.widget.DrawerLayo"
  },
  {
    "path": "Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/activity/BookmarkServerListActivity.java",
    "chars": 1081,
    "preview": "package com.vasilkoff.easyvpnfree.activity;\n\n\nimport android.os.Bundle;\nimport android.support.v7.widget.LinearLayoutMan"
  },
  {
    "path": "Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/activity/HomeActivity.java",
    "chars": 11447,
    "preview": "package com.vasilkoff.easyvpnfree.activity;\n\nimport android.content.Intent;\nimport android.content.res.Configuration;\nim"
  },
  {
    "path": "Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/activity/LauncherActivity.java",
    "chars": 1651,
    "preview": "package com.vasilkoff.easyvpnfree.activity;\n\nimport android.app.Activity;\nimport android.content.DialogInterface;\nimport"
  },
  {
    "path": "Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/activity/LoaderActivity.java",
    "chars": 9284,
    "preview": "package com.vasilkoff.easyvpnfree.activity;\n\nimport android.content.Intent;\nimport android.os.Handler;\nimport android.os"
  },
  {
    "path": "Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/activity/MyPreferencesActivity.java",
    "chars": 3609,
    "preview": "package com.vasilkoff.easyvpnfree.activity;\n\nimport android.os.Bundle;\nimport android.preference.ListPreference;\nimport "
  },
  {
    "path": "Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/activity/ServerActivity.java",
    "chars": 27888,
    "preview": "package com.vasilkoff.easyvpnfree.activity;\n\nimport android.app.Activity;\nimport android.content.ActivityNotFoundExcepti"
  },
  {
    "path": "Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/activity/ServersInfo.java",
    "chars": 1471,
    "preview": "package com.vasilkoff.easyvpnfree.activity;\n\nimport android.support.v7.app.AppCompatActivity;\nimport android.os.Bundle;\n"
  },
  {
    "path": "Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/activity/ServersListActivity.java",
    "chars": 2021,
    "preview": "package com.vasilkoff.easyvpnfree.activity;\n\nimport android.content.Intent;\n\nimport android.os.Bundle;\nimport android.vi"
  },
  {
    "path": "Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/adapter/BookmarkServerListAdapter.java",
    "chars": 4208,
    "preview": "package com.vasilkoff.easyvpnfree.adapter;\n\nimport android.content.Context;\nimport android.content.Intent;\nimport androi"
  },
  {
    "path": "Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/adapter/ServerListAdapter.java",
    "chars": 3236,
    "preview": "package com.vasilkoff.easyvpnfree.adapter;\n\nimport android.content.Context;\nimport android.support.v4.content.ContextCom"
  },
  {
    "path": "Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/database/DBHelper.java",
    "chars": 16220,
    "preview": "package com.vasilkoff.easyvpnfree.database;\n\nimport android.content.ContentValues;\nimport android.content.Context;\nimpor"
  },
  {
    "path": "Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/model/Country.java",
    "chars": 991,
    "preview": "package com.vasilkoff.easyvpnfree.model;\n\n/**\n * Created by Kusenko on 01.10.2016.\n */\n\npublic class Country {\n\n    priv"
  },
  {
    "path": "Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/model/Server.java",
    "chars": 6918,
    "preview": "package com.vasilkoff.easyvpnfree.model;\n\nimport android.os.Parcel;\nimport android.os.Parcelable;\n\n/**\n * Created by Kus"
  },
  {
    "path": "Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/util/BitmapGenerator.java",
    "chars": 878,
    "preview": "package com.vasilkoff.easyvpnfree.util;\n\nimport android.graphics.Bitmap;\nimport android.graphics.Canvas;\nimport android."
  },
  {
    "path": "Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/util/ConnectionQuality.java",
    "chars": 2797,
    "preview": "package com.vasilkoff.easyvpnfree.util;\n\n/**\n * Created by Kusenko on 09.12.2016.\n */\n\npublic class ConnectionQuality {\n"
  },
  {
    "path": "Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/util/CountriesNames.java",
    "chars": 825,
    "preview": "package com.vasilkoff.easyvpnfree.util;\n\nimport java.util.HashMap;\nimport java.util.Locale;\nimport java.util.Map;\n\n/**\n "
  },
  {
    "path": "Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/util/LoadData.java",
    "chars": 658,
    "preview": "package com.vasilkoff.easyvpnfree.util;\n\nimport android.content.Context;\n\nimport java.io.IOException;\nimport java.io.Inp"
  },
  {
    "path": "Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/util/NetworkState.java",
    "chars": 593,
    "preview": "package com.vasilkoff.easyvpnfree.util;\n\nimport android.content.Context;\nimport android.net.ConnectivityManager;\nimport "
  },
  {
    "path": "Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/util/NumberPickerPreference.java",
    "chars": 2577,
    "preview": "package com.vasilkoff.easyvpnfree.util;\n\nimport android.content.Context;\nimport android.content.res.TypedArray;\nimport a"
  },
  {
    "path": "Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/util/PropertiesService.java",
    "chars": 2715,
    "preview": "package com.vasilkoff.easyvpnfree.util;\n\nimport android.content.Context;\nimport android.content.SharedPreferences;\nimpor"
  },
  {
    "path": "Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/util/Stopwatch.java",
    "chars": 653,
    "preview": "package com.vasilkoff.easyvpnfree.util;\n\nimport java.text.SimpleDateFormat;\nimport java.util.Calendar;\nimport java.util."
  },
  {
    "path": "Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/util/TotalTraffic.java",
    "chars": 2147,
    "preview": "package com.vasilkoff.easyvpnfree.util;\n\nimport android.content.Context;\nimport android.content.Intent;\n\nimport java.uti"
  },
  {
    "path": "Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/util/iap/Base64.java",
    "chars": 24275,
    "preview": "// Portions copyright 2002, Google, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you ma"
  },
  {
    "path": "Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/util/iap/Base64DecoderException.java",
    "chars": 982,
    "preview": "// Copyright 2002, Google, Inc.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use"
  },
  {
    "path": "Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/util/iap/IabException.java",
    "chars": 1501,
    "preview": "/* Copyright (c) 2012 Google Inc.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not u"
  },
  {
    "path": "Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/util/iap/IabHelper.java",
    "chars": 45181,
    "preview": "/* Copyright (c) 2012 Google Inc.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not u"
  },
  {
    "path": "Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/util/iap/IabResult.java",
    "chars": 1752,
    "preview": "/* Copyright (c) 2012 Google Inc.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not u"
  },
  {
    "path": "Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/util/iap/Inventory.java",
    "chars": 3173,
    "preview": "/* Copyright (c) 2012 Google Inc.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not u"
  },
  {
    "path": "Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/util/iap/Purchase.java",
    "chars": 2363,
    "preview": "/* Copyright (c) 2012 Google Inc.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not u"
  },
  {
    "path": "Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/util/iap/Security.java",
    "chars": 5136,
    "preview": "/* Copyright (c) 2012 Google Inc.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not u"
  },
  {
    "path": "Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/util/iap/SkuDetails.java",
    "chars": 1803,
    "preview": "/* Copyright (c) 2012 Google Inc.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not u"
  },
  {
    "path": "Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/util/map/MapCreator.java",
    "chars": 3318,
    "preview": "package com.vasilkoff.easyvpnfree.util.map;\n\nimport android.content.Context;\nimport android.support.v4.content.ContextCo"
  },
  {
    "path": "Android-code/app/src/main/java/com/vasilkoff/easyvpnfree/util/map/MyMarker.java",
    "chars": 937,
    "preview": "package com.vasilkoff.easyvpnfree.util.map;\n\nimport org.mapsforge.core.graphics.Bitmap;\nimport org.mapsforge.core.model."
  },
  {
    "path": "Android-code/app/src/main/java/de/blinkt/openvpn/VpnProfile.java",
    "chars": 36870,
    "preview": "/*\n * Copyright (c) 2012-2016 Arne Schwabe\n * Distributed under the GNU GPL v2 with additional terms. For full terms see"
  },
  {
    "path": "Android-code/app/src/main/java/de/blinkt/openvpn/core/CIDRIP.java",
    "chars": 1776,
    "preview": "/*\n * Copyright (c) 2012-2016 Arne Schwabe\n * Distributed under the GNU GPL v2 with additional terms. For full terms see"
  },
  {
    "path": "Android-code/app/src/main/java/de/blinkt/openvpn/core/ConfigParser.java",
    "chars": 32056,
    "preview": "/*\n * Copyright (c) 2012-2016 Arne Schwabe\n * Distributed under the GNU GPL v2 with additional terms. For full terms see"
  },
  {
    "path": "Android-code/app/src/main/java/de/blinkt/openvpn/core/Connection.java",
    "chars": 1736,
    "preview": "/*\n * Copyright (c) 2012-2016 Arne Schwabe\n * Distributed under the GNU GPL v2 with additional terms. For full terms see"
  },
  {
    "path": "Android-code/app/src/main/java/de/blinkt/openvpn/core/DeviceStateReceiver.java",
    "chars": 10302,
    "preview": "/*\n * Copyright (c) 2012-2016 Arne Schwabe\n * Distributed under the GNU GPL v2 with additional terms. For full terms see"
  },
  {
    "path": "Android-code/app/src/main/java/de/blinkt/openvpn/core/ICSOpenVPNApplication.java",
    "chars": 1168,
    "preview": "/*\n * Copyright (c) 2012-2016 Arne Schwabe\n * Distributed under the GNU GPL v2 with additional terms. For full terms see"
  },
  {
    "path": "Android-code/app/src/main/java/de/blinkt/openvpn/core/LogFileHandler.java",
    "chars": 7606,
    "preview": "/*\n * Copyright (c) 2012-2015 Arne Schwabe\n * Distributed under the GNU GPL v2 with additional terms. For full terms see"
  },
  {
    "path": "Android-code/app/src/main/java/de/blinkt/openvpn/core/LogItem.java",
    "chars": 12587,
    "preview": "/*\n * Copyright (c) 2012-2016 Arne Schwabe\n * Distributed under the GNU GPL v2 with additional terms. For full terms see"
  },
  {
    "path": "Android-code/app/src/main/java/de/blinkt/openvpn/core/LollipopDeviceStateListener.java",
    "chars": 1868,
    "preview": "/*\n * Copyright (c) 2012-2016 Arne Schwabe\n * Distributed under the GNU GPL v2 with additional terms. For full terms see"
  },
  {
    "path": "Android-code/app/src/main/java/de/blinkt/openvpn/core/NativeUtils.java",
    "chars": 724,
    "preview": "/*\n * Copyright (c) 2012-2016 Arne Schwabe\n * Distributed under the GNU GPL v2 with additional terms. For full terms see"
  },
  {
    "path": "Android-code/app/src/main/java/de/blinkt/openvpn/core/NetworkSpace.java",
    "chars": 12808,
    "preview": "/*\n * Copyright (c) 2012-2016 Arne Schwabe\n * Distributed under the GNU GPL v2 with additional terms. For full terms see"
  },
  {
    "path": "Android-code/app/src/main/java/de/blinkt/openvpn/core/OpenVPNManagement.java",
    "chars": 870,
    "preview": "/*\n * Copyright (c) 2012-2016 Arne Schwabe\n * Distributed under the GNU GPL v2 with additional terms. For full terms see"
  },
  {
    "path": "Android-code/app/src/main/java/de/blinkt/openvpn/core/OpenVPNService.java",
    "chars": 38693,
    "preview": "/*\n * Copyright (c) 2012-2016 Arne Schwabe\n * Distributed under the GNU GPL v2 with additional terms. For full terms see"
  },
  {
    "path": "Android-code/app/src/main/java/de/blinkt/openvpn/core/OpenVPNThread.java",
    "chars": 7576,
    "preview": "/*\n * Copyright (c) 2012-2016 Arne Schwabe\n * Distributed under the GNU GPL v2 with additional terms. For full terms see"
  },
  {
    "path": "Android-code/app/src/main/java/de/blinkt/openvpn/core/OpenVpnManagementThread.java",
    "chars": 21514,
    "preview": "/*\n * Copyright (c) 2012-2016 Arne Schwabe\n * Distributed under the GNU GPL v2 with additional terms. For full terms see"
  },
  {
    "path": "Android-code/app/src/main/java/de/blinkt/openvpn/core/PRNGFixes.java",
    "chars": 12570,
    "preview": "/*\n * Copyright (c) 2012-2016 Arne Schwabe\n * Distributed under the GNU GPL v2 with additional terms. For full terms see"
  },
  {
    "path": "Android-code/app/src/main/java/de/blinkt/openvpn/core/ProfileManager.java",
    "chars": 6404,
    "preview": "/*\n * Copyright (c) 2012-2016 Arne Schwabe\n * Distributed under the GNU GPL v2 with additional terms. For full terms see"
  },
  {
    "path": "Android-code/app/src/main/java/de/blinkt/openvpn/core/ProxyDetection.java",
    "chars": 1532,
    "preview": "/*\n * Copyright (c) 2012-2016 Arne Schwabe\n * Distributed under the GNU GPL v2 with additional terms. For full terms see"
  },
  {
    "path": "Android-code/app/src/main/java/de/blinkt/openvpn/core/VPNLaunchHelper.java",
    "chars": 4145,
    "preview": "/*\n * Copyright (c) 2012-2016 Arne Schwabe\n * Distributed under the GNU GPL v2 with additional terms. For full terms see"
  },
  {
    "path": "Android-code/app/src/main/java/de/blinkt/openvpn/core/VpnStatus.java",
    "chars": 15287,
    "preview": "/*\n * Copyright (c) 2012-2016 Arne Schwabe\n * Distributed under the GNU GPL v2 with additional terms. For full terms see"
  },
  {
    "path": "Android-code/app/src/main/java/de/blinkt/openvpn/core/X509Utils.java",
    "chars": 7395,
    "preview": "/*\n * Copyright (c) 2012-2016 Arne Schwabe\n * Distributed under the GNU GPL v2 with additional terms. For full terms see"
  },
  {
    "path": "Android-code/app/src/main/java/org/spongycastle/util/encoders/Base64.java",
    "chars": 3349,
    "preview": "/*\n * Copyright (c) 2012-2016 Arne Schwabe\n * Distributed under the GNU GPL v2 with additional terms. For full terms see"
  },
  {
    "path": "Android-code/app/src/main/java/org/spongycastle/util/encoders/Base64Encoder.java",
    "chars": 8133,
    "preview": "/*\n * Copyright (c) 2012-2016 Arne Schwabe\n * Distributed under the GNU GPL v2 with additional terms. For full terms see"
  },
  {
    "path": "Android-code/app/src/main/java/org/spongycastle/util/encoders/Encoder.java",
    "chars": 620,
    "preview": "/*\n * Copyright (c) 2012-2016 Arne Schwabe\n * Distributed under the GNU GPL v2 with additional terms. For full terms see"
  },
  {
    "path": "Android-code/app/src/main/java/org/spongycastle/util/io/pem/PemGenerationException.java",
    "chars": 626,
    "preview": "/*\n * Copyright (c) 2012-2016 Arne Schwabe\n * Distributed under the GNU GPL v2 with additional terms. For full terms see"
  },
  {
    "path": "Android-code/app/src/main/java/org/spongycastle/util/io/pem/PemHeader.java",
    "chars": 1293,
    "preview": "/*\n * Copyright (c) 2012-2016 Arne Schwabe\n * Distributed under the GNU GPL v2 with additional terms. For full terms see"
  },
  {
    "path": "Android-code/app/src/main/java/org/spongycastle/util/io/pem/PemObject.java",
    "chars": 1516,
    "preview": "/*\n * Copyright (c) 2012-2016 Arne Schwabe\n * Distributed under the GNU GPL v2 with additional terms. For full terms see"
  },
  {
    "path": "Android-code/app/src/main/java/org/spongycastle/util/io/pem/PemObjectGenerator.java",
    "chars": 294,
    "preview": "/*\n * Copyright (c) 2012-2016 Arne Schwabe\n * Distributed under the GNU GPL v2 with additional terms. For full terms see"
  },
  {
    "path": "Android-code/app/src/main/java/org/spongycastle/util/io/pem/PemReader.java",
    "chars": 2117,
    "preview": "/*\n * Copyright (c) 2012-2016 Arne Schwabe\n * Distributed under the GNU GPL v2 with additional terms. For full terms see"
  },
  {
    "path": "Android-code/app/src/main/java/org/spongycastle/util/io/pem/PemWriter.java",
    "chars": 3545,
    "preview": "/*\n * Copyright (c) 2012-2016 Arne Schwabe\n * Distributed under the GNU GPL v2 with additional terms. For full terms see"
  },
  {
    "path": "Android-code/app/src/main/res/anim/scale.xml",
    "chars": 298,
    "preview": "<scale\n    xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:duration=\"200\"\n    android:fillAfter=\""
  },
  {
    "path": "Android-code/app/src/main/res/drawable/button_bg.xml",
    "chars": 300,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item>\n"
  },
  {
    "path": "Android-code/app/src/main/res/drawable/connected_bg.xml",
    "chars": 268,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n<item>\n    "
  },
  {
    "path": "Android-code/app/src/main/res/drawable/info_servers_bg.xml",
    "chars": 348,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <item>\n"
  },
  {
    "path": "Android-code/app/src/main/res/drawable/server_info_bg.xml",
    "chars": 437,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<layer-list xmlns:android=\"http://schemas.android.com/apk/res/android\" >\n    <ite"
  },
  {
    "path": "Android-code/app/src/main/res/drawable/side_nav_bar.xml",
    "chars": 290,
    "preview": "<shape xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:shape=\"rectangle\">\n    <gradient\n        a"
  },
  {
    "path": "Android-code/app/src/main/res/layout/activity_about.xml",
    "chars": 1211,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<LinearLayout xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmln"
  },
  {
    "path": "Android-code/app/src/main/res/layout/activity_base.xml",
    "chars": 1350,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<android.support.v4.widget.DrawerLayout\n    android:id=\"@+id/activity_container\"\n"
  },
  {
    "path": "Android-code/app/src/main/res/layout/activity_bookmark_server_list.xml",
    "chars": 1572,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<RelativeLayout xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xm"
  },
  {
    "path": "Android-code/app/src/main/res/layout/activity_home.xml",
    "chars": 2079,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<RelativeLayout\n    android:id=\"@+id/homeContextRL\"\n    xmlns:android=\"http://sch"
  },
  {
    "path": "Android-code/app/src/main/res/layout/activity_loader.xml",
    "chars": 1823,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<RelativeLayout\n    xmlns:android=\"http://schemas.android.com/apk/res/android\"\n  "
  },
  {
    "path": "Android-code/app/src/main/res/layout/activity_preference.xml",
    "chars": 1007,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<LinearLayout\n    xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    "
  },
  {
    "path": "Android-code/app/src/main/res/layout/activity_server.xml",
    "chars": 13114,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<LinearLayout\n    xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    "
  },
  {
    "path": "Android-code/app/src/main/res/layout/activity_servers_info.xml",
    "chars": 1588,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<RelativeLayout xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xm"
  },
  {
    "path": "Android-code/app/src/main/res/layout/activity_servers_list.xml",
    "chars": 796,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<RelativeLayout xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xm"
  },
  {
    "path": "Android-code/app/src/main/res/layout/bookmark_server_row.xml",
    "chars": 4027,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<LinearLayout\n    xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    "
  },
  {
    "path": "Android-code/app/src/main/res/layout/layout_server_record_row.xml",
    "chars": 2429,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<LinearLayout xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    andr"
  },
  {
    "path": "Android-code/app/src/main/res/layout/pop_up_choose_country.xml",
    "chars": 1211,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<LinearLayout\n    xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    "
  },
  {
    "path": "Android-code/app/src/main/res/layout/pop_up_note.xml",
    "chars": 1322,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<RelativeLayout\n    xmlns:android=\"http://schemas.android.com/apk/res/android\"\n  "
  },
  {
    "path": "Android-code/app/src/main/res/layout/pop_up_rating.xml",
    "chars": 2160,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<RelativeLayout\n    xmlns:android=\"http://schemas.android.com/apk/res/android\"\n  "
  },
  {
    "path": "Android-code/app/src/main/res/layout/pop_up_success_conected.xml",
    "chars": 2017,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<RelativeLayout\n    xmlns:android=\"http://schemas.android.com/apk/res/android\"\n  "
  },
  {
    "path": "Android-code/app/src/main/res/menu/menu_main.xml",
    "chars": 1675,
    "preview": "<menu xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:app=\"http://schemas.android.com/apk/res-auto\""
  },
  {
    "path": "Android-code/app/src/main/res/values/about.xml",
    "chars": 1792,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <string name=\"aboutApp\">\n        <b>Introduction</b>\n        \\nAn"
  },
  {
    "path": "Android-code/app/src/main/res/values/colors.xml",
    "chars": 1040,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <color name=\"colorPrimary\">#3F51B5</color>\n    <color name=\"color"
  },
  {
    "path": "Android-code/app/src/main/res/values/dimens.xml",
    "chars": 477,
    "preview": "<resources>\n    <!-- Default screen margins, per the Android Design guidelines. -->\n    <dimen name=\"nav_header_vertical"
  },
  {
    "path": "Android-code/app/src/main/res/values/props.xml",
    "chars": 639,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <string name=\"base64EncodedPublicKey\">MIIBIjANBgkqhkiG9w0BAQEFAAO"
  },
  {
    "path": "Android-code/app/src/main/res/values/reference.xml",
    "chars": 323,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <drawable name=\"ic_menu_close_clear_cancel\">@android:drawable/ic_"
  },
  {
    "path": "Android-code/app/src/main/res/values/strings.xml",
    "chars": 5501,
    "preview": "<resources>\n    <string name=\"action_settings\">Settings</string>\n    <string name=\"home_btn_choose_country\">Choose count"
  },
  {
    "path": "Android-code/app/src/main/res/values/styles.xml",
    "chars": 1945,
    "preview": "<resources>\n\n    <style name=\"AppTheme\" parent=\"Theme.AppCompat.Light.NoActionBar\">\n        <item name=\"colorPrimary\">@c"
  },
  {
    "path": "Android-code/app/src/main/res/values/untranslatable.xml",
    "chars": 3144,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n  ~ Copyright (c) 2012-2016 Arne Schwabe\n  ~ Distributed under the GNU GPL v"
  },
  {
    "path": "Android-code/app/src/main/res/values/vpn_strings.xml",
    "chars": 46351,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?> <!--\n  ~ Copyright (c) 2012-2016 Arne Schwabe\n  ~ Distributed under the GNU GPL v"
  },
  {
    "path": "Android-code/app/src/main/res/values-ar/strings.xml",
    "chars": 1252,
    "preview": "<resources>\n      <string name=\"home_btn_choose_country\"> اختر بلدك </string>\n      <string name=\"home_pop_up_title_choo"
  },
  {
    "path": "Android-code/app/src/main/res/values-be/strings.xml",
    "chars": 1252,
    "preview": "<resources>\n    <string name=\"home_btn_choose_country\"> Абярыце краіну </string>\n    <string name=\"home_pop_up_title_cho"
  },
  {
    "path": "Android-code/app/src/main/res/values-cs/strings.xml",
    "chars": 1248,
    "preview": "<resources>\n    <string name=\"home_btn_choose_country\"> Vyberte zemi </string>\n    <string name=\"home_pop_up_title_choos"
  },
  {
    "path": "Android-code/app/src/main/res/values-de/strings.xml",
    "chars": 1290,
    "preview": "<resources>\n    <string name=\"home_btn_choose_country\"> Wählen Sie Ihr Land </string>\n    <string name=\"home_pop_up_titl"
  },
  {
    "path": "Android-code/app/src/main/res/values-el/strings.xml",
    "chars": 1292,
    "preview": "<resources>\n    <string name=\"home_btn_choose_country\"> Επιλέξτε τη χώρα  </string>\n    <string name=\"home_pop_up_title_"
  },
  {
    "path": "Android-code/app/src/main/res/values-es/strings.xml",
    "chars": 1310,
    "preview": "<resources>\n    <string name=\"home_btn_choose_country\"> Seleccione su país </string>\n    <string name=\"home_pop_up_title"
  },
  {
    "path": "Android-code/app/src/main/res/values-fa/strings.xml",
    "chars": 1204,
    "preview": "<resources>\n    <string name=\"home_btn_choose_country\">کشور خود را انتخاب کنید</string>\n    <string name=\"home_pop_up_ti"
  },
  {
    "path": "Android-code/app/src/main/res/values-fr/strings.xml",
    "chars": 1320,
    "preview": "<resources>\n    <string name=\"home_btn_choose_country\"> Sélectionnez le pays </string>\n    <string name=\"home_pop_up_tit"
  },
  {
    "path": "Android-code/app/src/main/res/values-hu/strings.xml",
    "chars": 1283,
    "preview": "<resources>\n    <string name=\"home_btn_choose_country\"> Válassza ki az országot </string>\n    <string name=\"home_pop_up_"
  },
  {
    "path": "Android-code/app/src/main/res/values-id/strings.xml",
    "chars": 1225,
    "preview": "<resources>\n    <string name=\"home_btn_choose_country\"> Pilih negara </string>\n    <string name=\"home_pop_up_title_choos"
  },
  {
    "path": "Android-code/app/src/main/res/values-it/strings.xml",
    "chars": 1229,
    "preview": "<resources>\n    <string name=\"home_pop_up_title_choose_country\"> Seleziona il tuo paese </string>\n    <string name=\"serv"
  },
  {
    "path": "Android-code/app/src/main/res/values-iw/strings.xml",
    "chars": 1121,
    "preview": "<resources>\n    <string name=\"home_btn_choose_country\">בחר את המדינה שלך</string>\n    <string name=\"home_pop_up_title_ch"
  },
  {
    "path": "Android-code/app/src/main/res/values-ja/strings.xml",
    "chars": 1093,
    "preview": "<resources>\n    <string name=\"home_btn_choose_country\"> にあなたの国を選択</string>\n    <string name=\"home_pop_up_title_choose_co"
  },
  {
    "path": "Android-code/app/src/main/res/values-ka/strings.xml",
    "chars": 1244,
    "preview": "<resources>\n    <string name=\"home_btn_choose_country\"> აირჩიეთ თქვენი ქვეყანა </string>\n    <string name=\"home_pop_up_t"
  },
  {
    "path": "Android-code/app/src/main/res/values-ko/strings.xml",
    "chars": 1116,
    "preview": "<resources>\n    <string name=\"home_btn_choose_country\"> 국가를 선택 </string>\n    <string name=\"home_pop_up_title_choose_coun"
  },
  {
    "path": "Android-code/app/src/main/res/values-lt/strings.xml",
    "chars": 1254,
    "preview": "<resources>\n    <string name=\"home_btn_choose_country\"> Pasirinkite savo šalį </string>\n    <string name=\"home_pop_up_ti"
  },
  {
    "path": "Android-code/app/src/main/res/values-lv/strings.xml",
    "chars": 1338,
    "preview": "<resources>\n    <string name=\"home_btn_choose_country\"> Izvēlieties savu valsti </string>\n        <string name=\"home_pop"
  },
  {
    "path": "Android-code/app/src/main/res/values-ro/strings.xml",
    "chars": 1336,
    "preview": "<resources>\n    <string name=\"home_btn_choose_country\"> Selectați țara </string>\n        <string name=\"home_pop_up_title"
  },
  {
    "path": "Android-code/app/src/main/res/values-ru/strings.xml",
    "chars": 5484,
    "preview": "<resources>\n    <string name=\"action_settings\">Настройки</string>\n    <string name=\"action_about\">О приложении</string>\n"
  },
  {
    "path": "Android-code/app/src/main/res/values-sk/strings.xml",
    "chars": 1273,
    "preview": "<resources>\n    <string name=\"home_btn_choose_country\"> Vyberte svoju krajinu </string>\n    <string name=\"home_pop_up_ti"
  },
  {
    "path": "Android-code/app/src/main/res/values-sl/strings.xml",
    "chars": 1272,
    "preview": "<resources>\n    <string name=\"home_btn_choose_country\"> Izberite državo </string>\n    <string name=\"home_pop_up_title_ch"
  },
  {
    "path": "Android-code/app/src/main/res/values-sr/strings.xml",
    "chars": 1198,
    "preview": "<resources>\n    <string name=\"home_btn_choose_country\">Изаберите своју земљу</string>\n    <string name=\"home_pop_up_titl"
  },
  {
    "path": "Android-code/app/src/main/res/values-sv/strings.xml",
    "chars": 1255,
    "preview": "<resources>\n    <string name=\"home_btn_choose_country\"> Välj ditt land </string>\n    <string name=\"home_pop_up_title_cho"
  },
  {
    "path": "Android-code/app/src/main/res/values-th/strings.xml",
    "chars": 1270,
    "preview": "<resources>\n    <string name=\"home_btn_choose_country\"> เลือกประเทศของคุณ </string>\n    <string name=\"home_pop_up_title_"
  },
  {
    "path": "Android-code/app/src/main/res/values-tr/strings.xml",
    "chars": 1286,
    "preview": "<resources>\n    <string name = \"home_btn_choose_country\"> Ülkenizi seçin </string>\n    <string name = \"home_pop_up_title"
  },
  {
    "path": "Android-code/app/src/main/res/values-uk/strings.xml",
    "chars": 5476,
    "preview": "<resources>\n    <string name=\"action_settings\">Налаштування</string>\n    <string name=\"action_about\">Про додаток</string"
  },
  {
    "path": "Android-code/app/src/main/res/values-v21/reference.xml",
    "chars": 308,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <drawable name=\"ic_menu_close_clear_cancel\">@drawable/ic_close_wh"
  },
  {
    "path": "Android-code/app/src/main/res/values-v21/styles.xml",
    "chars": 327,
    "preview": "<resources>\n\n    <style name=\"AppTheme.NoActionBar\">\n        <item name=\"windowActionBar\">false</item>\n        <item nam"
  },
  {
    "path": "Android-code/app/src/main/res/values-vi/strings.xml",
    "chars": 1298,
    "preview": "<resources>\n    <string name = \"home_btn_choose_country\"> Chọn quốc gia của bạn </string>\n    <string name = \"home_pop_u"
  },
  {
    "path": "Android-code/app/src/main/res/values-w820dp/dimens.xml",
    "chars": 358,
    "preview": "<resources>\n    <!-- Example customization of dimensions originally defined in res/values/dimens.xml\n         (such as s"
  },
  {
    "path": "Android-code/app/src/main/res/values-zh/strings.xml",
    "chars": 1075,
    "preview": "<resources>\n      <string name=\"home_btn_choose_country\">选择您所在的国家</string>\n      <string name=\"home_pop_up_title_choose_"
  },
  {
    "path": "Android-code/app/src/main/res/xml/preferences.xml",
    "chars": 1671,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<PreferenceScreen xmlns:android=\"http://schemas.android.com/apk/res/android\">\n   "
  },
  {
    "path": "Android-code/app/src/pro/google-services.json",
    "chars": 849,
    "preview": "{\n  \"project_info\": {\n    \"project_number\": \"101174069905\",\n    \"project_id\": \"easy-vpn-155109\"\n  },\n  \"client\": [\n    {"
  },
  {
    "path": "Android-code/build.gradle",
    "chars": 498,
    "preview": "// Top-level build file where you can add configuration options common to all sub-projects/modules.\n\nbuildscript {\n    r"
  },
  {
    "path": "Android-code/gradle/wrapper/gradle-wrapper.properties",
    "chars": 234,
    "preview": "#Thu Sep 29 11:04:28 EEST 2016\ndistributionBase=GRADLE_USER_HOME\ndistributionPath=wrapper/dists\nzipStoreBase=GRADLE_USER"
  },
  {
    "path": "Android-code/gradle.properties",
    "chars": 855,
    "preview": "# Project-wide Gradle settings.\n\n# IDE (e.g. Android Studio) users:\n# Gradle settings configured through the IDE *will o"
  },
  {
    "path": "Android-code/gradlew",
    "chars": 4971,
    "preview": "#!/usr/bin/env bash\n\n##############################################################################\n##\n##  Gradle start "
  },
  {
    "path": "Android-code/gradlew.bat",
    "chars": 2404,
    "preview": "@if \"%DEBUG%\" == \"\" @echo off\r\n@rem ##########################################################################\r\n@rem\r\n@r"
  },
  {
    "path": "Android-code/settings.gradle",
    "chars": 15,
    "preview": "include ':app'\n"
  },
  {
    "path": "LICENSE",
    "chars": 35141,
    "preview": "                    GNU GENERAL PUBLIC LICENSE\n                       Version 3, 29 June 2007\n\n Copyright (C) 2007 Free "
  },
  {
    "path": "README.md",
    "chars": 2348,
    "preview": "# Easy VPN Free\n----\n## Introduction\n\nAndroid application which lets you easily to connect to a number of free VPN serve"
  }
]

// ... and 48 more files (download for full content)

About this extraction

This page contains the full source code of the MaxSmile/EasyVPN-Free GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 198 files (136.0 MB), approximately 291.6k tokens, and a symbol index with 764 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!